File: utils.py

package info (click to toggle)
python-odmantic 1.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 2,488 kB
  • sloc: python: 8,646; sh: 110; javascript: 45; makefile: 34; xml: 13
file content (6 lines) | stat: -rw-r--r-- 196 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
from odmantic.bson import ObjectId


def redact_objectid(s: str, oid: ObjectId) -> str:
    """Replace the ObjectId in a string with a placeholder."""
    return s.replace(str(oid), "<ObjectId>")