Metadata-Version: 2.1
Name: phd-scraper
Version: 0.1.2
Summary: Scraping toolkit to generate PhD dataset
Home-page: https://github.com/csaybar/phd_scraper
Author: Cesar Aybar
Author-email: csaybar@gmail.com
License: GNU General Public License v3
Keywords: scraper
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7

|Python 3.6| |PyPI version|

phd\_scraper
============

Description
-----------

This package offers a complete module that makes download daily and
hourly LatinAmerica Hydrometeorological datasets unpainless.

Mode of use
-----------

SENAMHI - `hydrometeorological <https://www.senamhi.gob.pe/mapas/mapa-estaciones-2/>`__
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

::

    $ cd ~/phd_scraper/phd_scraper/
    $ python3 se_hydrometeo.py --station_code 100090 --init_date 2019-01-01 --last_date 2019-02-02

::

    from phd_scraper import se_hydrometeo
    se_hydrometeo.download(station_code=100090, init_date=2019-01-01, last_date=2019-02-02)

SENAMHI - `historic <https://web2.senamhi.gob.pe/descarga/?cod=152204>`__
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

::

    $ cd ~/phd_scraper/phd_scraper/
    $ python3 se_historic.py --station_code 152204 --outfile test.csv

::

    from phd_scraper import se_historic
    se_historic.download(code='152204')

.. |Python 3.6| image:: https://img.shields.io/badge/python-3.6-blue.svg
   :target: https://www.python.org/downloads/release/python-360/
.. |PyPI version| image:: https://badge.fury.io/py/phd-scraper.svg
   :target: https://pypi.org/project/phd-scraper/


History
=======

0.1.2 (2019-12-17)
------------------

- First release on PyPI.


