{"id":22181119,"url":"https://github.com/wooldoughnut310/xboxgamertag","last_synced_at":"2025-03-24T19:17:44.206Z","repository":{"id":62589804,"uuid":"196622464","full_name":"WoolDoughnut310/xboxgamertag","owner":"WoolDoughnut310","description":"Python module to get data from www.xboxgamertag.com","archived":false,"fork":false,"pushed_at":"2019-07-13T10:44:53.000Z","size":5,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-03T12:16:30.606Z","etag":null,"topics":["data","gamertag","html","python3","requests","xbox"],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/WoolDoughnut310.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-07-12T17:53:55.000Z","updated_at":"2024-07-03T02:13:45.000Z","dependencies_parsed_at":"2022-11-03T17:01:57.367Z","dependency_job_id":null,"html_url":"https://github.com/WoolDoughnut310/xboxgamertag","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WoolDoughnut310%2Fxboxgamertag","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WoolDoughnut310%2Fxboxgamertag/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WoolDoughnut310%2Fxboxgamertag/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WoolDoughnut310%2Fxboxgamertag/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/WoolDoughnut310","download_url":"https://codeload.github.com/WoolDoughnut310/xboxgamertag/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245334909,"owners_count":20598389,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["data","gamertag","html","python3","requests","xbox"],"created_at":"2024-12-02T09:22:34.763Z","updated_at":"2025-03-24T19:17:44.182Z","avatar_url":"https://github.com/WoolDoughnut310.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# xboxgamertag\nPython module to get data from www.xboxgamertag.com\n\n## Usage\n#### Installation\n`pip install xboxgamertag`\n#### Simple example\n```python\nfrom xboxgamertag import gamertag\n\nuser = Gamertag('WoolDoughnut310') # My gamertag is WoolDoughnut310, by the way\n\n# Get my amount of gamerscore\nprint(user.gamerscore)\n\n# If you want to see how many games I have played in total\nprint(user.total_games_played)\n```\n```python\nclass GamertagNotFoundError(Exception):\n    pass\n```\n\u003cdiv id=\"gamertag\"\u003e\n\u003cdl\u003e\n  \u003cdt id=\"xboxgamertag.Gamertag\"\u003e\n    \u003cem\u003eclass \u003c/em\u003e\n    \u003ccode\u003exboxgamertag.Gamertag\u003c/code\u003e\n    \u003cspan\u003e(\u003c/span\u003e\n    \u003cem\u003ename\u003c/em\u003e\n    \u003cspan\u003e)\u003c/span\u003e\n  \u003c/dt\u003e\n  \u003cdd\u003e\n    \u003cp\u003e\n      Initializes the Gamertag class and returns an object\n    \u003c/p\u003e\n    \u003ccode\u003eBASE_URL = \"https://www.xboxgamertag.com\"\u003c/code\u003e\n    \u003cdl\u003e\n      \u003cdt id=\"xboxgamertag.Gamertag.icon\"\u003e\n        \u003ccode\u003eicon\u003c/code\u003e\n        \u003ca href=\"#xboxgamertag.Gamertag.icon\" title=\"Permalink to this definition\"\u003e¶\u003c/a\u003e\n      \u003c/dt\u003e\n      \u003cdd\u003e\n        \u003cp\u003e\n          The url to the profile pic of the user\u003cbr\u003eReturns \u003ccode\u003e\u003ca href=\"https://docs.python.org/3/library/stdtypes.html?highlight=str#str\"\u003estr\u003c/a\u003e\u003c/code\u003e\n        \u003c/p\u003e\n      \u003c/dd\u003e\n    \u003c/dl\u003e\n    \u003cdl\u003e\n      \u003cdt id=\"xboxgamertag.Gamertag.gamertag\"\u003e\n        \u003ccode\u003egamertag\u003c/code\u003e\n        \u003ca href=\"#xboxgamertag.Gamertag.gamertag\" title=\"Permalink to this definition\"\u003e¶\u003c/a\u003e\n      \u003c/dt\u003e\n      \u003cdd\u003e\n        \u003cp\u003e\n          The full name of the user\u003cbr\u003eReturns \u003ccode\u003e\u003ca href=\"https://docs.python.org/3/library/stdtypes.html?highlight=str#str\"\u003estr\u003c/a\u003e\u003c/code\u003e\n        \u003c/p\u003e\n      \u003c/dd\u003e\n    \u003c/dl\u003e\n    \u003cdl\u003e\n      \u003cdt id=\"xboxgamertag.Gamertag.gamerscore\"\u003e\n        \u003ccode\u003egamerscore\u003c/code\u003e\n        \u003ca href=\"#xboxgamertag.Gamertag.gamerscore\" title=\"Permalink to this definition\"\u003e¶\u003c/a\u003e\n      \u003c/dt\u003e\n      \u003cdd\u003e\n        \u003cp\u003e\n          The amount of gamerscore the user has achieved in total\u003cbr\u003eReturns \u003ccode\u003e\u003ca href=\"https://docs.python.org/3/library/functions.html?highlight=int#int\"\u003eint\u003c/a\u003e\u003c/code\u003e\n        \u003c/p\u003e\n      \u003c/dd\u003e\n    \u003c/dl\u003e\n    \u003cdl\u003e\n      \u003cdt id=\"xboxgamertag.Gamertag.total_games_played\"\u003e\n        \u003ccode\u003etotal_games_played\u003c/code\u003e\n        \u003ca href=\"#xboxgamertag.Gamertag.total_games_played\" title=\"Permalink to this definition\"\u003e¶\u003c/a\u003e\n      \u003c/dt\u003e\n      \u003cdd\u003e\n        \u003cp\u003e\n          The total amount of games played by the user\u003cbr\u003eReturns \u003ccode\u003e\u003ca href=\"https://docs.python.org/3/library/functions.html?highlight=int#int\"\u003eint\u003c/a\u003e\u003c/code\u003e\n        \u003c/p\u003e\n      \u003c/dd\u003e\n    \u003c/dl\u003e\n    \u003cdl\u003e\n      \u003cdt id=\"xboxgamertag.Gamertag.games_completed\"\u003e\n        \u003ccode\u003egames_completed\u003c/code\u003e\n        \u003ca href=\"#xboxgamertag.Gamertag.games_completed\" title=\"Permalink to this definition\"\u003e¶\u003c/a\u003e\n      \u003c/dt\u003e\n      \u003cdd\u003e\n        \u003cp\u003e\n          The total amount of games the user has completed\u003cbr\u003eReturns \u003ccode\u003e\u003ca href=\"https://docs.python.org/3/library/functions.html?highlight=int#int\"\u003eint\u003c/a\u003e\u003c/code\u003e\n        \u003c/p\u003e\n      \u003c/dd\u003e\n    \u003c/dl\u003e\n    \u003cdl\u003e\n      \u003cdt id=\"xboxgamertag.Gamertag.games_played\"\u003e\n        \u003ccode\u003egames_played\u003c/code\u003e\n        \u003ca href=\"#xboxgamertag.Gamertag.games_played\" title=\"Permalink to this definition\"\u003e¶\u003c/a\u003e\n      \u003c/dt\u003e\n      \u003cdd\u003e\n        \u003cp\u003e\n          All the games the user has played\u003cbr\u003eReturns list of \u003ccode\u003e\u003ca href=\"#xboxgamertag.PlayedGame\"\u003ePlayedGame\u003c/a\u003e\u003c/code\u003e objects\n        \u003c/p\u003e\n      \u003c/dd\u003e\n    \u003c/dl\u003e\n  \u003c/dd\u003e\n\u003c/dl\u003e\n\u003c/div\u003e\n\n\u003cdiv id=\"played_game\"\u003e\n\u003cdl\u003e\n  \u003cdt id=\"xboxgamertag.PlayedGame\"\u003e\n    \u003cem\u003eclass \u003c/em\u003e\n    \u003ccode\u003exboxgamertag.PlayedGame\u003c/code\u003e\n    \u003cspan\u003e(\u003c/span\u003e\n    \u003cem\u003etr\u003c/em\u003e\n    \u003cspan\u003e)\u003c/span\u003e\n  \u003c/dt\u003e\n  \u003cdd\u003e\n    \u003cp\u003e\n      Initializes the PlayedGame class and returns an object\n    \u003c/p\u003e\n    \u003cdl\u003e\n      \u003cdt id=\"xboxgamertag.PlayedGame.icon\"\u003e\n        \u003ccode\u003eicon\u003c/code\u003e\n        \u003ca href=\"#xboxgamertag.PlayedGame.icon\" title=\"Permalink to this definition\"\u003e¶\u003c/a\u003e\n      \u003c/dt\u003e\n      \u003cdd\u003e\n        \u003cp\u003e\n          The url to the profile pic of the game\u003cbr\u003eReturns \u003ccode\u003e\u003ca href=\"https://docs.python.org/3/library/stdtypes.html?highlight=str#str\"\u003estr\u003c/a\u003e\u003c/code\u003e\n        \u003c/p\u003e\n      \u003c/dd\u003e\n    \u003c/dl\u003e\n    \u003cdl\u003e\n      \u003cdt id=\"xboxgamertag.PlayedGame.title\"\u003e\n        \u003ccode\u003etitle\u003c/code\u003e\n        \u003ca href=\"#xboxgamertag.PlayedGame.title\" title=\"Permalink to this definition\"\u003e¶\u003c/a\u003e\n      \u003c/dt\u003e\n      \u003cdd\u003e\n        \u003cp\u003e\n          The full name of the game\u003cbr\u003eReturns \u003ccode\u003e\u003ca href=\"https://docs.python.org/3/library/stdtypes.html?highlight=str#str\"\u003estr\u003c/a\u003e\u003c/code\u003e\n        \u003c/p\u003e\n      \u003c/dd\u003e\n    \u003c/dl\u003e\n    \u003cdl\u003e\n      \u003cdt id=\"xboxgamertag.PlayedGame.total_earned_gamerscore\"\u003e\n        \u003ccode\u003etotal_earned_gamerscore\u003c/code\u003e\n        \u003ca href=\"#xboxgamertag.PlayedGame.total_earned_gamerscore\" title=\"Permalink to this definition\"\u003e¶\u003c/a\u003e\n      \u003c/dt\u003e\n      \u003cdd\u003e\n        \u003cp\u003e\n          The amount of gamerscore the user has achieved in the game in total\u003cbr\u003eReturns \u003ccode\u003e\u003ca href=\"https://docs.python.org/3/library/functions.html?highlight=int#int\"\u003eint\u003c/a\u003e\u003c/code\u003e\n        \u003c/p\u003e\n      \u003c/dd\u003e\n    \u003c/dl\u003e\n    \u003cdl\u003e\n      \u003cdt id=\"xboxgamertag.PlayedGame.total_unlocked_achievements\"\u003e\n        \u003ccode\u003etotal_unlocked_achievements\u003c/code\u003e\n        \u003ca href=\"#xboxgamertag.PlayedGame.total_unlocked_achievements\" title=\"Permalink to this definition\"\u003e¶\u003c/a\u003e\n      \u003c/dt\u003e\n      \u003cdd\u003e\n        \u003cp\u003e\n          The total amount of achievements unlocked by the user in that game\u003cbr\u003eReturns \u003ccode\u003e\u003ca href=\"https://docs.python.org/3/library/functions.html?highlight=int#int\"\u003eint\u003c/a\u003e\u003c/code\u003e\n        \u003c/p\u003e\n      \u003c/dd\u003e\n    \u003c/dl\u003e\n  \u003c/dd\u003e\n\u003c/dl\u003e\n\u003c/div\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwooldoughnut310%2Fxboxgamertag","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwooldoughnut310%2Fxboxgamertag","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwooldoughnut310%2Fxboxgamertag/lists"}