Tool for generating content for Polish PIT forms.
poetry install- Go to https://client.schwab.com/app/accounts/transactionhistory/#/.
- Select the Employee Sponsored account for which you want to generate the report.
- Select "Previous 4 Years" in Data Range field and press Search.
- Press Export at the top-right side of the page in order to download the CSV file.
- Run:
from pathlib import Path
from polish_pit_calculator.schwab import SchwabEmployeeSponsoredTaxReporter
report_path = "PATH_TO_YOUR_REPORT.csv"
tax_reporter = SchwabEmployeeSponsoredTaxReporter(report_path)
tax_report = tax_reporter.generate()