SkillAgentSearch skills...

Kuro.py

Async API wrapper for KuroBBS written in Python

Install / Use

/learn @Wuthery/Kuro.py
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

kuro.py

Async API wrapper for KuroBBS and Waves game written in Python

Usage

Basic usage example:

import asyncio
import kuro

async def main() -> None:
    client = kuro.Client()
    login_result = await client.game_login("email@example.com", "password")
    print(login_result)

asyncio.run(main())

See tests for more examples.

Setting up the development environment

# Clone the repo
git clone https://github.com/Wuthery/kuro.py
cd kuro.py

# Install the dependencies
uv sync

# Install pre-commit
pre-commit install

Running tests

  1. Create a .env file in the root directory of the project and add your test account credentials:
    TEST_EMAIL=""
    TEST_PASSWORD=""
    
  2. Run the tests using pytest:
    pytest
    
View on GitHub
GitHub Stars23
CategoryDevelopment
Updated11d ago
Forks3

Languages

Python

Security Score

90/100

Audited on Mar 29, 2026

No findings