├── .github └── workflows │ └── main.yml ├── .gitignore ├── LICENSE ├── LICENSE_APACHE ├── README.rst ├── bson ├── __init__.py ├── codec.py ├── network.py ├── objectid.py ├── py3compat.py ├── types.py └── tz_util.py ├── scripts └── test ├── setup.py └── tests ├── __init__.py ├── test_array.py ├── test_binary.py ├── test_boolean.py ├── test_datetime.py ├── test_decimal.py ├── test_int.py ├── test_int_as_key.py ├── test_non_utf8_binary.py ├── test_object.py ├── test_objectid.py ├── test_random_tree.py ├── test_types.py ├── test_unknown_handler.py └── test_uuid.py /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-bson/bson/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-bson/bson/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-bson/bson/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE_APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-bson/bson/HEAD/LICENSE_APACHE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-bson/bson/HEAD/README.rst -------------------------------------------------------------------------------- /bson/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-bson/bson/HEAD/bson/__init__.py -------------------------------------------------------------------------------- /bson/codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-bson/bson/HEAD/bson/codec.py -------------------------------------------------------------------------------- /bson/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-bson/bson/HEAD/bson/network.py -------------------------------------------------------------------------------- /bson/objectid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-bson/bson/HEAD/bson/objectid.py -------------------------------------------------------------------------------- /bson/py3compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-bson/bson/HEAD/bson/py3compat.py -------------------------------------------------------------------------------- /bson/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-bson/bson/HEAD/bson/types.py -------------------------------------------------------------------------------- /bson/tz_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-bson/bson/HEAD/bson/tz_util.py -------------------------------------------------------------------------------- /scripts/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-bson/bson/HEAD/scripts/test -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-bson/bson/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-bson/bson/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/test_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-bson/bson/HEAD/tests/test_array.py -------------------------------------------------------------------------------- /tests/test_binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-bson/bson/HEAD/tests/test_binary.py -------------------------------------------------------------------------------- /tests/test_boolean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-bson/bson/HEAD/tests/test_boolean.py -------------------------------------------------------------------------------- /tests/test_datetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-bson/bson/HEAD/tests/test_datetime.py -------------------------------------------------------------------------------- /tests/test_decimal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-bson/bson/HEAD/tests/test_decimal.py -------------------------------------------------------------------------------- /tests/test_int.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-bson/bson/HEAD/tests/test_int.py -------------------------------------------------------------------------------- /tests/test_int_as_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-bson/bson/HEAD/tests/test_int_as_key.py -------------------------------------------------------------------------------- /tests/test_non_utf8_binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-bson/bson/HEAD/tests/test_non_utf8_binary.py -------------------------------------------------------------------------------- /tests/test_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-bson/bson/HEAD/tests/test_object.py -------------------------------------------------------------------------------- /tests/test_objectid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-bson/bson/HEAD/tests/test_objectid.py -------------------------------------------------------------------------------- /tests/test_random_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-bson/bson/HEAD/tests/test_random_tree.py -------------------------------------------------------------------------------- /tests/test_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-bson/bson/HEAD/tests/test_types.py -------------------------------------------------------------------------------- /tests/test_unknown_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-bson/bson/HEAD/tests/test_unknown_handler.py -------------------------------------------------------------------------------- /tests/test_uuid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-bson/bson/HEAD/tests/test_uuid.py --------------------------------------------------------------------------------