PythonスクリプトからPOSTを使用してファイルを送信する


回答:


214

送信元:https : //requests.readthedocs.io/en/latest/user/quickstart/#post-a-multipart-encoded-file

リクエストを使用すると、マルチパートでエンコードされたファイルを非常に簡単にアップロードできます。

with open('report.xls', 'rb') as f:
    r = requests.post('http://httpbin.org/post', files={'report.xls': f})

それでおしまい。冗談ではありません。これは1行のコードです。ファイルが送信されました。確認しよう:

>>> r.text
{
  "origin": "179.13.100.4",
  "files": {
    "report.xls": "<censored...binary...data>"
  },
  "form": {},
  "url": "http://httpbin.org/post",
  "args": {},
  "headers": {
    "Content-Length": "3196",
    "Accept-Encoding": "identity, deflate, compress, gzip",
    "Accept": "*/*",
    "User-Agent": "python-requests/0.8.0",
    "Host": "httpbin.org:80",
    "Content-Type": "multipart/form-data; boundary=127.0.0.1.502.21746.1321131593.786.1"
  },
  "data": ""
}

2
ファイルサイズが1.5 MB未満の場合、私は同じことを試し、うまくいきます。それ以外の場合はエラーをスローします。ここをご覧ください。
Niks Jain 2013

1
私がやろうとしていることは、正常に完了したリクエストを使用していくつかのサイトにログインすることですが、ログイン後にビデオをアップロードしたいのですが、送信前にフォームに入力する別のフィールドがあります。では、動画の説明、動画のタイトルなどの値をどのように渡したらよいのでしょうか
TaraGurung、2015年

15
おそらくwith open('report.xls', 'rb') as f: r = requests.post('http://httpbin.org/post', files={'report.xls': f})代わりにしたいので、ファイルを開いた後に再び閉じます。
Hjulle

3
えっ?リクエストを送信するときはとても簡単なので
palsch

1
この回答は、ファイルを確実に閉じるためにコンテキストマネージャを使用するというHjulleの提案を含むように更新する必要があります。
bmoran 2017年

28

はい。あなたは、使用したいurllib2使用して、モジュール、およびエンコードをmultipart/form-dataコンテンツタイプを。以下に、開始するためのサンプルコードをいくつか示します。ファイルのアップロードだけではありませんが、それを読んで、動作を確認できます。

user_agent = "image uploader"
default_message = "Image $current of $total"

import logging
import os
from os.path import abspath, isabs, isdir, isfile, join
import random
import string
import sys
import mimetypes
import urllib2
import httplib
import time
import re

def random_string (length):
    return ''.join (random.choice (string.letters) for ii in range (length + 1))

def encode_multipart_data (data, files):
    boundary = random_string (30)

    def get_content_type (filename):
        return mimetypes.guess_type (filename)[0] or 'application/octet-stream'

    def encode_field (field_name):
        return ('--' + boundary,
                'Content-Disposition: form-data; name="%s"' % field_name,
                '', str (data [field_name]))

    def encode_file (field_name):
        filename = files [field_name]
        return ('--' + boundary,
                'Content-Disposition: form-data; name="%s"; filename="%s"' % (field_name, filename),
                'Content-Type: %s' % get_content_type(filename),
                '', open (filename, 'rb').read ())

    lines = []
    for name in data:
        lines.extend (encode_field (name))
    for name in files:
        lines.extend (encode_file (name))
    lines.extend (('--%s--' % boundary, ''))
    body = '\r\n'.join (lines)

    headers = {'content-type': 'multipart/form-data; boundary=' + boundary,
               'content-length': str (len (body))}

    return body, headers

def send_post (url, data, files):
    req = urllib2.Request (url)
    connection = httplib.HTTPConnection (req.get_host ())
    connection.request ('POST', req.get_selector (),
                        *encode_multipart_data (data, files))
    response = connection.getresponse ()
    logging.debug ('response = %s', response.read ())
    logging.debug ('Code: %s %s', response.status, response.reason)

def make_upload_file (server, thread, delay = 15, message = None,
                      username = None, email = None, password = None):

    delay = max (int (delay or '0'), 15)

    def upload_file (path, current, total):
        assert isabs (path)
        assert isfile (path)

        logging.debug ('Uploading %r to %r', path, server)
        message_template = string.Template (message or default_message)

        data = {'MAX_FILE_SIZE': '3145728',
                'sub': '',
                'mode': 'regist',
                'com': message_template.safe_substitute (current = current, total = total),
                'resto': thread,
                'name': username or '',
                'email': email or '',
                'pwd': password or random_string (20),}
        files = {'upfile': path}

        send_post (server, data, files)

        logging.info ('Uploaded %r', path)
        rand_delay = random.randint (delay, delay + 5)
        logging.debug ('Sleeping for %.2f seconds------------------------------\n\n', rand_delay)
        time.sleep (rand_delay)

    return upload_file

