├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── dynamics365crm ├── __init__.py ├── client.py └── test.py ├── pyproject.toml └── test └── test_client.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GearPlug/dynamics365crm-python/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GearPlug/dynamics365crm-python/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.md 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GearPlug/dynamics365crm-python/HEAD/README.md -------------------------------------------------------------------------------- /dynamics365crm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dynamics365crm/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GearPlug/dynamics365crm-python/HEAD/dynamics365crm/client.py -------------------------------------------------------------------------------- /dynamics365crm/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GearPlug/dynamics365crm-python/HEAD/dynamics365crm/test.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GearPlug/dynamics365crm-python/HEAD/pyproject.toml -------------------------------------------------------------------------------- /test/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GearPlug/dynamics365crm-python/HEAD/test/test_client.py --------------------------------------------------------------------------------