├── .idea ├── .gitignore ├── PythonFrameworkGuide.iml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── README.md └── image ├── cors.png └── release-roadmap.4cf783b31fbe.png /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaniKim/PythonFrameworkGuide/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/PythonFrameworkGuide.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaniKim/PythonFrameworkGuide/HEAD/.idea/PythonFrameworkGuide.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaniKim/PythonFrameworkGuide/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaniKim/PythonFrameworkGuide/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaniKim/PythonFrameworkGuide/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaniKim/PythonFrameworkGuide/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaniKim/PythonFrameworkGuide/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaniKim/PythonFrameworkGuide/HEAD/README.md -------------------------------------------------------------------------------- /image/cors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaniKim/PythonFrameworkGuide/HEAD/image/cors.png -------------------------------------------------------------------------------- /image/release-roadmap.4cf783b31fbe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KaniKim/PythonFrameworkGuide/HEAD/image/release-roadmap.4cf783b31fbe.png --------------------------------------------------------------------------------