{"id":19640205,"url":"https://github.com/gearplug/agilecrm-python","last_synced_at":"2026-06-10T06:45:27.877Z","repository":{"id":57408576,"uuid":"110033767","full_name":"GearPlug/agilecrm-python","owner":"GearPlug","description":"agilecrm is an API wrapper for Agile CRM written in Python","archived":false,"fork":false,"pushed_at":"2023-03-28T15:23:40.000Z","size":32,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-08-15T00:42:28.337Z","etag":null,"topics":["agile","agilecrm","api","api-wrapper","crm","library","python","wrapper"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/GearPlug.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-11-08T21:41:57.000Z","updated_at":"2022-12-06T19:09:39.000Z","dependencies_parsed_at":"2025-01-10T10:54:01.673Z","dependency_job_id":null,"html_url":"https://github.com/GearPlug/agilecrm-python","commit_stats":null,"previous_names":["gearplug/agilecrm"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/GearPlug/agilecrm-python","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GearPlug%2Fagilecrm-python","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GearPlug%2Fagilecrm-python/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GearPlug%2Fagilecrm-python/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GearPlug%2Fagilecrm-python/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/GearPlug","download_url":"https://codeload.github.com/GearPlug/agilecrm-python/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GearPlug%2Fagilecrm-python/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34140774,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-10T02:00:07.152Z","response_time":89,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["agile","agilecrm","api","api-wrapper","crm","library","python","wrapper"],"created_at":"2024-11-11T14:05:01.484Z","updated_at":"2026-06-10T06:45:27.859Z","avatar_url":"https://github.com/GearPlug.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# agilecrm-python\n\nagilecrm is an API wrapper for Agile CRM written in Python\n\n## Installing\n```\npip install agilecrm-python\n```\n\n## Usage\n```\nfrom agilecrm.client import Client\n\nclient = Client('API_KEY', 'EMAIL', 'DOMAIN')\n```\n\nCreate contact\n```\ncontact_data = {\n    \"star_value\": \"4\",\n    \"lead_score\": \"92\",\n    \"tags\": [\n        \"Lead\",\n        \"Likely Buyer\"\n    ],\n    \"properties\": [\n        {\n            \"type\": \"SYSTEM\",\n            \"name\": \"first_name\",\n            \"value\": \"Los \"\n        },\n        {\n            \"type\": \"SYSTEM\",\n            \"name\": \"last_name\",\n            \"value\": \"Bruikheilmer\"\n        },\n        {\n            \"type\": \"SYSTEM\",\n            \"name\": \"company\",\n            \"value\": \"steady.inc\"\n        },\n        {\n            \"type\": \"SYSTEM\",\n            \"name\": \"title\",\n            \"value\": \"VP Sales\"\n        },\n        {\n            \"type\": \"SYSTEM\",\n            \"name\": \"email\",\n            \"subtype\": \"work\",\n            \"value\": \"akrambakram@yabba.com\"\n        },\n        {\n            \"type\": \"SYSTEM\",\n            \"name\": \"address\",\n            \"value\": \"{\\\"address\\\":\\\"225 George Street\\\",\\\"city\\\":\\\"NSW\\\",\\\"state\\\":\\\"Sydney\\\",\\\"zip\\\":\\\"2000\\\",\\\"country\\\":\\\"Australia\\\"}\"\n        },\n        {\n            \"type\": \"CUSTOM\",\n            \"name\": \"My Custom Field\",\n            \"value\": \"Custom value\"\n        }\n    ]\n}\n\nresponse = client.create_contact(contact_data)\n```\n\nGet contact by id\n```\nresponse = client.get_contact_by_id('5685265389584384')\n```\n\nGet contact by email\n```\nresponse = client.get_contact_by_email('akrambakram@yabba.com')\n```\n\nUpdate contact\n```\nupdate_contact_data = {\n    \"id\": \"5685265389584384\",\n    \"properties\": [\n        {\n            \"type\": \"SYSTEM\",\n            \"name\": \"last_name\",\n            \"value\": \"Chan\"\n        },\n        {\n            \"type\": \"CUSTOM\",\n            \"name\": \"My Custom Field\",\n            \"value\": \"Custom value chane\"\n        }\n    ]\n}\nresponse = client.update_contact(update_contact_data)\n```\n\nSearch contacts\n```\nimport json\n\nmyjson = {\n    \"rules\": [{\"LHS\": \"created_time\", \"CONDITION\": \"BETWEEN\", \"RHS\": 1510152185.779954, \"RHS_NEW\": 1510238585.779877}],\n    \"contact_type\": \"PERSON\"}\n    \nresponse = client.search(\n    {'page_size': 25,\n    'global_sort_key': '-created_time',\n    'filterJson': json.dumps(myjson)\n})\n```\n\n\n## Requirements\n- requests\n\n## Tests\n```\npython tests/test_client.py\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgearplug%2Fagilecrm-python","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgearplug%2Fagilecrm-python","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgearplug%2Fagilecrm-python/lists"}