https://github.com/ujjwal-kr/betcoin
A currency system created with python
https://github.com/ujjwal-kr/betcoin
coin currency finance flask hacktoberfest python
Last synced: 5 months ago
JSON representation
A currency system created with python
- Host: GitHub
- URL: https://github.com/ujjwal-kr/betcoin
- Owner: ujjwal-kr
- Created: 2021-09-23T17:37:45.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2024-09-12T06:16:45.000Z (almost 2 years ago)
- Last Synced: 2025-06-12T07:10:30.024Z (about 1 year ago)
- Topics: coin, currency, finance, flask, hacktoberfest, python
- Language: Python
- Homepage: https://betcoin-py.herokuapp.com
- Size: 68.4 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# BETCOIN
Run on repl: https://repl.it/github/ujjwal-kr/betcoin
BET is a digital currency created with python and flask with features of a centralized bank, wallet system, and open transaction history of all the users in the network including one to one deposit. It also has a betting (gambling) system and some other games will be added in future.
## How to run it
1. Download python
2. clone this repo: `git clone https://github.com/ujjwal-kr/betcoin.git`
3. run `python3 -m venv venv` for UNIX and `py -3 -m venv venv` for windows.
4. run `. venv/bin/activate` for UNIX and `venv\Scripts\activate` for windows.
5. run `pip install flask`
6. run `pip install flask_sqlalchemy`
7. run `export FLASK_ENV=development` for UNIX and `set FLASK_ENV=development` for windows (CMD) `$env:FLASK_ENV = "development"` (PowerShell) to enter debug mode.
8. run `flask run`