Metadata-Version: 2.1
Name: traderep
Version: 1.0
Summary: Application for parsing positions and         displaying their current market value
Home-page: https://github.com/Giebisch/TradeRepublic-Overview
Author: Giebisch
Author-email: rafael@giebisch-mail.de
License: UNKNOWN
Description: # TradeRepublic-Overview
        
        ![Python application](https://github.com/Giebisch/TradeRepublic-Overview/workflows/Python%20application/badge.svg)
        
        ## Why was this made ?
        
        Currently there is no web/desktop app for Trade Republic, meaning it's pretty hard to follow your depot without your phone. With this application
        it's really convenient to watch your depot grow while working on your computer.
        
        ## What does it do ?
        
        There are two options to read in your depot, one is to specify a folder with all your pdf you exported out of Trade Republic. It then automatically
        parses them for their ISINs and quantity. Other option is to specify a .csv file where you can explicitly state your positions. After the positions are read
        it periodically displays your positions with their current price and total worth.
        
        This is what the output will look like:
        ![Example](doc/example_output.png)
        
        ## How do I use it ?
        Install via `pip install traderep`
        
        Run the script with `-h` or `--help` to get following message:
        
            usage: traderep [-h] [--folder FOLDER] [--csv CSV]
        
            optional arguments:
            -h, --help       show this help message and exit
            --folder FOLDER  Specify folder you want to parse the pdfs in
            --csv CSV        Specify the .csv file you want to use
        
        ## What does the .csv file have to look like?
        
        Example:
        
            ISIN;QUANTITY;PRICE;
            IE00B4L5Y983;50.0;62.28
            ...
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
