Kuro.py
Async API wrapper for KuroBBS written in Python
Install / Use
/learn @Wuthery/Kuro.pyREADME
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
- Create a
.envfile in the root directory of the project and add your test account credentials:TEST_EMAIL="" TEST_PASSWORD="" - Run the tests using pytest:
pytest
