コード例 #1
0
def steam(request):
    #Should link to test of Steam API example.
    key = '231E98D442E52B87110816C3D5114A1D'
    SteamUN = "Marorin"
    steamID = steamidpulling(SteamUN, key)
    game = gamespulling(steamID, key)
    return render(request,'hackathon/steam.html', {"game": game })
コード例 #2
0
ファイル: views.py プロジェクト: 2073036n/byte_me
def steam(request):
    #Should link to test of Steam API example.
    key = '231E98D442E52B87110816C3D5114A1D'
    SteamUN = "Marorin"
    steamID = steamidpulling(SteamUN, key)
    game = gamespulling(steamID, key)
    return render(request,'hackathon/steam.html', {"game": game })
コード例 #3
0
ファイル: views.py プロジェクト: Lwein005/Web-Events-App
def steam(request):
    key = '231E98D442E52B87110816C3D5114A1D'
    SteamUN = "Marorin"
    steamID = steamidpulling(SteamUN, key)
    game = gamespulling(steamID, key)
    return render(request, 'accounts/steam.html', {"game": game})
コード例 #4
0
def steam(request):
    key = "231E98D442E52B87110816C3D5114A1D"
    SteamUN = "Marorin"
    steamID = steamidpulling(SteamUN, key)
    game = gamespulling(steamID, key)
    return render(request, "hackathon/steam.html", {"game": game})