UploadFileEx in IronPython
   This is an example of a class in IronPython that can upload a file to a web     site. This is a port from the example given in     http://www.codeproject.com/KB/cs/uploadfileex.aspx , except that I did not consider the use of cookies...but the addition     should be trivial.        Points to note are: the parameter query_string is of type     NameValueCollection the parameter url must be a valid URI (e.g.     www.somewebsite.com/somepage ) the parameter content_type can be 'multipart/form-data'.   1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 import  System  from  System  import  *  from  System.Text  import  *  from  System.IO  import  *  import  clr  clr . AddReference( "System.Xml" ) from  System.Xml  import  *  clr . AddReference( "System.Web" ) from  System.Web  import  *  clr . AddReference( ...