├── README.md └── python ├── django_demo ├── Dockerfile ├── README.md ├── demo │ ├── __init__.py │ ├── asgi.py │ ├── middleware.py │ ├── settings.py │ ├── urls.py │ ├── views.py │ └── wsgi.py ├── docker-compose.yml ├── manage.py ├── requirements.txt ├── start.sh └── static │ └── 1.jpg └── flask_demo ├── Dockerfile ├── README.md ├── app.py ├── docker-compose.yml ├── requirements.txt ├── start.sh └── static └── 1.jpeg /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CHYbeta/URLFilterBypassDemo/HEAD/README.md -------------------------------------------------------------------------------- /python/django_demo/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CHYbeta/URLFilterBypassDemo/HEAD/python/django_demo/Dockerfile -------------------------------------------------------------------------------- /python/django_demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CHYbeta/URLFilterBypassDemo/HEAD/python/django_demo/README.md -------------------------------------------------------------------------------- /python/django_demo/demo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/django_demo/demo/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CHYbeta/URLFilterBypassDemo/HEAD/python/django_demo/demo/asgi.py -------------------------------------------------------------------------------- /python/django_demo/demo/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CHYbeta/URLFilterBypassDemo/HEAD/python/django_demo/demo/middleware.py -------------------------------------------------------------------------------- /python/django_demo/demo/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CHYbeta/URLFilterBypassDemo/HEAD/python/django_demo/demo/settings.py -------------------------------------------------------------------------------- /python/django_demo/demo/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CHYbeta/URLFilterBypassDemo/HEAD/python/django_demo/demo/urls.py -------------------------------------------------------------------------------- /python/django_demo/demo/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CHYbeta/URLFilterBypassDemo/HEAD/python/django_demo/demo/views.py -------------------------------------------------------------------------------- /python/django_demo/demo/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CHYbeta/URLFilterBypassDemo/HEAD/python/django_demo/demo/wsgi.py -------------------------------------------------------------------------------- /python/django_demo/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CHYbeta/URLFilterBypassDemo/HEAD/python/django_demo/docker-compose.yml -------------------------------------------------------------------------------- /python/django_demo/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CHYbeta/URLFilterBypassDemo/HEAD/python/django_demo/manage.py -------------------------------------------------------------------------------- /python/django_demo/requirements.txt: -------------------------------------------------------------------------------- 1 | django -------------------------------------------------------------------------------- /python/django_demo/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CHYbeta/URLFilterBypassDemo/HEAD/python/django_demo/start.sh -------------------------------------------------------------------------------- /python/django_demo/static/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CHYbeta/URLFilterBypassDemo/HEAD/python/django_demo/static/1.jpg -------------------------------------------------------------------------------- /python/flask_demo/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CHYbeta/URLFilterBypassDemo/HEAD/python/flask_demo/Dockerfile -------------------------------------------------------------------------------- /python/flask_demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CHYbeta/URLFilterBypassDemo/HEAD/python/flask_demo/README.md -------------------------------------------------------------------------------- /python/flask_demo/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CHYbeta/URLFilterBypassDemo/HEAD/python/flask_demo/app.py -------------------------------------------------------------------------------- /python/flask_demo/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CHYbeta/URLFilterBypassDemo/HEAD/python/flask_demo/docker-compose.yml -------------------------------------------------------------------------------- /python/flask_demo/requirements.txt: -------------------------------------------------------------------------------- 1 | flask -------------------------------------------------------------------------------- /python/flask_demo/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CHYbeta/URLFilterBypassDemo/HEAD/python/flask_demo/start.sh -------------------------------------------------------------------------------- /python/flask_demo/static/1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CHYbeta/URLFilterBypassDemo/HEAD/python/flask_demo/static/1.jpeg --------------------------------------------------------------------------------