REST Countries v1

無料
よって apilayer | 更新済み לפני חודש | Data
人気

0.5 / 10

レイテンシー

35ms

サービスレベル

100%

Health Check

N/A

すべてのディスカッションに戻る

Unirest in not supported in python 3

Rapid account: Majjiga Deepak
MajjigaDeepak
לפני 8 שנים

Mentioned a light http protocol unirest to access countries api but unirest in not supporting in python 3.I request you to help me in resolving this or is there any other approach in accessing the api which has headers separately as an array?

Rapid account: Fayder
fayder Commented לפני 8 שנים

Hello there. First of all, you can access the REST Countries API directly, without mashape. And you also can use Python Requests library http://docs.python-requests.org/en/latest/

This way you wouldn’t need any headers. So, for example, a simple GET request would look like this:
<pre><code>

-- coding: utf-8 --

import requests

r = requests.get(‘https://restcountries.eu/rest/v1/name/colombia’)
print(r.text.encode(‘utf-8’))
</code></pre>

You can see all the available endpoints at: https://restcountries.eu

I hope this is useful

ディスカッションに参加しましょう-以下にコメントを追加してください:

ログイン/サインアップして新しいコメントを投稿