Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/salmandabbakuti/python-dapp
web3.py based dapp
https://github.com/salmandabbakuti/python-dapp
blockchain dapp ethereum gochain infura python python-dapp solidity web3py
Last synced: 5 days ago
JSON representation
web3.py based dapp
- Host: GitHub
- URL: https://github.com/salmandabbakuti/python-dapp
- Owner: Salmandabbakuti
- License: mit
- Created: 2019-04-30T14:28:32.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-10-12T12:24:29.000Z (about 2 years ago)
- Last Synced: 2023-03-03T04:13:08.642Z (over 1 year ago)
- Topics: blockchain, dapp, ethereum, gochain, infura, python, python-dapp, solidity, web3py
- Language: Python
- Homepage:
- Size: 26.4 KB
- Stars: 26
- Watchers: 4
- Forks: 16
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Python-Dapp
web3.py based dapp
#### Steps:
1. Deploy your contract on your preferred network(update `RPC_URL` accordingly) and get the contract address.
2. Create `.env` file in the root directory with below parameters:
```
PRIVATE_KEY=
RPC_URL=
CONTRACT_ADDRESS=
```3. Install dependencies and run app:
```bash
pip install -r requirements.txtpython app.py # open http://localhost:8000
```