Name | prokabaddiAPI JSON |
Version |
0.0.2
JSON |
| download |
home_page | None |
Summary | This is a powerful tool designed to extract comprehensive data about players and teams from the official Pro prokabaddiAPI website. This library is engineered to provide detailed insights into prokabaddiAPI, including player statistics, team performance metrics, and match results. It offers a streamlined and efficient way to gather and analyze prokabaddiAPI data, which is crucial for sports analytics and machine learning applications. |
upload_time | 2024-08-01 06:17:05 |
maintainer | None |
docs_url | None |
author | Abhineet Raj |
requires_python | None |
license | None |
keywords |
kabaddi-data
kabaddi
prokabaddi
prokabaddiapi
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# ProprokabaddiAPI
This is a powerful tool designed to extract comprehensive data about players and teams from the official Pro prokabaddiAPI website. This library is engineered to provide detailed insights into prokabaddiAPI, including player statistics, team performance metrics, and match results. It offers a streamlined and efficient way to gather and analyze prokabaddiAPI data, which is crucial for sports analytics and machine learning applications.
The data is scraped using selenium from - https://www.prokabaddi.com/
## Uses of the prokabaddiAPI Data Scraper Library
1. Data Collection and Aggregation: The library automates the process of gathering detailed information from the Pro prokabaddiAPI website. This includes player profiles, team statistics, match summaries, and historical data. By centralizing this information, users can access a wealth of data with minimal effort.
2. Machine Learning: The library facilitates the development of predictive models and algorithms by providing a rich dataset for training. Machine learning practitioners can use the data to build models that predict match outcomes, player performance, and team success rates. This can lead to the creation of advanced analytics tools that offer insights into game strategies and player efficiency.
3. Data Science: For data scientists, this library is a valuable resource for exploratory data analysis (EDA) and statistical analysis. It enables the extraction of data for visualizations, trend analysis, and performance metrics, which can be used to derive actionable insights and identify patterns in prokabaddiAPI matches and player performance.
4. Sports Analytics: Analysts can leverage the scraped data to perform in-depth evaluations of team and player performance. This includes analyzing player form, team dynamics, and historical performance trends. The library supports the development of dashboards and reports that assist coaches, team managers, and fans in understanding the nuances of the game.
## Influence on the Evolution of prokabaddiAPI
prokabaddiAPI, traditionally popular in South Asia, is experiencing significant growth and evolving as a global sport. The Pro prokabaddiAPI League (PKL) has played a pivotal role in popularizing the sport by introducing a professional format and attracting international audiences. As prokabaddiAPI evolves, the need for data-driven insights becomes more critical.
The prokabaddiAPI Data Scraper library contributes to this evolution by:
- Enhancing Competitiveness: By providing detailed player and team data, the library helps teams and coaches refine their strategies and improve performance. In a sport where strategic decisions are crucial, access to precise and comprehensive data can provide a competitive edge.
- Promoting Fan Engagement: Fans are increasingly interested in detailed statistics and analytics. This library allows for the creation of engaging content, such as performance summaries and detailed reports, which can enhance the viewing experience and attract new fans.
- Supporting Research and Development: Researchers studying sports analytics and the impact of various factors on performance can use the data provided by the library to conduct studies and publish findings. This contributes to the academic and practical understanding of prokabaddiAPI.
Overall, the prokabaddiAPI Data Scraper Python library is a valuable asset for anyone involved in the prokabaddiAPI ecosystem, from sports analysts and data scientists to coaches and fans. By facilitating detailed data collection and analysis, it supports the ongoing evolution of prokabaddiAPI and its integration into the broader sports analytics landscape.
## Note:-
Your system should have firebox browser
## Usage
```
pip install prokabaddiAPI
```
### Get all team profile links
```
import prokabaddiAPI
prokabaddiAPI.get_all_team_url()
```
Output format
```
[
{'TeamName': 'Bengaluru Bulls', 'TeamURL': 'https://www.proprokabaddiAPI.com/teams/bengaluru-bulls-profile-1'},
{'TeamName': 'Bengal Warriors', 'TeamURL': 'https://www.proprokabaddiAPI.com/teams/bengal-warriors-profile-4'},
{'TeamName': 'Dabang Delhi Kc', 'TeamURL': 'https://www.proprokabaddiAPI.com/teams/dabang-delhi-kc-profile-2'},
{'TeamName': 'Haryana Steelers', 'TeamURL': 'https://www.proprokabaddiAPI.com/teams/haryana-steelers-profile-28'},
{'TeamName': 'Jaipur Pink Panthers', 'TeamURL': 'https://www.proprokabaddiAPI.com/teams/jaipur-pink-panthers-profile-3'},
{'TeamName': 'Patna Pirates', 'TeamURL': 'https://www.proprokabaddiAPI.com/teams/patna-pirates-profile-6
{'TeamName': 'Puneri Paltan', 'TeamURL': 'https://www.proprokabaddiAPI.com/teams/puneri-paltan-profile-7'},
{'TeamName': 'Tamil Thalaivas', 'TeamURL': 'https://www.proprokabaddiAPI.com/teams/tamil-thalaivas-profile-29'},
{'TeamName': 'Telugu Titans', 'TeamURL': 'https://www.proprokabaddiAPI.com/teams/telugu-titans-profile-8'},
{'TeamName': 'U Mumba', 'TeamURL': 'https://www.proprokabaddiAPI.com/teams/u-mumba-profile-5'},
{'TeamName': 'Up Yoddha', 'TeamURL': 'https://www.proprokabaddiAPI.com/teams/up-yoddha-profile-30'}
]
```
### Get all player profile URL
```
import prokabaddiAPI
prokabaddiAPI.get_all_player_url()
```
Output format
```
[
{
'name': 'Samuel Wafula',
'category': 'All-Rounder',
'profileURL': 'https://www.proprokabaddiAPI.com/players/samuel-wafula-profile-4926'
},
{
'name': 'Nitin Panwar',
'category': 'All-Rounder',
'profileURL': 'https://www.proprokabaddiAPI.com/players/nitin-panwar-profile-3039'
}
....
]
```
### Get team stats from profile url of team
```
import prokabaddiAPI
prokabaddiAPI.get_team_stats_from_url("https://www.proprokabaddiAPI.com/teams/bengaluru-bulls-profile-1")
```
Output format
```
[
[
{'season': 'Season 10'},
{'Matches Played': '21'},
{'Total Raids': '912'},
{'Total Tackles': '491'},
{'Wins': '7'},
{'Draws': '2'},
{'Losses': '12'},
{'Successful Raids': '287'},
{'Unsuccessful Raids': '250'},
{'Empty Raids': '375'},
{'Successful Tackles': '211'},
{'Unsuccessful Tackles': '280'},
{'players':
[
{
'name': 'Vikash Kandola',
'category': 'Raider',
'profileURL': 'https://www.proprokabaddiAPI.com/players/vikash-kandola-profile-366'
},
{
'name': 'Monu',
'category': 'Raider',
'profileURL': 'https://www.proprokabaddiAPI.com/players/monu-profile-3082'
},
.....
],
}
],
.....
]
```
### Get player stats from player's url
```
import prokabaddiAPI
prokabaddiAPI.get_player_stats_from_url("https://www.proprokabaddiAPI.com/players/maninder-singh-profile-143")
```
Output format
```
[
{
'teamName': 'Bengal Warriors'
},
[
{
'season': 'Season 10'
},
{
'Matches Played': '21'
},
{
'Total Points Earned': '198'
},
{
'Raid Points Per Match': '9.38'
},
{
'Total Raids': '322'
},
{
'No. Of Super Raids': '5'
},
{
'Super 10s': '9'
},
{
'Total Raids Points': '197'
},
{
'Average Raid Points/Match': '9.38'
},
{
'No. Of Super Tackles': '0'
},
{
'High 5s': '0'
},
{
'Total Tackle Points': '1'
},
{
'Average Successful Tackles/Match': '0.05'
},
{
'Total Tackles': '9'
},
{
'Not out %': '74.22%'
},
{
'Successful Raids %': '48%'
},
{
'Tackle Success Rate %': '11%'
}
],
....
]
```
## Developer
* [@abhineetraj1](https://github.com/abhineetraj1)
Raw data
{
"_id": null,
"home_page": null,
"name": "prokabaddiAPI",
"maintainer": null,
"docs_url": null,
"requires_python": null,
"maintainer_email": null,
"keywords": "kabaddi-data, kabaddi, prokabaddi, prokabaddiAPI",
"author": "Abhineet Raj",
"author_email": "abhineetraj5032@gmail.com",
"download_url": "https://files.pythonhosted.org/packages/e6/5b/c1b2e3a61726cce56e653a8cea4f3bf425da84af50b913c395ec3b5e16f0/prokabaddiapi-0.0.2.tar.gz",
"platform": null,
"description": "# ProprokabaddiAPI\r\n\r\nThis is a powerful tool designed to extract comprehensive data about players and teams from the official Pro prokabaddiAPI website. This library is engineered to provide detailed insights into prokabaddiAPI, including player statistics, team performance metrics, and match results. It offers a streamlined and efficient way to gather and analyze prokabaddiAPI data, which is crucial for sports analytics and machine learning applications.\r\n\r\nThe data is scraped using selenium from - https://www.prokabaddi.com/\r\n\r\n## Uses of the prokabaddiAPI Data Scraper Library\r\n\r\n1. Data Collection and Aggregation: The library automates the process of gathering detailed information from the Pro prokabaddiAPI website. This includes player profiles, team statistics, match summaries, and historical data. By centralizing this information, users can access a wealth of data with minimal effort.\r\n\r\n2. Machine Learning: The library facilitates the development of predictive models and algorithms by providing a rich dataset for training. Machine learning practitioners can use the data to build models that predict match outcomes, player performance, and team success rates. This can lead to the creation of advanced analytics tools that offer insights into game strategies and player efficiency.\r\n\r\n3. Data Science: For data scientists, this library is a valuable resource for exploratory data analysis (EDA) and statistical analysis. It enables the extraction of data for visualizations, trend analysis, and performance metrics, which can be used to derive actionable insights and identify patterns in prokabaddiAPI matches and player performance.\r\n\r\n4. Sports Analytics: Analysts can leverage the scraped data to perform in-depth evaluations of team and player performance. This includes analyzing player form, team dynamics, and historical performance trends. The library supports the development of dashboards and reports that assist coaches, team managers, and fans in understanding the nuances of the game.\r\n\r\n## Influence on the Evolution of prokabaddiAPI\r\n\r\nprokabaddiAPI, traditionally popular in South Asia, is experiencing significant growth and evolving as a global sport. The Pro prokabaddiAPI League (PKL) has played a pivotal role in popularizing the sport by introducing a professional format and attracting international audiences. As prokabaddiAPI evolves, the need for data-driven insights becomes more critical.\r\n\r\nThe prokabaddiAPI Data Scraper library contributes to this evolution by:\r\n\r\n- Enhancing Competitiveness: By providing detailed player and team data, the library helps teams and coaches refine their strategies and improve performance. In a sport where strategic decisions are crucial, access to precise and comprehensive data can provide a competitive edge.\r\n\r\n- Promoting Fan Engagement: Fans are increasingly interested in detailed statistics and analytics. This library allows for the creation of engaging content, such as performance summaries and detailed reports, which can enhance the viewing experience and attract new fans.\r\n\r\n- Supporting Research and Development: Researchers studying sports analytics and the impact of various factors on performance can use the data provided by the library to conduct studies and publish findings. This contributes to the academic and practical understanding of prokabaddiAPI.\r\n\r\nOverall, the prokabaddiAPI Data Scraper Python library is a valuable asset for anyone involved in the prokabaddiAPI ecosystem, from sports analysts and data scientists to coaches and fans. By facilitating detailed data collection and analysis, it supports the ongoing evolution of prokabaddiAPI and its integration into the broader sports analytics landscape.\r\n\r\n## Note:-\r\nYour system should have firebox browser\r\n\r\n## Usage\r\n\r\n\r\n```\r\npip install prokabaddiAPI\r\n```\r\n\r\n\r\n### Get all team profile links\r\n\r\n\r\n```\r\nimport prokabaddiAPI\r\nprokabaddiAPI.get_all_team_url()\r\n```\r\n\r\nOutput format\r\n\r\n```\r\n[\r\n {'TeamName': 'Bengaluru Bulls', 'TeamURL': 'https://www.proprokabaddiAPI.com/teams/bengaluru-bulls-profile-1'},\r\n {'TeamName': 'Bengal Warriors', 'TeamURL': 'https://www.proprokabaddiAPI.com/teams/bengal-warriors-profile-4'},\r\n {'TeamName': 'Dabang Delhi Kc', 'TeamURL': 'https://www.proprokabaddiAPI.com/teams/dabang-delhi-kc-profile-2'},\r\n {'TeamName': 'Haryana Steelers', 'TeamURL': 'https://www.proprokabaddiAPI.com/teams/haryana-steelers-profile-28'},\r\n {'TeamName': 'Jaipur Pink Panthers', 'TeamURL': 'https://www.proprokabaddiAPI.com/teams/jaipur-pink-panthers-profile-3'},\r\n {'TeamName': 'Patna Pirates', 'TeamURL': 'https://www.proprokabaddiAPI.com/teams/patna-pirates-profile-6\r\n {'TeamName': 'Puneri Paltan', 'TeamURL': 'https://www.proprokabaddiAPI.com/teams/puneri-paltan-profile-7'},\r\n {'TeamName': 'Tamil Thalaivas', 'TeamURL': 'https://www.proprokabaddiAPI.com/teams/tamil-thalaivas-profile-29'},\r\n {'TeamName': 'Telugu Titans', 'TeamURL': 'https://www.proprokabaddiAPI.com/teams/telugu-titans-profile-8'},\r\n {'TeamName': 'U Mumba', 'TeamURL': 'https://www.proprokabaddiAPI.com/teams/u-mumba-profile-5'},\r\n {'TeamName': 'Up Yoddha', 'TeamURL': 'https://www.proprokabaddiAPI.com/teams/up-yoddha-profile-30'}\r\n]\r\n```\r\n\r\n### Get all player profile URL\r\n\r\n```\r\nimport prokabaddiAPI\r\nprokabaddiAPI.get_all_player_url()\r\n```\r\n\r\nOutput format\r\n\r\n```\r\n[\r\n {\r\n 'name': 'Samuel Wafula',\r\n 'category': 'All-Rounder',\r\n 'profileURL': 'https://www.proprokabaddiAPI.com/players/samuel-wafula-profile-4926'\r\n },\r\n {\r\n 'name': 'Nitin Panwar',\r\n 'category': 'All-Rounder',\r\n 'profileURL': 'https://www.proprokabaddiAPI.com/players/nitin-panwar-profile-3039'\r\n }\r\n ....\r\n]\r\n```\r\n\r\n### Get team stats from profile url of team\r\n\r\n```\r\nimport prokabaddiAPI\r\nprokabaddiAPI.get_team_stats_from_url(\"https://www.proprokabaddiAPI.com/teams/bengaluru-bulls-profile-1\")\r\n```\r\n\r\nOutput format\r\n\r\n```\r\n\r\n[\r\n [\r\n {'season': 'Season 10'},\r\n {'Matches Played': '21'},\r\n {'Total Raids': '912'},\r\n {'Total Tackles': '491'},\r\n {'Wins': '7'},\r\n {'Draws': '2'},\r\n {'Losses': '12'},\r\n {'Successful Raids': '287'},\r\n {'Unsuccessful Raids': '250'},\r\n {'Empty Raids': '375'},\r\n {'Successful Tackles': '211'},\r\n {'Unsuccessful Tackles': '280'},\r\n {'players':\r\n [\r\n {\r\n 'name': 'Vikash Kandola',\r\n 'category': 'Raider',\r\n 'profileURL': 'https://www.proprokabaddiAPI.com/players/vikash-kandola-profile-366'\r\n },\r\n {\r\n 'name': 'Monu',\r\n 'category': 'Raider',\r\n 'profileURL': 'https://www.proprokabaddiAPI.com/players/monu-profile-3082'\r\n },\r\n .....\r\n ],\r\n }\r\n ],\r\n .....\r\n]\r\n```\r\n\r\n### Get player stats from player's url\r\n\r\n```\r\nimport prokabaddiAPI\r\nprokabaddiAPI.get_player_stats_from_url(\"https://www.proprokabaddiAPI.com/players/maninder-singh-profile-143\")\r\n```\r\n\r\nOutput format\r\n\r\n```\r\n[\r\n {\r\n 'teamName': 'Bengal Warriors'\r\n },\r\n [\r\n {\r\n 'season': 'Season 10'\r\n },\r\n {\r\n 'Matches Played': '21'\r\n },\r\n {\r\n 'Total Points Earned': '198'\r\n },\r\n {\r\n 'Raid Points Per Match': '9.38'\r\n },\r\n {\r\n 'Total Raids': '322'\r\n },\r\n {\r\n 'No. Of Super Raids': '5'\r\n },\r\n {\r\n 'Super 10s': '9'\r\n },\r\n {\r\n 'Total Raids Points': '197'\r\n },\r\n {\r\n 'Average Raid Points/Match': '9.38'\r\n },\r\n {\r\n 'No. Of Super Tackles': '0'\r\n },\r\n {\r\n 'High 5s': '0'\r\n },\r\n {\r\n 'Total Tackle Points': '1'\r\n },\r\n {\r\n 'Average Successful Tackles/Match': '0.05'\r\n },\r\n {\r\n 'Total Tackles': '9'\r\n },\r\n {\r\n 'Not out %': '74.22%'\r\n },\r\n {\r\n 'Successful Raids %': '48%'\r\n },\r\n {\r\n 'Tackle Success Rate %': '11%'\r\n }\r\n ], \r\n ....\r\n]\r\n```\r\n\r\n\r\n\r\n## Developer\r\n\r\n* [@abhineetraj1](https://github.com/abhineetraj1)\r\n",
"bugtrack_url": null,
"license": null,
"summary": "This is a powerful tool designed to extract comprehensive data about players and teams from the official Pro prokabaddiAPI website. This library is engineered to provide detailed insights into prokabaddiAPI, including player statistics, team performance metrics, and match results. It offers a streamlined and efficient way to gather and analyze prokabaddiAPI data, which is crucial for sports analytics and machine learning applications.",
"version": "0.0.2",
"project_urls": null,
"split_keywords": [
"kabaddi-data",
" kabaddi",
" prokabaddi",
" prokabaddiapi"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "14c0f472984a41f06d55a29a7134791c42eb111c858acc3fc952f38762d99c89",
"md5": "2bd44464d1b84be90f1fad47eeb53f2e",
"sha256": "ae049f24458a6f324e20ab2b006690260cc48315274551411952229dd2140656"
},
"downloads": -1,
"filename": "prokabaddiAPI-0.0.2-py3-none-any.whl",
"has_sig": false,
"md5_digest": "2bd44464d1b84be90f1fad47eeb53f2e",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 4643,
"upload_time": "2024-08-01T06:17:04",
"upload_time_iso_8601": "2024-08-01T06:17:04.110964Z",
"url": "https://files.pythonhosted.org/packages/14/c0/f472984a41f06d55a29a7134791c42eb111c858acc3fc952f38762d99c89/prokabaddiAPI-0.0.2-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e65bc1b2e3a61726cce56e653a8cea4f3bf425da84af50b913c395ec3b5e16f0",
"md5": "62408065b5abb3dcd099524d53629e1e",
"sha256": "70323cd8ce41061941a56f6d96719bdbe202fc43142d8543f363bea69307d8d7"
},
"downloads": -1,
"filename": "prokabaddiapi-0.0.2.tar.gz",
"has_sig": false,
"md5_digest": "62408065b5abb3dcd099524d53629e1e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 4686,
"upload_time": "2024-08-01T06:17:05",
"upload_time_iso_8601": "2024-08-01T06:17:05.474011Z",
"url": "https://files.pythonhosted.org/packages/e6/5b/c1b2e3a61726cce56e653a8cea4f3bf425da84af50b913c395ec3b5e16f0/prokabaddiapi-0.0.2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-08-01 06:17:05",
"github": false,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"lcname": "prokabaddiapi"
}