web-dev-qa-db-ja.com

PythonのCURL代替

PHPで使用するcURL呼び出しがあります。

curl -i -H 'Accept:application/xml' -u login:key " https://app.streamsend.com/emails "

Pythonで同じことをする方法が必要です。 PythonのcURLに代わるものはありますか。私はurllibを知っていますが、私はPython noobであり、それを使用する方法がわかりません。

112
Gaurav Sharma
import urllib2

manager = urllib2.HTTPPasswordMgrWithDefaultRealm()
manager.add_password(None, 'https://app.streamsend.com/emails', 'login', 'key')
handler = urllib2.HTTPBasicAuthHandler(manager)

director = urllib2.OpenerDirector()
director.add_handler(handler)

req = urllib2.Request('https://app.streamsend.com/emails', headers = {'Accept' : 'application/xml'})

result = director.open(req)
# result.read() will contain the data
# result.info() will contain the HTTP headers

# To get say the content-length header
length = result.info()['Content-Length']

代わりにurllib2を使用するcURL呼び出し。完全にテストされていません。

68
blwy10

Requests:HTTP for Humans ユーザーガイドで説明されているHTTPリクエストを使用できます。

131
Gudbergur

以下は、GitHubのAPIに対して基本認証を行うurllib2を使用した簡単な例です。

import urllib2

u='username'
p='userpass'
url='https://api.github.com/users/username'

# simple wrapper function to encode the username & pass
def encodeUserData(user, password):
    return "Basic " + (user + ":" + password).encode("base64").rstrip()

# create the request object and set some headers
req = urllib2.Request(url)
req.add_header('Accept', 'application/json')
req.add_header("Content-type", "application/x-www-form-urlencoded")
req.add_header('Authorization', encodeUserData(u, p))
# make the request and print the results
res = urllib2.urlopen(req)
print res.read()

さらに、これをスクリプトでラップして端末から実行すると、応答文字列を「mjson.tool」にパイプしてきれいに印刷できます。

>> basicAuth.py | python -mjson.tool

最後に、urllib2はGETおよびPOSTリクエストのみをサポートします。
DELETE、PUTなどの他のHTTP動詞を使用する必要がある場合は、おそらく PYCURL をご覧ください。

35
braitsch

コマンドを使用してそのようなcurlを呼び出す場合は、Pythonでsubprocessを使用して同じことを実行できます。例:

subprocess.call(['curl', '-i', '-H', '"Accept: application/xml"', '-u', 'login:key', '"https://app.streamsend.com/emails"'])

または、PHPのようなより構造化されたAPIとして使用する場合は、 PycURL を試してください。

20
unholysampler
import requests

url = 'https://example.tld/'
auth = ('username', 'password')

r = requests.get(url, auth=auth)
print r.content

これは私が手に入れた中で最も簡単なものです。

12
tadamhicks

いくつかの例、そのためにurllibを使用する方法、いくつかのシュガー構文を使用します。リクエストやその他のライブラリについては知っていますが、urllibはpythonの標準ライブラリであり、別にインストールする必要はありません。

Python 2/3互換。

import sys
if sys.version_info.major == 3:
  from urllib.request import HTTPPasswordMgrWithDefaultRealm, HTTPBasicAuthHandler, Request, build_opener
  from urllib.parse import urlencode
else:
  from urllib2 import HTTPPasswordMgrWithDefaultRealm, HTTPBasicAuthHandler, Request, build_opener
  from urllib import urlencode


def curl(url, params=None, auth=None, req_type="GET", data=None, headers=None):
  post_req = ["POST", "PUT"]
  get_req = ["GET", "DELETE"]

  if params is not None:
    url += "?" + urlencode(params)

  if req_type not in post_req + get_req:
    raise IOError("Wrong request type \"%s\" passed" % req_type)

  _headers = {}
  handler_chain = []

  if auth is not None:
    manager = HTTPPasswordMgrWithDefaultRealm()
    manager.add_password(None, url, auth["user"], auth["pass"])
    handler_chain.append(HTTPBasicAuthHandler(manager))

  if req_type in post_req and data is not None:
    _headers["Content-Length"] = len(data)

  if headers is not None:
    _headers.update(headers)

  director = build_opener(*handler_chain)

  if req_type in post_req:
    if sys.version_info.major == 3:
      _data = bytes(data, encoding='utf8')
    else:
      _data = bytes(data)

    req = Request(url, headers=_headers, data=_data)
  else:
    req = Request(url, headers=_headers)

  req.get_method = lambda: req_type
  result = director.open(req)

  return {
    "httpcode": result.code,
    "headers": result.info(),
    "content": result.read()
  }


"""
Usage example:
"""

Post data:
  curl("http://127.0.0.1/", req_type="POST", data='cascac')

Pass arguments (http://127.0.0.1/?q=show):
  curl("http://127.0.0.1/", params={'q': 'show'}, req_type="POST", data='cascac')

HTTP Authorization:
  curl("http://127.0.0.1/secure_data.txt", auth={"user": "username", "pass": "password"})

機能は完全ではなく、おそらく理想的でもありませんが、使用する基本的な表現と概念を示しています。好みによって追加のものを追加または変更できます。

12/08更新

ここ は、更新されたライブソースへのGitHubリンクです。現在サポートしています:

  • 認可

  • CRUD互換

  • 自動文字セット検出

  • 自動エンコード(圧縮)検出

7
Reishin

探しているコマンドラインから上記のすべてを実行している場合は、 HTTPie 。これは素晴らしいcURLの代替手段であり、非常に簡単および便利で使用(およびカスタマイズ)できます。

GitHubからの(簡潔で正確な)説明です。

HTTPie(aych-tee-tee-pieと発音)は、コマンドラインHTTPクライアントです。その目標は、可能な限り人間に優しいWebサービスとCLIの対話を行うことです。

シンプルで自然な構文を使用して任意のHTTPリクエストを送信できるシンプルなhttpコマンドを提供し、色付きの出力を表示します。 HTTPieは、HTTPサーバーのテスト、デバッグ、および一般的な対話に使用できます。


認証の周りのドキュメントはあなたの問題を解決するのに十分なポインタを与えるはずです(s)。もちろん、上記の答えはすべて正確でもあり、同じタスクを達成するさまざまな方法を提供します。


Stack Overflowから離れる必要がないように、ここでは簡単に説明します。

Basic auth:

$ http -a username:password example.org
Digest auth:

$ http --auth-type=digest -a username:password example.org
With password Prompt:

$ http -a username example.org
3
stuxnetting