Metadata-Version: 2.1
Name: async-wiiload
Version: 1.0.0
Summary: library for sending executables to Wii's Homebrew Channel
Home-page: https://github.com/henriquegemignani/async-wiiload
Author: Henrique Gemignani
License: License :: OSI Approved :: Apache Software License
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Provides-Extra: test
Requires-Dist: pytest ; extra == 'test'
Requires-Dist: pytest-cov ; extra == 'test'
Requires-Dist: pytest-asyncio ; extra == 'test'
Requires-Dist: pytest-mock ; extra == 'test'
Requires-Dist: mock (>=4.0) ; extra == 'test'

# async-wiiload

This package implements the Wiiload client side, using asyncio sockets.

See Wiibrew's [Wiiload](http://wiibrew.org/wiki/Wiiload) for more details.



## Usage

```python

import wiiload
await wiiload.upload_file("homebrew.dol", [], "192.168.1.2")

```

