├── .gitignore ├── CONTRIB.md ├── LICENSE ├── README.md ├── conf.example.py ├── gcs-signed-url-example.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | conf.py 2 | privatekey.der 3 | -------------------------------------------------------------------------------- /CONTRIB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/storage-signedurls-python/HEAD/CONTRIB.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/storage-signedurls-python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/storage-signedurls-python/HEAD/README.md -------------------------------------------------------------------------------- /conf.example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/storage-signedurls-python/HEAD/conf.example.py -------------------------------------------------------------------------------- /gcs-signed-url-example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/storage-signedurls-python/HEAD/gcs-signed-url-example.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | PyCrypto 3 | --------------------------------------------------------------------------------