├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── pipedrive ├── __init__.py ├── activities.py ├── client.py ├── deals.py ├── exceptions.py ├── filters.py ├── items.py ├── leads.py ├── notes.py ├── organizations.py ├── persons.py ├── pipelines.py ├── products.py ├── recents.py ├── stages.py ├── subscriptions.py ├── users.py └── webhooks.py └── pyproject.toml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GearPlug/pipedrive-python/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GearPlug/pipedrive-python/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.md 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GearPlug/pipedrive-python/HEAD/README.md -------------------------------------------------------------------------------- /pipedrive/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pipedrive/activities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GearPlug/pipedrive-python/HEAD/pipedrive/activities.py -------------------------------------------------------------------------------- /pipedrive/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GearPlug/pipedrive-python/HEAD/pipedrive/client.py -------------------------------------------------------------------------------- /pipedrive/deals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GearPlug/pipedrive-python/HEAD/pipedrive/deals.py -------------------------------------------------------------------------------- /pipedrive/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GearPlug/pipedrive-python/HEAD/pipedrive/exceptions.py -------------------------------------------------------------------------------- /pipedrive/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GearPlug/pipedrive-python/HEAD/pipedrive/filters.py -------------------------------------------------------------------------------- /pipedrive/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GearPlug/pipedrive-python/HEAD/pipedrive/items.py -------------------------------------------------------------------------------- /pipedrive/leads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GearPlug/pipedrive-python/HEAD/pipedrive/leads.py -------------------------------------------------------------------------------- /pipedrive/notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GearPlug/pipedrive-python/HEAD/pipedrive/notes.py -------------------------------------------------------------------------------- /pipedrive/organizations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GearPlug/pipedrive-python/HEAD/pipedrive/organizations.py -------------------------------------------------------------------------------- /pipedrive/persons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GearPlug/pipedrive-python/HEAD/pipedrive/persons.py -------------------------------------------------------------------------------- /pipedrive/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GearPlug/pipedrive-python/HEAD/pipedrive/pipelines.py -------------------------------------------------------------------------------- /pipedrive/products.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GearPlug/pipedrive-python/HEAD/pipedrive/products.py -------------------------------------------------------------------------------- /pipedrive/recents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GearPlug/pipedrive-python/HEAD/pipedrive/recents.py -------------------------------------------------------------------------------- /pipedrive/stages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GearPlug/pipedrive-python/HEAD/pipedrive/stages.py -------------------------------------------------------------------------------- /pipedrive/subscriptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GearPlug/pipedrive-python/HEAD/pipedrive/subscriptions.py -------------------------------------------------------------------------------- /pipedrive/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GearPlug/pipedrive-python/HEAD/pipedrive/users.py -------------------------------------------------------------------------------- /pipedrive/webhooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GearPlug/pipedrive-python/HEAD/pipedrive/webhooks.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GearPlug/pipedrive-python/HEAD/pyproject.toml --------------------------------------------------------------------------------