Skip to content

Latest commit

 

History

History
30 lines (28 loc) · 811 Bytes

README.md

File metadata and controls

30 lines (28 loc) · 811 Bytes

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)