Web Scraping API for getting Optifine VersionsList/Versions/Download-URL.


Keywords
optifine, api, optifine_api, optifine-api, optipy
License
MIT
Install
pip install optipy==2.0.2

Documentation

OptiPy

Web Scraping API for getting Optifine VersionsList/Versions/Download-URL.

Table of contents

Installation

pip install optipy

Get Versions List

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)

Get Specify Versions

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)