├── .gitignore ├── CONTRIBUTING ├── LICENSE ├── README.md ├── gav4 ├── README.md ├── __init__.py └── gav4.py ├── setup.cfg ├── setup.py └── tests ├── README.md ├── __init__.py ├── data.py └── test_gav4.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleanalytics/gav4-python/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleanalytics/gav4-python/HEAD/CONTRIBUTING -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleanalytics/gav4-python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleanalytics/gav4-python/HEAD/README.md -------------------------------------------------------------------------------- /gav4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleanalytics/gav4-python/HEAD/gav4/README.md -------------------------------------------------------------------------------- /gav4/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | from .gav4 import * 3 | -------------------------------------------------------------------------------- /gav4/gav4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleanalytics/gav4-python/HEAD/gav4/gav4.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | 4 | [metadata] 5 | description-file = README.md 6 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleanalytics/gav4-python/HEAD/setup.py -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleanalytics/gav4-python/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | -------------------------------------------------------------------------------- /tests/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleanalytics/gav4-python/HEAD/tests/data.py -------------------------------------------------------------------------------- /tests/test_gav4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleanalytics/gav4-python/HEAD/tests/test_gav4.py --------------------------------------------------------------------------------