This file is indexed.

/usr/lib/python2.7/dist-packages/tmdbsimple-2.1.0.egg-info/PKG-INFO is in python-tmdbsimple 2.1.0-1.

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
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
Metadata-Version: 1.1
Name: tmdbsimple
Version: 2.1.0
Summary: A Python wrapper for The Movie Database API v3
Home-page: https://github.com/celiao/tmdbsimple
Author: Celia Oakley
Author-email: celia.oakley@alumni.stanford.edu
License: UNKNOWN
Download-URL: https://github.com/celiao/tmdbsimple/tarball/2.1.0
Description-Content-Type: UNKNOWN
Description: tmdbsimple
        ==========
        
        A wrapper for The Movie Database API v3
        ---------------------------------------
        
        *tmdbsimple* is a wrapper, written in Python, for The Movie Database (TMDb) API v3.  By calling the functions available in *tmdbsimple* you can simplify your code and easily access a vast amount of movie, tv, and cast data.  To learn more about The Movie Database API, check out the overview page http://www.themoviedb.org/documentation/api and documentation page https://developers.themoviedb.org/3.
        
        Features
        --------
        
        - COMPLETELY UPDATED AND FULLY TESTED.  Updated with the latest Account, Authentication, Certification, GuestSession, List, Movie, People, Timezones, TV, TV Season, and TV Episode methods. 
        - Supports and tested under Python 2.7.6, 3.3.5, and 3.4.0
        - One-to-one mapping between *tmdbsimple* functions and TMDb methods.
        - Implements all TMDb methods, including Accounts and Authentication.
        - Implements new TV features.
        - Easy to access data using Python class attributes.
        - Easy to experiment with *tmdbsimple* functions inside the Python interpreter.
        - Code tested with unittests, which illustrate the function call syntax.
        
        Installation
        ------------
        
        *tmdbsimple* is available on the Python Package Index (PyPI) at https://pypi.python.org/pypi/tmdbsimple.
        
        You can install *tmdbsimple* using one of the following techniques.
        
        - Use pip:
        
        ::
        
            pip install tmdbsimple
        
        - Download the .zip or .tar.gz file from PyPI and install it yourself
        - Download the `source from Github`_ and install it yourself
        
        If you install it yourself, also install requests_.
        
        .. _source from Github: http://github.com/celiao/tmdbsimple
        .. _requests: http://www.python-requests.org/en/latest
        
        API Key
        -------
        You will need an API key to The Movie Database to access the API.  To obtain a key, follow these steps:
        
        1) Register for and verify an account_.
        2) `Log into`_ your account.
        3) Select the API section on left side of your account page.
        4) Click on the link to generate a new API key and follow the instructions.
        
        .. _account: https://www.themoviedb.org/account/signup
        .. _Log into: https://www.themoviedb.org/login
        
        Examples
        --------
        Once you have the *tmdbsimple* package installed and a TMDb API key, you can start to play with the data.
        
        First, import the library and assign your API_KEY.
        
        .. code-block:: python
        
            >>> import tmdbsimple as tmdb
            >>> tmdb.API_KEY = 'YOUR_API_KEY_HERE'
        
        To communicate with The Movie Database API, create an instance of one of the object types, call one of the methods on the instance, and access the instance attributes.  Use keys to access the values of attributes that are dictionaries.  In this example, we create a movie instance for 'The Matrix' and determine the budget and certification.
        
        .. code-block:: python
        
            >>> movie = tmdb.Movies(603)
            >>> response = movie.info()
            >>> movie.title
            'The Matrix'
            >>> movie.budget
            63000000
            >>> response = movie.releases()
            >>> for c in movie.countries:
            ...    if c['iso_3166_1'] == 'US':
            ...         print(c['certification'])
            ...
            'R'
        
        Let's play with the interface a bit more.  Suppose you and your friend are arguing over which movie in the Bourne series was most popular.  Your friend says the first in a series is always most popular.  You disagree.
        
        .. code-block:: python
        
            >>> search = tmdb.Search()
            >>> response = search.movie(query='The Bourne')
            >>> for s in search.results:
            ...     print(s['title'], s['id'], s['release_date'], s['popularity'])
            ...
            The Bourne Ultimatum 2503 2007-08-03 55.2447062124256
            The Bourne Supremacy 2502 2004-07-23 43.4553609681985
            The Bourne Identity 2501 2002-06-06 38.5531563780592
            The Bourne Legacy 49040 2012-08-10 9.90635210153143
            The Bourne Identity 8677 1988-05-08 1.53988446573129
            Bette Bourne: It Goes with the Shoes 179304  0.23
        
        You are correct!  Now you claim the producers should be able to make sequels cheaper, based on what they learned from making the first movie.  To be fair, you compute the budget per minute of runtime.  Your friend disagrees, claiming the producers spend more money trying to out do the previous sequel.
        
        .. code-block:: python
        
            >>> identity = tmdb.Movies(2501)
            >>> response = identity.info()
            >>> identity.budget, identity.runtime
            (60000000, 119)
            >>> int(identity.budget/identity.runtime)
            504201
            >>> supremacy = tmdb.Movies(2502)
            >>> response = supremacy.info()
            >>> supremacy.budget, supremacy.runtime
            (75000000, 108)
            >>> int(supremacy.budget/supremacy.runtime)
            694444
            >>> ultimatum = tmdb.Movies(2503)
            >>> response = ultimatum.info()
            >>> ultimatum.budget, ultimatum.runtime
            (70000000, 115)
            >>> int(ultimatum.budget/ultimatum.runtime)
            608695
        
        In this case you are both correct.  The third movie was cheaper than the second, which was more expensive than the first.
        
        You also can call one of the methods without explicitly instanciating an object.
        
        .. code-block:: python
        
            >>> response = tmdb.Movies(603).info()
            >>> response['budget']
            63000000
        
        If you use Authentication to access a user Account, be sure to check out
        https://www.themoviedb.org/documentation/api/sessions.
        
        If you like this wrapper, and would like access to even more movie and TV data, check out *rtsimple* https://pypi.python.org/pypi/rtsimple, a wrapper for the Rotten Tomatoes API.
        
Keywords: movie,the movie database,movie database,tmdb,wrapper,database,themoviedb,moviedb,api
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Utilities