pdf parser for turkey legal financial statements. With this library, you can receive information in legal format published by the tax office in a structured way and export it to an excel file. It allows obtaining balance sheet and income statements from pdf file.
$ dotnet add package FinParserDescription: This NuGet package can be used to extract financial statements, such as balance sheets and income statements, from PDF files published by the Republic of Turkey Ministry of Finance.
Add the NuGet package to your project. To use the FinParser class, follow the steps below: Example Code:
using FinParser;
// Specify the full path of the PDF file
string pdfPath = @"C:\Users\username\Documents\financial_statements.pdf";
// Extract the financial statements from the PDF file using the Parse method
var financialStatements = FinParser.FinParser.Parse(filePath);
// You can now use the financial statements as needed, for example, you can write them to a database or display them in your application
This package is designed specifically to extract financial statements from PDF files published by the Republic of Turkey Ministry of Finance. It may not work for other PDF files. The Parse() method returns the financial statements as objects. You may need to convert the objects to the appropriate data types before using them in your application.
This package is licensed under the MIT License.
If you would like to contribute to this project, please submit a pull request on the GitHub repository.