Python wrapper around the dotloop API.
Project description
dotloop-python
Python wrapper around the dotloop API.
Quick Start
Authenticate
Start by getting access and refresh tokens.
from dotloop import Authenticate
auth = Authenticate('dotloop-client-id', 'dotloop-client-secret')
url = auth.url_for_authentication('https://example.com/redirect/')
...
# code is received
with auth:
response = auth.acquire_access_and_refresh_tokens(code, 'https://example.com/redirect/')
# response is a dictionary:
# {
# "access_token": "...",
# "token_type": "Bearer",
# "refresh_token": "...",
# "expires_in": ...,
# "scope": "..."
# }
Client
Then use the access token acquired to create a Client
object.
access_token = response['access_token']
client = Client(access_token)
From the Client
object, you can now access dotloop data.
For example, get data about all profiles
client.profile.get() # -> Dict
or get data about a specific profile
client.profile(<profile_id>).get()
or get all loops associated with a profile
client.profile(<profile_id>).loop.get()
or get all folders in a specific loop
client.profile(<profile_id>).loop(<loop_id>).folder.get()
or update a participant on a specific loop
client.profile(<profile_id>).loop(<loop_id>).participant(<participant_id>).patch(email='newemail@example.com')
Design Philosophy
All items accessible in the dotloop API follow a hierarchical structure (i.e. profiles have loops which have folders which have documents) as represented like this:
- Account
- Contact
- LoopIt
- Profile
- LoopTemplate
- Loop
- Activity
- Participant
- Detail
- TaskList
- Task
- Folder
- Document
The design of this wrapper was intended to emulate that while providing idiomatic ways of quickly accessing data. Endpoints and their HTTP methods are easily translated to python code.
Accessing
PATCH /profile/1/loop/1/folder/1
with data
{
"name": "Disclosures (renamed)"
}
translates seamlessly to
client.profile(1).loop(1).folder(1).patch(name='Disclosures (renamed)')
Note: if data keys ever have spaces then those keys can be included by unpacking a dictionary e.g.
client.profile(1).loop(1).detail.patch(**{'Property Information': {...}})
Inspiration was taken from dotloop-ruby and sendgrid-python.
Links
To-Do
- Account
- .get
- Activity
- .get
- Contact
- .delete
- .get
- .patch
- .post
- Detail
- .get
- .patch
- Document
- .get
- .post
- Folder
- .get
- .patch
- .post
- Loop
- .get
- .patch
- .post
- LoopIt
- .post
- LoopTemplate
- .get
- Participant
- .delete
- .get
- .patch
- .post
- Profile
- .get
- .patch
- .post
- Task
- .get
- TaskList
- .get
Disclaimer
I do not work for dotloop.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file dotloop-python-0.0.5.tar.gz
.
File metadata
- Download URL: dotloop-python-0.0.5.tar.gz
- Upload date:
- Size: 7.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ce339cff757f7dca844e1a2a83df911aa693b5ec9702451adc8a4567da179415 |
|
MD5 | b563f61671791975f1709f4729c2194c |
|
BLAKE2b-256 | 962d470c0f8341fb5ff6404906166b4612636c182585dcffbc3b495f185fca6b |
File details
Details for the file dotloop_python-0.0.5-py3-none-any.whl
.
File metadata
- Download URL: dotloop_python-0.0.5-py3-none-any.whl
- Upload date:
- Size: 10.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8cea00d692c10eafeb46d89bfcd6824376149a2345af61c778eb0f3f49e0c60b |
|
MD5 | 36b2652182c1cf25c5117723988909a1 |
|
BLAKE2b-256 | 262abf33ab73254d3824ae19a6158c6e5b47601113f2d30972aa8d9cfdb25225 |