Metadata-Version: 2.4
Name: hi_humans
Version: 0.0.3
Summary: collection of biblical humans and their family relations
Project-URL: Homepage, https://github.com/MariyaSha/humans
Project-URL: Issues, https://github.com/MariyaSha/humans
Author-email: Mariya Sha <mariya@pythonsimplified.org>
License-File: LICENSE
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.0
Description-Content-Type: text/markdown

# hi_Humans Library
a Python collection of biblical humans and their family relations.
<br>
Please note, this is the source code of version 0.0.1, which is the starter file for my "Create Python Package" tutorial on YouTube:
<br>
https://youtu.be/9Ii34WheBOA

## Quickstart
the library provides different scopes of information

### Father Objects
a set of classes that represent biblical fathers, such as Abraham, Isaac and Jacob.

```
from hi_humans import hebrews


abraham = hebrews.Abraham()
print(abraham.__dict__)
```
### List of Humans
on a broader scope, the library traces different categories of humans, such as fathers, mothers and children.
```
from hi_humans import hebrews

heb_mothers = hebrews.mothers
print(heb_mothers)
```
