├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── bin └── run_tests.sh ├── cors ├── __init__.py ├── constants.py ├── cors_application.py ├── cors_handler.py ├── cors_options.py ├── errors.py ├── filters.py ├── http_response.py └── validators.py ├── examples ├── __init__.py └── app-engine │ ├── .gitignore │ ├── __init__.py │ ├── app.yaml │ └── main.py ├── setup.py └── tests ├── __init__.py ├── test_cors_handler.py ├── test_cors_options.py ├── test_filters.py └── test_validators.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monsur/cors-python/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monsur/cors-python/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monsur/cors-python/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monsur/cors-python/HEAD/README.md -------------------------------------------------------------------------------- /bin/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monsur/cors-python/HEAD/bin/run_tests.sh -------------------------------------------------------------------------------- /cors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cors/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monsur/cors-python/HEAD/cors/constants.py -------------------------------------------------------------------------------- /cors/cors_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monsur/cors-python/HEAD/cors/cors_application.py -------------------------------------------------------------------------------- /cors/cors_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monsur/cors-python/HEAD/cors/cors_handler.py -------------------------------------------------------------------------------- /cors/cors_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monsur/cors-python/HEAD/cors/cors_options.py -------------------------------------------------------------------------------- /cors/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monsur/cors-python/HEAD/cors/errors.py -------------------------------------------------------------------------------- /cors/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monsur/cors-python/HEAD/cors/filters.py -------------------------------------------------------------------------------- /cors/http_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monsur/cors-python/HEAD/cors/http_response.py -------------------------------------------------------------------------------- /cors/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monsur/cors-python/HEAD/cors/validators.py -------------------------------------------------------------------------------- /examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/app-engine/.gitignore: -------------------------------------------------------------------------------- 1 | cors 2 | -------------------------------------------------------------------------------- /examples/app-engine/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/app-engine/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monsur/cors-python/HEAD/examples/app-engine/app.yaml -------------------------------------------------------------------------------- /examples/app-engine/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monsur/cors-python/HEAD/examples/app-engine/main.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monsur/cors-python/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_cors_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monsur/cors-python/HEAD/tests/test_cors_handler.py -------------------------------------------------------------------------------- /tests/test_cors_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monsur/cors-python/HEAD/tests/test_cors_options.py -------------------------------------------------------------------------------- /tests/test_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monsur/cors-python/HEAD/tests/test_filters.py -------------------------------------------------------------------------------- /tests/test_validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monsur/cors-python/HEAD/tests/test_validators.py --------------------------------------------------------------------------------