Skip to main content

UPDATE

because of heavy anti-bot protection, it is more difficult to make a fully automatic login on a headless device. If one is not on a headless device, it will login using seleniubbase, but you might have to install chromium browser. On a headless device, one needs to install xvfb to simulate a non-headless device. Alternatively, on can import manually a refresh token. It can be used to get a new access token, (for example regulary witha cronjob), but it will eventually expire after 10 hours.

pytolino

A client to interact (login, upload, delete ebooks, etc..) with the tolino cloud with python. thanks to https://github.com/darkphoenix/tolino-calibre-sync for the inspiration.

One difference is that I aim to create a python package from it and to put it on pypi, so that one can use this python module in other projects.

Installation

pip install pytolino

Usage

First, one need to login. if chromium browser is installed and there is a monitor, it can be done automaticaly:

from pytolino.tolino_cloud import Client
partner = 'orellfuessli'  # or 'thalia' / 'thalia_at'
client = Client(username='USERNAME', server_name=partner)
client.login('PASSWORD')

if this is the first login on the device, it will use selenium and store an access token on the device.

On a headless device, this will work only if xvfb is installed.

Alternatively, one can instead import a refresh token: First, login manually with another device, and use an inspector tool in the browser to inspect the requests. After connecting to the digital libray of tolino, there is POST request (named token). From the request response, copy the value of the refresh token. Then, in a PATCH request, in the request header, find the device_id number.

You can then import the token:

client = Client(username='USERNAME')
print('please login manually and use inspector tool to find refresh token'
      ' in a token request')
refresh_token = input('refresh login: ')
print('find the hardware id in the request header '
      'of a patch request for example')
hardware_id = input('hardware id: ')
client.import_token(refresh_token, hardware_id)
client.login('PASSWORD', allow_GUI_autologin=False)  # seleniumbase will not be used

After this, the login will method will only refresh the access token for on hour, and you can work with the libraty:

try:
    client.login(password)
except PytolinoException as e:
    print(e)
else:
    ebook_id = client.upload(EPUB_FILE_PATH) # return a unique id that can be used for reference
    client.add_collection(epub_id, 'science fiction') # add the previous book to the collection science-fiction
    client.add_cover(epub_id, cover_path) # to upload a cover on the book.
    client.delete_ebook(epub_id) # delete the previousely uploaded ebook
    inventory = client.get_inventory() # get a list of all the books on the cloud and their metadata
    client.upload_metadata(epub_id, title='my title', author='someone') # you can upload various kind of metadata

To get a list of the supported partners:

from pytolino.tolino_cloud import PARTNERS
print(PARTNERS)

Supported partners currently include orellfuessli, thalia and thalia_at. Thalia uses the same Tolino backend endpoints as Orell Füssli, but the login flow is partner-specific.

Features

  • upload ebook

  • delete ebook from the cloud

  • add a book to a collection

  • download inventory

  • upload metadata

License

The project is licensed under GNU GENERAL PUBLIC LICENSE v3.0

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pytolino-3.6.tar.gz (845.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pytolino-3.6-py3-none-any.whl (24.8 kB view details)

Uploaded Python 3

File details

Details for the file pytolino-3.6.tar.gz.

File metadata

  • Download URL: pytolino-3.6.tar.gz
  • Upload date:
  • Size: 845.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for pytolino-3.6.tar.gz
Algorithm Hash digest
SHA256 4a1577f89cdda6ac396b932b1db95f854269bee1298e8b4a7d5f1322e666b353
MD5 9e1adb3850d957fed60fc43b3e310736
BLAKE2b-256 689b9b9e5944eb0667c17ea2e680fed89e0eda698cf9b7b6837cfa3e86894d37

See more details on using hashes here.

File details

Details for the file pytolino-3.6-py3-none-any.whl.

File metadata

  • Download URL: pytolino-3.6-py3-none-any.whl
  • Upload date:
  • Size: 24.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for pytolino-3.6-py3-none-any.whl
Algorithm Hash digest
SHA256 82a89b12111ac690ec4cd5bb5ecbdbaa92638d0087eb8c240730a6f9f32323b6
MD5 0f11db334631768b852dbf23b774b70e
BLAKE2b-256 49a863c6670e62cf381f9d294584b6d1cf2b317323692b089bc22afb8882cf87

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

3.6 This release

2 files

3.4

2 files

3.3

2 files

3.2

2 files

3.1

2 files

3

2 files

2.8

2 files

2.7

2 files

2.6

2 files

2.5

2 files

2.4

2 files

2.3

2 files

2.2

2 files

2.1

2 files

2.0

2 files

1.7

2 files

1.6

2 files

1.5

2 files

1.4

2 files

1.2

2 files

1.1

2 files

1.0

2 files

0.1.5

2 files

0.1.4

2 files

0.1.2

2 files

0.1.1

2 files

0.1

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page