| Name | vlrdevapi JSON |
| Version |
1.1.0
JSON |
| download |
| home_page | None |
| Summary | The comprehensive Python library for VLR.gg Valorant esports data scraping - tournaments, matches, players, and statistics |
| upload_time | 2025-10-18 23:55:03 |
| maintainer | None |
| docs_url | None |
| author | Vansh |
| requires_python | >=3.11 |
| license | MIT License
Copyright (c) 2025 Vansh Bordia
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
|
| keywords |
valorant
esports
vlr
vlr.gg
scraper
api
gaming
competitive
tournament
statistics
data
vct
web-scraping
|
| VCS |
 |
| bugtrack_url |
|
| requirements |
No requirements were recorded.
|
| Travis-CI |
No Travis.
|
| coveralls test coverage |
No coveralls.
|
# vlrdevapi
[](https://badge.fury.io/py/vlrdevapi)
[](https://pypi.org/project/vlrdevapi/)
[](https://opensource.org/licenses/MIT)
[](https://vlrdevapi.readthedocs.io/en/latest/?badge=latest)
**Python library for VLR.gg Valorant esports data**
Access Valorant esports data from VLR.gg with a clean, type-safe Python API. Get tournament info, match schedules, player stats, team data, and more.
## Features
- **Complete Data Access**: Events, matches, players, teams, series, and search
- **Type-Safe**: Full Pydantic models with validation
- **Production-Ready**: Error handling, retry logic, and rate limiting
- **Easy to Use**: Simple, intuitive API design
## Installation
```bash
pip install vlrdevapi
```
Requires Python 3.11+
## Quick Start
```python
import vlrdevapi as vlr
# Search for anything
results = vlr.search.search("nrg")
print(f"Found {results.total_results} results")
# Get upcoming matches
matches = vlr.matches.upcoming(limit=5)
for match in matches:
print(f"{match.team1.name} vs {match.team2.name}")
# Player stats
profile = vlr.players.profile(player_id=4164)
print(f"{profile.handle} - {profile.country}")
# Team info
team = vlr.teams.info(team_id=1034)
print(f"{team.name} ({team.tag})")
# Event details
events = vlr.events.list_events(tier="vct", status="ongoing")
```
## API Modules
### Search
```python
# Search everything
results = vlr.search.search("nrg")
# Type-specific searches
players = vlr.search.search_players("tenz")
teams = vlr.search.search_teams("sentinels")
events = vlr.search.search_events("champions")
```
### Matches
```python
# Get matches
upcoming = vlr.matches.upcoming(limit=10)
live = vlr.matches.live()
completed = vlr.matches.completed(limit=10)
```
### Players
```python
# Player data
profile = vlr.players.profile(player_id=4164)
matches = vlr.players.matches(player_id=4164, limit=20)
stats = vlr.players.agent_stats(player_id=4164, timespan="60d")
```
### Teams
```python
# Team data
info = vlr.teams.info(team_id=1034)
roster = vlr.teams.roster(team_id=1034)
matches = vlr.teams.upcoming_matches(team_id=1034)
placements = vlr.teams.placements(team_id=1034)
```
### Events
```python
# Event data
events = vlr.events.list_events(tier="vct", status="ongoing")
info = vlr.events.info(event_id=2498)
matches = vlr.events.matches(event_id=2498)
standings = vlr.events.standings(event_id=2498)
```
### Series
```python
# Match details
info = vlr.series.info(match_id=530935)
maps = vlr.series.matches(series_id=530935)
```
## Documentation
Full documentation available at [vlrdevapi.readthedocs.io](https://vlrdevapi.readthedocs.io/)
- [API Reference](https://vlrdevapi.readthedocs.io/en/latest/api/) - Complete function documentation
- [Examples](https://vlrdevapi.readthedocs.io/en/latest/examples.html) - Practical code examples
- [Installation Guide](https://vlrdevapi.readthedocs.io/en/latest/installation.html) - Setup instructions
## Common Use Cases
- Analytics dashboards and statistics trackers
- Tournament tracking and match notifications
- Player performance analysis
- Discord bots and automated reports
- Betting prediction models
- Research and data analysis
## FAQ
**Is this official?** No, VLR.gg has no official API. This is a community library.
**How do I find IDs?** Check VLR.gg URLs. Example: `vlr.gg/player/4164/aspas` → player ID is `4164`
**Python version?** Requires Python 3.11+
## Links
- [Documentation](https://vlrdevapi.readthedocs.io/)
- [GitHub](https://github.com/vanshbordia/vlrdevapi)
- [Issues](https://github.com/vanshbordia/vlrdevapi/issues)
## License
MIT License - see LICENSE file
---
**Disclaimer:** Not affiliated with VLR.gg or Riot Games. Use responsibly.
Raw data
{
"_id": null,
"home_page": null,
"name": "vlrdevapi",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.11",
"maintainer_email": null,
"keywords": "valorant, esports, vlr, vlr.gg, scraper, api, gaming, competitive, tournament, statistics, data, vct, web-scraping",
"author": "Vansh",
"author_email": null,
"download_url": "https://files.pythonhosted.org/packages/8e/34/11e1f18c9041be9196b893581e2d50aa41c0fcb6be4a4088080a5bc38efc/vlrdevapi-1.1.0.tar.gz",
"platform": null,
"description": "# vlrdevapi\n\n[](https://badge.fury.io/py/vlrdevapi)\n[](https://pypi.org/project/vlrdevapi/)\n[](https://opensource.org/licenses/MIT)\n[](https://vlrdevapi.readthedocs.io/en/latest/?badge=latest)\n\n**Python library for VLR.gg Valorant esports data**\n\nAccess Valorant esports data from VLR.gg with a clean, type-safe Python API. Get tournament info, match schedules, player stats, team data, and more.\n\n## Features\n\n- **Complete Data Access**: Events, matches, players, teams, series, and search\n- **Type-Safe**: Full Pydantic models with validation\n- **Production-Ready**: Error handling, retry logic, and rate limiting\n- **Easy to Use**: Simple, intuitive API design\n\n## Installation\n\n```bash\npip install vlrdevapi\n```\n\nRequires Python 3.11+\n\n## Quick Start\n\n```python\nimport vlrdevapi as vlr\n\n# Search for anything\nresults = vlr.search.search(\"nrg\")\nprint(f\"Found {results.total_results} results\")\n\n# Get upcoming matches\nmatches = vlr.matches.upcoming(limit=5)\nfor match in matches:\n print(f\"{match.team1.name} vs {match.team2.name}\")\n\n# Player stats\nprofile = vlr.players.profile(player_id=4164)\nprint(f\"{profile.handle} - {profile.country}\")\n\n# Team info\nteam = vlr.teams.info(team_id=1034)\nprint(f\"{team.name} ({team.tag})\")\n\n# Event details\nevents = vlr.events.list_events(tier=\"vct\", status=\"ongoing\")\n```\n\n## API Modules\n\n### Search\n```python\n# Search everything\nresults = vlr.search.search(\"nrg\")\n\n# Type-specific searches\nplayers = vlr.search.search_players(\"tenz\")\nteams = vlr.search.search_teams(\"sentinels\")\nevents = vlr.search.search_events(\"champions\")\n```\n\n### Matches\n```python\n# Get matches\nupcoming = vlr.matches.upcoming(limit=10)\nlive = vlr.matches.live()\ncompleted = vlr.matches.completed(limit=10)\n```\n\n### Players\n```python\n# Player data\nprofile = vlr.players.profile(player_id=4164)\nmatches = vlr.players.matches(player_id=4164, limit=20)\nstats = vlr.players.agent_stats(player_id=4164, timespan=\"60d\")\n```\n\n### Teams\n```python\n# Team data\ninfo = vlr.teams.info(team_id=1034)\nroster = vlr.teams.roster(team_id=1034)\nmatches = vlr.teams.upcoming_matches(team_id=1034)\nplacements = vlr.teams.placements(team_id=1034)\n```\n\n### Events\n```python\n# Event data\nevents = vlr.events.list_events(tier=\"vct\", status=\"ongoing\")\ninfo = vlr.events.info(event_id=2498)\nmatches = vlr.events.matches(event_id=2498)\nstandings = vlr.events.standings(event_id=2498)\n```\n\n### Series\n```python\n# Match details\ninfo = vlr.series.info(match_id=530935)\nmaps = vlr.series.matches(series_id=530935)\n```\n\n## Documentation\n\nFull documentation available at [vlrdevapi.readthedocs.io](https://vlrdevapi.readthedocs.io/)\n\n- [API Reference](https://vlrdevapi.readthedocs.io/en/latest/api/) - Complete function documentation\n- [Examples](https://vlrdevapi.readthedocs.io/en/latest/examples.html) - Practical code examples\n- [Installation Guide](https://vlrdevapi.readthedocs.io/en/latest/installation.html) - Setup instructions\n\n## Common Use Cases\n\n- Analytics dashboards and statistics trackers\n- Tournament tracking and match notifications\n- Player performance analysis\n- Discord bots and automated reports\n- Betting prediction models\n- Research and data analysis\n\n## FAQ\n\n**Is this official?** No, VLR.gg has no official API. This is a community library.\n\n**How do I find IDs?** Check VLR.gg URLs. Example: `vlr.gg/player/4164/aspas` \u2192 player ID is `4164`\n\n**Python version?** Requires Python 3.11+\n\n## Links\n\n- [Documentation](https://vlrdevapi.readthedocs.io/)\n- [GitHub](https://github.com/vanshbordia/vlrdevapi)\n- [Issues](https://github.com/vanshbordia/vlrdevapi/issues)\n\n## License\n\nMIT License - see LICENSE file\n\n---\n\n**Disclaimer:** Not affiliated with VLR.gg or Riot Games. Use responsibly.\n",
"bugtrack_url": null,
"license": "MIT License\n \n Copyright (c) 2025 Vansh Bordia\n \n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n \n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n \n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n ",
"summary": "The comprehensive Python library for VLR.gg Valorant esports data scraping - tournaments, matches, players, and statistics",
"version": "1.1.0",
"project_urls": {
"Documentation": "https://vlrdevapi.readthedocs.io/en/latest/",
"Homepage": "https://github.com/vanshbordia/vlrdevapi",
"Issues": "https://github.com/vanshbordia/vlrdevapi/issues",
"Source": "https://github.com/vanshbordia/vlrdevapi"
},
"split_keywords": [
"valorant",
" esports",
" vlr",
" vlr.gg",
" scraper",
" api",
" gaming",
" competitive",
" tournament",
" statistics",
" data",
" vct",
" web-scraping"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "b202a9a26c4e60cafbd3276a86d1c57b81cfc59187b9d5c8be78dcc898251fa2",
"md5": "2ec8ae2ee782647e9143d7339e41e297",
"sha256": "05046254d144e1662965d1e9e5e5618b724d2e36251634f080091f94d4b71a90"
},
"downloads": -1,
"filename": "vlrdevapi-1.1.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "2ec8ae2ee782647e9143d7339e41e297",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.11",
"size": 56532,
"upload_time": "2025-10-18T23:55:02",
"upload_time_iso_8601": "2025-10-18T23:55:02.124535Z",
"url": "https://files.pythonhosted.org/packages/b2/02/a9a26c4e60cafbd3276a86d1c57b81cfc59187b9d5c8be78dcc898251fa2/vlrdevapi-1.1.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8e3411e1f18c9041be9196b893581e2d50aa41c0fcb6be4a4088080a5bc38efc",
"md5": "293a1d633fff583b2f15ca9fef55a740",
"sha256": "60ba5e7c4001b0cb792e45715c9203651bed543544a7dd09c65546fb8404a9c6"
},
"downloads": -1,
"filename": "vlrdevapi-1.1.0.tar.gz",
"has_sig": false,
"md5_digest": "293a1d633fff583b2f15ca9fef55a740",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.11",
"size": 48888,
"upload_time": "2025-10-18T23:55:03",
"upload_time_iso_8601": "2025-10-18T23:55:03.591711Z",
"url": "https://files.pythonhosted.org/packages/8e/34/11e1f18c9041be9196b893581e2d50aa41c0fcb6be4a4088080a5bc38efc/vlrdevapi-1.1.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-10-18 23:55:03",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "vanshbordia",
"github_project": "vlrdevapi",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "vlrdevapi"
}