Metadata-Version: 2.1
Name: hello_python_world
Version: 0.0.9
Summary: A Hello World Python module
Home-page: https://github.com/mbiemann/hello-python-world
Author: Marcell Biemann
Author-email: mbiemann@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/mbiemann/hello-python-world/issues
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
License-File: LICENSE

# Hello Python World

> Marcell Biemann - 2021

All the best practices, design patterns, good manners and references of Python programming language, by me, until now.

```bash
$ pip install -U hello-python-world
```

```python
from hello_python_world import HelloPythonWorld

HelloPythonWorld().message() # -->> 'Hello Python World'

HelloPythonWorld('OPEN-SOURCE').message() # -->> 'Hello OPEN-SOURCE World'
```


