No project description provided
Project description
py_wrike_v4
A python wrapper for the Wrike API V4. This wrapper provides convenience methods for accessing Wrike's API endpoints. Be sure to familiarize yourself with their documentation here before using this package. Wrike uses unique IDs to identify any of their data objects. These IDs are what's used to make requests to the Wrike API. Consider the example where you'd like to query a folder/project
but only know its title. You may first need to query all folders in the workspace then determine the folder ID by matching the title. You can then use that folder ID to perform additional queries. This package provides some methods so simplify that flow in some cases.
Getting Started
To get started, all you need to provide is the base API endpoint and a permanent access token. You can find documentation on how to acquire a permanent access token here.
from _py_wrike_v4 import Wrike
wrike = Wrike(BASE_URL, PERM_ACCESS_TOKEN, SSL_VERIFY)
The SSL_VERIFY
parameter can be set to False
during testing but should be set to True
in production.
Wrike Object
Once you've got a valid Wrike
object, you're ready to get started!
Getter Properties
The Wrike object performs some internal caching on these properties to reduce the number of API calls it may need to make. Upon querying wrike for a certain data type, this library may first retrieve all objects of that data type and store it internally. Then, if you're searching for a specific object, it will extract it from that cache. If you ever need to clear this cache, simple call wrike.reinitialize()
.
contacts
- A dictionary containing all contacts in the workspacecustom_fields
- A dictionary containing all custom fields used by projects in the workspacefolders
- A dictionary containing all folders in the workspace. Includes all subtrees
Query Methods
The following queries are available in the Wrike object.
- Contacts
- query_contacts
- query_contacts_all
- query_contacts_me
- Custom Fields
- query_custom_fields
- query_custom_fields_all
- Folders
- query_folders
- query_folders_all
- query_folder_by_title
- query_folder_subtrees
- query_folder_subtrees_by_title
- Groups
- query_group
- query_groups_all
- Tasks
- query_tasks
- query_tasks_all
- query_tasks_in_folder
- Users
- query_user
Contributing
Currently, this package only provides a small set of query methods. You can refer to the Wrike API documentation for a full list of functionality that they provide. The main file for adding convenience methods is wrike.py
. Feel free to create a PR if you'd like to add any additional functionality.
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
File details
Details for the file py_wrike_v4-0.15.tar.gz
.
File metadata
- Download URL: py_wrike_v4-0.15.tar.gz
- Upload date:
- Size: 5.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f75567d4618726f8da6e4266206717628fb0c9eb2c6d6d99b859b2ddf1617651 |
|
MD5 | 629578e4e36bff0653c68051395e2e8e |
|
BLAKE2b-256 | d99602017b0cedeef6fde19d5d59a321131b1b2a8258317680677ead03b724fe |