Skip to content

z1qaw/CryptoChecker

Repository files navigation

CryptoChecker

About

Simply customizable desktop app that allows you to check multiple currencies values in one window (now only from Kucoin and TradeOrge).

2021-07-20 20_50_56-Window

Build and run

Windows

  1. Install Python 3 from https://python.org. **On first installer page set "Add Python to PATH" flag!!! **
    Check Python 3 installed. Open console and print python --version. The andwer should be like Python 3.7.3 .
  2. Open console and print:
    pip install requests pyqt5 python-kucoin pyinstaller
    pyinstaller --onedir --noconsole /path/to/main.py
  3. Now build contains in folder /path/to/dist/main/. You can run CryptoChecker by main.exe file.

Linux

  1. Run terminal and print:

  2. sudo apt-get install python3

  3. sudo pip3 install requests pyqt5 python-kucoin pyinstaller

  4. pyinstaller --onedir --noconsole /path/to/main.py

  5. Now build contains in folder /path/to/dist/main/. You can run CryptoChecker by main.exe file.

Settings

When you run app first it create settings.json file in main directory. You can change this config to setting CryptoChecker.

To start, go to KuCoin and get API Keys. Put it into settings.json:
"api_key": "YOUR API KEY",
"api_passphrase": "YOUR API PASSPHRASE",
"api_secret": "YOUR API SECRET"

"autoupdate": false, - true or false. Pairs autoupdate option.
"opacity": 100, - from 0 to 100. Make window transparent.
"orders": true, - true or false. Show orders.
"pin": false, - true or false. Pin window on top of all windows.
"update_time": 10 - true or false. Time to wait before new update.