Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marcusoftnet/find_unique_transaction
A small hack I (and Chat GPT) did to find common strings in bank statements so that I can group them
https://github.com/marcusoftnet/find_unique_transaction
Last synced: about 5 hours ago
JSON representation
A small hack I (and Chat GPT) did to find common strings in bank statements so that I can group them
- Host: GitHub
- URL: https://github.com/marcusoftnet/find_unique_transaction
- Owner: marcusoftnet
- Created: 2024-04-08T13:16:01.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-04-08T13:20:49.000Z (7 months ago)
- Last Synced: 2024-04-13T19:25:56.549Z (7 months ago)
- Language: Python
- Size: 15.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Unique bank statement transaction finder
I'm trying to find unique transaction texts to be able to better find categories.
I used ChatGPT to write this entire repo. Except this file
## Usage
```bash
usage: app.py [-h] [--min_length MIN_LENGTH] [--min_matches MIN_MATCHES] file_pathFind related substrings in transaction texts
positional arguments:
file_path Path to the JSON file containing transaction textsoptions:
-h, --help show this help message and exit
--min_length MIN_LENGTH
Minimum length of substring to consider (default: 3)
```For example;
```bash
python app.py data.txt --min_length 5 --min_matches 5
```