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

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

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.