https://github.com/pbteja1998/goofy-coin
https://github.com/pbteja1998/goofy-coin
centralized cryptocurrency python rsa-signature sha256-hash
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/pbteja1998/goofy-coin
- Owner: pbteja1998
- Created: 2018-01-25T09:35:02.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-01-25T09:36:12.000Z (over 7 years ago)
- Last Synced: 2024-12-28T14:37:14.854Z (10 months ago)
- Topics: centralized, cryptocurrency, python, rsa-signature, sha256-hash
- Language: Python
- Size: 5.86 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GoofyCoin
## About
This project mainly uses
* [Python 2.7](https://www.python.org/) - A widely used high-level programming language for general-purpose programming.
* [PyCrypto](https://pypi.python.org/pypi/pycrypto) - Cryptographic modules for Python.### Prerequisites
1. [Python](https://www.python.org)
* Version 2.7
```bash
# To check python version
python -V
```1. [VirtualEnv](https://virtualenv.pypa.io/en/stable/)
* Installing instructions are at [official docs](https://virtualenv.pypa.io/en/stable/installation/).
#### Running Locally
1. Fork the [repository](https://github.com/pbteja1998/goofy-coin).
1. Then clone your forked repository
```bash
git clone
```
1. Move to the repository's root folder
```bash
cd goofy-coin
```
1. Create a virtual environment
```bash
virtualenv -p python venv
```
1. Activate venv
```bash
source venv/bin/activate
```
1. Install the requirements
```bash
pip install -r requirements.txt
```
1. Run the Code
```bash
python base.py
```### Implementation
To check the implementation details, check [this](Implementation.md)