Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pedesen/pyligadb
A Python wrapper for the OpenLigaDB webservice.
https://github.com/pedesen/pyligadb
Last synced: 12 days ago
JSON representation
A Python wrapper for the OpenLigaDB webservice.
- Host: GitHub
- URL: https://github.com/pedesen/pyligadb
- Owner: pedesen
- License: mit
- Created: 2014-11-29T17:35:44.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2014-11-30T13:18:02.000Z (about 10 years ago)
- Last Synced: 2024-10-25T06:50:23.618Z (about 2 months ago)
- Language: Python
- Homepage:
- Size: 258 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
pyligadb
========
A Python wrapper for the OpenLigaDB webservice.OpenLigaDB is a german SOAP webservice providing sports results and scores, especially from german soccer leagues. See http://www.openligadb.de for more information.
###Example use:
```python
from pyligadb import API
api = API()
matches = api.getMatchdataByGroupLeagueSaison(14, 'bl1', 2010)
for match in matches:
print "%s vs. %s" % (match.nameTeam1, match.nameTeam2)
```
Result:
```
1. FSV Mainz 05 vs. 1. FC Nuernberg
1899 Hoffenheim vs. Bayer Leverkusen
...
...
```Take a look at the code for all available functions or see the original documentation here: http://www.openligadb.de/Webservices/Sportsdata.asmx