├── .github └── workflows │ ├── python-publish.yml │ └── tests.yml ├── .gitignore ├── README.md ├── ReallySimpleDB ├── __init__.py ├── manager.py └── utils.py ├── assets └── images │ └── ReallySimpleDB.png ├── pyproject.toml ├── setup.py └── tests └── test_manager.py /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truethari/ReallySimpleDB/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truethari/ReallySimpleDB/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truethari/ReallySimpleDB/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truethari/ReallySimpleDB/HEAD/README.md -------------------------------------------------------------------------------- /ReallySimpleDB/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truethari/ReallySimpleDB/HEAD/ReallySimpleDB/__init__.py -------------------------------------------------------------------------------- /ReallySimpleDB/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truethari/ReallySimpleDB/HEAD/ReallySimpleDB/manager.py -------------------------------------------------------------------------------- /ReallySimpleDB/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truethari/ReallySimpleDB/HEAD/ReallySimpleDB/utils.py -------------------------------------------------------------------------------- /assets/images/ReallySimpleDB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truethari/ReallySimpleDB/HEAD/assets/images/ReallySimpleDB.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truethari/ReallySimpleDB/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truethari/ReallySimpleDB/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truethari/ReallySimpleDB/HEAD/tests/test_manager.py --------------------------------------------------------------------------------