Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

« Newer Snippets
Older Snippets »
Showing 11-12 of 12 total

Upload file with http client (multipart/form-data)

def post_multipart(host, selector, fields, files):
    """
    Post fields and files to an http host as multipart/form-data.
    fields is a sequence of (name, value) elements for regular form fields.
    files is a sequence of (name, filename, value) elements for data to be uploaded as files
    Return the server's response page.
    """

See the rest of the implementation here

Send a file using FTP

import ftplib
s = ftplib.FTP('myserver.com','login','password') # Connect

f = open('todo.txt','rb')                # file to send
s.storbinary('STOR todo.txt', f)         # Send the file

f.close()                                # Close file and FTP
s.quit()

Taken (with some mod.) from here
« Newer Snippets
Older Snippets »
Showing 11-12 of 12 total