Metadata-Version: 2.4
Name: wzrdbrain
Version: 0.1.3
Summary: A simple library to generate random trick combinations for wizard skating.
Project-URL: Homepage, https://github.com/nazroll/wzrdbrain
Project-URL: Documentation, https://github.com/nazroll/wzrdbrain#readme
Project-URL: Repository, https://github.com/nazroll/wzrdbrain
Project-URL: Issues, https://github.com/nazroll/wzrdbrain/issues
Author: nazroll
License-Expression: Apache-2.0
License-File: LICENSE
Keywords: generator,inline skating,random,tricks,wizard skating
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Games/Entertainment
Classifier: Topic :: Software Development :: Libraries
Classifier: Typing :: Typed
Requires-Python: >=3.9
Provides-Extra: dev
Requires-Dist: black>=24.3; extra == 'dev'
Requires-Dist: build>=1.2; extra == 'dev'
Requires-Dist: mypy>=1.10; extra == 'dev'
Requires-Dist: pytest>=8; extra == 'dev'
Requires-Dist: ruff>=0.5; extra == 'dev'
Description-Content-Type: text/markdown

# wzrdbrain

A simple library to generate random trick combinations for wizard skating.

## Installation

```bash
pip install wzrdbrain
```

## Usage

```python
from wzrdbrain import generate_trick, generate_combo

# Generate a single trick as a list of its parts
print(generate_trick())
# Example output: ['front', 'open', 'lion']

# Generate a line of multiple tricks as formatted strings
print(generate_combo(3))
# Example output: ['front parallel', 'fakie toe press', 'forward 360']
```

## List of wizard skating tricks

The list of tricks in this library is not comprehensive. Please create an issue and give us your suggestions of new tricks to be added.

## Contributing

Contributions are welcome! Please see the [Contributing Guide](CONTRIBUTING.md) for details on how to set up your development environment, run tests, and submit changes.
