An open API service indexing awesome lists of open source software.

https://github.com/danangfir/indoquake

A Latest Earthquake Detection Package Taken Based on BMKG | Meteorological, Climatological, and Geophysical Agency
https://github.com/danangfir/indoquake

detection geolocation python scraper scraping scraping-websites scrapy

Last synced: 3 months ago
JSON representation

A Latest Earthquake Detection Package Taken Based on BMKG | Meteorological, Climatological, and Geophysical Agency

Awesome Lists containing this project

README

        

# indoquake
A Latest Earthquake Detection Package Taken Based on BMKG | Meteorological, Climatological, and Geophysical Agency
> This package was made using the beautifulsoup4 and request packages
>
> The data is also taken from the [BMKG](https://www.bmkg.go.id/ "earthquake data website")

# requiretment package
> beautifulsoup4
> requests

# Author
> Danang Firmanto

# How to use

```python
from src.quake import ekstrasi_data, tampilkan_data

if __name__ == '__main__':
print('Earthquake data from BMKG')
result = ekstrasi_data()
tampilkan_data(result)
```