Metadata-Version: 2.1
Name: earthquake-idbmkg
Version: 0.0.2
Summary: This package will get the latest eartquake data from BMKG | Indonesia Meteorological, Climatological, and Geophysical Agency
Home-page: https://github.com/coach-of-kopycode/realtime-indonesia-earthquake
Author: Todi Rahmat
Author-email: todirahmat123@gmail.com
Project-URL: Website, https://todikun.github.io/
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 5 - Production/Stable
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# Realtime Indonesia Earthquake
This package will get the latest eartquake data from BMKG | Indonesia Meteorological, Climatological, and Geophysical Agency

## How it work?
This package will scrape from [BMKG](https://www.bmkg.go.id/) to get the latest earthquake happened in indonesia

This package will use BeautifullSoup4 and Request, to produce output from JSON and ready to used in Web or Mobile applications

## How to use

````
import gempaterkini

if __name__ == '__main__':
    gempa = GempaTerkini('https://www.bmkg.go.id/')
    gempa.show_description()
    gempa.run()
````

