{"id":27886056,"url":"https://github.com/shenoy-anurag/elo","last_synced_at":"2026-02-18T19:31:24.438Z","repository":{"id":275740669,"uuid":"926850506","full_name":"shenoy-anurag/elo","owner":"shenoy-anurag","description":"Elo python package to simulate matches between players, and compare their elo ratings after each match. You can use it to simulate rankings of Chess players. Published to PyPI.","archived":false,"fork":false,"pushed_at":"2025-02-06T00:17:31.000Z","size":33,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-16T18:56:57.389Z","etag":null,"topics":["elo","elo-rating","games","python3"],"latest_commit_sha":null,"homepage":"https://pypi.org/project/elo-viz/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/shenoy-anurag.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-02-04T00:50:22.000Z","updated_at":"2025-04-08T22:01:05.000Z","dependencies_parsed_at":"2025-05-05T07:51:44.821Z","dependency_job_id":"9556a65d-97c8-4e77-a044-7fa818f47607","html_url":"https://github.com/shenoy-anurag/elo","commit_stats":null,"previous_names":["shenoy-anurag/elo"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/shenoy-anurag/elo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shenoy-anurag%2Felo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shenoy-anurag%2Felo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shenoy-anurag%2Felo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shenoy-anurag%2Felo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/shenoy-anurag","download_url":"https://codeload.github.com/shenoy-anurag/elo/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shenoy-anurag%2Felo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29591891,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-18T18:54:29.675Z","status":"ssl_error","status_checked_at":"2026-02-18T18:50:50.517Z","response_time":162,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["elo","elo-rating","games","python3"],"created_at":"2025-05-05T07:51:38.941Z","updated_at":"2026-02-18T19:31:24.390Z","avatar_url":"https://github.com/shenoy-anurag.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Overview\n![PyPI - Version](https://img.shields.io/pypi/v/elo-viz)\n![PyPI - License](https://img.shields.io/pypi/l/elo-viz)\n\nElo python package to simulate matches between players, and compare their elo ratings after each match, and visualize them. You can use it to simulate rankings of Chess players.\n\n# Installation\n\nInstall using pip:\n\n```text\n$ pip install elo-viz\n```\n\nor with [Poetry](https://python-poetry.org/):\n\n```text\n$ poetry add elo-viz\n```\n\n# Usage\n### Create Players\n```py\nimport uuid\nfrom elo_viz import Match, Player\n\nmagnus_carlsen = Player(id=uuid.uuid4().hex, name='Magnus Carlsen', rating=2833)\nhou_yifan = Player(id=uuid.uuid4().hex, name='Hou Yifan', rating=2633)\ngukesh_d = Player(id=uuid.uuid4().hex, name='Gukesh Dommaraju', rating=2777)\ndivya_d = Player(id=uuid.uuid4().hex, name='Divya Deshmukh', rating=2490)\n```\n\n### Setup Matches\n```py\nm1 = Match(match_id=uuid.uuid4().hex, player1=magnus_carlsen, player2=gukesh_d)\nm1.update_result(winner=magnus_carlsen.id)\n```\n\n### Check results\n```py\nprint(m1.player1)\n```\nOutput\n```log\nPlayer: Magnus Carlsen Rating: Rating: 2883.0 Win %: 100.0\n```\n\n# Requirements\n- Python \u003e= 3.13\n\nThe version of the base environment I had installed poetry in.\n\nWill update this so that any Python 3 version will work.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshenoy-anurag%2Felo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fshenoy-anurag%2Felo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshenoy-anurag%2Felo/lists"}