| Linux server27.hostingraja.org 2.6.32-954.3.5.lve1.4.93.el6.x86_64 #1 SMP Wed Oct 4 17:04:29 UTC 2023 x86_64 Path : /opt/imunify360/venv/lib64/python3.11/site-packages/maxminddb/ |
| Current File : //opt/imunify360/venv/lib64/python3.11/site-packages/maxminddb/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.
"""