Unofficial API Client for GoGov CRM
Project description
gogov
Unofficial API Client for GoGov CRM
install
pip install gogov
basic CLI usage
gogov export-requests --email="jdoe@fakecity.gov" --password="2c56477e97ab8b2d180a6513" --site="fakecityXYZ" --city-id="123" $PWD/requests.csv
basic Python usage
from gogov import Client
# client automatically logs in when initialized
client = Client(
username = "jdoe",
password = "2c56477e97ab8b2d180a6513",
site = "fakecityXYZ",
city_id = "123"
)
## download csv of all requests to a file
client.export_requests("requests.csv")
## Submit a 311 request
location = {
"shortAddress": "123 Any Street, Anytown, TN, 12345",
"coordinates": {
"longitude": -12.345678
"latitude": 87.654321
}
}
# Use "fields" for any additional necessary fields
client.submit_request(
topic_id="12345"
location=location,
description="Test"
contact_id=1234567
assigned_to_id=7654321
fields = [{"id": "field1", "value": "value1"}, {"id": "field2", "value": "value2}]
)
## log out
client.logout()
advanced usage
coming soon
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
gogov-0.8.0.tar.gz
(17.9 kB
view details)
File details
Details for the file gogov-0.8.0.tar.gz.
File metadata
- Download URL: gogov-0.8.0.tar.gz
- Upload date:
- Size: 17.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8d4866f824bb3092ce90d8d35f20aa0a82b97a476b0e5112dc1b0dc879215fb3
|
|
| MD5 |
5e46a25ab4503e2818e72aa103cae723
|
|
| BLAKE2b-256 |
517e81f7f54349b5c44dffd904292ceca3238ea9120c590a29d5b68133eb1fec
|