├── .gitignore ├── LICENSE.txt ├── MANIFEST ├── README.md ├── requirements.txt ├── setup.py ├── sql2nosql ├── __init__.py ├── errors.py └── utils.py └── test ├── __init__.py ├── test_migrator.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facundopadilla/sql2nosql/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facundopadilla/sql2nosql/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facundopadilla/sql2nosql/HEAD/MANIFEST -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facundopadilla/sql2nosql/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | simplejson==3.17.2 2 | tqdm==4.60.0 -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facundopadilla/sql2nosql/HEAD/setup.py -------------------------------------------------------------------------------- /sql2nosql/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facundopadilla/sql2nosql/HEAD/sql2nosql/__init__.py -------------------------------------------------------------------------------- /sql2nosql/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facundopadilla/sql2nosql/HEAD/sql2nosql/errors.py -------------------------------------------------------------------------------- /sql2nosql/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facundopadilla/sql2nosql/HEAD/sql2nosql/utils.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facundopadilla/sql2nosql/HEAD/test/__init__.py -------------------------------------------------------------------------------- /test/test_migrator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facundopadilla/sql2nosql/HEAD/test/test_migrator.py -------------------------------------------------------------------------------- /test/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facundopadilla/sql2nosql/HEAD/test/utils.py --------------------------------------------------------------------------------