IntroductionAlchemy Quickstart GuidesUse Alchemy on Different Web3 LibrariesCopy pageLearn How to Use Alchemy on Different Web3 LibrariesOther Web3 Libraries Check out the documentation for each library: Web3.py Web3j Ethers.js Web3.js Using the below code snippets, you can install and use Alchemy as a provider via any of the following libraries! Web3.pyWeb3jEthers.jsWeb3.js1# Setup: pip install web32from web3 import Web33alchemy = Web3(Web3.HTTPProvider("https://eth-mainnet.g.alchemy.com/v2/your-api-key"));