Unofficial SDK for interacting with Bokio
Currently the project is in very early development and very little functionality can be used. But if you are eager to get stuff going, please consider helping out by contributing!
The simplest way to connect with the client is through credentials.
from pybokio import BokioClient
client = BokioClient(
company_id="00000000-0000-4000-0000-000000000000",
username="[email protected]",
password="your.password"
)
client.connect()
A preferred way to connect is to reuse the cookies after logging in with credentials.
Saving cookies from an existing session
import pickle
...
cookies = client.get_cookies()
with open('session.pickle', 'wb') as f:
pickle.dump(cookies, f)
Reusing cookies to connect again
from pybokio import BokioClient
import pickle
with open('session.pickle') as f:
cookies = pickle.load(f)
client = BokioClient.from_cookies(
company_id="00000000-0000-4000-0000-000000000000",
cookies=cookies
)
client.connect()
Contributions are always welcome!
To contribute, please take the following steps:
- Fork the repo
- Add your change
- Make a pull request with a short description of the change you're proposing.