Skip to content

Instantly share code, notes, and snippets.

View irohasu2120-zz's full-sized avatar

irohasu2120-zz

View GitHub Profile
@irohasu2120-zz
irohasu2120-zz / xbox-achive-comp.py
Created February 10, 2021 12:29
XBOX実績コンプリスト
import requests
url = "https://xbl.io/api/v2/achievements"
headers = {
'X-Authorization': 'API Keyをここに入力',
'accept': 'application/json;charset=UTF-8'
}
res = requests.get(url, headers=headers)
achievements = res.json()