{"id":15564035,"url":"https://github.com/eigenein/wotbreplay-parser","last_synced_at":"2025-09-20T10:32:28.185Z","repository":{"id":64121960,"uuid":"573602332","full_name":"eigenein/wotbreplay-parser","owner":"eigenein","description":"World of Tanks Blitz replay parser","archived":false,"fork":false,"pushed_at":"2024-01-29T19:07:11.000Z","size":8429,"stargazers_count":6,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-12-29T01:02:39.335Z","etag":null,"topics":["parser","rust","rust-crate","rust-library","world-of-tanks-blitz"],"latest_commit_sha":null,"homepage":"https://lib.rs/crates/wotbreplay-parser","language":"Rust","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/eigenein.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","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},"funding":{"github":["eigenein"]}},"created_at":"2022-12-02T21:43:26.000Z","updated_at":"2024-10-27T13:26:42.000Z","dependencies_parsed_at":"2024-01-29T20:30:17.293Z","dependency_job_id":"97ccc027-77c5-440e-9801-f3d775eded8b","html_url":"https://github.com/eigenein/wotbreplay-parser","commit_stats":null,"previous_names":[],"tags_count":26,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eigenein%2Fwotbreplay-parser","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eigenein%2Fwotbreplay-parser/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eigenein%2Fwotbreplay-parser/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eigenein%2Fwotbreplay-parser/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/eigenein","download_url":"https://codeload.github.com/eigenein/wotbreplay-parser/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":233441973,"owners_count":18676778,"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":["parser","rust","rust-crate","rust-library","world-of-tanks-blitz"],"created_at":"2024-10-02T16:34:49.660Z","updated_at":"2025-09-20T10:32:22.285Z","avatar_url":"https://github.com/eigenein.png","language":"Rust","funding_links":["https://github.com/sponsors/eigenein"],"categories":[],"sub_categories":[],"readme":"# `wotbreplay-parser`\n\nWorld of Tanks Blitz replay parser in Rust.\n\n[![Crates.io](https://img.shields.io/crates/v/wotbreplay-parser)](https://crates.io/crates/wotbreplay-parser)\n[![Last commit](https://img.shields.io/github/last-commit/eigenein/wotbreplay-parser)](https://github.com/eigenein/wotbreplay-parser/commits/main)\n[![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/eigenein/wotbreplay-parser/check.yaml)](https://github.com/eigenein/wotbreplay-parser/actions)\n![License: MIT](https://img.shields.io/crates/l/wotbreplay-parser)\n[![docs.rs](https://img.shields.io/docsrs/wotbreplay-parser)](https://docs.rs/wotbreplay-parser)\n\n## Quickstart\n\n```rust\nuse std::fs::File;\n\nuse anyhow::Result;\nuse wotbreplay_parser::models::battle_results::TeamNumber;\nuse wotbreplay_parser::replay::Replay;\n\nfn main() -\u003e Result\u003c()\u003e {\n    let battle_results = Replay::open(File::open(\"replays/20221203_player_results.wotbreplay\")?)?.read_battle_results()?;\n\n    assert_eq!(battle_results.timestamp_secs, 1670083956);\n    assert_eq!(battle_results.players.len(), 14);\n\n    assert_eq!(battle_results.players[0].account_id, 595693744);\n    assert_eq!(battle_results.players[0].info.nickname, \"yuranhik_hustriy26\");\n    assert_eq!(battle_results.players[0].info.team(), TeamNumber::One);\n    assert_eq!(battle_results.players[0].info.platoon_id, Some(545104609));\n\n    assert_eq!(battle_results.players[1].info.nickname, \"SNAK_THE_RIPPER\");\n    assert_eq!(battle_results.players[1].info.team(), TeamNumber::Two);\n    assert_eq!(battle_results.players[1].info.platoon_id, Some(273692628));\n\n    Ok(())\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feigenein%2Fwotbreplay-parser","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feigenein%2Fwotbreplay-parser","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feigenein%2Fwotbreplay-parser/lists"}