This file is indexed.

/usr/lib/python3/dist-packages/subliminal-0.7.4.egg-info/PKG-INFO is in python3-subliminal 0.7.4-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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
Metadata-Version: 1.1
Name: subliminal
Version: 0.7.4
Summary: Subtitles, faster than your thoughts
Home-page: https://github.com/Diaoul/subliminal
Author: Antoine Bertin
Author-email: diaoulael@gmail.com
License: MIT
Description: Subliminal
        ==========
        
        Subliminal is a python library to search and download subtitles.
        It comes with an easy to use CLI (command-line interface) suitable for direct use or cron jobs.
        
        .. image:: https://travis-ci.org/Diaoul/subliminal.png?branch=develop
            :target: https://travis-ci.org/Diaoul/subliminal
        
        .. image:: https://coveralls.io/repos/Diaoul/subliminal/badge.png?branch=develop
            :target: https://coveralls.io/r/Diaoul/subliminal?branch=develop 
        
        
        Providers
        ---------
        Subliminal uses multiple providers to give users a vast choice and have a better chance to find the
        best matching subtitles. Providers are extensible through a dedicated entry point.
        
        * Addic7ed
        * BierDopje
        * OpenSubtitles
        * Podnapisi
        * TheSubDB
        * TvSubtitles
        
        
        Usage
        -----
        CLI
        ^^^
        Download english subtitles::
        
            $ subliminal -l en -- The.Big.Bang.Theory.S05E18.HDTV.x264-LOL.mp4
            1 subtitle downloaded
        
        Library
        ^^^^^^^
        Download best subtitles in French and English for videos less than one week old in a video folder,
        skipping videos that already have subtitles whether they are embedded or not::
        
            from babelfish import Language
            from datetime import timedelta
            import subliminal
            
            # configure the cache
            subliminal.cache_region.configure('dogpile.cache.dbm', arguments={'filename': '/path/to/cachefile.dbm'})
        
            # scan for videos in the folder and their subtitles
            videos = subliminal.scan_videos(['/path/to/video/folder'], subtitles=True, embedded_subtitles=True, age=timedelta(weeks=1))
        
            # download
            subliminal.download_best_subtitles(videos, {Language('eng'), Language('fra')}, age=timedelta(week=1))
        
        
        License
        -------
        MIT
        
        
        Changelog
        =========
        
        0.7.4
        -----
        **release date:** 2014-01-27
        
        * Fix requirements for guessit and babelfish
        
        
        0.7.3
        -----
        **release date:** 2013-11-22
        
        * Fix windows compatibility
        * Improve subtitle validation
        * Improve embedded subtitle languages detection
        * Improve unittests
        
        
        0.7.2
        -----
        **release date:** 2013-11-10
        
        * Fix TVSubtitles for ambiguous series
        * Add a CACHE_VERSION to force cache reloading on version change
        * Set CLI default cache expiration time to 30 days
        * Add podnapisi provider
        * Support script for languages e.g. Latn, Cyrl
        * Improve logging levels
        * Fix subtitle validation in some rare cases
        
        
        0.7.1
        -----
        **release date:** 2013-11-06
        
        * Improve CLI
        * Add login support for Addic7ed
        * Remove lxml dependency
        * Many fixes
        
        
        0.7.0
        -----
        **release date:** 2013-10-29
        
        **WARNING:** Complete rewrite of subliminal with backward incompatible changes
        
        * Use enzyme to parse metadata of videos
        * Use babelfish to handle languages
        * Use dogpile.cache for caching
        * Use charade to detect subtitle encoding
        * Use pysrt for subtitle validation
        * Use entry points for subtitle providers
        * New subtitle score computation
        * Hearing impaired subtitles support
        * Drop async support
        * Drop a few providers
        * And much more...
        
        0.6.2
        -----
        **release date:** 2012-09-15
        
        * Fix BierDopje
        * Fix Addic7ed
        * Fix SubsWiki
        * Fix missing enzyme import
        * Add Catalan and Galician languages to Addic7ed
        * Add possible services in help message of the CLI
        * Allow existing filenames to be passed without the ./ prefix
        
        0.6.1
        -----
        **release date:** 2012-06-24
        
        * Fix subtitle release name in BierDopje
        * Fix subtitles being downloaded multiple times
        * Add Chinese support to TvSubtitles
        * Fix encoding issues
        * Fix single download subtitles without the force option
        * Add Spanish (Latin America) exception to Addic7ed
        * Fix group_by_video when a list entry has None as subtitles
        * Add support for Galician language in Subtitulos
        * Add an integrity check after subtitles download for Addic7ed
        * Add error handling for if not strict in Language
        * Fix TheSubDB hash method to return None if the file is too small
        * Fix guessit.Language in Video.scan
        * Fix language detection of subtitles
        
        0.6.0
        -----
        **release date:** 2012-06-16
        **WARNING:** Backward incompatible changes
        
        * Fix --workers option in CLI
        * Use a dedicated module for languages
        * Use beautifulsoup4
        * Improve return types
        * Add scan_filter option
        * Add --age option in CLI
        * Add TvSubtitles service
        * Add Addic7ed service
        
        
        0.5.1
        -----
        **release date:** 2012-03-25
        
        * Improve error handling of enzyme parsing
        
        0.5
        ---
        **release date:** 2012-03-25
        **WARNING:** Backward incompatible changes
        
        * Use more unicode
        * New list_subtitles and download_subtitles methods
        * New Pool object for asynchronous work
        * Improve sort algorithm
        * Better error handling
        * Make sorting customizable
        * Remove class Subliminal
        * Remove permissions handling
        
        0.4
        ---
        **release date:** 2011-11-11
        
        * Many fixes
        * Better error handling
        
        0.3
        ---
        **release date:** 2011-08-18
        
        * Fix a bug when series is not guessed by guessit
        * Fix dependencies failure when installing package
        * Fix encoding issues with logging
        * Add a script to ease subtitles download
        * Add possibility to choose mode of created files
        * Add more checks before adjusting permissions
        
        0.2
        ---
        **release date:** 2011-07-11
        
        * Fix plugin configuration
        * Fix some encoding issues
        * Remove extra logging
        
        0.1
        ---
        **release date:** not released yet
        
        * Initial release
        
Keywords: subtitle subtitles video movie episode tv show
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Multimedia :: Video