Metadata-Version: 2.1
Name: hello_name
Version: 0.0.1
Summary: python package to print name with hello
Home-page: https://github.com/PrathamBapat/hello_name/tree/main/
Author: Prathamesh Bapat
Author-email: pbapat3@uic.edu
License: Apache Software License 2.0
Keywords: hello world
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: License :: OSI Approved :: Apache Software License
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# Hello Name
> Print names with hello


## Install

`pip install hello_name`

## How to use

`Enter the name when calling the function hello_name`

`Enter the name when calling the class HelloSayer and then print it via say()`


## Examples

```python
hello_name('world')
```




    'hello world'



```python
a = HelloSayer('a')
a.say()
```




    'hello a'




