https://github.com/alimghmi/quakey
Iran earthquake's data scraper
https://github.com/alimghmi/quakey
data-scraping earthquake-data earthquakes iran monitoring scraper
Last synced: about 1 year ago
JSON representation
Iran earthquake's data scraper
- Host: GitHub
- URL: https://github.com/alimghmi/quakey
- Owner: alimghmi
- License: mit
- Created: 2020-04-11T18:15:54.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2021-05-06T22:52:55.000Z (about 5 years ago)
- Last Synced: 2025-03-01T01:26:28.747Z (over 1 year ago)
- Topics: data-scraping, earthquake-data, earthquakes, iran, monitoring, scraper
- Language: Python
- Size: 4.88 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Quakey
## Introduction
> Quakey is a simple script to scrape Iran's earthquake data from http://irsc.ut.ac.ir/
This python program can be used for monitoring etc.
## Code Samples
```python
from quakey import Equake
obj = Equake() # Create the object
obj.miner() # Scrape latest data
lrg = obj.largevn() # Save large event to a variable
print(obj.content) # Print all scraped data
print(lrg) # Print large event
```
## Installation
> Git clone the repository. Import it to your program.