Metadata-Version: 2.1
Name: stp_scraper
Version: 0.1.5
Summary: Extract sent and received transactions of an STP account.
Home-page: https://github.com/cuenca-mx/stp-scraper
Author: Cuenca
Author-email: dev@cuenca.com
License: UNKNOWN
Description: [![Coverage Status](https://coveralls.io/repos/github/cuenca-mx/stp-scraper/badge.svg?branch=master&t=V0q7kh)](https://coveralls.io/github/cuenca-mx/stp-scraper?branch=master)
        [![Build Status](https://travis-ci.com/cuenca-mx/stp-scraper.svg?token=MSMdx4sxrH14mMPzx2Cx&branch=master)](https://travis-ci.com/cuenca-mx/stp-scraper)
        [![PyPI](https://img.shields.io/pypi/v/stp-scraper.svg)](https://pypi.org/project/stp-scraper/)
        [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/ambv/black)
        
        # stp-scraper
        STP scraper library for obtaining all transactions given a range of dates.
        
        ## Requirements
        Python 3.7+
        
        ## Installation
        ```bash
        pip install stp_scraper
        ```
        
        ## Tests
        ```bash
        make test
        ```
        
        ## Basic usage
        Get transactions of prior week
        ```python
        import stp_scraper
        stp_scraper.extract(None, None, 7)
        ```
        
        Get transactions for specific dates
        ```python
        from stp_scraper import extract
        extract('01/02/2019', '15/02/2019')
        ```
        
        ## Release to PyPi
        
        ```bash
        pip install -U setuptools wheel twine
        make release
        # PyPi will prompt you to log in
        ```
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Provides-Extra: test
