volleystats


Namevolleystats JSON
Version 0.8.1 PyPI version JSON
download
home_pagehttps://github.com/claromes/volleystats
SummaryCommand-line tool to scrape volleyball statistics from Data Project Web Competition websites
upload_time2024-01-27 21:14:29
maintainer
docs_urlNone
authorClaromes
requires_python>=3.8
licenseGPLv3
keywords volleyball sports command-line datasets analytics
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Volley Stats

[![PyPI](https://img.shields.io/pypi/v/volleystats)](https://pypi.org/project/volleystats/)

Command-line tool to scrape volleyball statistics from Data Project Web Competition websites.

Volley Stats facilitates the export of data in CSV format of volleyball matches and competitions organized by entities that use Data Project WCM. The tool streamlines the collection of individual matches, match lists, and automates the retrieval of individual match data from the competition matches list.

Additionally, it documents the structure of URLs for Web Competition websites, simplifying the search for identifiers (mID, ID, PID), and also supplies acronyms for the main entities utilizing Data Project Management.

**This tool is not affiliated with Genius Sports Italy.**

## Installation

### Requirement

- Python 3.8+

```shell
pip install volleystats
```

# Documentation

- [Extracted Data](#extracted-data)
- [Usage](#usage)
    - [Match](#match)
    - [Competition Matches](#competition-matches)
    - [Competition Matches with PID](#competition-matches-with-pid)
    - [Matches via Competition Matches file](#matches-via-competition-matches-file)
    - [Help](#help)
    - [Log](#log)
    - [Output messages](#output-messages)
- [Data Project Web Competition URLs structure](#data-project-web-competition-urls-structure)
    - Hostname
    - Pathnames and search parameters
- [Federations, Confederations and Leagues Acronym](#federations-confederations-and-leagues-acronym)
    - European Volleyball
    - South American Volleyball
- [Troubleshooting](#troubleshooting)
    - [Match files collected from batch file](#match-files-collected-from-batch-file)

## Extracted Data

- Competition
    - Competition ID
    - Home Team
    - Guest Team
    - Home Points
    - Guest Points
    - Date
    - Stadium

- Match
    - Match ID
    - Match date
    - Home Team
    - Guest Team
    - Coach
    - Stadium
    - Total Points
    - Break Points
    - Win-Lost
    - Total Serves
    - Serve Erros
    - Serve Points
    - Total Receptions
    - Reception Erros
    - Positive Pass Percentage (Pos%)
    - Excellent/ Perfect Pass Percentage (Exc.%)
    - Total Attacks
    - Attack Erros
    - Blocked Attack
    - Attack Points (Exc.)
    - Attack Points Percentage (Exc.%)
    - Block Points

## Usage

```
volleystats [--help] --fed FED (--match MATCH | --comp COMP | --batch CSV_FILE_PATH) [--pid PID] [--log]
```

- `--fed`, `-f`: Federation Acronym (required)
- `--match`, `-m`: Statistics of a single match (required, unless `--comp` or `--batch` are provided)
- `--comp`, `-c`: List of matches in a competition (required, unless `--match` or `--batch` are provided)
- `--pid`, `-p`: PID of the competition (optional, only when `--comp` is provided)
- `--batch`, `-b`: CSV file path with Match IDs (Competition Matches output) (required, unless `--match` or `--comp` are provided)
- `--log`, `-l`: View the logging during scraping
- `--help`, `-h`: Show help message

### Match

```shell
volleystats --fed FED --match MATCH
```

#### Examples

- Brazilian Volleyball Confederation
    - Data Project website: https://cbv-web.dataproject.com/MatchStatistics.aspx?mID=1623
    - Federation Acronym: CBV
    - Match ID: 1623
    - Command: $ `volleystats --fed cbv --match 1623`
    - Output files:
        ```
        data/cbv-1623-22-10-28-guest-baruerivolleyballclub.csv
        data/cbv-1623-22-10-28-home-fluminense.csv
        ```

- Lithuanian Volleyball Federation
    - Data Project website: https://lvf-web.dataproject.com/MatchStatistics.aspx?mID=2093
    - Federation Acronym: LVF
    - Match ID: 2093
    - Command: $ `volleystats --fed lvf --match 2093`
    - Output files:
        ```
        data/lvf-2093-2022-11-23-guest-jonavossc.csv
        data/lvf-2093-2022-11-23-home-svaja-viktorija-lsu.csv
        ```

### Competition Matches

```shell
volleystats --fed FED --comp COMP
```

#### Example

- Brazilian Volleyball Confederation
    - Data Project website: https://cbv-web.dataproject.com/CompetitionMatches.aspx?ID=18
    - Federation Acronym: CBV
    - Competition ID: 18
    - Command: $ `volleystats --fed cbv --comp 18`
    - Output file:
        ```
        data/cbv-18-2022-2023-competition-matches.csv
        ```

### Competition Matches with PID

In some competitions, PID can be used to distinguish between seasons, such as regular season and playoffs. Therefore, it is necessary to submit this value to obtain statistics separately.

```shell
volleystats --fed FED --comp COMP --pid PID
```

#### Examples

- Bundesliga
    - Data Project website: https://vbl-web.dataproject.com/CompetitionMatches.aspx?ID=162&PID=173
    - Federation Acronym: VBL
    - Competition ID: 162
    - PID: 173
    - Season: Regular
    - Command: $ `volleystats --fed vbl --comp 162 --pid 173`
    - Output file:
        ```
        data/vbl-162-173-2022-2023-competition-matches.csv
        ```
    ---
    - Data Project website: https://vbl-web.dataproject.com/CompetitionMatches.aspx?ID=162&PID=174
    - Federation Acronym: VBL
    - Competition ID: 162
    - PID: 174
    - Season: Playoffs
    - Command: $ `volleystats --fed vbl --comp 162 --pid 174`
    - Output file:
        ```
        data/vbl-162-174-2023-2023-competition-matches.csv
        ```

### Matches via Competition Matches file

```shell
volleystats --fed FED --batch CSV_FILE_PATH
```

#### Example

- Brazilian Volleyball Confederation
    - Data Project website: https://cbv-web.dataproject.com/MatchStatistics.aspx?mID=ID
    - Federation Acronym: CBV
    - CSV file path (output of the [Competition Matches](#competition-matches)): data/cbv-18-2022-2023-competition-matches.csv
    - Command: $ `volleystats --fed cbv --batch data/cbv-18-2022-2023-competition-matches.csv`
    - Output files:
        ```
        data/cbv-1623-22-10-28-guest-baruerivolleyballclub.csv
        data/cbv-1623-22-10-28-home-fluminense.csv
        data/cbv-1618-2022-11-01-guest-energis8sãocaetano.csv
        data/cbv-1618-2022-11-01-home-esporteclubepinheiros.csv
        data/cbv-1619-2022-11-01-guest-abelmodavolei.csv
        data/cbv-1619-2022-11-01-home-gerdauminas.csv
        ...
        ```

### Help

```shell
volleystats --help
```

### Log
```shell
volleystats --fed FED (--match MATCH | --comp COMP | --batch CSV_FILE_PATH) --log
```

### Output messages

```
                    .
                    |`.
                    |  `.
                    |-_  `.
                    |  -_  `._
____________________|____-_ _|_______________,
',                         -_|                ',
  ',                         |                  ',
    ',                       |                    ',
      ',_____________________|______________________',

volleystats: started
volleystats: data/cbv-1623-22-10-28-home-fluminense.csv file was created
volleystats: data/cbv-1623-22-10-28-guest-baruerivolleyballclub.csv file was created
volleystats: finished
```

## Data Project Web Competition URLs structure

- Hostname: `<Fed_Acronym>`-web.dataproject.com

- Pathnames and search parameters:
    - /MainHome

    - /History?ID=`<Fed_ID>`

    - /CompetitionHome?ID=`<Category_ID>` (*could be Women, Men, Pro or Youth, e.g.*)

    - /CompetitionMatches?ID=`<Competition_ID>`&PID=`<PID>` (*PID could be regular season or playoffs, e.g.*)

    - /MatchStatistics?mID=`<Match_ID>`&ID=`<Competition_ID>`

## Federations, Confederations and Leagues Acronyms

**European Volleyball**

- `fshv`: [Albanian Volleyball Federation](https://fshv-web.dataproject.com/MainHome.aspx)
- `bvl`: [Baltic League](https://bvl-web.dataproject.com/MainHome.aspx)
- `bevl`: [Belgium Volleyball Federation](https://bevl-web.dataproject.com/MainHome.aspx)
- `osbih`: [Bosnia and Herzegovina Volleyball Federation](https://osbih-web.dataproject.com/MainHome.aspx)
- `bvf`: [Bulgarian Volleyball Federation](https://bvf-web.dataproject.com/MainHome.aspx)
- `vbl`: [Bundesliga](https://vbl-web.dataproject.com/MainHome.aspx)
- `hos`: [Croatian Volleyball Federation](https://hos-web.dataproject.com/MainHome.aspx)
- `cvf`: [Czech Volleyball Federation](https://cvf-web.dataproject.com/MainHome.aspx)
- `evf`: [Estonian Volleyball Federation](https://evf-web.dataproject.com/MainHome.aspx)
- `fbf`: [Faroe Islands Volleyball Association](https://fbf-web.dataproject.com/MainHome.aspx)
- `lml`: [Finland Volleyball League](https://lml-web.dataproject.com/MainHome.aspx)
- `eope`: [Hellenic Volleyball Federation](https://eope-web.dataproject.com/MainHome.aspx)
- `hvl`: [Hellenic Volleyball League](https://hvl-web.dataproject.com/MainHome.aspx)
- `hvf`: [Hungary Volleyball Federation](https://hvf-web.dataproject.com/MainHome.aspx)
- `bli`: [Icelandic Volleyball Association](https://bli-web.dataproject.com/MainHome.aspx)
- `iva`: [Israel Volleyball Association](https://iva-web.dataproject.com/MainHome.aspx)
- `fipav`: [Italian Volleyball Federation](https://fipav-web.dataproject.com/MainHome.aspx)
- `vfrk`: [Volleyball Federation of Republic of Kazakhstan](https://vfrk-web.dataproject.com/MainHome.aspx)
- `latvf`: [Latvian Volleyball Federation](https://latvf-web.dataproject.com/MainHome.aspx)
- `lnv`: [Ligue Nationale de Volley](https://lnv-web.dataproject.com/MainHome.aspx)
- `lvf`: [Lithuanian Volleyball Federation](https://lvf-web.dataproject.com/MainHome.aspx)
- `mva`: [Malta Volleyball Association](https://mva-web.dataproject.com/MainHome.aspx)
- `nvbf`: [Norwegian Volleyball Federation](https://nvbf-web.dataproject.com/MainHome.aspx)
- `fpv`: [Portuguese Volleyball Federation](https://fpv-web.dataproject.com/MainHome.aspx)
- `frv`: [Romanian Volleyball Federation](https://frv-web.dataproject.com/MainHome.aspx)
- `ossrb`: [Serbian Volleyball Federation](https://ossrb-web.dataproject.com/MainHome.aspx)
- `svf`: [Slovak Volleyball Federation](https://svf-web.dataproject.com/MainHome.aspx)
- `ozs`: [Slovenian Volleyball Federation](https://ozs-web.dataproject.com/MainHome.aspx)
- `rfevb`: [Spanish Volleyball Federation](https://rfevb-web.dataproject.com/MainHome.aspx)
- `svbf`: [Swedish Volleyball Federation](https://svbf-web.dataproject.com/MainHome.aspx)
- `swi`: [Swiss Volley](https://swi-web.dataproject.com/MainHome.aspx)
- `tvf`: [Turkish Volleyball Federation](https://tvf-web.dataproject.com/MainHome.aspx)
- `uvf`: [Ukrainian Volleyball Federation](https://uvf-web.dataproject.com/MainHome.aspx)
- `pvlu`: [Professional Volleyball League of Ukraine](https://pvlu-web.dataproject.com/MainHome.aspx)

**South American Volleyball**

- `feva`: [Argentine Volleyball Federation](https://feva-web.dataproject.com/MainHome.aspx)
- `cbv`: [Brazilian Volleyball Confederation](https://cbv-web.dataproject.com/MainHome.aspx)
- `fcv`: [Cordoba Volleyball Federation](https://fcv-web.dataproject.com/MainHome.aspx)
- `fpdv`: [Peruvian Volleyball Federation](https://fpdv-web.dataproject.com/MainHome.aspx)

## Troubleshooting

### Match files collected from batch file

In some cases, empty files may be returned, usually named as `<fed_acronym>-<match_id>-guest_stats.csv` and `<fed_acronym>-<match_id>-home_stats.csv`. This can happen due to the hiding of a match in the competition listing, either because it was canceled or incorrectly entered. The match is hidden from view, but it remains accessible in the HTML, causing the tool to return an empty file. In such cases, simply ignore and delete this file.

It can also happen that the data is only available in PDF, which makes scraping impossible.

## Development

$ `git clone git@github.com:claromes/volleystats.git`

$ `cd volleystats`

$ `pip install -r requirements.txt`

$ `pip install --editable .`

## Author

[Claromes](https://claromes.com)

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/claromes/volleystats",
    "name": "volleystats",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "volleyball sports command-line datasets analytics",
    "author": "Claromes",
    "author_email": "support@claromes.com",
    "download_url": "https://files.pythonhosted.org/packages/64/78/9ff53dcdbe068fa2784ad61d86b24b1d589fa5f1dc4f07b98c341b4bdcb8/volleystats-0.8.1.tar.gz",
    "platform": null,
    "description": "# Volley Stats\n\n[![PyPI](https://img.shields.io/pypi/v/volleystats)](https://pypi.org/project/volleystats/)\n\nCommand-line tool to scrape volleyball statistics from Data Project Web Competition websites.\n\nVolley Stats facilitates the export of data in CSV format of volleyball matches and competitions organized by entities that use Data Project WCM. The tool streamlines the collection of individual matches, match lists, and automates the retrieval of individual match data from the competition matches list.\n\nAdditionally, it documents the structure of URLs for Web Competition websites, simplifying the search for identifiers (mID, ID, PID), and also supplies acronyms for the main entities utilizing Data Project Management.\n\n**This tool is not affiliated with Genius Sports Italy.**\n\n## Installation\n\n### Requirement\n\n- Python 3.8+\n\n```shell\npip install volleystats\n```\n\n# Documentation\n\n- [Extracted Data](#extracted-data)\n- [Usage](#usage)\n    - [Match](#match)\n    - [Competition Matches](#competition-matches)\n    - [Competition Matches with PID](#competition-matches-with-pid)\n    - [Matches via Competition Matches file](#matches-via-competition-matches-file)\n    - [Help](#help)\n    - [Log](#log)\n    - [Output messages](#output-messages)\n- [Data Project Web Competition URLs structure](#data-project-web-competition-urls-structure)\n    - Hostname\n    - Pathnames and search parameters\n- [Federations, Confederations and Leagues Acronym](#federations-confederations-and-leagues-acronym)\n    - European Volleyball\n    - South American Volleyball\n- [Troubleshooting](#troubleshooting)\n    - [Match files collected from batch file](#match-files-collected-from-batch-file)\n\n## Extracted Data\n\n- Competition\n    - Competition ID\n    - Home Team\n    - Guest Team\n    - Home Points\n    - Guest Points\n    - Date\n    - Stadium\n\n- Match\n    - Match ID\n    - Match date\n    - Home Team\n    - Guest Team\n    - Coach\n    - Stadium\n    - Total Points\n    - Break Points\n    - Win-Lost\n    - Total Serves\n    - Serve Erros\n    - Serve Points\n    - Total Receptions\n    - Reception Erros\n    - Positive Pass Percentage (Pos%)\n    - Excellent/ Perfect Pass Percentage (Exc.%)\n    - Total Attacks\n    - Attack Erros\n    - Blocked Attack\n    - Attack Points (Exc.)\n    - Attack Points Percentage (Exc.%)\n    - Block Points\n\n## Usage\n\n```\nvolleystats [--help] --fed FED (--match MATCH | --comp COMP | --batch CSV_FILE_PATH) [--pid PID] [--log]\n```\n\n- `--fed`, `-f`: Federation Acronym (required)\n- `--match`, `-m`: Statistics of a single match (required, unless `--comp` or `--batch` are provided)\n- `--comp`, `-c`: List of matches in a competition (required, unless `--match` or `--batch` are provided)\n- `--pid`, `-p`: PID of the competition (optional, only when `--comp` is provided)\n- `--batch`, `-b`: CSV file path with Match IDs (Competition Matches output) (required, unless `--match` or `--comp` are provided)\n- `--log`, `-l`: View the logging during scraping\n- `--help`, `-h`: Show help message\n\n### Match\n\n```shell\nvolleystats --fed FED --match MATCH\n```\n\n#### Examples\n\n- Brazilian Volleyball Confederation\n    - Data Project website: https://cbv-web.dataproject.com/MatchStatistics.aspx?mID=1623\n    - Federation Acronym: CBV\n    - Match ID: 1623\n    - Command: $ `volleystats --fed cbv --match 1623`\n    - Output files:\n        ```\n        data/cbv-1623-22-10-28-guest-baruerivolleyballclub.csv\n        data/cbv-1623-22-10-28-home-fluminense.csv\n        ```\n\n- Lithuanian Volleyball Federation\n    - Data Project website: https://lvf-web.dataproject.com/MatchStatistics.aspx?mID=2093\n    - Federation Acronym: LVF\n    - Match ID: 2093\n    - Command: $ `volleystats --fed lvf --match 2093`\n    - Output files:\n        ```\n        data/lvf-2093-2022-11-23-guest-jonavossc.csv\n        data/lvf-2093-2022-11-23-home-svaja-viktorija-lsu.csv\n        ```\n\n### Competition Matches\n\n```shell\nvolleystats --fed FED --comp COMP\n```\n\n#### Example\n\n- Brazilian Volleyball Confederation\n    - Data Project website: https://cbv-web.dataproject.com/CompetitionMatches.aspx?ID=18\n    - Federation Acronym: CBV\n    - Competition ID: 18\n    - Command: $ `volleystats --fed cbv --comp 18`\n    - Output file:\n        ```\n        data/cbv-18-2022-2023-competition-matches.csv\n        ```\n\n### Competition Matches with PID\n\nIn some competitions, PID can be used to distinguish between seasons, such as regular season and playoffs. Therefore, it is necessary to submit this value to obtain statistics separately.\n\n```shell\nvolleystats --fed FED --comp COMP --pid PID\n```\n\n#### Examples\n\n- Bundesliga\n    - Data Project website: https://vbl-web.dataproject.com/CompetitionMatches.aspx?ID=162&PID=173\n    - Federation Acronym: VBL\n    - Competition ID: 162\n    - PID: 173\n    - Season: Regular\n    - Command: $ `volleystats --fed vbl --comp 162 --pid 173`\n    - Output file:\n        ```\n        data/vbl-162-173-2022-2023-competition-matches.csv\n        ```\n    ---\n    - Data Project website: https://vbl-web.dataproject.com/CompetitionMatches.aspx?ID=162&PID=174\n    - Federation Acronym: VBL\n    - Competition ID: 162\n    - PID: 174\n    - Season: Playoffs\n    - Command: $ `volleystats --fed vbl --comp 162 --pid 174`\n    - Output file:\n        ```\n        data/vbl-162-174-2023-2023-competition-matches.csv\n        ```\n\n### Matches via Competition Matches file\n\n```shell\nvolleystats --fed FED --batch CSV_FILE_PATH\n```\n\n#### Example\n\n- Brazilian Volleyball Confederation\n    - Data Project website: https://cbv-web.dataproject.com/MatchStatistics.aspx?mID=ID\n    - Federation Acronym: CBV\n    - CSV file path (output of the [Competition Matches](#competition-matches)): data/cbv-18-2022-2023-competition-matches.csv\n    - Command: $ `volleystats --fed cbv --batch data/cbv-18-2022-2023-competition-matches.csv`\n    - Output files:\n        ```\n        data/cbv-1623-22-10-28-guest-baruerivolleyballclub.csv\n        data/cbv-1623-22-10-28-home-fluminense.csv\n        data/cbv-1618-2022-11-01-guest-energis8s\u00e3ocaetano.csv\n        data/cbv-1618-2022-11-01-home-esporteclubepinheiros.csv\n        data/cbv-1619-2022-11-01-guest-abelmodavolei.csv\n        data/cbv-1619-2022-11-01-home-gerdauminas.csv\n        ...\n        ```\n\n### Help\n\n```shell\nvolleystats --help\n```\n\n### Log\n```shell\nvolleystats --fed FED (--match MATCH | --comp COMP | --batch CSV_FILE_PATH) --log\n```\n\n### Output messages\n\n```\n                    .\n                    |`.\n                    |  `.\n                    |-_  `.\n                    |  -_  `._\n____________________|____-_ _|_______________,\n',                         -_|                ',\n  ',                         |                  ',\n    ',                       |                    ',\n      ',_____________________|______________________',\n\nvolleystats: started\nvolleystats: data/cbv-1623-22-10-28-home-fluminense.csv file was created\nvolleystats: data/cbv-1623-22-10-28-guest-baruerivolleyballclub.csv file was created\nvolleystats: finished\n```\n\n## Data Project Web Competition URLs structure\n\n- Hostname: `<Fed_Acronym>`-web.dataproject.com\n\n- Pathnames and search parameters:\n    - /MainHome\n\n    - /History?ID=`<Fed_ID>`\n\n    - /CompetitionHome?ID=`<Category_ID>` (*could be Women, Men, Pro or Youth, e.g.*)\n\n    - /CompetitionMatches?ID=`<Competition_ID>`&PID=`<PID>` (*PID could be regular season or playoffs, e.g.*)\n\n    - /MatchStatistics?mID=`<Match_ID>`&ID=`<Competition_ID>`\n\n## Federations, Confederations and Leagues Acronyms\n\n**European Volleyball**\n\n- `fshv`: [Albanian Volleyball Federation](https://fshv-web.dataproject.com/MainHome.aspx)\n- `bvl`: [Baltic League](https://bvl-web.dataproject.com/MainHome.aspx)\n- `bevl`: [Belgium Volleyball Federation](https://bevl-web.dataproject.com/MainHome.aspx)\n- `osbih`: [Bosnia and Herzegovina Volleyball Federation](https://osbih-web.dataproject.com/MainHome.aspx)\n- `bvf`: [Bulgarian Volleyball Federation](https://bvf-web.dataproject.com/MainHome.aspx)\n- `vbl`: [Bundesliga](https://vbl-web.dataproject.com/MainHome.aspx)\n- `hos`: [Croatian Volleyball Federation](https://hos-web.dataproject.com/MainHome.aspx)\n- `cvf`: [Czech Volleyball Federation](https://cvf-web.dataproject.com/MainHome.aspx)\n- `evf`: [Estonian Volleyball Federation](https://evf-web.dataproject.com/MainHome.aspx)\n- `fbf`: [Faroe Islands Volleyball Association](https://fbf-web.dataproject.com/MainHome.aspx)\n- `lml`: [Finland Volleyball League](https://lml-web.dataproject.com/MainHome.aspx)\n- `eope`: [Hellenic Volleyball Federation](https://eope-web.dataproject.com/MainHome.aspx)\n- `hvl`: [Hellenic Volleyball League](https://hvl-web.dataproject.com/MainHome.aspx)\n- `hvf`: [Hungary Volleyball Federation](https://hvf-web.dataproject.com/MainHome.aspx)\n- `bli`: [Icelandic Volleyball Association](https://bli-web.dataproject.com/MainHome.aspx)\n- `iva`: [Israel Volleyball Association](https://iva-web.dataproject.com/MainHome.aspx)\n- `fipav`: [Italian Volleyball Federation](https://fipav-web.dataproject.com/MainHome.aspx)\n- `vfrk`: [Volleyball Federation of Republic of Kazakhstan](https://vfrk-web.dataproject.com/MainHome.aspx)\n- `latvf`: [Latvian Volleyball Federation](https://latvf-web.dataproject.com/MainHome.aspx)\n- `lnv`: [Ligue Nationale de Volley](https://lnv-web.dataproject.com/MainHome.aspx)\n- `lvf`: [Lithuanian Volleyball Federation](https://lvf-web.dataproject.com/MainHome.aspx)\n- `mva`: [Malta Volleyball Association](https://mva-web.dataproject.com/MainHome.aspx)\n- `nvbf`: [Norwegian Volleyball Federation](https://nvbf-web.dataproject.com/MainHome.aspx)\n- `fpv`: [Portuguese Volleyball Federation](https://fpv-web.dataproject.com/MainHome.aspx)\n- `frv`: [Romanian Volleyball Federation](https://frv-web.dataproject.com/MainHome.aspx)\n- `ossrb`: [Serbian Volleyball Federation](https://ossrb-web.dataproject.com/MainHome.aspx)\n- `svf`: [Slovak Volleyball Federation](https://svf-web.dataproject.com/MainHome.aspx)\n- `ozs`: [Slovenian Volleyball Federation](https://ozs-web.dataproject.com/MainHome.aspx)\n- `rfevb`: [Spanish Volleyball Federation](https://rfevb-web.dataproject.com/MainHome.aspx)\n- `svbf`: [Swedish Volleyball Federation](https://svbf-web.dataproject.com/MainHome.aspx)\n- `swi`: [Swiss Volley](https://swi-web.dataproject.com/MainHome.aspx)\n- `tvf`: [Turkish Volleyball Federation](https://tvf-web.dataproject.com/MainHome.aspx)\n- `uvf`: [Ukrainian Volleyball Federation](https://uvf-web.dataproject.com/MainHome.aspx)\n- `pvlu`: [Professional Volleyball League of Ukraine](https://pvlu-web.dataproject.com/MainHome.aspx)\n\n**South American Volleyball**\n\n- `feva`: [Argentine Volleyball Federation](https://feva-web.dataproject.com/MainHome.aspx)\n- `cbv`: [Brazilian Volleyball Confederation](https://cbv-web.dataproject.com/MainHome.aspx)\n- `fcv`: [Cordoba Volleyball Federation](https://fcv-web.dataproject.com/MainHome.aspx)\n- `fpdv`: [Peruvian Volleyball Federation](https://fpdv-web.dataproject.com/MainHome.aspx)\n\n## Troubleshooting\n\n### Match files collected from batch file\n\nIn some cases, empty files may be returned, usually named as `<fed_acronym>-<match_id>-guest_stats.csv` and `<fed_acronym>-<match_id>-home_stats.csv`. This can happen due to the hiding of a match in the competition listing, either because it was canceled or incorrectly entered. The match is hidden from view, but it remains accessible in the HTML, causing the tool to return an empty file. In such cases, simply ignore and delete this file.\n\nIt can also happen that the data is only available in PDF, which makes scraping impossible.\n\n## Development\n\n$ `git clone git@github.com:claromes/volleystats.git`\n\n$ `cd volleystats`\n\n$ `pip install -r requirements.txt`\n\n$ `pip install --editable .`\n\n## Author\n\n[Claromes](https://claromes.com)\n",
    "bugtrack_url": null,
    "license": "GPLv3",
    "summary": "Command-line tool to scrape volleyball statistics from Data Project Web Competition websites",
    "version": "0.8.1",
    "project_urls": {
        "Bug Tracker": "https://github.com/claromes/volleystats/issues",
        "Documentation": "https://github.com/claromes/volleystats#documentation",
        "Homepage": "https://github.com/claromes/volleystats",
        "Releases": "https://github.com/claromes/volleystats/releases"
    },
    "split_keywords": [
        "volleyball",
        "sports",
        "command-line",
        "datasets",
        "analytics"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2754071c9acd09685d136bf1b41819d1d0d3b9dee176d71d2e706196ced9a084",
                "md5": "1ce3398e8a18dc5a5659c3d243488a2d",
                "sha256": "1ffbb02c93ad27d98e3f127620aaa3fd97d282c4a797a58ad9d5415315663103"
            },
            "downloads": -1,
            "filename": "volleystats-0.8.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "1ce3398e8a18dc5a5659c3d243488a2d",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 26077,
            "upload_time": "2024-01-27T21:14:27",
            "upload_time_iso_8601": "2024-01-27T21:14:27.517618Z",
            "url": "https://files.pythonhosted.org/packages/27/54/071c9acd09685d136bf1b41819d1d0d3b9dee176d71d2e706196ced9a084/volleystats-0.8.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "64789ff53dcdbe068fa2784ad61d86b24b1d589fa5f1dc4f07b98c341b4bdcb8",
                "md5": "788f1f8269878f0c597b148bfc4e697f",
                "sha256": "f692cc4e70c66482dfa0cee13fa57211b6da3ff6b975153bcae79a42c249c611"
            },
            "downloads": -1,
            "filename": "volleystats-0.8.1.tar.gz",
            "has_sig": false,
            "md5_digest": "788f1f8269878f0c597b148bfc4e697f",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 27379,
            "upload_time": "2024-01-27T21:14:29",
            "upload_time_iso_8601": "2024-01-27T21:14:29.619956Z",
            "url": "https://files.pythonhosted.org/packages/64/78/9ff53dcdbe068fa2784ad61d86b24b1d589fa5f1dc4f07b98c341b4bdcb8/volleystats-0.8.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-27 21:14:29",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "claromes",
    "github_project": "volleystats",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [],
    "lcname": "volleystats"
}
        
Elapsed time: 0.17416s