This file is indexed.

/usr/lib/python2.7/dist-packages/MultipartPostHandler-0.1.0.egg-info/PKG-INFO is in python-multipartposthandler 0.1.0-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
Metadata-Version: 1.1
Name: MultipartPostHandler
Version: 0.1.0
Summary: A handler for urllib2 to enable multipart form uploading
Home-page: http://pipe.scs.fsu.edu/PostHandler/MultipartPostHandler.py
Author: Will Holcomb
Author-email: wholcomb@gmail.com
License: UNKNOWN
Description: Usage:
          Enables the use of multipart/form-data for posting forms
        
        Inspirations:
          Upload files in python:
            http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/146306
          urllib2_file:
            Fabien Seisen: <fabien@seisen.org>
        
        Example:
          import MultipartPostHandler, urllib2, cookielib
        
          cookies = cookielib.CookieJar()
          opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(cookies),
                                        MultipartPostHandler.MultipartPostHandler)
          params = { "username" : "bob", "password" : "riviera",
                     "file" : open("filename", "rb") }
          opener.open("http://wwww.bobsite.com/upload/", params)
        
        Further Example:
          The main function of this file is a sample which downloads a page and
          then uploads it to the W3C validator.
        
Keywords: http,multipart,post,urllib2
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Other Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules