So, I’m doing a project where, using the Steam API, I’m making a game searcher type site.
The user would search for a game or use keywords, and it would find the game for them.
How should i go ahead to making it.
Example prototype image made from photoshop (let me know if the image doesn’t pop up):
This is what I have so far:
import os
from steam_web_api import Steam
KEY = os.environ.get("STEAM_API_KEY")
steam = Steam(KEY)
arguments: search
search_games = input("Search: ")
games = steam.apps.search_games(search_games)
print(games)
New contributor
Scorpio is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
1