Metadata-Version: 2.1
Name: amselpy
Version: 0.1.4
Summary: Take control of you Amsel bot.
Home-page: https://github.com/baumeise/amselpy.git
Author: Moritz Gut
Author-email: hello@moritzgut.de
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# AmselPy

### Usage
Install package from pip:
```sh
pip install amselpy
```

Use it in your project:
``` python
# import library
from amselpy import Amsel

# create instance
amsel = Amsel()

# set adress
amsel.use("<YOUR-AMSELS-IP>")

# control movements
amsel.forward()
amsel.sleep(5)
amsel.stop()
```
### Documentation
For further information read the [documentation](https://baumeise.github.io/amsel/docs).

### License
[MIT License](https://github.com/baumeise/amselpy/blob/master/LICENSE) | Copyright © 2019 Moritz Gut (moritzgvt)


