Skip to main content

Add your description here

Project description

PySkoob

PyPI CI Python Versions License

PySkoob is a Python client that makes it easy to interact with the Skoob website. It takes care of authentication and HTML parsing so you can focus on your automation or data collection tasks.

Features

  • Search books by title, author or ISBN
  • Retrieve detailed book information and reviews
  • Access user profiles and reading statistics
  • Authenticate using email/password or an existing session cookie

Installation

Install the latest release from PyPI:

python -m pip install pyskoob

Or install the bleeding edge version from GitHub:

python -m pip install git+https://github.com/victor-soeiro/pyskoob.git

Authentication

You can authenticate in two different ways:

  1. Email and password

    from pyskoob import SkoobClient
    
    with SkoobClient() as client:
        me = client.auth.login(email="you@example.com", password="secret")
    
  2. Session cookie

    from pyskoob import SkoobClient
    
    with SkoobClient() as client:
        me = client.auth.login_with_cookies("PHPSESSID_TOKEN")
    

Once authenticated you can access all other services.

Usage example

Search for books

from pyskoob import SkoobClient
from pyskoob.models.enums import BookSearch

with SkoobClient() as client:
    results = client.books.search("Harry Potter", BookSearch.TITLE)
    for book in results.results:
        print(book.title, book.book_id)

Fetch book details

from pyskoob import SkoobClient

with SkoobClient() as client:
    book = client.books.get_by_id(1)  # replace with a real edition ID
    print(book.title, book.publisher.name)

Authenticate and access your profile

from pyskoob import SkoobClient

with SkoobClient() as client:
    # TIP: use environment variables or a secrets manager instead of hard-coding credentials
    me = client.auth.login(email="you@example.com", password="secret")
    print(me.name)

Running tests

Install the project in editable mode and run the test suite:

uv pip install -e .[dev]
pytest -vv

Contributing

  1. Fork the repository and create a branch for your feature.

  2. Install the dependencies in editable mode:

    uv pip install -e .[dev]
    
  3. Implement your change and add tests.

  4. Format your code with Ruff:

    ruff format .
    
  5. Ensure formatting and lint checks pass:

    ruff format --check .
    ruff check .
    
  6. Run pytest and ensure everything passes.

  7. Open a pull request describing your changes.

Learn more

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

pyskoob-0.1.14.tar.gz (31.3 kB view details)

Uploaded Source

Built Distribution

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

pyskoob-0.1.14-py3-none-any.whl (30.1 kB view details)

Uploaded Python 3

File details

Details for the file pyskoob-0.1.14.tar.gz.

File metadata

  • Download URL: pyskoob-0.1.14.tar.gz
  • Upload date:
  • Size: 31.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pyskoob-0.1.14.tar.gz
Algorithm Hash digest
SHA256 f97b5733acfb641a36556339096c445ed361846251f461b2d78a106b9587e161
MD5 d406728429eab31b2ee815ce439dd5cc
BLAKE2b-256 ce2bc56e9ae6eda4b9b96972b3b0713ce52d9a923ada15e79f41e5c0c468d26a

See more details on using hashes here.

File details

Details for the file pyskoob-0.1.14-py3-none-any.whl.

File metadata

  • Download URL: pyskoob-0.1.14-py3-none-any.whl
  • Upload date:
  • Size: 30.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pyskoob-0.1.14-py3-none-any.whl
Algorithm Hash digest
SHA256 17e613d2bd8f363f27d71bb2de85db69b9b79c18e21885f9361df6cb1f491bdc
MD5 80f08021aa5e12927930277076159e1a
BLAKE2b-256 23903a5c73ef42b770c42baa65fe80124f0dd14f90b298b03e32f0ad61874c9c

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page