├── .gitignore ├── README.md ├── hello_django.py ├── hello_django1.py ├── hello_django2.py ├── hello_world.png └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .venv/ 3 | __pycache__/ 4 | .idea -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsvincent/django-microframework/HEAD/README.md -------------------------------------------------------------------------------- /hello_django.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsvincent/django-microframework/HEAD/hello_django.py -------------------------------------------------------------------------------- /hello_django1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsvincent/django-microframework/HEAD/hello_django1.py -------------------------------------------------------------------------------- /hello_django2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsvincent/django-microframework/HEAD/hello_django2.py -------------------------------------------------------------------------------- /hello_world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsvincent/django-microframework/HEAD/hello_world.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | asgiref==3.7.2 2 | django==4.2.6 3 | sqlparse==0.4.4 4 | --------------------------------------------------------------------------------