Metadata-Version: 2.1
Name: myloc
Version: 1.1.2
Summary: A python package to get the location.
Home-page: https://github.com/PIYUSH-GEEK/myloc
Author: Piyush Kumar
Author-email: pk33463@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: requests
Requires-Dist: bs4

# my-location
A python package that will show the location of the user.
This package contains pre-defined functions that will show the location of the user.
It will show the IP Address, latitude, longitude, etc.
You can also get the latitude and longitude of any place using lat, lng and ltlng functions(Defined below).

# Usage
```
import my_loc
print (my_loc.locate([arg]))
print (my_loc.lat('place_name'))
print (my_loc.lng('place_name'))
print (my_loc.ltlng('place_name'))
```


