Metadata-Version: 2.1
Name: stp-scraper
Version: 0.0.1
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=stp-script&t=V0q7kh)](https://coveralls.io/github/cuenca-mx/stp-scraper?branch=stp-script)
        
        # 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)
        ```
        
        Get transactions for specific dates
        ```python
        import stp_scraper
        stp_scraper.extract('01/02/2019', '15/02/2019')
        ```
        
Platform: UNKNOWN
Description-Content-Type: text/markdown
Provides-Extra: test
