├── .github └── workflows │ └── release.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── flask_shell_ipython.py ├── pyproject.toml ├── requirements-test.txt └── test_flask_shell_ipython.py /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ei-grad/flask-shell-ipython/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ei-grad/flask-shell-ipython/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ei-grad/flask-shell-ipython/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ei-grad/flask-shell-ipython/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ei-grad/flask-shell-ipython/HEAD/README.md -------------------------------------------------------------------------------- /flask_shell_ipython.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ei-grad/flask-shell-ipython/HEAD/flask_shell_ipython.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ei-grad/flask-shell-ipython/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ei-grad/flask-shell-ipython/HEAD/requirements-test.txt -------------------------------------------------------------------------------- /test_flask_shell_ipython.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ei-grad/flask-shell-ipython/HEAD/test_flask_shell_ipython.py --------------------------------------------------------------------------------