All URIs are relative to https://api.opendota.com/api
Method | HTTP request | Description |
---|---|---|
explorer_get | GET /explorer | GET /explorer |
object explorer_get(sql=sql)
GET /explorer
Submit arbitrary SQL queries to the database
from __future__ import print_function
import time
import od_python
from od_python.rest import ApiException
from pprint import pprint
# create an instance of the API class
api_instance = od_python.ExplorerApi()
sql = 'sql_example' # str | The PostgreSQL query as percent-encoded string. (optional)
try:
# GET /explorer
api_response = api_instance.explorer_get(sql=sql)
pprint(api_response)
except ApiException as e:
print("Exception when calling ExplorerApi->explorer_get: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
sql | str | The PostgreSQL query as percent-encoded string. | [optional] |
object
No authorization required
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]