├── .git-blame-ignore-revs ├── .github ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── dist-python.yml │ ├── release-python.yml │ ├── test-python.yml │ └── zizmor.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── docs ├── _themes │ ├── LICENSE │ ├── README │ ├── flask_small │ │ ├── layout.html │ │ ├── static │ │ │ └── flasky.css_t │ │ └── theme.conf │ └── flask_theme_support.py ├── conf.py └── index.rst ├── examples └── wiki │ ├── requirements.txt │ ├── templates │ ├── 404.html │ ├── edit.html │ ├── page.html │ └── upload.html │ └── wiki.py ├── flask_pymongo ├── __init__.py ├── _version.py ├── helpers.py ├── py.typed └── wrappers.py ├── justfile ├── pyproject.toml ├── tests ├── __init__.py ├── test_config.py ├── test_gridfs.py ├── test_json.py ├── test_url_converter.py ├── test_wrappers.py └── util.py └── uv.lock /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-labs/flask-pymongo/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-labs/flask-pymongo/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-labs/flask-pymongo/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/dist-python.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-labs/flask-pymongo/HEAD/.github/workflows/dist-python.yml -------------------------------------------------------------------------------- /.github/workflows/release-python.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-labs/flask-pymongo/HEAD/.github/workflows/release-python.yml -------------------------------------------------------------------------------- /.github/workflows/test-python.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-labs/flask-pymongo/HEAD/.github/workflows/test-python.yml -------------------------------------------------------------------------------- /.github/workflows/zizmor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-labs/flask-pymongo/HEAD/.github/workflows/zizmor.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-labs/flask-pymongo/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-labs/flask-pymongo/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-labs/flask-pymongo/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-labs/flask-pymongo/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-labs/flask-pymongo/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-labs/flask-pymongo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-labs/flask-pymongo/HEAD/README.md -------------------------------------------------------------------------------- /docs/_themes/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-labs/flask-pymongo/HEAD/docs/_themes/LICENSE -------------------------------------------------------------------------------- /docs/_themes/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-labs/flask-pymongo/HEAD/docs/_themes/README -------------------------------------------------------------------------------- /docs/_themes/flask_small/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-labs/flask-pymongo/HEAD/docs/_themes/flask_small/layout.html -------------------------------------------------------------------------------- /docs/_themes/flask_small/static/flasky.css_t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-labs/flask-pymongo/HEAD/docs/_themes/flask_small/static/flasky.css_t -------------------------------------------------------------------------------- /docs/_themes/flask_small/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-labs/flask-pymongo/HEAD/docs/_themes/flask_small/theme.conf -------------------------------------------------------------------------------- /docs/_themes/flask_theme_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-labs/flask-pymongo/HEAD/docs/_themes/flask_theme_support.py -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-labs/flask-pymongo/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-labs/flask-pymongo/HEAD/docs/index.rst -------------------------------------------------------------------------------- /examples/wiki/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask-PyMongo 2 | markdown2 3 | -------------------------------------------------------------------------------- /examples/wiki/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-labs/flask-pymongo/HEAD/examples/wiki/templates/404.html -------------------------------------------------------------------------------- /examples/wiki/templates/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-labs/flask-pymongo/HEAD/examples/wiki/templates/edit.html -------------------------------------------------------------------------------- /examples/wiki/templates/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-labs/flask-pymongo/HEAD/examples/wiki/templates/page.html -------------------------------------------------------------------------------- /examples/wiki/templates/upload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-labs/flask-pymongo/HEAD/examples/wiki/templates/upload.html -------------------------------------------------------------------------------- /examples/wiki/wiki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-labs/flask-pymongo/HEAD/examples/wiki/wiki.py -------------------------------------------------------------------------------- /flask_pymongo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-labs/flask-pymongo/HEAD/flask_pymongo/__init__.py -------------------------------------------------------------------------------- /flask_pymongo/_version.py: -------------------------------------------------------------------------------- 1 | __version__ = "3.1.0.dev0" 2 | -------------------------------------------------------------------------------- /flask_pymongo/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-labs/flask-pymongo/HEAD/flask_pymongo/helpers.py -------------------------------------------------------------------------------- /flask_pymongo/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flask_pymongo/wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-labs/flask-pymongo/HEAD/flask_pymongo/wrappers.py -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-labs/flask-pymongo/HEAD/justfile -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-labs/flask-pymongo/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-labs/flask-pymongo/HEAD/tests/test_config.py -------------------------------------------------------------------------------- /tests/test_gridfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-labs/flask-pymongo/HEAD/tests/test_gridfs.py -------------------------------------------------------------------------------- /tests/test_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-labs/flask-pymongo/HEAD/tests/test_json.py -------------------------------------------------------------------------------- /tests/test_url_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-labs/flask-pymongo/HEAD/tests/test_url_converter.py -------------------------------------------------------------------------------- /tests/test_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-labs/flask-pymongo/HEAD/tests/test_wrappers.py -------------------------------------------------------------------------------- /tests/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-labs/flask-pymongo/HEAD/tests/util.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-labs/flask-pymongo/HEAD/uv.lock --------------------------------------------------------------------------------