Python client library for Readeck APIs
Project description
Readeck Python Client
A Python client library for the Readeck API, providing easy access to Readeck's bookmark and reading features.
Features
- Full async/await support
- Type hints with Pydantic models
- Comprehensive error handling
- Support for Python 3.10+
- Easy authentication with Bearer tokens
Installation
pip install readeck
Quick Start
import asyncio
from readeck import ReadeckClient
async def main():
client = ReadeckClient(
base_url="https://your-readeck-instance.com",
token="your-bearer-token"
)
# Get user profile
profile = await client.get_user_profile()
print(f"Welcome, {profile.user.username}!")
# Create a bookmark
result = await client.create_bookmark(
url="https://example.com/article",
title="Interesting Article",
labels=["reading", "tech"]
)
print(f"Bookmark created with ID: {result.bookmark_id}")
await client.close()
if __name__ == "__main__":
asyncio.run(main())
Authentication
The client uses Bearer token authentication. You can obtain your token from your Readeck instance's settings.
client = ReadeckClient(
base_url="https://your-readeck-instance.com",
token="your-bearer-token"
)
API Reference
User Profile
Get the current user's profile information:
profile = await client.get_user_profile()
Returns a UserProfile object containing:
- User information (username, email, creation date)
- Authentication provider details
- User settings and preferences
- Reader settings (font, font size, line height)
Bookmarks
Create Bookmark
Create a new bookmark:
# Minimal bookmark
result = await client.create_bookmark(url="https://example.com")
# Bookmark with title
result = await client.create_bookmark(
url="https://example.com/article",
title="Article Title"
)
# Bookmark with labels
result = await client.create_bookmark(
url="https://example.com/tutorial",
labels=["tutorial", "programming"]
)
# Complete bookmark
result = await client.create_bookmark(
url="https://example.com/complete",
title="Complete Example",
labels=["example", "complete", "demo"]
)
The create_bookmark method returns a BookmarkCreateResult object containing:
response: The API response with message and statusbookmark_id: The ID of the created bookmark (from response headers)location: The URL of the created resource (from response headers)
Get Bookmarks
Retrieve bookmarks with optional filtering:
# Get all bookmarks
bookmarks = await client.get_bookmarks()
# Get bookmarks with parameters
from readeck import BookmarkListParams
params = BookmarkListParams(
limit=10,
search="python",
labels="programming"
)
bookmarks = await client.get_bookmarks(params)
Development
This project uses uv for dependency management:
# Install dependencies
uv sync --dev
# Run tests
uv run pytest
# Run linting
uv run black src tests
uv run isort src tests
uv run flake8 src tests
uv run mypy src
# Run all checks
uv run pre-commit run --all-files
License
MIT License. See LICENSE for details.
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file readeck-0.1.0.tar.gz.
File metadata
- Download URL: readeck-0.1.0.tar.gz
- Upload date:
- Size: 10.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8fed3ef9636ae5b78afc7bffe814336b8ee6e1490692746dae9d55d3e34077be
|
|
| MD5 |
8d26ff433cc3a8971b2e519114e120bf
|
|
| BLAKE2b-256 |
c6a5c78957a5e386040b174162f2fa66cf1f96cbc1b48c6c3ea84c6dca2c8de7
|
File details
Details for the file readeck-0.1.0-py3-none-any.whl.
File metadata
- Download URL: readeck-0.1.0-py3-none-any.whl
- Upload date:
- Size: 9.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1b9111f3e569d629c325de75b302ce8eae601bc3d31f06cdc9fdcb01f08210ad
|
|
| MD5 |
5394f50b5ba7ce70dcc86a39952bb5b3
|
|
| BLAKE2b-256 |
df1e8b14c9a312ccc5a4e4e86d168c2d0144a74610fab5bbde584a83016eb5fc
|