Metadata-Version: 2.1
Name: am-i-connected
Version: 0.1.4
Summary: The simplest way to check if internet access is available.
Home-page: https://github.com/yanncabral/am_i_connected
Author: Yann Cabral
Author-email: iamyanndias@gmail.com
License: MIT
Download-URL: https://pypi.org/project/am_i_connected/
Keywords: internet,check,connection
Platform: UNKNOWN
Description-Content-Type: text/markdown

# am_i_connected
This python3 package is the simplest way to check if there is internet connection.

you can install this library using `pip`. 

`pip install am_i_connected`

example of use:
```python
from am_i_connected import check as there_is_internet

if there_is_internet():
    print('You are connected! Amazing!')
else:
    print("Hey, you aren't connected...")
```

