├── .gitignore ├── LICENSE ├── README.md ├── README_zh.md ├── screenshots └── debug1.png └── strongdb.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | .DS_Store 3 | *.pyc 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cx9527/strongdb/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cx9527/strongdb/HEAD/README.md -------------------------------------------------------------------------------- /README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cx9527/strongdb/HEAD/README_zh.md -------------------------------------------------------------------------------- /screenshots/debug1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cx9527/strongdb/HEAD/screenshots/debug1.png -------------------------------------------------------------------------------- /strongdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cx9527/strongdb/HEAD/strongdb.py --------------------------------------------------------------------------------