├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .isort.cfg ├── CHANGELOG.md ├── LICENSE ├── README.md ├── atomdb ├── __init__.py ├── base.py ├── nosql.py ├── py.typed └── sql.py ├── makefile ├── pytest.ini ├── setup.py ├── src └── ext.c └── tests ├── test_base.py ├── test_benchmark.py ├── test_ext.py ├── test_json.py ├── test_nosql.py ├── test_sql.py └── test_sql_benchmark.py /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codelv/atom-db/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codelv/atom-db/HEAD/.gitignore -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- 1 | [settings] 2 | profile=black 3 | 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codelv/atom-db/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codelv/atom-db/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codelv/atom-db/HEAD/README.md -------------------------------------------------------------------------------- /atomdb/__init__.py: -------------------------------------------------------------------------------- 1 | version = "0.8.3" 2 | -------------------------------------------------------------------------------- /atomdb/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codelv/atom-db/HEAD/atomdb/base.py -------------------------------------------------------------------------------- /atomdb/nosql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codelv/atom-db/HEAD/atomdb/nosql.py -------------------------------------------------------------------------------- /atomdb/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /atomdb/sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codelv/atom-db/HEAD/atomdb/sql.py -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codelv/atom-db/HEAD/makefile -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codelv/atom-db/HEAD/pytest.ini -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codelv/atom-db/HEAD/setup.py -------------------------------------------------------------------------------- /src/ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codelv/atom-db/HEAD/src/ext.c -------------------------------------------------------------------------------- /tests/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codelv/atom-db/HEAD/tests/test_base.py -------------------------------------------------------------------------------- /tests/test_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codelv/atom-db/HEAD/tests/test_benchmark.py -------------------------------------------------------------------------------- /tests/test_ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codelv/atom-db/HEAD/tests/test_ext.py -------------------------------------------------------------------------------- /tests/test_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codelv/atom-db/HEAD/tests/test_json.py -------------------------------------------------------------------------------- /tests/test_nosql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codelv/atom-db/HEAD/tests/test_nosql.py -------------------------------------------------------------------------------- /tests/test_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codelv/atom-db/HEAD/tests/test_sql.py -------------------------------------------------------------------------------- /tests/test_sql_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codelv/atom-db/HEAD/tests/test_sql_benchmark.py --------------------------------------------------------------------------------