Skip to main content

Bank of America personal financial web scraper

Project description

BankofAmerica-Web-Scraper

PyPI version

Selenium web scraper used to pull personal financial data from bankofamerica.com

About

This web scraper will pull account balances and all transactions from credit and checking accounts. This is meant to be used with a node.js server which will re-categorize and insert into a google sheet.

Installing

To install dependencies, run

pip install python-dotenv
pip install knack
pip install boas

Usage

To run the program in a multi-threaded way, using account details from accounts.json run

boas parse run --threaded=yes --file=accounts.json

Environment variables

This project require a .env file or environment variables. The only value required is the sheet api endpoint of the node.js server.

Here is an example file:

SHEET_API=

Account File

The account credentials are stored in a json file. If you would like to login even with the security v2 security, you can provide the security answers in the file.

[{
  "name": "",
  "username": "",
  "password": "",
  "security_questions": {
    "What is the name of your first employer?": "",
    "What is the street you grew up on": "",
    "What is the name of your best friend": ""
  }
}]

How it works

This service first logs in, and then start to collect the account balances and overview from the my accounts page. Next, it will visit all checking and credit cards and start collecting the transaction info. This is the following information that the program collects:

merchant_name
category
date
description
amount

Only the transactions from the current month are collected. Currently, the savings scraper isn't implemented. For my use case I did not have many important transactions in savings. The amounts are still collected in the overview and displayed in the sheet. If you would like to implement savings, just create another entry in page.py and locators in locator.py. To learn more about the page object design pattern, look at the selenium docs

Important Notes / Future work

I have not found a way to run selenium in headless mode. It seems bank of america detects this and asks for a capcha, which block logging in. I have not explored what options chrome driver might have to mask the headless mode.

Development

Testing

There is a few tests located in the test directory. These will test basic login functionality, account summary recording, and a full functional test of the scraper. Please replace the empty strings with your account information to run these tests.

Here is an example run of a full functional test run:

python src/FullTests.py

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

boas-1.3-py2-none-any.whl (4.1 kB view hashes)

Uploaded Python 2

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page