X7ROOT File Manager
Current Path:
/opt/imunify360/venv/lib/python3.11/site-packages/maxminddb
opt
/
imunify360
/
venv
/
lib
/
python3.11
/
site-packages
/
maxminddb
/
ðŸ“
..
📄
__init__.py
(2.5 KB)
ðŸ“
__pycache__
📄
const.py
(122 B)
📄
decoder.py
(6.84 KB)
📄
errors.py
(226 B)
📄
extension.pyi
(1.41 KB)
📄
file.py
(2.1 KB)
📄
py.typed
(0 B)
📄
reader.py
(10.74 KB)
📄
types.py
(558 B)
Editing: types.py
""" maxminddb.types ~~~~~~~~~~~~~~~ This module provides a Record type that represents a database record. """ from typing import AnyStr, Dict, List, Union Primitive = Union[AnyStr, bool, float, int] Record = Union[Primitive, "RecordList", "RecordDict"] class RecordList(List[Record]): # pylint: disable=too-few-public-methods """ RecordList is a type for lists in a database record. """ class RecordDict(Dict[str, Record]): # pylint: disable=too-few-public-methods """ RecordDict is a type for dicts in a database record. """
Upload File
Create Folder