mirror of
https://gitlab.com/dword4/nhlapi.git
synced 2025-10-21 23:18:05 +00:00
updated a bunch of things and cleaned up script output file
This commit is contained in:
@@ -1,3 +1,7 @@
|
||||
This is example output from wadl-map.py
|
||||
|
||||
```
|
||||
|
||||
0: v1/player-spotlight
|
||||
method
|
||||
|
||||
@@ -302,3 +306,4 @@ resource
|
||||
jersey:extended
|
||||
|
||||
++++++++++++++++++
|
||||
```
|
@@ -1,7 +1,25 @@
|
||||
"""
|
||||
|
||||
Description: A simple script to query the NHL API and generate simple
|
||||
documentation
|
||||
|
||||
License: MIT, see LICENSE file for more details
|
||||
|
||||
"""
|
||||
|
||||
import requests
|
||||
import xmltodict
|
||||
import json
|
||||
|
||||
__author__ = 'Drew Hynes'
|
||||
__copyright__ = 'Copyright 2024, NHL API Documentation'
|
||||
__credits__ = ['Kevin Sidwar','Jon Ursenbach']
|
||||
__license__ = 'MIT'
|
||||
__version__ = '0.0.1'
|
||||
__maintainer__ = 'Drew Hynes'
|
||||
__email__ = 'drew.hynes@gmail.com'
|
||||
__status__ = 'Alpha'
|
||||
|
||||
url = "https://api-web.nhle.com/application.wadl?detail=true"
|
||||
attributes = [
|
||||
"@path",
|
||||
|
Reference in New Issue
Block a user