scraperize/creditmutuel-scraper

v1.0.3 2020-06-14 08:52 UTC

README

Latest Stable Version Latest Unstable Version Total Downloads License SensioLabsInsight Known Vulnerabilities

Installation

composer require scraperize/creditmutuel-scraper

Usage

Download all accounts CSV

// Your account username
$username = 'xxxxxxxxxx';

// Your account password
$password = 'xxxxxxxxxx';

(new CreditmutuelScraper())
    ->auth($username, $password)
    ->downloadCsv('MyPath/')
;

Download only specifics accounts CSV

(new CreditmutuelScraper())
    ->auth($username, $password)
    ->downloadCsv('MyPath/', [
        'xxxxxxxxxx',
        'xxxxxxxxxx',
    ])
;