IGS has now been upgraded to the new Genshin 3rd-party API :)
Development version, do not use in production environment!
- Use a faster FastAPI to replace frameworks such as Quart used in earlier versions
- Support for more than just picture generators
Note: We recommend that you use python3.9 for deployment
- Clone this repo.
git clone https://github.com/Genshin-bots/GAPI.git
cd GAPI
- Use a virtual environment (optional).
# Create Virtual Environment
python -m venv venv
# Activate
.\venv\Scripts\activate.bat # for Windows Users using cmd
.\venv\Scripts\activate.ps1 # for Windows Users using powershell
source venv/bin/activate # for Linux Users
- Installation dependencies.
pip install -r requirements
- start!
uvicorn main:igs
Note: you can use --host
to specify the listening IP address, and -- port
to specify the listening port.