pit8c is a Python library and CLI tool that assists you in preparing the Polish PIT-8C
declaration for investment income. It transforms raw broker reports into tax-ready documents by handling
complex calculations, currency conversions, and FIFO trade matching - all while adhering to Polish tax regulations.
Marta, a Polish investor, made 200+ stock trades in 2024 and 2025 through Freedom24, including US and EU stocks. Since Freedom24 is based in Cyprus, it doesn't generate a PIT-8C declaration. So Marta needs to:
- Match each sale to its original purchase (including partial closures)
- Convert all foreign amounts to PLN using NBP rates from transaction dates
- Calculate total income/costs for tax declaration
- Manually fill the PIT-8C declaration
With pit8c, she simply runs:
pit8c --broker freedom24 --reports-path ./reports --year 2025The tool automatically:
- Reads one XLSX report or a directory with multiple annual reports
- Matches sales with purchases using FIFO
- Applies correct NBP exchange rates (even for weekend trades)
- Generates ready-to-submit PIT-8C (.pdf file)
- Creates audit-ready XLSX with all calculations
No more spreadsheet errors or manual rate lookups. 🚀
- Python 3.11 or later is required.
-
Install via
pip:pip install pit8c
-
Now you can use the
pit8ccommand:pit8c --help
-
Clone this repository:
git clone https://github.com/iyazerski/pit8c.git cd pit8c -
Install dependencies via uv:
uv sync
-
To run the CLI:
uv run pit8c --help
To calculate PIT-8C for a given tax year, pass either:
- a single annual report
.xlsx, or - a directory containing multiple annual reports
.xlsx(recommended, so FIFO can match prior-year buys).
pit8c --broker <broker> --reports-path <reports_path> --year <tax_year>- broker: the broker’s name (lowercase).
- reports-path: path to a single XLSX report or a directory with multiple reports.
- year: the year for which PIT-8C should be calculated (only positions with sell date in that year are included).
The tool will:
- Read one or more broker XLSX files.
- Convert all trades (buy and sell) into an internal unified structure based on ISIN and currency.
- Apply FIFO matching across all provided years to determine partial closures.
- Select only positions closed (sold) in the requested tax year.
- Compute income and costs for selected positions.
- Generate PIT-8C PDF report and save it near the input path.
- Print D section of PIT-8C report to console.
- Write the closed positions near the input file (for audit).
Example:
pit8c --broker freedom24 --reports-path ./reports --year 2025Use the Pit8c class to run the same pipeline from Python code:
from pathlib import Path
from pit8c import Pit8c
pit8c = Pit8c(broker="freedom24")
result = pit8c.process_reports_path(reports_path=Path("./reports"), tax_year=2025)
print(result.totals.income_pln, result.totals.costs_pln)
print(result.artifacts.pit8c_pdf_path)If you already have parsed trades, run the pipeline without reading XLSX:
from pit8c import Pit8c
# trades: list[Trade]
pit8c = Pit8c(write_pdf=False, write_xlsx=False)
result = pit8c.process_trades(trades, tax_year=2025)We use pytest for testing. Critical logic parts are covered (e.g. FIFO algorithm, trades parsing).
To run the tests:
uv run pytestContributions are welcome! Please open an issue or create a pull request:
- Fork the repository
- Create a feature branch
- Commit your changes
- Open a pull request towards the
mainbranch.
Be sure to include tests to cover new functionality or bug fixes.
This project is licensed under the MIT License. See the LICENSE file for details.
Disclaimer: This tool is provided as-is. The authors and contributors are not responsible for any inaccuracies or omissions in the tax calculations. Always consult a certified tax adviser or official resources to verify the correctness of your tax returns.