This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[tool.poetry] | |
name = "mytest" | |
version = "2.0.0" | |
description = "My test" | |
authors = [] | |
[tool.poetry.dependencies] | |
python = "^3.7" | |
flask = "^1.1" | |
protobuf = "^3.10" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is the initialization module for your project. | |
# It configures all python package settings and initializes packages if necessary. | |
# In manage.py and in your WSGI file you'd first import this module and then let Django do its work. | |
# Shut up noisy loggers | |
import logging | |
logging.getLogger('pycountry.db').setLevel(logging.CRITICAL) | |
# ... | |
# Configure Django |