pyCoin is a blockchain-based crypto currency written in the python programming language. Blockchain is a digital ledger in which transactions made in bitcoin or another cryptocurrency are recorded chronologically and publicly.
Cryptography is a method for sending hidden messages- One person encrypts a message using some sort of key and algorithm, the other person then can decrypt it.
If you send money to someone, you only need to know the Public Key of that person. After starting the pyCoin project, you can create your own wallet with the "Create Wallet" button on the home page.
By creating a wallet you will have your own Public Key, Private Key and Wallet id.
You can access your wallet after logging in with your Public and Private keys.
4 billion pyCoin (PYC) is a gift from us.
You only need to fork pyCoin repository on Github.
$ git clone https://github.com/avnigenc/pyCoin.git
$ cd pyCoin
$ virtualenv venv
$ venv\Scripts\activate // for Windows
$ source venv/bin/activate // for MAC os
$ pip install -R requirements.txt
$ python manage.py runserver