Metadata-Version: 2.1
Name: aio-net-events
Version: 0.1.0
Summary: UNKNOWN
Home-page: https://github.com/ntamas/aio-net-events
Author: Tamás Nepusz
Author-email: ntamas@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Requires-Python: >=3.5
Description-Content-Type: text/markdown
Requires-Dist: anyio (>=1.2.0)
Requires-Dist: async-generator (>=1.10)
Requires-Dist: netifaces (>=0.10.9)
Provides-Extra: dev
Requires-Dist: curio (>=0.9) ; extra == 'dev'
Requires-Dist: pytest (>=5.2.4) ; extra == 'dev'
Requires-Dist: pytest-cov (>=2.0.1) ; extra == 'dev'
Requires-Dist: trio (>=0.13.0) ; extra == 'dev'
Requires-Dist: twine ; extra == 'dev'

# aio-net-events

`aio-net-events` is a Python library that provides asynchronous generators
yielding events when the network configuration of the machine changes.
Currently only network interface additions / removals and IP address additions /
removals are supported; more events may be added later.

Supports Windows, Linux and macOS at the moment.

Requires Python >= 3.5.

Works with [`asyncio`](https://docs.python.org/3/library/asyncio.html),
[`curio`](https://curio.readthedocs.io/en/latest/) and
[`trio`](https://trio.readthedocs.io/en/stable/).

## Installation

Use the package manager [pip](https://pip.pypa.io/en/stable/) to install
`aio-net-events`.

```bash
pip install aio-net-events
```

## Usage

## Contributing

Pull requests are welcome. For major changes, please open an issue first to
discuss what you would like to change.

Please make sure to update tests as appropriate.

## License

[MIT](https://choosealicense.com/licenses/mit/)


