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.12.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.12-py3-none-any.whl (30.0 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: pyskoob-0.1.12.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.12.tar.gz
Algorithm Hash digest
SHA256 06d8e599dca047463634daf0da224138f5058f945ccb5f44102c72a18ae065ab
MD5 ee35d45b3eee78f811e5626f2803e76e
BLAKE2b-256 3323c81505b9102d6e0b4d00466753e23f16dec6357ab3d90a38860d4b0ae845

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyskoob-0.1.12-py3-none-any.whl
  • Upload date:
  • Size: 30.0 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.12-py3-none-any.whl
Algorithm Hash digest
SHA256 67261aa4d6aaa2fab5623bebe6e14e3fd5762ef8522cfd2a10c1b0fed41c79e0
MD5 ddde1d06d95d969cf56e16239b22307c
BLAKE2b-256 78a1b3cd54552f43ff49e7055269d951c7d6e11a9ee207dc25eb9b6032e5a3b7

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