You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
need to create account and api key, then it is straightforward:
In [1]: import requests
In [2]: mykey = "43216759be93XXXXXXXXXXXXXXXXXXXXXXX" # put your key from your profile page here
In [3]: data = requests.get("https://manifesto-project.wzb.eu/tools/api_list_core_versions.json?api_key={}".format(mykey))
In [4]: data
Out[5]: <Response [200]>
In [5]: datadict = data.json()
In [6]: type(datadict)
Out[7]: dict
In [7]: datadict.keys()
Out[8]: dict_keys(['datasets'])
https://manifesto-project.wzb.eu/information/documents/api
The text was updated successfully, but these errors were encountered: