/coinmarketapp

PyQt5 GUI App for Cryptocurrency using Coinmarketcaps API

Primary LanguagePython

CoinMarketCap App

Overview

App for checking current prices on the Cryptocurrency market.

CoinMarketCap is a site that gives you free access to current and historic data for Bitcoin and thousands of altcoins.

This program is intended for monitoring your Crytocurrency of choice with the future implementation of being alerted of 5%-10% changes in price. Alerting will be via a Discord Webhook, information and instructions can be found here: https://support.discord.com/hc/en-us/articles/228383668-Intro-to-Webhooks DiscordWebhook

Requirements

Python Version: Python3.6 Prior to using this program, an API-Key provided by Coinmarketcap is required, you can sign-up and get a key at https://coinmarketcap.com/api/ coinmarketapi

Installation

Required Libraries - Requests

Mac/Linux

$ git clone https://github.com/ronpichardo/coinmarketapp.git
$ cd coinmarketapp
$ python3 -m venv venv
$ source venv/bin/activate
$ pip install -r requirements.txt

Windows w/ PowerShell

$ git clone https://github.com/ronpichardo/coinmarketapp.git
$ cd coinmarketapp
$ python3 -m venv venv
$ ./venv/bin/Activate.ps1
$ pip install -r requirements.txt

Optional if you would like to change the config.example.json to config.json in your terminal

$ mv config.example.json config.json

Usage

  1. Add API-Key that was received via https://coinmarketcap.com/api/ to the config.example.json and save the file as config.json CoinApiKey
  • WiP - Code to be added for usage