def upload_directory (path, upload_file):
    assert isabs (path)
    assert isdir (path)

    matching_filenames = []
    file_matcher = re.compile (r'\.(?:jpe?g|gif|png)$', re.IGNORECASE)

    for dirpath, dirnames, filenames in os.walk (path):
        for name in filenames:
            file_path = join (dirpath, name)
            logging.debug ('Testing file_path %r', file_path)
            if file_matcher.search (file_path):
                matching_filenames.append (file_path)
            else:
                logging.info ('Ignoring non-image file %r', path)

    total_count = len (matching_filenames)
    for index, file_path in enumerate (matching_filenames):
        upload_file (file_path, index + 1, total_count)

def run_upload (options, paths):
    upload_file = make_upload_file (**options)

    for arg in paths:
        path = abspath (arg)
        if isdir (path):
            upload_directory (path, upload_file)
        elif isfile (path):
            upload_file (path)
        else:
            logging.error ('No such path: %r' % path)

    logging.info ('Done!')

1
Python 2.6.6では、Windowsでこのコードを使用しているときに、マルチパート境界解析でエラーが発生しました。これが機能するためには、stackoverflow.com / questions / 2823316 /…で説明されているように、string.lettersからstring.ascii_lettersに変更する必要がありました。境界の要件については、ここで説明します。stackoverflow.com
questions / 147451

run_upload({'server': ''、 'thread': ''}、paths = ['/ path / to / file.txt'])を呼び出すと、この行にエラーが発生します。upload_file(path)「upload file」には3つのパラメーターなので、次の行に置き換えます。upload_file(path、1、1)
Radian

4

ファイルオブジェクトに対して直接urlopenを使用できないのは、組み込みのファイルオブジェクトにlen定義がないことです。簡単な方法は、正しいファイルをurlopenに提供するサブクラスを作成することです。以下のファイルのContent-Typeヘッダーも変更しました。

import os
import urllib2
class EnhancedFile(file):
    def __init__(self, *args, **keyws):
        file.__init__(self, *args, **keyws)

    def __len__(self):
        return int(os.fstat(self.fileno())[6])

theFile = EnhancedFile('a.xml', 'r')
theUrl = "http://example.com/abcde"
theHeaders= {'Content-Type': 'text/xml'}

theRequest = urllib2.Request(theUrl, theFile, theHeaders)

response = urllib2.urlopen(theRequest)

theFile.close()


for line in response:
    print line

@robert Python2.7でコードをテストしましたが、機能しません。urlopen(Request(theUrl、theFile、...))は、通常の投稿のようにファイルのコンテンツをエンコードするだけで、正しいフォームフィールドを指定できません。私はバリアントurlopen(theUrl、urlencode({'serverside_field_name':EnhancedFile( 'my_file.txt')}))も試しますが、ファイルをアップロードしますが、(もちろん!)<open file 'my_file.txt'、モード 'r' at 0x00D6B718>。私は何か見落としてますか?
RayLuo 2013年

答えてくれてありがとう。上記のコードを使用して、PUTリクエストを使用して2.2 GBの未加工画像ファイルをウェブサーバーに転送しました。
Akshay Patil 2013


2

Chris Atleeのポスターライブラリは、これ(特に便利な関数poster.encode.multipart_encode())に非常に適しています。おまけとして、ファイル全体をメモリにロードせずに大きなファイルのストリーミングをサポートします。Python issue 3244も参照してください。


2

私はdjango rest apiとその動作をテストしようとしています:

def test_upload_file(self):
        filename = "/Users/Ranvijay/tests/test_price_matrix.csv"
        data = {'file': open(filename, 'rb')}
        client = APIClient()
        # client.credentials(HTTP_AUTHORIZATION='Token ' + token.key)
        response = client.post(reverse('price-matrix-csv'), data, format='multipart')

        print response
        self.assertEqual(response.status_code, status.HTTP_200_OK)

1
このコードはメモリリークを引き起こします- close()ファイルを忘れてしまいました。
Chiefir

0

とともにhttplib2を確認することもできます。組み込みのHTTPモジュールを使用するよりもhttplib2を使用する方が簡潔だと思います。


2
ファイルのアップロードを処理する方法を示す例はありません。
11

リンクが古い+インライン化された例がない。
jlr 2016年

3
それ以来、github.com/httplib2/httplib2に移動しました。一方、今日ではおそらくrequests代わりにお勧めします。
pdc 2017年

0
def visit_v2(device_code, camera_code):
    image1 = MultipartParam.from_file("files", "/home/yuzx/1.txt")
    image2 = MultipartParam.from_file("files", "/home/yuzx/2.txt")
    datagen, headers = multipart_encode([('device_code', device_code), ('position', 3), ('person_data', person_data), image1, image2])
    print "".join(datagen)
    if server_port == 80:
        port_str = ""
    else:
        port_str = ":%s" % (server_port,)
    url_str = "http://" + server_ip + port_str + "/adopen/device/visit_v2"
    headers['nothing'] = 'nothing'
    request = urllib2.Request(url_str, datagen, headers)
    try:
        response = urllib2.urlopen(request)
        resp = response.read()
        print "http_status =", response.code
        result = json.loads(resp)
        print resp
        return result
    except urllib2.HTTPError, e:
        print "http_status =", e.code
        print e.read()
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.