├── .gitignore ├── LICENSE ├── README.md ├── requirements.txt ├── s5p-aggregate.py ├── s5p-compress.py ├── s5p-request.py └── s5p_tools ├── __init__.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilelomrani1/s5p-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilelomrani1/s5p-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilelomrani1/s5p-tools/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilelomrani1/s5p-tools/HEAD/requirements.txt -------------------------------------------------------------------------------- /s5p-aggregate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilelomrani1/s5p-tools/HEAD/s5p-aggregate.py -------------------------------------------------------------------------------- /s5p-compress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilelomrani1/s5p-tools/HEAD/s5p-compress.py -------------------------------------------------------------------------------- /s5p-request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilelomrani1/s5p-tools/HEAD/s5p-request.py -------------------------------------------------------------------------------- /s5p_tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilelomrani1/s5p-tools/HEAD/s5p_tools/__init__.py -------------------------------------------------------------------------------- /s5p_tools/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilelomrani1/s5p-tools/HEAD/s5p_tools/utils.py --------------------------------------------------------------------------------