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: about 1 year 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 (about 7 years ago)
- Default Branch: master
- Last Pushed: 2022-10-12T12:24:29.000Z (over 3 years ago)
- Last Synced: 2025-05-07T11:17:28.084Z (about 1 year ago)
- Topics: blockchain, dapp, ethereum, gochain, infura, python, python-dapp, solidity, web3py
- Language: Python
- Homepage:
- Size: 26.4 KB
- Stars: 27
- Watchers: 4
- Forks: 17
- Open Issues: 1
-
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.txt
python app.py # open http://localhost:8000
```