Tiima Web Controller
Project description
This library can be used to control the Tiima web UI through a simple Python API. It uses MechanicalSoup for mimicing browser actions.
Installing
TiimaWeb is in PyPI and can be installed simply by:
pip install tiimaweb
or if you use Poetry:
poetry add tiimaweb
Usage
The library can be used from Python code like this:
from datetime import date, datetime import tiimaweb client = tiimaweb.Client() with client.login('username', 'password', 'company') as tiima: # Get all time blocks of 2020-02-29 time_blocks = tiima.get_time_blocks_of_date(date(2020, 2, 29)) # Print and delete all those time blocks for time_block in time_blocks: print(time_block) tiima.delete_time_block(time_block) # Add new time block tiima.add_time_block( start=datetime(2020, 3, 1, 8, 30), end=datetime(2020, 3, 1, 11, 45))
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
tiimaweb-0.4.0.tar.gz
(9.2 kB
view hashes)
Built Distribution
Close
Hashes for tiimaweb-0.4.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a4fe1b7f262417a7e1042544760782229b05f2a6649e60dae9381e8b3b06906c |
|
MD5 | 48dd291887095fc5517731da99c878de |
|
BLAKE2-256 | 9ef660b17cbae88b512fcc6eaaa2ec24aefc716a1912dcd6cba259c8e50067d1 |