Im new to pyscript and i wan to use web3.py in my index page
This here is my index.html page
<body>
<py-env>
- web3
</py-env>
<py-script >
import web3
bsc = 'https://bsc-dataseed.binance.org/'
web3 = Web3(Web3.HTTPProvider(bsc))
print(web3.isConnected())
</py-script>
</body>
When I run this file the page is only loading but nothing is being displayed on my site.
I have installed web3 and I have tried to import it as
<py-env>
- web3==5.30.0
</py-env>
same error as above