Author: Fyke Lleva
This API is created using Fast API it is a python library for creating Application Programming Interface. The goal of this API is to provide data related to Villagers in Stardew Valley Game. You can requests:
- bachelors Data
- bachelorettes Data
- none_marriage_candidates Data
- none_giftable_npcs Data
- You need to install fast api using pip
pip install fastapi
- Also need to install server to run the api
pip install uvicorn
- Open the repository to a text editor like Visual Studio Code or Pycharm
- Open the terminal and run this command:
uvicorn main:app --reload
Use this HTTP request to all villagers characters:
http://127.0.0.1:8000/villagers
- Bachelors
- Bachelorettes
- None Marriage Candidate
- Non-giftable NPCs
Use this HTTP request to villagers and pass a parameters as {type}:
http://127.0.0.1:8000/villagers/{type}
Use this HTTP request to villagers and pass a parameters as {type} and {id}:
http://127.0.0.1:8000/villagers/{type}/{id}
Use this HTTP request to all villagers characters:
https://stardew-villagers/villagers
- Bachelors
- Bachelorettes
- None Marriage Candidate
- Non-giftable NPCs
Use this HTTP request to villagers and pass a parameters as {type}:
https://stardew-villagers/villagers/{type}
Use this HTTP request to villagers and pass a parameters as {type} and {id}:
https://stardew-villagers.onrender.com/villagers/{type}/{id}
Feel free to reach out if you have any questions or suggestions:
- Author: Fyke Lleva
- Email: floterina@gmail.com
- Facebook: (https://web.facebook.com/FLOZ.STN)
- Linkedin: (https://www.linkedin.com/in/fykkkie/)
- Website: (https://f9ki3.onrender.com/)
Thank you for exploring my Python Fast API!
Visit the actual documentation (https://stardew-villagers.onrender.com/docs)