├── .github └── workflows │ ├── pr-test.yml │ └── pypi-upload.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── _config.yml ├── azure-pipelines.yml ├── docs ├── code │ ├── add.md │ ├── chain.md │ ├── delete.md │ ├── get.md │ ├── initialize.md │ ├── schema.md │ └── update.md ├── index.md └── onstro-logo.png ├── onstrodb ├── __init__.py ├── cli │ ├── __init__.py │ ├── common.py │ ├── main.py │ └── utils.py ├── core │ ├── __init__.py │ ├── db.py │ └── utils.py └── errors │ ├── __init__.py │ ├── common_errors.py │ └── schema_errors.py ├── requirements-dev.txt ├── requirements.txt ├── setup.cfg ├── setup.py ├── tasks.todo └── tests ├── __init__.py ├── test_db.py └── test_utils.py /.github/workflows/pr-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adwaith-Rajesh/onstro-db/HEAD/.github/workflows/pr-test.yml -------------------------------------------------------------------------------- /.github/workflows/pypi-upload.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adwaith-Rajesh/onstro-db/HEAD/.github/workflows/pypi-upload.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adwaith-Rajesh/onstro-db/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adwaith-Rajesh/onstro-db/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adwaith-Rajesh/onstro-db/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adwaith-Rajesh/onstro-db/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adwaith-Rajesh/onstro-db/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adwaith-Rajesh/onstro-db/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adwaith-Rajesh/onstro-db/HEAD/_config.yml -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adwaith-Rajesh/onstro-db/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /docs/code/add.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adwaith-Rajesh/onstro-db/HEAD/docs/code/add.md -------------------------------------------------------------------------------- /docs/code/chain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adwaith-Rajesh/onstro-db/HEAD/docs/code/chain.md -------------------------------------------------------------------------------- /docs/code/delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adwaith-Rajesh/onstro-db/HEAD/docs/code/delete.md -------------------------------------------------------------------------------- /docs/code/get.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adwaith-Rajesh/onstro-db/HEAD/docs/code/get.md -------------------------------------------------------------------------------- /docs/code/initialize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adwaith-Rajesh/onstro-db/HEAD/docs/code/initialize.md -------------------------------------------------------------------------------- /docs/code/schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adwaith-Rajesh/onstro-db/HEAD/docs/code/schema.md -------------------------------------------------------------------------------- /docs/code/update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adwaith-Rajesh/onstro-db/HEAD/docs/code/update.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adwaith-Rajesh/onstro-db/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/onstro-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adwaith-Rajesh/onstro-db/HEAD/docs/onstro-logo.png -------------------------------------------------------------------------------- /onstrodb/__init__.py: -------------------------------------------------------------------------------- 1 | from .core.db import OnstroDb # noqa:F401 2 | 3 | __version__ = "0.2.2" 4 | -------------------------------------------------------------------------------- /onstrodb/cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /onstrodb/cli/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adwaith-Rajesh/onstro-db/HEAD/onstrodb/cli/common.py -------------------------------------------------------------------------------- /onstrodb/cli/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adwaith-Rajesh/onstro-db/HEAD/onstrodb/cli/main.py -------------------------------------------------------------------------------- /onstrodb/cli/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adwaith-Rajesh/onstro-db/HEAD/onstrodb/cli/utils.py -------------------------------------------------------------------------------- /onstrodb/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /onstrodb/core/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adwaith-Rajesh/onstro-db/HEAD/onstrodb/core/db.py -------------------------------------------------------------------------------- /onstrodb/core/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adwaith-Rajesh/onstro-db/HEAD/onstrodb/core/utils.py -------------------------------------------------------------------------------- /onstrodb/errors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adwaith-Rajesh/onstro-db/HEAD/onstrodb/errors/__init__.py -------------------------------------------------------------------------------- /onstrodb/errors/common_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adwaith-Rajesh/onstro-db/HEAD/onstrodb/errors/common_errors.py -------------------------------------------------------------------------------- /onstrodb/errors/schema_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adwaith-Rajesh/onstro-db/HEAD/onstrodb/errors/schema_errors.py -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adwaith-Rajesh/onstro-db/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pandas>=1.3.0 2 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adwaith-Rajesh/onstro-db/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adwaith-Rajesh/onstro-db/HEAD/setup.py -------------------------------------------------------------------------------- /tasks.todo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adwaith-Rajesh/onstro-db/HEAD/tasks.todo -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adwaith-Rajesh/onstro-db/HEAD/tests/test_db.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adwaith-Rajesh/onstro-db/HEAD/tests/test_utils.py --------------------------------------------------------------------------------