Python library for [Kuryana](https://github.com/tbdsux/kuryana) API.
Project description
kuryana
Python library for Kuryana API.
Install
# pip
pip install kuryana
# uv
uv add kuryana
Development
# install deps
uv sync
Usage
Clients are built on top of httpx
from kuryana import Kuryana
client = Kuryana()
if __name__ == "__main__":
response = client.get()
print(response.message)
assert "MDL Scraper API" in response.message
print("\n\n")
search = client.search("goblin")
for drama in search.results.dramas:
print(f"{drama.title} - {drama.year}")
Async Client
import asyncio
from kuryana import AsyncKuryana
client = AsyncKuryana()
async def main():
response = await client.get()
print(response.message)
assert "MDL Scraper API" in response.message
print("\n\n")
search = await client.search("goblin")
for drama in search.results.dramas:
print(f"{drama.title} - {drama.year}")
if __name__ == "__main__":
asyncio.run(main())
© 2025 | tbdsux
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
kuryana-0.1.0.tar.gz
(4.5 kB
view details)
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
kuryana-0.1.0-py3-none-any.whl
(10.3 kB
view details)
File details
Details for the file kuryana-0.1.0.tar.gz.
File metadata
- Download URL: kuryana-0.1.0.tar.gz
- Upload date:
- Size: 4.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.8.22
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0d6b690d75c4aa63066d12ca53ae8f777d891f711bbd4a8d08b7710cf1056fc3
|
|
| MD5 |
595c76187a5922c1c89279981bd5d90c
|
|
| BLAKE2b-256 |
5b623b30c5d9c942e9e0c2e1e249b9cd4143ea47f14e2f25f8ce59bc7716ecee
|
File details
Details for the file kuryana-0.1.0-py3-none-any.whl.
File metadata
- Download URL: kuryana-0.1.0-py3-none-any.whl
- Upload date:
- Size: 10.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.8.22
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dbc1624aa21ba3a9968bcf9649b3e4dc2e62f80dd550fa397016b18357e84a21
|
|
| MD5 |
a4b461a78b5a27255f6613e4f2223293
|
|
| BLAKE2b-256 |
0a25a1128fa6fba2b54510e44f66acac0cce0d9aa5b1fda5d186e1b8c9d13251
|