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

Uploaded Python 3

File details

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

File metadata

  • Download URL: pyskoob-0.1.17.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.17.tar.gz
Algorithm Hash digest
SHA256 9c0ec79ef260eabc35f0822b7fb61084f570d02605e092b5b7c5cedae674c344
MD5 ad818e58d1cf8dc172fcf34c993445dd
BLAKE2b-256 78624a9fd610bee9fb2e6b4884c5324b8a46494f49ff02c8d215da24cdb88c4d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyskoob-0.1.17-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.17-py3-none-any.whl
Algorithm Hash digest
SHA256 a3254a621dc0442ba308373e8ebad2c6193dc815184c15dd87059dcfd0bb1181
MD5 9be9000e63c8101e831f5736eccd87b0
BLAKE2b-256 88ad306808ecd7ffba31c7edff28463691a628bb448ddebd8a10121810948511

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