All URIs are relative to https://api.opendota.com/api
Method | HTTP request | Description |
---|---|---|
distributions_get | GET /distributions | GET /distributions |
InlineResponse20017 distributions_get()
GET /distributions
Distributions of MMR data by bracket and country
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.DistributionsApi()
try:
# GET /distributions
api_response = api_instance.distributions_get()
pprint(api_response)
except ApiException as e:
print("Exception when calling DistributionsApi->distributions_get: %s\n" % e)
This endpoint does not need any parameter.
No authorization required
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]