Metadata-Version: 2.1
Name: aef-nattanon-py
Version: 0.1.0
Summary: Demo library
Home-page: https://aef-nattanon-py-lib.readthedocs.io/
Author: Nattanon Saetan
Author-email: example@email.com
License: MIT
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# aef-nattanon-py-lib
## Install

```bash
$ pip install aefNattanon
```

## Simple Demo

```python
# See PyCharm help at https://www.jetbrains.com/help/pycharm/
# Import Multiplication from your library
import aef-nattanon-py as aef
from medium_multiply.multiplication import Multiplication
from my_example.photoExample import PhotoExample

# Instantiate a Multiplication object
multiplication = aef.Multiplication(2)

# Call the multiply method
print(multiplication.multiply(5))


byExample = aef.PhotoExample('coco.names', 'yolov3-tiny.cfg', 'yolov3-tiny.weights')
byExample.show_by_photo('my-photo.jpeg')

```

