Skip to content

Commit 1d19b6e

Browse files
authored
Add files via upload
0 parents  commit 1d19b6e

29 files changed

+3421
-0
lines changed

LICENSE

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
BSD 3-Clause License
2+
3+
Copyright (c) 2018, Bas Nijholt
4+
All rights reserved.
5+
6+
Redistribution and use in source and binary forms, with or without
7+
modification, are permitted provided that the following conditions are met:
8+
9+
* Redistributions of source code must retain the above copyright notice, this
10+
list of conditions and the following disclaimer.
11+
12+
* Redistributions in binary form must reproduce the above copyright notice,
13+
this list of conditions and the following disclaimer in the documentation
14+
and/or other materials provided with the distribution.
15+
16+
* Neither the name of the copyright holder nor the names of its
17+
contributors may be used to endorse or promote products derived from
18+
this software without specific prior written permission.
19+
20+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
24+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
27+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
28+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

README.md

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
# 💰 Net Worth Tracker 💹
2+
3+
🌟 _Effortlessly monitor your portfolio balance in one place!_ 🌟
4+
5+
`net-worth-tracker` allows you to keep track of your stock, cash, and crypto portfolio, making it easy to see your total net worth without the need to check multiple platforms. 📈🔍
6+
7+
Supported data sources for stock/cash financial data include:
8+
9+
* Mint 💵
10+
* Brand New Day 🌅
11+
* DeGiro 📊
12+
13+
Supported data sources for crypto portfolio data include:
14+
15+
* Nexo.io 💎
16+
* Binance Smart Chain (BEP20 tokens + DeFi via🌐)
17+
* Binance.com 🪙
18+
* Exodus wallet 💼
19+
* ApeBoard for tracking on many DeFi chains 🦍
20+
* CoinGecko (for prices) 🦎
21+
* Beefy vaults 🐄
22+
* Yearn V3 🔄
23+
24+
25+
## Download Relase
26+
🚀 Install --> [Releases]()
27+
28+
29+
## 🚀 Getting Started
30+
31+
### Usage
32+
33+
Run [`crypto-tracker.ipynb`](crypto-tracker.ipynb) and download the appropriate data.
34+
35+
Set up a cronjob, using `crontab -e`:
36+
37+
```javascript
38+
0 * * * * ~/Sync/Overig/crypto-tracker/run-and-upload.sh
39+
```
40+
41+
### Installation 🛠️
42+
43+
To install required packages and tools, follow these steps:
44+
45+
1. Install Python dependencies:
46+
47+
```
48+
pip install -r requirements.txt
49+
```
50+
51+
2. Install `chromedriver`:
52+
53+
```bash
54+
sudo apt install chromium-chromedriver keychain # Ubuntu
55+
brew cask install chromedriver # MacOS
56+
```
57+
58+
## 📚 Documentation
59+
60+
_Coming soon!_
61+
62+
## 🤝 Contributing
63+
64+
We welcome contributions! Feel free to submit issues or pull requests to improve the project. 🙌
65+
66+
## 📃 License
67+
68+
This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.

0 commit comments

Comments
 (0)