Python client library for easy integration with FIVB VIS Web Service public data, providing XML and JSON responses.
This client is not affiliated with the Fédération Internationale de Volleyball (FIVB).
- Python 3.8+
pip install fivbvis
Basic example:
from fivbvis import VolleyMatch
vm = VolleyMatch()
print(vm.getMatch(9211, response_format="json"))
JSON return:
{
"data":{
"assistantScorerCountryCode":"None",
"assistantScorerFirstName":"None",
"assistantScorerLastName":"None",
"beginDateTimeUtc":"2018-10-07T04:25:00Z",
"buyTicketsUrl":"",
"city":"Nagoya",
"countryCode":"JP",
...
}
}
Web Service Requests Reference
$ git clone git@github.com:claromes/fivbvis.git
$ cd fivbvis
$ pip install -r requirements.txt
$ pip install --editable .