{"id":51306518,"url":"https://github.com/lastunicorn/fintown-toolkit","last_synced_at":"2026-07-01T00:02:42.858Z","repository":{"id":362224477,"uuid":"1257947910","full_name":"lastunicorn/fintown-toolkit","owner":"lastunicorn","description":"A .NET library for working with files exported from Fintown.","archived":false,"fork":false,"pushed_at":"2026-06-24T14:19:19.000Z","size":43,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-06-24T14:37:45.514Z","etag":null,"topics":["csharp","dotnet","finance","fintown","transactions"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lastunicorn.png","metadata":{"files":{"readme":"README.md","changelog":"changelog.txt","contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":null,"patreon":null,"open_collective":null,"ko_fi":"lastunicorn","tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":null}},"created_at":"2026-06-03T06:27:41.000Z","updated_at":"2026-06-24T14:23:24.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/lastunicorn/fintown-toolkit","commit_stats":null,"previous_names":["lastunicorn/fintown-toolkit"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/lastunicorn/fintown-toolkit","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lastunicorn%2Ffintown-toolkit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lastunicorn%2Ffintown-toolkit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lastunicorn%2Ffintown-toolkit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lastunicorn%2Ffintown-toolkit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lastunicorn","download_url":"https://codeload.github.com/lastunicorn/fintown-toolkit/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lastunicorn%2Ffintown-toolkit/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34987611,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-30T02:00:05.919Z","response_time":92,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["csharp","dotnet","finance","fintown","transactions"],"created_at":"2026-07-01T00:02:42.069Z","updated_at":"2026-07-01T00:02:42.840Z","avatar_url":"https://github.com/lastunicorn.png","language":"C#","funding_links":["https://ko-fi.com/lastunicorn"],"categories":[],"sub_categories":[],"readme":"# Fintown Toolkit\n\n[![GitHub Repo](https://img.shields.io/badge/github-repo-blue?logo=github)](https://github.com/lastunicorn/fintown-toolkit) [![GitHub Build](https://img.shields.io/github/actions/workflow/status/lastunicorn/fintown-toolkit/build-master.yml?logo=github)](https://github.com/lastunicorn/fintown-toolkit/actions/workflows/build-master.yml) [![NuGet Version](https://img.shields.io/nuget/v/DustInTheWind.Fintown.Toolkit?logo=nuget)](https://www.nuget.org/packages/DustInTheWind.Fintown.Toolkit) [![NuGet Downloads](https://img.shields.io/nuget/dt/DustInTheWind.Fintown.Toolkit?logo=nuget)](https://www.nuget.org/packages/DustInTheWind.Fintown.Toolkit)\n\n`Fintown Toolkit` is a .NET library for working with files exported from Fintown.\n\nFintown is an loan investment platform powered by Vihorev Group based in Czech Republic.\n\n- https://fintown.eu\n\nThe package is published as `DustInTheWind.Fintown.Toolkit`.\n\n## Installation\n\nPackage Manager:\n\n```powershell\nInstall-Package DustInTheWind.Fintown.Toolkit\n```\n\n.NET CLI:\n\n```bash\ndotnet add package DustInTheWind.Fintown.Toolkit\n```\n\n## Runtime Requirements\n\n- Library target framework: `.NET 8.0` (`net8.0`)\n\n## Quick Start\n\n### a) Export the Transactions CSV File\n\nIn Fintown web application:\n\n1. Log in.\n2. Open **My Account**.\n3. Open **Transactions**.\n4. Select the date interval you need.\n5. Click the **CSV** button to download the file.\n\nYou will get a CSV containing transaction rows that can be parsed with this toolkit.\n\n### b) Parse the Exported Document\n\nCreate a small console app and parse your exported file:\n\n```csharp\nusing DustInTheWind.Fintown.Toolkit;\n\nTransactionsDocument transactionsDocument = await TransactionsDocument.LoadFromFileAsync(\"transactions.csv\");\n\nforeach (TransactionRecord transaction in transactionsDocument)\n{\n\t...\n}\n```\n\n## `Transaction` Record\n\nEach row is mapped to:\n\n- `Description` (`TransactionDescription`)\n  \n- `Project` (`string`)\n- `Amount` (`CurrencyAmount`)\n- `Status` (`TransactionStatus`)\n- `Date` (`DateTime`)\n\n## Demo Project\n\nThe repository includes a sample CLI project in `sources/Fintown.Toolkit.Demo` that demonstrates:\n\n- reading `transactions.csv`\n- printing parsed data.\n\nYou can use this project as a reference implementation for your own importer/exporter tools.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flastunicorn%2Ffintown-toolkit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flastunicorn%2Ffintown-toolkit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flastunicorn%2Ffintown-toolkit/lists"}