python-api-client
python-api-client copied to clipboard
Python API Client for Kanboard
I am trying to use a self signed cert and my script is unable to verify: SSL: CERTIFICATE_VERIFY_FAILED Any suggestions will be appreciated !
When I try to update a due date via the update_task it failes every time. When I try to change the Color everything works. example: kb.update_task(id=task_id,date_due="2021-01-26T00:00:00") Kanboard Version is latest...
Greetings! Nice wrapper But in my use case I need to use custom user-agent header for access If you ok with this feature request I will provide PR
Dates are returned as strings. The should be returned as datetime objects. Here is the data from a project: {'priority_end': '3', 'is_everybody_allowed': '0', 'is_public': '0', 'owner_id': '0', 'predefined_email_subjects': None, 'show_default_swimlane':...
Integers are returned as strings. They should be returned as type int. Here is the data from a project: {'priority_end': '3', 'is_everybody_allowed': '0', 'is_public': '0', 'owner_id': '0', 'predefined_email_subjects': None, 'show_default_swimlane':...
Can't get the following to work(adjusted for my url): import kanboard kb = kanboard.Client('http://localhost/jsonrpc.php', 'jsonrpc', 'your_api_token') project_id = kb.create_project(name='My project') task_id = kb.create_task(project_id=project_id, title='My task title') Tried from kanboard import...
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 4 to 5. Release notes Sourced from actions/setup-python's releases. v5.0.0 What's Changed In scope of this release, we update node version runtime from node16 to node20 (actions/setup-python#772)....
I cannot get the API to connect to my kanboard. Everything I've tried leads me to a 401, except using curl. Curl only works if I use X-API-Auth. I don't...