IMFlask-Pymongo

Boilerplate for Large Scale Flask Web Backend Structure with PyMongo

MIT License

Stars
2

IMFlask-Pymongo

Boilerplate for Large Scale Flask Web Backend Structure with PyMongo (Edited 2022-05-03)

This implementation is an extension structure of IMFlask optimized for Pymongo.

Here you can see the basic implementation concept of IMFlask.

Model Implementation

├── app
│   ├── api
│       ├── sample_api
│           └── info.py # Sample API
├── model
│   ├── __init__.py
│   └── mongodb
│       ├── __init__.py # Mongodb initializer
│       ├── base.py # Base Model Class
│       ├── log.py
│       └── master_config.py

References