Re: resume upload wsgi script

2009-08-13 Thread Diez B. Roggisch
gert schrieb: On Aug 10, 10:39 am, "Diez B. Roggisch" wrote: 250KB :) So why do you bother? Its just HTTP1.1 has everything for making ftp like file transfers possible. When I write it to a file then I am back at square one because I still need to load it completely to get it into a blob. W

Re: resume upload wsgi script

2009-08-10 Thread gert
On Aug 10, 10:39 am, "Diez B. Roggisch" wrote: > > 250KB :) > > So why do you bother? > > > Its just HTTP1.1 has everything for making ftp like file transfers > > possible. > > When I write it to a file then I am back at square one because I still > > need to load it completely to get it into a bl

Re: resume upload wsgi script

2009-08-10 Thread Diez B. Roggisch
250KB :) So why do you bother? Its just HTTP1.1 has everything for making ftp like file transfers possible. When I write it to a file then I am back at square one because I still need to load it completely to get it into a blob. Well, the blob is nothing but datat in the file-system. If you

Re: resume upload wsgi script

2009-08-09 Thread gert
On Aug 9, 8:25 pm, "Diez B. Roggisch" wrote: > gert schrieb: > > > > > On Aug 9, 4:42 pm, "Diez B. Roggisch" wrote: > >> gert schrieb: > > >>> On Aug 9, 3:17 pm, "Diez B. Roggisch" wrote: > >>>>

Re: resume upload wsgi script

2009-08-09 Thread Diez B. Roggisch
gert schrieb: On Aug 9, 4:42 pm, "Diez B. Roggisch" wrote: gert schrieb: On Aug 9, 3:17 pm, "Diez B. Roggisch" wrote: gert schrieb: I working on a resume upload script and encountered the following problems sql: Could not decode to UTF-8 column 'SUBSTR(picture,?

Re: resume upload wsgi script

2009-08-09 Thread gert
On Aug 9, 4:42 pm, "Diez B. Roggisch" wrote: > gert schrieb: > > > > > On Aug 9, 3:17 pm, "Diez B. Roggisch" wrote: > >> gert schrieb: > > >>> I working on a resume upload script and encountered the following > >>> pro

Re: resume upload wsgi script

2009-08-09 Thread Diez B. Roggisch
gert schrieb: On Aug 9, 3:17 pm, "Diez B. Roggisch" wrote: gert schrieb: I working on a resume upload script and encountered the following problems sql: Could not decode to UTF-8 column 'SUBSTR(picture,?)' with text '\ufffd\ufff d\ufffd\ufffd↑!ExifEf1gL

Re: resume upload wsgi script

2009-08-09 Thread gert
On Aug 9, 3:17 pm, "Diez B. Roggisch" wrote: > gert schrieb: > > > I working on a resume upload script and encountered the following > > problems > > > sql: Could not decode to UTF-8 column 'SUBSTR(picture,?)' wit

Re: resume upload wsgi script

2009-08-09 Thread Diez B. Roggisch
gert schrieb: I working on a resume upload script and encountered the following problems sql: Could not decode to UTF-8 column 'SUBSTR(picture,?)' with text '\ufffd\ufff d\ufffd\ufffd↑!ExifEf1gL6KM7Ij5ae0gL6KM7cH2cH2GI3 Content-Disposition: form-data; name="

resume upload wsgi script

2009-08-09 Thread gert
I working on a resume upload script and encountered the following problems sql: Could not decode to UTF-8 column 'SUBSTR(picture,?)' with text '\ufffd\ufff d\ufffd\ufffd↑!ExifEf1gL6KM7Ij5ae0gL6KM7cH2cH2GI3 Content-Disposition: form-data; name="Filename" DSC

Re: resume upload

2005-07-05 Thread Jeff Epler
probably by using REST. This stupid program puts a 200 line file by sending 100 lines, then using REST to set a resume position and sending the next 100 lines. import getpass, StringIO, ftplib lines = ["Line %d\n" % i for i in range(200)] part1 = "".join(lines[:100]) part2 = "".join(lines[:100])

resume upload

2005-07-05 Thread Jxzzy78
How can i resume a partial upload using ftplib ? -- http://mail.python.org/mailman/listinfo/python-list