Name | prokabaddidata JSON |
Version |
0.1.1
JSON |
| download |
home_page | None |
Summary | A Python module for aggregating Kabaddi data |
upload_time | 2024-08-02 20:51:16 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.7 |
license | MIT License Copyright (c) 2022 just-the-docs 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 |
kabaddi
data
aggregator
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
<p align="center">
<img src="docs/assets/kabaddi_api_logo.png" alt="Kabaddi Data Aggregator Logo" width="200"/>
</p>
<h1 align="center">Kabaddi Data API</h1>
<p align="center">
<strong>Comprehensive data collection and analysis tools for professional Kabaddi leagues</strong>
</p>
<p align="center">
<a href="#features">Features</a> •
<a href="#installation">Installation</a> •
<a href="#usage">Usage</a> •
<a href="#contributing">Contributing</a> •
<a href="#license">License</a>
</p>
---
Kabaddi Data Aggregator is a Python module that provides tools for collecting and analyzing data from professional Kabaddi leagues. It uses web scraping techniques to gather information about teams, players, and match statistics from various online sources.
## Features
- Retrieve team names and URLs
- Fetch player information and statistics
- Get current season standings
- Extract team line-up data
- Analyze team-level statistics
- Gather player performance data
## Installation
You can install the Kabaddi Data Aggregator using pip:
```
pip install kabaddi_data_aggregator
```
## Requirements
- Python 3.7+
- Selenium WebDriver
- Firefox browser (for Selenium WebDriver)
## Usage
Here's a quick example of how to use the Kabaddi Data Aggregator:
```python
from kabaddi_data_aggregator import KabaddiDataAggregator
# Initialize the aggregator
aggregator = KabaddiDataAggregator()
# Get all team names
team_names = aggregator.get_all_team_names()
print("Team Names:", team_names)
# Get current season standings
standings = aggregator.team_season_standings()
print("Season Standings:", standings)
# Get player information
players_info = aggregator.get_players_team_info_and_profile_url()
print("Players Info:", players_info[:5]) # Print first 5 players
# Get team line-up data
line_up_data = aggregator.team_line_up()
print("Team Line-up Data:", line_up_data)
```
For more detailed usage instructions and API documentation, please refer to our [documentation page](https://annimukherjee.github.io/ProKabaddi_API/).
## Contributing
We welcome contributions to the Kabaddi Data Aggregator project! If you'd like to contribute, please follow these steps:
1. Fork the repository
2. Create a new branch (`git checkout -b feature/your-feature-name`)
3. Make your changes
4. Commit your changes (`git commit -am 'Add some feature'`)
5. Push to the branch (`git push origin feature/your-feature-name`)
6. Create a new Pull Request
## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
## Acknowledgments
- Thanks to the various website owners for providing the data sources
## Contact
If you have any questions, feel free to reach out to [Aniruddha Mukherjee] at [mukh.aniruddha@gmail.com] or open an issue in the GitHub repository.
---
<p align="center">
Made with ❤️ for Kabaddi enthusiasts and data analysts
</p>
Please star this repository if you found it helpful! Your support is greatly appreciated.
Raw data
{
"_id": null,
"home_page": null,
"name": "prokabaddidata",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.7",
"maintainer_email": null,
"keywords": "kabaddi, data, aggregator",
"author": null,
"author_email": "Bhaskar Lalwani <bhaskarlalwani2040@gmail.com>, Aniruddha Mukherjee <mukh.aniruddha@example.com>",
"download_url": "https://files.pythonhosted.org/packages/91/b8/b2706b90e83b49011e0442547d90f2f445165e0bc9ad11b3a551c3ee1857/prokabaddidata-0.1.1.tar.gz",
"platform": null,
"description": "<p align=\"center\">\n <img src=\"docs/assets/kabaddi_api_logo.png\" alt=\"Kabaddi Data Aggregator Logo\" width=\"200\"/>\n</p>\n\n<h1 align=\"center\">Kabaddi Data API</h1>\n\n<p align=\"center\">\n <strong>Comprehensive data collection and analysis tools for professional Kabaddi leagues</strong>\n</p>\n\n<p align=\"center\">\n <a href=\"#features\">Features</a> \u2022\n <a href=\"#installation\">Installation</a> \u2022\n <a href=\"#usage\">Usage</a> \u2022\n <a href=\"#contributing\">Contributing</a> \u2022\n <a href=\"#license\">License</a>\n</p>\n\n---\n\nKabaddi Data Aggregator is a Python module that provides tools for collecting and analyzing data from professional Kabaddi leagues. It uses web scraping techniques to gather information about teams, players, and match statistics from various online sources.\n\n## Features\n\n- Retrieve team names and URLs\n- Fetch player information and statistics\n- Get current season standings\n- Extract team line-up data\n- Analyze team-level statistics\n- Gather player performance data\n\n## Installation\n\nYou can install the Kabaddi Data Aggregator using pip:\n\n```\npip install kabaddi_data_aggregator\n```\n\n## Requirements\n\n- Python 3.7+\n- Selenium WebDriver\n- Firefox browser (for Selenium WebDriver)\n\n## Usage\n\nHere's a quick example of how to use the Kabaddi Data Aggregator:\n\n```python\nfrom kabaddi_data_aggregator import KabaddiDataAggregator\n\n# Initialize the aggregator\naggregator = KabaddiDataAggregator()\n\n# Get all team names\nteam_names = aggregator.get_all_team_names()\nprint(\"Team Names:\", team_names)\n\n# Get current season standings\nstandings = aggregator.team_season_standings()\nprint(\"Season Standings:\", standings)\n\n# Get player information\nplayers_info = aggregator.get_players_team_info_and_profile_url()\nprint(\"Players Info:\", players_info[:5]) # Print first 5 players\n\n# Get team line-up data\nline_up_data = aggregator.team_line_up()\nprint(\"Team Line-up Data:\", line_up_data)\n```\n\nFor more detailed usage instructions and API documentation, please refer to our [documentation page](https://annimukherjee.github.io/ProKabaddi_API/).\n\n## Contributing\n\nWe welcome contributions to the Kabaddi Data Aggregator project! If you'd like to contribute, please follow these steps:\n\n1. Fork the repository\n2. Create a new branch (`git checkout -b feature/your-feature-name`)\n3. Make your changes\n4. Commit your changes (`git commit -am 'Add some feature'`)\n5. Push to the branch (`git push origin feature/your-feature-name`)\n6. Create a new Pull Request\n\n\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## Acknowledgments\n\n- Thanks to the various website owners for providing the data sources\n\n## Contact\n\nIf you have any questions, feel free to reach out to [Aniruddha Mukherjee] at [mukh.aniruddha@gmail.com] or open an issue in the GitHub repository.\n\n---\n\n<p align=\"center\">\n Made with \u2764\ufe0f for Kabaddi enthusiasts and data analysts\n</p>\n\nPlease star this repository if you found it helpful! Your support is greatly appreciated.\n",
"bugtrack_url": null,
"license": "MIT License Copyright (c) 2022 just-the-docs 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. ",
"summary": "A Python module for aggregating Kabaddi data",
"version": "0.1.1",
"project_urls": {
"Bug Tracker": "https://github.com/annimukherjee/ProKabaddi_API/issues",
"Docs": "https://annimukherjee.github.io/ProKabaddi_API/",
"Homepage": "https://github.com/annimukherjee/ProKabaddi_API"
},
"split_keywords": [
"kabaddi",
" data",
" aggregator"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "ebddc033288e433c18dd2c6253b80b2fe86b81455ee3a7d7794d3ebd8c2ccd99",
"md5": "48daa958a09702833e36352e219b3012",
"sha256": "7723d77d3aadcca9bc3b0aaec61f647ead173024e31f5e870274dfe22584b764"
},
"downloads": -1,
"filename": "prokabaddidata-0.1.1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "48daa958a09702833e36352e219b3012",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.7",
"size": 4145,
"upload_time": "2024-08-02T20:51:15",
"upload_time_iso_8601": "2024-08-02T20:51:15.273884Z",
"url": "https://files.pythonhosted.org/packages/eb/dd/c033288e433c18dd2c6253b80b2fe86b81455ee3a7d7794d3ebd8c2ccd99/prokabaddidata-0.1.1-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "91b8b2706b90e83b49011e0442547d90f2f445165e0bc9ad11b3a551c3ee1857",
"md5": "5abc7129edf2e2f4a6dc684caef6797e",
"sha256": "6640d7ed64239bfb65197dfcccca57ad65d0239fc93ad10065c07f7e9444e8be"
},
"downloads": -1,
"filename": "prokabaddidata-0.1.1.tar.gz",
"has_sig": false,
"md5_digest": "5abc7129edf2e2f4a6dc684caef6797e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.7",
"size": 3773,
"upload_time": "2024-08-02T20:51:16",
"upload_time_iso_8601": "2024-08-02T20:51:16.716867Z",
"url": "https://files.pythonhosted.org/packages/91/b8/b2706b90e83b49011e0442547d90f2f445165e0bc9ad11b3a551c3ee1857/prokabaddidata-0.1.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-08-02 20:51:16",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "annimukherjee",
"github_project": "ProKabaddi_API",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "prokabaddidata"
}