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
- Host: GitHub
- URL: https://github.com/danangfir/indoquake
- Owner: danangfir
- License: gpl-3.0
- Created: 2023-08-27T13:03:55.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-09-24T14:25:32.000Z (over 1 year ago)
- Last Synced: 2025-02-19T21:46:49.543Z (4 months ago)
- Topics: detection, geolocation, python, scraper, scraping, scraping-websites, scrapy
- Language: Python
- Homepage:
- Size: 30.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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_dataif __name__ == '__main__':
print('Earthquake data from BMKG')
result = ekstrasi_data()
tampilkan_data(result)
```