This file is indexed.

/usr/lib/python3/dist-packages/django_xmlrpc-0.1.5.egg-info/PKG-INFO is in python3-django-xmlrpc 0.1.5-4.

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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
Metadata-Version: 1.1
Name: django-xmlrpc
Version: 0.1.5
Summary: XML-RPC Server App for the Django framework.
Home-page: https://github.com/Fantomas42/django-xmlrpc
Author: Fantomas42
Author-email: fantomas42@gmail.com
License: New BSD License
Description: ==============
        Django XML-RPC
        ==============
        
        **Django_xmlrpc** offers a means by which a Django developer can expose their
        views (or indeed any other function) using XML-RPC.
        
        This is a fork of the version hosted at :
        https://code.launchpad.net/~aartemenko/django-xmlrpc/svetlyak40wt
        compatible with Django >= 1.4 and Python >= 2.5.
        
        If you want to use **django_xmlrpc** for an older version of Django or Python,
        please use an old release.
        
        .. contents::
        
        Installation
        ============
        
        You could retrieve the last sources from
        http://github.com/Fantomas42/django-xmlrpc and run the installation script
        ::
        
          $> python setup.py install
        
        or use pip ::
        
          $> pip install -e git://github.com/Fantomas42/django-xmlrpc.git#egg=django-xmlrpc
        
        Usage
        =====
        
        Register **django_xmlrpc** in your INSTALLED_APPS section of your project'
        settings.
        
        Then register methods you want to handle like this in your project'
        settings. ::
        
          >>> XMLRPC_METHODS = (('path.to.your.method', 'Method name'),
          ...                   ('path.to.your.othermethod', 'Other Method name'),)
        
        Finally we need to register the url of the XML-RPC server. Insert something
        like this in your project's urls.py: ::
        
          >>> url(r'^xmlrpc/$', 'django_xmlrpc.views.handle_xmlrpc', name='xmlrpc'),
        
Keywords: django,service,xmlrpc
Platform: UNKNOWN
Classifier: Framework :: Django
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules