├── .gitignore ├── DESCRIPTION.rst ├── LICENSE ├── MANIFEST.in ├── README.md ├── ga4mp ├── __init__.py ├── event.py ├── ga4mp.py ├── item.py ├── store.py └── utils.py ├── main.py ├── pyproject.toml ├── setup.py └── tests ├── test_All_imports.py ├── test_GtagMP_internal_param_functions.py ├── test_GtagMP_internal_property_functions.py ├── test_GtagMP_internal_utility_functions.py └── test_GtagMP_validation_hits.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adswerve/GA4-Measurement-Protocol-Python/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adswerve/GA4-Measurement-Protocol-Python/HEAD/DESCRIPTION.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adswerve/GA4-Measurement-Protocol-Python/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include DESCRIPTION.rst 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adswerve/GA4-Measurement-Protocol-Python/HEAD/README.md -------------------------------------------------------------------------------- /ga4mp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adswerve/GA4-Measurement-Protocol-Python/HEAD/ga4mp/__init__.py -------------------------------------------------------------------------------- /ga4mp/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adswerve/GA4-Measurement-Protocol-Python/HEAD/ga4mp/event.py -------------------------------------------------------------------------------- /ga4mp/ga4mp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adswerve/GA4-Measurement-Protocol-Python/HEAD/ga4mp/ga4mp.py -------------------------------------------------------------------------------- /ga4mp/item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adswerve/GA4-Measurement-Protocol-Python/HEAD/ga4mp/item.py -------------------------------------------------------------------------------- /ga4mp/store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adswerve/GA4-Measurement-Protocol-Python/HEAD/ga4mp/store.py -------------------------------------------------------------------------------- /ga4mp/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adswerve/GA4-Measurement-Protocol-Python/HEAD/ga4mp/utils.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adswerve/GA4-Measurement-Protocol-Python/HEAD/main.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adswerve/GA4-Measurement-Protocol-Python/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adswerve/GA4-Measurement-Protocol-Python/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_All_imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adswerve/GA4-Measurement-Protocol-Python/HEAD/tests/test_All_imports.py -------------------------------------------------------------------------------- /tests/test_GtagMP_internal_param_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adswerve/GA4-Measurement-Protocol-Python/HEAD/tests/test_GtagMP_internal_param_functions.py -------------------------------------------------------------------------------- /tests/test_GtagMP_internal_property_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adswerve/GA4-Measurement-Protocol-Python/HEAD/tests/test_GtagMP_internal_property_functions.py -------------------------------------------------------------------------------- /tests/test_GtagMP_internal_utility_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adswerve/GA4-Measurement-Protocol-Python/HEAD/tests/test_GtagMP_internal_utility_functions.py -------------------------------------------------------------------------------- /tests/test_GtagMP_validation_hits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adswerve/GA4-Measurement-Protocol-Python/HEAD/tests/test_GtagMP_validation_hits.py --------------------------------------------------------------------------------