Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/iml1111/imflask-pymongo
Boilerplate for Large Scale Flask Web Backend Structure with PyMongo
https://github.com/iml1111/imflask-pymongo
boilerplate-template flask mongodb restful
Last synced: 19 days ago
JSON representation
Boilerplate for Large Scale Flask Web Backend Structure with PyMongo
- Host: GitHub
- URL: https://github.com/iml1111/imflask-pymongo
- Owner: iml1111
- License: mit
- Created: 2021-05-27T01:59:16.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-02-09T12:06:59.000Z (9 months ago)
- Last Synced: 2024-10-09T17:34:28.189Z (about 1 month ago)
- Topics: boilerplate-template, flask, mongodb, restful
- Language: Python
- Homepage:
- Size: 44.9 KB
- Stars: 2
- Watchers: 2
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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](https://github.com/iml1111/IMFlask) you can see the basic implementation concept of IMFlask.
### Model Implementation
```shell
├── 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
- https://github.com/iml1111/IMFlask