Post a file

import requests

    #Send POST
    cloud_url = 'https://some_domain.com/some_file'
    files = {'file': open('my_image.jpg', 'rb')}
    response = requests.post(cloud_url, files=files)
    if response.status_code == 200:
        print("Success: \n" + response.text)
    else:
        print("Error: " + response.status_code)

Post a file from binary data

I.e, POST without needing to save your data to a file first

import requests
import io

    image1_byte_array = io.BytesIO()
    image1.save(image1_byte_array, format='JPEG')
    image1_byte_array = image1_byte_array.getvalue()

    #Send POST
    cloud_url = 'https://some_domain.com/some_file'
    files = {'file': open('my_image.jpg', 'rb')}

        #files = {'file': image_data}                           #You can use this to send just the binary data as the file content
        files = {'file': ('1.jpg', image_data, 'image/jpeg')}   #You can use this to also pass a file name and type if the server wants to see these to handle the file correctly
        response = requests.post(cloud_server_url, files=files)

Post file and other data fields

    #Send POST
    cloud_url = 'https://some_domain.com/some_file'
    files = {'file': open('my_image.jpg', 'rb')}
    data_fields = {'my_value1': 'abc'}  # Additional data you want to pass
    response = requests.post(cloud_url, data=data_fields files=files)
    if response.status_code == 200:
        print("Success: \n" + response.text)
    else:
        print("Error: " + response.status_code)
Getting the data with PHP
$my_value1 = $_POST['my_value1'];
USEFUL?
We benefit hugely from resources on the web so we decided we should try and give back some of our knowledge and resources to the community by opening up many of our company’s internal notes and libraries through mini sites like this. We hope you find the site helpful.
Please feel free to comment if you can add help to this page or point out issues and solutions you have found, but please note that we do not provide support on this site. If you need help with a problem please use one of the many online forums.

Comments

Your email address will not be published. Required fields are marked *