| 1 | $ dpkg -l|egrep "builtins|future|requests|urllib3"|grep -v python3
|
|---|
| 2 | ii python-future 0.15.2-1 all single-source support for Python 3 and 2 - Python 2.x
|
|---|
| 3 | ii python-requests 2.9.1-3 all elegant and simple HTTP library for Python2, built for human beings
|
|---|
| 4 | ii python-requests-cache 0.4.10-1 all persistent cache for requests library
|
|---|
| 5 | ii python-urllib3 1.13.1-2ubuntu0.16.04.1 all HTTP library with thread-safe connection pooling for Python
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 | $ pip show future requests requests-cache urllib3
|
|---|
| 9 | Name: future
|
|---|
| 10 | Version: 0.15.2
|
|---|
| 11 | Summary: Clean single-source support for Python 3 and 2
|
|---|
| 12 | Home-page: https://python-future.org
|
|---|
| 13 | Author: Ed Schofield
|
|---|
| 14 | Author-email: ed@pythoncharmers.com
|
|---|
| 15 | License: MIT
|
|---|
| 16 | Location: /usr/lib/python2.7/dist-packages
|
|---|
| 17 | Requires:
|
|---|
| 18 | ---
|
|---|
| 19 | Name: requests
|
|---|
| 20 | Version: 2.9.1
|
|---|
| 21 | Summary: Python HTTP for Humans.
|
|---|
| 22 | Home-page: http://python-requests.org
|
|---|
| 23 | Author: Kenneth Reitz
|
|---|
| 24 | Author-email: me@kennethreitz.com
|
|---|
| 25 | License: Apache 2.0
|
|---|
| 26 | Location: /usr/lib/python2.7/dist-packages
|
|---|
| 27 | Requires:
|
|---|
| 28 | ---
|
|---|
| 29 | Name: requests-cache
|
|---|
| 30 | Version: 0.4.10
|
|---|
| 31 | Summary: Persistent cache for requests library
|
|---|
| 32 | Home-page: https://github.com/reclosedev/requests-cache
|
|---|
| 33 | Author: Roman Haritonov
|
|---|
| 34 | Author-email: reclosedev@gmail.com
|
|---|
| 35 | License: BSD License
|
|---|
| 36 | Location: /usr/lib/python2.7/dist-packages
|
|---|
| 37 | Requires:
|
|---|
| 38 | ---
|
|---|
| 39 | Name: urllib3
|
|---|
| 40 | Version: 1.13.1
|
|---|
| 41 | Summary: HTTP library with thread-safe connection pooling, file post, and more.
|
|---|
| 42 | Home-page: http://urllib3.readthedocs.org/
|
|---|
| 43 | Author: Andrey Petrov
|
|---|
| 44 | Author-email: andrey.petrov@shazow.net
|
|---|
| 45 | License: MIT
|
|---|
| 46 | Location: /usr/lib/python2.7/dist-packages
|
|---|
| 47 | Requires:
|
|---|
| 48 |
|
|---|
| 49 |
|
|---|
| 50 |
|
|---|
| 51 | $ ./doctest.sh
|
|---|
| 52 | **********************************************************************
|
|---|
| 53 | File "./ttvdb.py", line 42, in __main__
|
|---|
| 54 | Failed example:
|
|---|
| 55 | main()
|
|---|
| 56 | Exception raised:
|
|---|
| 57 | Traceback (most recent call last):
|
|---|
| 58 | File "/usr/lib/python2.7/doctest.py", line 1315, in __run
|
|---|
| 59 | compileflags, 1) in test.globs
|
|---|
| 60 | File "<doctest __main__[1]>", line 1, in <module>
|
|---|
| 61 | main()
|
|---|
| 62 | File "./ttvdb.py", line 2189, in main
|
|---|
| 63 | seriesfound=searchseries(t, opts, series_season_ep)
|
|---|
| 64 | File "./ttvdb.py", line 1242, in searchseries
|
|---|
| 65 | series_data = search_for_series(t, series_name, opts.language)
|
|---|
| 66 | File "./ttvdb.py", line 1228, in search_for_series
|
|---|
| 67 | return tvdb[sid_or_name]
|
|---|
| 68 | File "/home/bill/source/mythtv29/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py", line 1156, in __getitem__
|
|---|
| 69 | sid = self._nameToSid(key)
|
|---|
| 70 | File "/home/bill/source/mythtv29/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py", line 1137, in _nameToSid
|
|---|
| 71 | selected_series = self._getSeries(name)
|
|---|
| 72 | File "/home/bill/source/mythtv29/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py", line 917, in _getSeries
|
|---|
| 73 | allSeries = self.search(series)
|
|---|
| 74 | File "/home/bill/source/mythtv29/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py", line 897, in search
|
|---|
| 75 | seriesEt = self._getetsrc(self.config['url_getSeries'] % (series))
|
|---|
| 76 | File "/home/bill/source/mythtv29/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py", line 857, in _getetsrc
|
|---|
| 77 | src = self._loadUrl(url, language=language)
|
|---|
| 78 | File "/home/bill/source/mythtv29/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py", line 804, in _loadUrl
|
|---|
| 79 | self.authorize()
|
|---|
| 80 | File "/home/bill/source/mythtv29/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py", line 845, in authorize
|
|---|
| 81 | r_json = r.json()
|
|---|
| 82 | File "/usr/lib/python2.7/dist-packages/requests/models.py", line 808, in json
|
|---|
| 83 | return complexjson.loads(self.text, **kwargs)
|
|---|
| 84 | File "/usr/lib/python2.7/json/__init__.py", line 339, in loads
|
|---|
| 85 | return _default_decoder.decode(s)
|
|---|
| 86 | File "/usr/lib/python2.7/json/decoder.py", line 364, in decode
|
|---|
| 87 | obj, end = self.raw_decode(s, idx=_w(s, 0).end())
|
|---|
| 88 | File "/usr/lib/python2.7/json/decoder.py", line 382, in raw_decode
|
|---|
| 89 | raise ValueError("No JSON object could be decoded")
|
|---|
| 90 | ValueError: No JSON object could be decoded
|
|---|
| 91 | **********************************************************************
|
|---|
| 92 | File "./ttvdb.py", line 46, in __main__
|
|---|
| 93 | Failed example:
|
|---|
| 94 | main()
|
|---|
| 95 | Exception raised:
|
|---|
| 96 | Traceback (most recent call last):
|
|---|
| 97 | File "/usr/lib/python2.7/doctest.py", line 1315, in __run
|
|---|
| 98 | compileflags, 1) in test.globs
|
|---|
| 99 | File "<doctest __main__[3]>", line 1, in <module>
|
|---|
| 100 | main()
|
|---|
| 101 | File "./ttvdb.py", line 2189, in main
|
|---|
| 102 | seriesfound=searchseries(t, opts, series_season_ep)
|
|---|
| 103 | File "./ttvdb.py", line 1242, in searchseries
|
|---|
| 104 | series_data = search_for_series(t, series_name, opts.language)
|
|---|
| 105 | File "./ttvdb.py", line 1228, in search_for_series
|
|---|
| 106 | return tvdb[sid_or_name]
|
|---|
| 107 | File "/home/bill/source/mythtv29/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py", line 1156, in __getitem__
|
|---|
| 108 | sid = self._nameToSid(key)
|
|---|
| 109 | File "/home/bill/source/mythtv29/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py", line 1137, in _nameToSid
|
|---|
| 110 | selected_series = self._getSeries(name)
|
|---|
| 111 | File "/home/bill/source/mythtv29/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py", line 917, in _getSeries
|
|---|
| 112 | allSeries = self.search(series)
|
|---|
| 113 | File "/home/bill/source/mythtv29/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py", line 897, in search
|
|---|
| 114 | seriesEt = self._getetsrc(self.config['url_getSeries'] % (series))
|
|---|
| 115 | File "/home/bill/source/mythtv29/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py", line 857, in _getetsrc
|
|---|
| 116 | src = self._loadUrl(url, language=language)
|
|---|
| 117 | File "/home/bill/source/mythtv29/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py", line 804, in _loadUrl
|
|---|
| 118 | self.authorize()
|
|---|
| 119 | File "/home/bill/source/mythtv29/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py", line 845, in authorize
|
|---|
| 120 | r_json = r.json()
|
|---|
| 121 | File "/usr/lib/python2.7/dist-packages/requests/models.py", line 808, in json
|
|---|
| 122 | return complexjson.loads(self.text, **kwargs)
|
|---|
| 123 | File "/usr/lib/python2.7/json/__init__.py", line 339, in loads
|
|---|
| 124 | return _default_decoder.decode(s)
|
|---|
| 125 | File "/usr/lib/python2.7/json/decoder.py", line 364, in decode
|
|---|
| 126 | obj, end = self.raw_decode(s, idx=_w(s, 0).end())
|
|---|
| 127 | File "/usr/lib/python2.7/json/decoder.py", line 382, in raw_decode
|
|---|
| 128 | raise ValueError("No JSON object could be decoded")
|
|---|
| 129 | ValueError: No JSON object could be decoded
|
|---|
| 130 | **********************************************************************
|
|---|
| 131 | File "./ttvdb.py", line 102, in __main__
|
|---|
| 132 | Failed example:
|
|---|
| 133 | main()
|
|---|
| 134 | Exception raised:
|
|---|
| 135 | Traceback (most recent call last):
|
|---|
| 136 | File "/usr/lib/python2.7/doctest.py", line 1315, in __run
|
|---|
| 137 | compileflags, 1) in test.globs
|
|---|
| 138 | File "<doctest __main__[5]>", line 1, in <module>
|
|---|
| 139 | main()
|
|---|
| 140 | File "./ttvdb.py", line 2189, in main
|
|---|
| 141 | seriesfound=searchseries(t, opts, series_season_ep)
|
|---|
| 142 | File "./ttvdb.py", line 1242, in searchseries
|
|---|
| 143 | series_data = search_for_series(t, series_name, opts.language)
|
|---|
| 144 | File "./ttvdb.py", line 1228, in search_for_series
|
|---|
| 145 | return tvdb[sid_or_name]
|
|---|
| 146 | File "/home/bill/source/mythtv29/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py", line 1156, in __getitem__
|
|---|
| 147 | sid = self._nameToSid(key)
|
|---|
| 148 | File "/home/bill/source/mythtv29/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py", line 1137, in _nameToSid
|
|---|
| 149 | selected_series = self._getSeries(name)
|
|---|
| 150 | File "/home/bill/source/mythtv29/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py", line 917, in _getSeries
|
|---|
| 151 | allSeries = self.search(series)
|
|---|
| 152 | File "/home/bill/source/mythtv29/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py", line 897, in search
|
|---|
| 153 | seriesEt = self._getetsrc(self.config['url_getSeries'] % (series))
|
|---|
| 154 | File "/home/bill/source/mythtv29/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py", line 857, in _getetsrc
|
|---|
| 155 | src = self._loadUrl(url, language=language)
|
|---|
| 156 | File "/home/bill/source/mythtv29/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py", line 804, in _loadUrl
|
|---|
| 157 | self.authorize()
|
|---|
| 158 | File "/home/bill/source/mythtv29/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py", line 845, in authorize
|
|---|
| 159 | r_json = r.json()
|
|---|
| 160 | File "/usr/lib/python2.7/dist-packages/requests/models.py", line 808, in json
|
|---|
| 161 | return complexjson.loads(self.text, **kwargs)
|
|---|
| 162 | File "/usr/lib/python2.7/json/__init__.py", line 339, in loads
|
|---|
| 163 | return _default_decoder.decode(s)
|
|---|
| 164 | File "/usr/lib/python2.7/json/decoder.py", line 364, in decode
|
|---|
| 165 | obj, end = self.raw_decode(s, idx=_w(s, 0).end())
|
|---|
| 166 | File "/usr/lib/python2.7/json/decoder.py", line 382, in raw_decode
|
|---|
| 167 | raise ValueError("No JSON object could be decoded")
|
|---|
| 168 | ValueError: No JSON object could be decoded
|
|---|
| 169 | **********************************************************************
|
|---|
| 170 | File "./ttvdb.py", line 112, in __main__
|
|---|
| 171 | Failed example:
|
|---|
| 172 | main()
|
|---|
| 173 | Exception raised:
|
|---|
| 174 | Traceback (most recent call last):
|
|---|
| 175 | File "/usr/lib/python2.7/doctest.py", line 1315, in __run
|
|---|
| 176 | compileflags, 1) in test.globs
|
|---|
| 177 | File "<doctest __main__[7]>", line 1, in <module>
|
|---|
| 178 | main()
|
|---|
| 179 | File "./ttvdb.py", line 2189, in main
|
|---|
| 180 | seriesfound=searchseries(t, opts, series_season_ep)
|
|---|
| 181 | File "./ttvdb.py", line 1242, in searchseries
|
|---|
| 182 | series_data = search_for_series(t, series_name, opts.language)
|
|---|
| 183 | File "./ttvdb.py", line 1228, in search_for_series
|
|---|
| 184 | return tvdb[sid_or_name]
|
|---|
| 185 | File "/home/bill/source/mythtv29/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py", line 1156, in __getitem__
|
|---|
| 186 | sid = self._nameToSid(key)
|
|---|
| 187 | File "/home/bill/source/mythtv29/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py", line 1137, in _nameToSid
|
|---|
| 188 | selected_series = self._getSeries(name)
|
|---|
| 189 | File "/home/bill/source/mythtv29/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py", line 917, in _getSeries
|
|---|
| 190 | allSeries = self.search(series)
|
|---|
| 191 | File "/home/bill/source/mythtv29/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py", line 897, in search
|
|---|
| 192 | seriesEt = self._getetsrc(self.config['url_getSeries'] % (series))
|
|---|
| 193 | File "/home/bill/source/mythtv29/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py", line 857, in _getetsrc
|
|---|
| 194 | src = self._loadUrl(url, language=language)
|
|---|
| 195 | File "/home/bill/source/mythtv29/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py", line 804, in _loadUrl
|
|---|
| 196 | self.authorize()
|
|---|
| 197 | File "/home/bill/source/mythtv29/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py", line 845, in authorize
|
|---|
| 198 | r_json = r.json()
|
|---|
| 199 | File "/usr/lib/python2.7/dist-packages/requests/models.py", line 808, in json
|
|---|
| 200 | return complexjson.loads(self.text, **kwargs)
|
|---|
| 201 | File "/usr/lib/python2.7/json/__init__.py", line 339, in loads
|
|---|
| 202 | return _default_decoder.decode(s)
|
|---|
| 203 | File "/usr/lib/python2.7/json/decoder.py", line 364, in decode
|
|---|
| 204 | obj, end = self.raw_decode(s, idx=_w(s, 0).end())
|
|---|
| 205 | File "/usr/lib/python2.7/json/decoder.py", line 382, in raw_decode
|
|---|
| 206 | raise ValueError("No JSON object could be decoded")
|
|---|
| 207 | ValueError: No JSON object could be decoded
|
|---|
| 208 | **********************************************************************
|
|---|
| 209 | File "./ttvdb.py", line 118, in __main__
|
|---|
| 210 | Failed example:
|
|---|
| 211 | main()
|
|---|
| 212 | Exception raised:
|
|---|
| 213 | Traceback (most recent call last):
|
|---|
| 214 | File "/usr/lib/python2.7/doctest.py", line 1315, in __run
|
|---|
| 215 | compileflags, 1) in test.globs
|
|---|
| 216 | File "<doctest __main__[9]>", line 1, in <module>
|
|---|
| 217 | main()
|
|---|
| 218 | File "./ttvdb.py", line 2189, in main
|
|---|
| 219 | seriesfound=searchseries(t, opts, series_season_ep)
|
|---|
| 220 | File "./ttvdb.py", line 1242, in searchseries
|
|---|
| 221 | series_data = search_for_series(t, series_name, opts.language)
|
|---|
| 222 | File "./ttvdb.py", line 1228, in search_for_series
|
|---|
| 223 | return tvdb[sid_or_name]
|
|---|
| 224 | File "/home/bill/source/mythtv29/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py", line 1156, in __getitem__
|
|---|
| 225 | sid = self._nameToSid(key)
|
|---|
| 226 | File "/home/bill/source/mythtv29/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py", line 1137, in _nameToSid
|
|---|
| 227 | selected_series = self._getSeries(name)
|
|---|
| 228 | File "/home/bill/source/mythtv29/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py", line 917, in _getSeries
|
|---|
| 229 | allSeries = self.search(series)
|
|---|
| 230 | File "/home/bill/source/mythtv29/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py", line 897, in search
|
|---|
| 231 | seriesEt = self._getetsrc(self.config['url_getSeries'] % (series))
|
|---|
| 232 | File "/home/bill/source/mythtv29/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py", line 857, in _getetsrc
|
|---|
| 233 | src = self._loadUrl(url, language=language)
|
|---|
| 234 | File "/home/bill/source/mythtv29/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py", line 804, in _loadUrl
|
|---|
| 235 | self.authorize()
|
|---|
| 236 | File "/home/bill/source/mythtv29/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py", line 845, in authorize
|
|---|
| 237 | r_json = r.json()
|
|---|
| 238 | File "/usr/lib/python2.7/dist-packages/requests/models.py", line 808, in json
|
|---|
| 239 | return complexjson.loads(self.text, **kwargs)
|
|---|
| 240 | File "/usr/lib/python2.7/json/__init__.py", line 339, in loads
|
|---|
| 241 | return _default_decoder.decode(s)
|
|---|
| 242 | File "/usr/lib/python2.7/json/decoder.py", line 364, in decode
|
|---|
| 243 | obj, end = self.raw_decode(s, idx=_w(s, 0).end())
|
|---|
| 244 | File "/usr/lib/python2.7/json/decoder.py", line 382, in raw_decode
|
|---|
| 245 | raise ValueError("No JSON object could be decoded")
|
|---|
| 246 | ValueError: No JSON object could be decoded
|
|---|
| 247 | **********************************************************************
|
|---|
| 248 | File "./ttvdb.py", line 125, in __main__
|
|---|
| 249 | Failed example:
|
|---|
| 250 | main()
|
|---|
| 251 | Exception raised:
|
|---|
| 252 | Traceback (most recent call last):
|
|---|
| 253 | File "/usr/lib/python2.7/doctest.py", line 1315, in __run
|
|---|
| 254 | compileflags, 1) in test.globs
|
|---|
| 255 | File "<doctest __main__[11]>", line 1, in <module>
|
|---|
| 256 | main()
|
|---|
| 257 | File "./ttvdb.py", line 2122, in main
|
|---|
| 258 | initialize_override_dictionary(opts.configure, opts.language)
|
|---|
| 259 | File "./ttvdb.py", line 1705, in initialize_override_dictionary
|
|---|
| 260 | sys.exit(1)
|
|---|
| 261 | SystemExit: 1
|
|---|
| 262 | **********************************************************************
|
|---|
| 263 | File "./ttvdb.py", line 178, in __main__
|
|---|
| 264 | Failed example:
|
|---|
| 265 | main()
|
|---|
| 266 | Exception raised:
|
|---|
| 267 | Traceback (most recent call last):
|
|---|
| 268 | File "/usr/lib/python2.7/doctest.py", line 1315, in __run
|
|---|
| 269 | compileflags, 1) in test.globs
|
|---|
| 270 | File "<doctest __main__[13]>", line 1, in <module>
|
|---|
| 271 | main()
|
|---|
| 272 | File "./ttvdb.py", line 2122, in main
|
|---|
| 273 | initialize_override_dictionary(opts.configure, opts.language)
|
|---|
| 274 | File "./ttvdb.py", line 1705, in initialize_override_dictionary
|
|---|
| 275 | sys.exit(1)
|
|---|
| 276 | SystemExit: 1
|
|---|
| 277 | **********************************************************************
|
|---|
| 278 | File "./ttvdb.py", line 185, in __main__
|
|---|
| 279 | Failed example:
|
|---|
| 280 | main()
|
|---|
| 281 | Exception raised:
|
|---|
| 282 | Traceback (most recent call last):
|
|---|
| 283 | File "/usr/lib/python2.7/doctest.py", line 1315, in __run
|
|---|
| 284 | compileflags, 1) in test.globs
|
|---|
| 285 | File "<doctest __main__[15]>", line 1, in <module>
|
|---|
| 286 | main()
|
|---|
| 287 | File "./ttvdb.py", line 2189, in main
|
|---|
| 288 | seriesfound=searchseries(t, opts, series_season_ep)
|
|---|
| 289 | File "./ttvdb.py", line 1242, in searchseries
|
|---|
| 290 | series_data = search_for_series(t, series_name, opts.language)
|
|---|
| 291 | File "./ttvdb.py", line 1226, in search_for_series
|
|---|
| 292 | return tvdb.series_by_sid(sid_or_name, language)
|
|---|
| 293 | File "./ttvdb.py", line 1198, in series_by_sid
|
|---|
| 294 | self._getShowData(sid, language=language)
|
|---|
| 295 | File "/home/bill/source/mythtv29/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py", line 1046, in _getShowData
|
|---|
| 296 | self.config['url_seriesInfo'] % sid
|
|---|
| 297 | File "/home/bill/source/mythtv29/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py", line 857, in _getetsrc
|
|---|
| 298 | src = self._loadUrl(url, language=language)
|
|---|
| 299 | File "/home/bill/source/mythtv29/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py", line 804, in _loadUrl
|
|---|
| 300 | self.authorize()
|
|---|
| 301 | File "/home/bill/source/mythtv29/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py", line 845, in authorize
|
|---|
| 302 | r_json = r.json()
|
|---|
| 303 | File "/usr/lib/python2.7/dist-packages/requests/models.py", line 808, in json
|
|---|
| 304 | return complexjson.loads(self.text, **kwargs)
|
|---|
| 305 | File "/usr/lib/python2.7/json/__init__.py", line 339, in loads
|
|---|
| 306 | return _default_decoder.decode(s)
|
|---|
| 307 | File "/usr/lib/python2.7/json/decoder.py", line 364, in decode
|
|---|
| 308 | obj, end = self.raw_decode(s, idx=_w(s, 0).end())
|
|---|
| 309 | File "/usr/lib/python2.7/json/decoder.py", line 382, in raw_decode
|
|---|
| 310 | raise ValueError("No JSON object could be decoded")
|
|---|
| 311 | ValueError: No JSON object could be decoded
|
|---|
| 312 | ! Error: No JSON object could be decoded
|
|---|
| 313 | **********************************************************************
|
|---|
| 314 | File "./ttvdb.py", line 269, in __main__
|
|---|
| 315 | Failed example:
|
|---|
| 316 | main()
|
|---|
| 317 | Exception raised:
|
|---|
| 318 | Traceback (most recent call last):
|
|---|
| 319 | File "/usr/lib/python2.7/doctest.py", line 1315, in __run
|
|---|
| 320 | compileflags, 1) in test.globs
|
|---|
| 321 | File "<doctest __main__[17]>", line 1, in <module>
|
|---|
| 322 | main()
|
|---|
| 323 | File "./ttvdb.py", line 2153, in main
|
|---|
| 324 | allSeries=t._getSeries(series_season_ep[0])
|
|---|
| 325 | File "/home/bill/source/mythtv29/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py", line 917, in _getSeries
|
|---|
| 326 | allSeries = self.search(series)
|
|---|
| 327 | File "/home/bill/source/mythtv29/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py", line 897, in search
|
|---|
| 328 | seriesEt = self._getetsrc(self.config['url_getSeries'] % (series))
|
|---|
| 329 | File "/home/bill/source/mythtv29/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py", line 857, in _getetsrc
|
|---|
| 330 | src = self._loadUrl(url, language=language)
|
|---|
| 331 | File "/home/bill/source/mythtv29/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py", line 804, in _loadUrl
|
|---|
| 332 | self.authorize()
|
|---|
| 333 | File "/home/bill/source/mythtv29/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py", line 845, in authorize
|
|---|
| 334 | r_json = r.json()
|
|---|
| 335 | File "/usr/lib/python2.7/dist-packages/requests/models.py", line 808, in json
|
|---|
| 336 | return complexjson.loads(self.text, **kwargs)
|
|---|
| 337 | File "/usr/lib/python2.7/json/__init__.py", line 339, in loads
|
|---|
| 338 | return _default_decoder.decode(s)
|
|---|
| 339 | File "/usr/lib/python2.7/json/decoder.py", line 364, in decode
|
|---|
| 340 | obj, end = self.raw_decode(s, idx=_w(s, 0).end())
|
|---|
| 341 | File "/usr/lib/python2.7/json/decoder.py", line 382, in raw_decode
|
|---|
| 342 | raise ValueError("No JSON object could be decoded")
|
|---|
| 343 | ValueError: No JSON object could be decoded
|
|---|
| 344 | ! Error: No JSON object could be decoded
|
|---|
| 345 | **********************************************************************
|
|---|
| 346 | File "./ttvdb.py", line 404, in __main__
|
|---|
| 347 | Failed example:
|
|---|
| 348 | main()
|
|---|
| 349 | Exception raised:
|
|---|
| 350 | Traceback (most recent call last):
|
|---|
| 351 | File "/usr/lib/python2.7/doctest.py", line 1315, in __run
|
|---|
| 352 | compileflags, 1) in test.globs
|
|---|
| 353 | File "<doctest __main__[19]>", line 1, in <module>
|
|---|
| 354 | main()
|
|---|
| 355 | File "./ttvdb.py", line 2175, in main
|
|---|
| 356 | t._getShowData(series_season_ep[0], opts.language)
|
|---|
| 357 | File "/home/bill/source/mythtv29/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py", line 1046, in _getShowData
|
|---|
| 358 | self.config['url_seriesInfo'] % sid
|
|---|
| 359 | File "/home/bill/source/mythtv29/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py", line 857, in _getetsrc
|
|---|
| 360 | src = self._loadUrl(url, language=language)
|
|---|
| 361 | File "/home/bill/source/mythtv29/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py", line 804, in _loadUrl
|
|---|
| 362 | self.authorize()
|
|---|
| 363 | File "/home/bill/source/mythtv29/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py", line 845, in authorize
|
|---|
| 364 | r_json = r.json()
|
|---|
| 365 | File "/usr/lib/python2.7/dist-packages/requests/models.py", line 808, in json
|
|---|
| 366 | return complexjson.loads(self.text, **kwargs)
|
|---|
| 367 | File "/usr/lib/python2.7/json/__init__.py", line 339, in loads
|
|---|
| 368 | return _default_decoder.decode(s)
|
|---|
| 369 | File "/usr/lib/python2.7/json/decoder.py", line 364, in decode
|
|---|
| 370 | obj, end = self.raw_decode(s, idx=_w(s, 0).end())
|
|---|
| 371 | File "/usr/lib/python2.7/json/decoder.py", line 382, in raw_decode
|
|---|
| 372 | raise ValueError("No JSON object could be decoded")
|
|---|
| 373 | ValueError: No JSON object could be decoded
|
|---|
| 374 | **********************************************************************
|
|---|
| 375 | File "./ttvdb.py", line 442, in __main__
|
|---|
| 376 | Failed example:
|
|---|
| 377 | main()
|
|---|
| 378 | Exception raised:
|
|---|
| 379 | Traceback (most recent call last):
|
|---|
| 380 | File "/usr/lib/python2.7/doctest.py", line 1315, in __run
|
|---|
| 381 | compileflags, 1) in test.globs
|
|---|
| 382 | File "<doctest __main__[21]>", line 1, in <module>
|
|---|
| 383 | main()
|
|---|
| 384 | File "./ttvdb.py", line 2189, in main
|
|---|
| 385 | seriesfound=searchseries(t, opts, series_season_ep)
|
|---|
| 386 | File "./ttvdb.py", line 1242, in searchseries
|
|---|
| 387 | series_data = search_for_series(t, series_name, opts.language)
|
|---|
| 388 | File "./ttvdb.py", line 1226, in search_for_series
|
|---|
| 389 | return tvdb.series_by_sid(sid_or_name, language)
|
|---|
| 390 | File "./ttvdb.py", line 1198, in series_by_sid
|
|---|
| 391 | self._getShowData(sid, language=language)
|
|---|
| 392 | File "/home/bill/source/mythtv29/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py", line 1046, in _getShowData
|
|---|
| 393 | self.config['url_seriesInfo'] % sid
|
|---|
| 394 | File "/home/bill/source/mythtv29/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py", line 857, in _getetsrc
|
|---|
| 395 | src = self._loadUrl(url, language=language)
|
|---|
| 396 | File "/home/bill/source/mythtv29/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py", line 804, in _loadUrl
|
|---|
| 397 | self.authorize()
|
|---|
| 398 | File "/home/bill/source/mythtv29/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py", line 845, in authorize
|
|---|
| 399 | r_json = r.json()
|
|---|
| 400 | File "/usr/lib/python2.7/dist-packages/requests/models.py", line 808, in json
|
|---|
| 401 | return complexjson.loads(self.text, **kwargs)
|
|---|
| 402 | File "/usr/lib/python2.7/json/__init__.py", line 339, in loads
|
|---|
| 403 | return _default_decoder.decode(s)
|
|---|
| 404 | File "/usr/lib/python2.7/json/decoder.py", line 364, in decode
|
|---|
| 405 | obj, end = self.raw_decode(s, idx=_w(s, 0).end())
|
|---|
| 406 | File "/usr/lib/python2.7/json/decoder.py", line 382, in raw_decode
|
|---|
| 407 | raise ValueError("No JSON object could be decoded")
|
|---|
| 408 | ValueError: No JSON object could be decoded
|
|---|
| 409 | **********************************************************************
|
|---|
| 410 | File "./ttvdb.py", line 478, in __main__
|
|---|
| 411 | Failed example:
|
|---|
| 412 | main()
|
|---|
| 413 | Exception raised:
|
|---|
| 414 | Traceback (most recent call last):
|
|---|
| 415 | File "/usr/lib/python2.7/doctest.py", line 1315, in __run
|
|---|
| 416 | compileflags, 1) in test.globs
|
|---|
| 417 | File "<doctest __main__[23]>", line 1, in <module>
|
|---|
| 418 | main()
|
|---|
| 419 | File "./ttvdb.py", line 2194, in main
|
|---|
| 420 | seriesfound=searchseries(t, opts, x)
|
|---|
| 421 | File "./ttvdb.py", line 1242, in searchseries
|
|---|
| 422 | series_data = search_for_series(t, series_name, opts.language)
|
|---|
| 423 | File "./ttvdb.py", line 1226, in search_for_series
|
|---|
| 424 | return tvdb.series_by_sid(sid_or_name, language)
|
|---|
| 425 | File "./ttvdb.py", line 1198, in series_by_sid
|
|---|
| 426 | self._getShowData(sid, language=language)
|
|---|
| 427 | File "/home/bill/source/mythtv29/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py", line 1046, in _getShowData
|
|---|
| 428 | self.config['url_seriesInfo'] % sid
|
|---|
| 429 | File "/home/bill/source/mythtv29/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py", line 857, in _getetsrc
|
|---|
| 430 | src = self._loadUrl(url, language=language)
|
|---|
| 431 | File "/home/bill/source/mythtv29/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py", line 804, in _loadUrl
|
|---|
| 432 | self.authorize()
|
|---|
| 433 | File "/home/bill/source/mythtv29/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py", line 845, in authorize
|
|---|
| 434 | r_json = r.json()
|
|---|
| 435 | File "/usr/lib/python2.7/dist-packages/requests/models.py", line 808, in json
|
|---|
| 436 | return complexjson.loads(self.text, **kwargs)
|
|---|
| 437 | File "/usr/lib/python2.7/json/__init__.py", line 339, in loads
|
|---|
| 438 | return _default_decoder.decode(s)
|
|---|
| 439 | File "/usr/lib/python2.7/json/decoder.py", line 364, in decode
|
|---|
| 440 | obj, end = self.raw_decode(s, idx=_w(s, 0).end())
|
|---|
| 441 | File "/usr/lib/python2.7/json/decoder.py", line 382, in raw_decode
|
|---|
| 442 | raise ValueError("No JSON object could be decoded")
|
|---|
| 443 | ValueError: No JSON object could be decoded
|
|---|
| 444 | **********************************************************************
|
|---|
| 445 | File "./ttvdb.py", line 557, in __main__
|
|---|
| 446 | Failed example:
|
|---|
| 447 | main()
|
|---|
| 448 | Exception raised:
|
|---|
| 449 | Traceback (most recent call last):
|
|---|
| 450 | File "/usr/lib/python2.7/doctest.py", line 1315, in __run
|
|---|
| 451 | compileflags, 1) in test.globs
|
|---|
| 452 | File "<doctest __main__[25]>", line 1, in <module>
|
|---|
| 453 | main()
|
|---|
| 454 | File "./ttvdb.py", line 2194, in main
|
|---|
| 455 | seriesfound=searchseries(t, opts, x)
|
|---|
| 456 | File "./ttvdb.py", line 1242, in searchseries
|
|---|
| 457 | series_data = search_for_series(t, series_name, opts.language)
|
|---|
| 458 | File "./ttvdb.py", line 1226, in search_for_series
|
|---|
| 459 | return tvdb.series_by_sid(sid_or_name, language)
|
|---|
| 460 | File "./ttvdb.py", line 1198, in series_by_sid
|
|---|
| 461 | self._getShowData(sid, language=language)
|
|---|
| 462 | File "/home/bill/source/mythtv29/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py", line 1046, in _getShowData
|
|---|
| 463 | self.config['url_seriesInfo'] % sid
|
|---|
| 464 | File "/home/bill/source/mythtv29/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py", line 857, in _getetsrc
|
|---|
| 465 | src = self._loadUrl(url, language=language)
|
|---|
| 466 | File "/home/bill/source/mythtv29/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py", line 804, in _loadUrl
|
|---|
| 467 | self.authorize()
|
|---|
| 468 | File "/home/bill/source/mythtv29/mythtv/bindings/python/MythTV/ttvdb/tvdb_api.py", line 845, in authorize
|
|---|
| 469 | r_json = r.json()
|
|---|
| 470 | File "/usr/lib/python2.7/dist-packages/requests/models.py", line 808, in json
|
|---|
| 471 | return complexjson.loads(self.text, **kwargs)
|
|---|
| 472 | File "/usr/lib/python2.7/json/__init__.py", line 339, in loads
|
|---|
| 473 | return _default_decoder.decode(s)
|
|---|
| 474 | File "/usr/lib/python2.7/json/decoder.py", line 364, in decode
|
|---|
| 475 | obj, end = self.raw_decode(s, idx=_w(s, 0).end())
|
|---|
| 476 | File "/usr/lib/python2.7/json/decoder.py", line 382, in raw_decode
|
|---|
| 477 | raise ValueError("No JSON object could be decoded")
|
|---|
| 478 | ValueError: No JSON object could be decoded
|
|---|
| 479 | **********************************************************************
|
|---|
| 480 | 1 items had failures:
|
|---|
| 481 | 13 of 26 in __main__
|
|---|
| 482 | ***Test Failed*** 13 failures.
|
|---|
| 483 | TestResults(failed=13, attempted=28)
|
|---|