Web Scraping API for getting Optifine VersionsList/Versions/Download-URL.
pip install optipy
This will get list of all Optifine versions.
- The output might not show all versions in console.
- Dump the list into file if you want to see all the versions.
from optipy import getVersionList
DATA = getVersionList()
print(DATA)
This will get Optifine versions informations by just specify Minecraft Version.
Arguments:
- [ Required ]
mc_version
is for specify minecraft version.
from optipy import getVersion
DATA = getVersion(mc_version="1.12.2")
print(DATA)