FIVB VIS Web Service Python Client
Project description
FIVB VIS Python Client
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).
Requirements
- Python 3.8+
Installation
pip install fivbvis
Usage
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",
...
}
}
Documentation
Web Service Requests Reference
Development
$ git clone git@github.com:claromes/fivbvis.git
$ cd fivbvis
$ pip install -r requirements.txt
$ pip install --editable .
Author
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
fivbvis-0.2.tar.gz
(15.6 kB
view hashes)
Built Distribution
fivbvis-0.2-py3-none-any.whl
(16.3 kB
view hashes)