Python module (submodule repositary), which provides content (video streams) from various online stream sources to corresponding Enigma2, Kodi, Plex plugins

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721
  1. #!wing
  2. #!version=7.0
  3. ##################################################################
  4. # Wing project file #
  5. ##################################################################
  6. [project attributes]
  7. proj.directory-list = [{'dirloc': loc('.'),
  8. 'excludes': (),
  9. 'filter': '*',
  10. 'include_hidden': False,
  11. 'recursive': True,
  12. 'watch_for_changes': True}]
  13. proj.file-type = 'normal'
  14. proj.launch-config = {loc('iub_db.py'): ('project',
  15. (u'-d 90 -s -o',
  16. '')),
  17. loc('iub_db2.py'): ('project',
  18. (u'-p 1 2 --debug ',
  19. '')),
  20. loc('iub_email.py'): ('project',
  21. (u'-i --debug',
  22. '')),
  23. loc('iubx.py'): ('project',
  24. (u'-s -d30',
  25. '')),
  26. loc('iubx2.py'): ('project',
  27. (u'-sgr -d 10',
  28. '')),
  29. loc('kivy_test.py'): ('project',
  30. (u'https://walterebert.com/playground/video/hls/sintel-trailer.m3u8',
  31. '')),
  32. loc('ltcproxy.py'): ('project',
  33. (u'manualstart -s cheroot',
  34. '')),
  35. loc('playstreamproxy.py'): ('project',
  36. (u'manualstart',
  37. '')),
  38. loc('playstreamproxy2.py'): ('project',
  39. (u'manualstart ',
  40. '')),
  41. loc('playstreamproxyX.py'): ('project',
  42. (u'manualstart',
  43. '')),
  44. loc('sources/lmt.py'): ('project',
  45. (u'home',
  46. ''))}
  47. [user attributes]
  48. debug.breakpoints = {loc('Downloader.py'): {94: (0,
  49. None,
  50. 1,
  51. 0),
  52. 102L: (0,
  53. None,
  54. 1,
  55. 0),
  56. 193L: (0,
  57. None,
  58. 1,
  59. 0)},
  60. loc('bottle.py'): {862L: (0,
  61. None,
  62. 1,
  63. 0)},
  64. loc('iub.py'): {102: (0,
  65. None,
  66. 1,
  67. 0),
  68. 146: (0,
  69. None,
  70. 1,
  71. 0)},
  72. loc('iub_db.py'): {209: (0,
  73. None,
  74. 1,
  75. 0),
  76. 376: (0,
  77. None,
  78. 1,
  79. 0)},
  80. loc('kivy_test.py'): {67L: (0,
  81. None,
  82. 1,
  83. 0),
  84. 118L: (0,
  85. None,
  86. 1,
  87. 0)},
  88. loc('ltcproxy.py'): {127L: (0,
  89. None,
  90. 1,
  91. 0),
  92. 155L: (0,
  93. None,
  94. 1,
  95. 0),
  96. 367L: (0,
  97. None,
  98. 1,
  99. 0),
  100. 423L: (0,
  101. None,
  102. 1,
  103. 0),
  104. 494L: (0,
  105. None,
  106. 1,
  107. 0)},
  108. loc('playstreamproxy.py'): {227: (0,
  109. None,
  110. 1,
  111. 0),
  112. 439L: (0,
  113. None,
  114. 1,
  115. 0)},
  116. loc('playstreamproxyX.py'): {65: (0,
  117. None,
  118. 1,
  119. 0),
  120. 95L: (0,
  121. None,
  122. 1,
  123. 0)},
  124. loc('resolvers/cloudsany.py'): {48L: (0,
  125. None,
  126. 1,
  127. 0),
  128. 56L: (0,
  129. None,
  130. 1,
  131. 0),
  132. 89L: (0,
  133. None,
  134. 1,
  135. 0),
  136. 112L: (0,
  137. None,
  138. 1,
  139. 0),
  140. 120L: (0,
  141. None,
  142. 1,
  143. 0)},
  144. loc('run.py'): {277L: (0,
  145. None,
  146. 1,
  147. 0),
  148. 414: (0,
  149. None,
  150. 1,
  151. 0),
  152. 633L: (0,
  153. None,
  154. 1,
  155. 0)},
  156. loc('sources/config.py'): {56: (0,
  157. None,
  158. 1,
  159. 0),
  160. 116L: (0,
  161. None,
  162. 1,
  163. 0)},
  164. loc('sources/euronews.py'): {161L: (0,
  165. None,
  166. 1,
  167. 0)},
  168. loc('sources/filmon.py'): {49L: (0,
  169. None,
  170. 1,
  171. 0)},
  172. loc('sources/lmt.py'): {221L: (0,
  173. None,
  174. 1,
  175. 0)},
  176. loc('sources/ltc.py'): {568L: (0,
  177. None,
  178. 1,
  179. 0),
  180. 590L: (0,
  181. None,
  182. 1,
  183. 0),
  184. 971L: (0,
  185. None,
  186. 1,
  187. 0)},
  188. loc('sources/ltc2.py'): {99L: (0,
  189. None,
  190. 1,
  191. 0),
  192. 143L: (0,
  193. None,
  194. 1,
  195. 0),
  196. 189L: (0,
  197. None,
  198. 1,
  199. 0),
  200. 569L: (0,
  201. None,
  202. 1,
  203. 0),
  204. 832: (0,
  205. None,
  206. 1,
  207. 0),
  208. 935L: (0,
  209. None,
  210. 1,
  211. 0)},
  212. loc('sources/ltcp.py'): {221L: (0,
  213. None,
  214. 1,
  215. 0),
  216. 599L: (0,
  217. None,
  218. 1,
  219. 0),
  220. 863L: (0,
  221. None,
  222. 1,
  223. 0)},
  224. loc('sources/replay.py'): {145L: (0,
  225. None,
  226. 1,
  227. 0),
  228. 366L: (0,
  229. None,
  230. 1,
  231. 0)},
  232. loc('sources/tmp/ltc.py'): {580L: (0,
  233. None,
  234. 1,
  235. 0)},
  236. loc('sources/tvdom.py'): {190L: (0,
  237. None,
  238. 1,
  239. 0)},
  240. loc('sources/tvplay.py'): {124L: (0,
  241. None,
  242. 1,
  243. 0)},
  244. loc('test_sources.py'): {7L: (0,
  245. None,
  246. 1,
  247. 0)},
  248. loc('untitled-1.py'): {10: (0,
  249. None,
  250. 1,
  251. 0)},
  252. loc('../untitled-1.py'): {1: (0,
  253. None,
  254. 1,
  255. 0),
  256. 2: (0,
  257. None,
  258. 1,
  259. 0),
  260. 3: (0,
  261. None,
  262. 1,
  263. 0)},
  264. loc('unknown:<untitled> #1'): {2: (0,
  265. None,
  266. 1,
  267. 0)},
  268. loc('unknown:<untitled> #2'): {10: (0,
  269. None,
  270. 1,
  271. 0)}}
  272. debug.err-values = {None: {},
  273. loc('ContentSources.py'): {},
  274. loc('Downloader.py'): {},
  275. loc('iub_db.py'): {},
  276. loc('iub_email.py'): {},
  277. loc('iubx.py'): {},
  278. loc('kivy_test2.py'): {},
  279. loc('ltcproxy.py'): {},
  280. loc('playstreamproxy.py'): {},
  281. loc('playstreamproxy2.py'): {},
  282. loc('run.py'): {},
  283. loc('sources/cinemalive.py'): {},
  284. loc('sources/euronews.py'): {},
  285. loc('sources/filmas.py'): {},
  286. loc('sources/filmix.py'): {},
  287. loc('sources/ltc.py'): {},
  288. loc('sources/ltc2.py'): {},
  289. loc('sources/replay.py'): {},
  290. loc('sources/tvplay.py'): {},
  291. loc('test_sources2.py'): {},
  292. loc('test_url.py'): {}}
  293. debug.recent-run-args = {loc('ContentSources.py'): [u'config::home streams_bernu.cfg',
  294. u'ltc::home',
  295. u'config::home'],
  296. loc('Downloader.py'): [u'http://player.tvnet.lv/stream/amlst:75136/playlist.m3u8 downloads\\ccc',
  297. u'http://player.tvnet.lv/stream/amlst:75136/playlist.m3u8 downloads\\bbb',
  298. u'http://player.tvnet.lv/stream/amlst:75136/playlist.m3u8 aaa.mp4'],
  299. loc('iub_db.py'): [u'-d 90 -s -o',
  300. u'-d 40 -rg -o',
  301. u'-d 40 -s -o',
  302. u'-d 40 -r -o',
  303. u'-d 40 -g -o',
  304. u'-d 60 -s -o',
  305. u'-d 10 -r -o',
  306. u'-d 3 --slud -o',
  307. u'-d 10 --rez -o',
  308. u'-d 10 --rez',
  309. u'-d 10 --groz',
  310. u'-d 20 --groz',
  311. u'-d 20 --slud',
  312. u'-d 10 --slud',
  313. u'-d 3 --slud',
  314. u'-d 3'],
  315. loc('iub_db2.py'): [u'-p 1 2 --debug ',
  316. u'-d 1 --debug ',
  317. u'-p 51 53 --debug -o',
  318. u'-p 50 53 --debug -o',
  319. u'-d 3 --debug -o',
  320. u'-d 1 --debug -o',
  321. u'-d 1 --debug -o',
  322. u'-d 1 --debug',
  323. u'-d 1',
  324. u'-h'],
  325. loc('iub_email.py'): [u'-i --debug',
  326. u'-i ',
  327. u'-i',
  328. u'-p'],
  329. loc('iubx.py'): [u'-s -d30',
  330. u'-s -d10',
  331. u'-s -d3',
  332. u'-s -d40',
  333. '-s -d 10\n'],
  334. loc('iubx2.py'): [u'-sgr -d 10',
  335. u'-sgr',
  336. u'--sgr',
  337. u'--slud'],
  338. loc('kivy_test.py'): [u'https://walterebert.com/playground/video/hls/sintel-trailer.m3u8',
  339. u'https://dl4.sanii.co/files/2/60e13omc1cpph2/video.mp4'],
  340. loc('ltcproxy.py'): [u'manualstart -s cheroot',
  341. u'manualstart aaa',
  342. u'manualstart cheroot',
  343. u'manualstart wsgiref',
  344. u'manualstart',
  345. u'manualstart waitress',
  346. u'manualstart '],
  347. loc('playstreamproxy.py'): [u'manualstart',
  348. u'multithread'],
  349. loc('playstreamproxy2.py'): [u'manualstart ',
  350. u'manualstart cheroot',
  351. u'manualstart cheroot 80',
  352. u'manualstart wsgiref 80',
  353. u'manualstart mtwsgi 80',
  354. u'manualstart wsgi 80',
  355. u'manualstart mtwsgi 8885',
  356. u'start mtwsgi 8885',
  357. u'start mtwsgi',
  358. u'manualstart mtwsgi',
  359. u'manualstart',
  360. u'cheroot'],
  361. loc('playstreamproxyX.py'): [u'manualstart'],
  362. loc('run.py'): [u'config::home ftp://user:Kaskade7@home.blue.lv/hdd/streams.cfg',
  363. u'config::home sources\\cfg0\\streams_al.cfg',
  364. u'config::home ',
  365. u'config::home ftp://user:Kaskade7@home.blue.lv/hdd/streams_al.cfg',
  366. u'config::home ftps://user:Kaskade7@home.blue.lv/hdd/streams_al.cfg',
  367. u'config::home ftp://user:Kaskade7@home.blue.lv/hdd/streams_al.cfg2',
  368. u'config::home ftp://home.blue.lv/hdd/streams_al.cfg',
  369. u'config::home ',
  370. u'config::home streams_bernu.cfg',
  371. u'ltc::home',
  372. u'ltc::videonoma',
  373. u'ltc::video ',
  374. u'config::home streams_bernu.cfg',
  375. u'config::home'],
  376. loc('sources/lmt.py'): [u'home',
  377. u'home cli'],
  378. loc('sources/ltc.py'): [u'ltc::videonoma'],
  379. loc('sources/replay.py'): [u'replay::ieraksts/ltv/132895/tiesa-runa-kas-kontrole-maksatnespejas-nozari']}
  380. debug.run-args = {}
  381. debug.var-col-widths = [0.37922403003754696,
  382. 0.6207759699624531]
  383. edit.bookmarks = {'epg_get_stream_url': (loc('ltcproxy.py'),
  384. {'attrib-starts': [('epg_get_stream_url|0|',
  385. 268)],
  386. 'category': '',
  387. 'code-line': 'def epg_get_stream_url(epgid):\r\n',
  388. 'first-line': 233L,
  389. 'notes': '',
  390. 'sel-line': 268L}),
  391. 'get_archive': (loc('ltcproxy.py'),
  392. {'attrib-starts': [('get_archive|0|',
  393. 205)],
  394. 'category': '',
  395. 'code-line': 'def get_archive(key, ch, ts'\
  396. '):\r\n',
  397. 'first-line': 170L,
  398. 'notes': '',
  399. 'sel-line': 205L}),
  400. 'get_archive_chunk': (loc('ltcproxy.py'),
  401. {'attrib-starts': [('get_archive_chunk|0|',
  402. 321)],
  403. 'category': '',
  404. 'code-line': 'def get_archive_chunk(key, ch, ts, tail):\r\n',
  405. 'first-line': 284L,
  406. 'notes': '',
  407. 'sel-line': 321L}),
  408. 'get_live': (loc('ltcproxy.py'),
  409. {'attrib-starts': [('get_live|0|',
  410. 104)],
  411. 'category': '',
  412. 'code-line': 'def get_live(key, ch):\r\n',
  413. 'first-line': 87L,
  414. 'notes': '',
  415. 'sel-line': 104L}),
  416. 'get_live_chunk': (loc('ltcproxy.py'),
  417. {'attrib-starts': [('get_live_chunk|0|',
  418. 132)],
  419. 'category': '',
  420. 'code-line': 'def get_live_chunk(key, '\
  421. 'ch, tail):\r\n',
  422. 'first-line': 108L,
  423. 'notes': '',
  424. 'sel-line': 132L}),
  425. 'live_get_stream_url': (loc('ltcproxy.py'),
  426. {'attrib-starts': [('live_get_stream_url|0|',
  427. 247)],
  428. 'category': '',
  429. 'code-line': 'def live_get_stream_url(ch):\r\n',
  430. 'first-line': 215L,
  431. 'notes': '',
  432. 'sel-line': 247L})}
  433. guimgr.overall-gui-state = {'windowing-policy': 'combined-window',
  434. 'windows': [{'name': 'F8FpRDICw7YHXG3HV2rBc63asU'\
  435. 'LBT7JH',
  436. 'size-state': 'maximized',
  437. 'type': 'dock',
  438. 'view': {'area': 'tall',
  439. 'constraint': None,
  440. 'current_pages': [0,
  441. 0],
  442. 'full-screen': False,
  443. 'notebook_display': 'hidden',
  444. 'notebook_percent': 0.25,
  445. 'override_title': None,
  446. 'pagelist': [('project',
  447. 'tall',
  448. 0,
  449. {'tree-state': {'file-sort-method': 'by name',
  450. 'list-files-first': 0,
  451. 'tree-states': {'deep': {'expanded-nodes': [],
  452. 'selected-nodes': [(0,)],
  453. 'top-node': (0,)}},
  454. 'tree-style': 'deep'}}),
  455. ('snippets',
  456. 'tall',
  457. 0,
  458. {'tree-states': {u'c': [],
  459. u'html': [],
  460. u'py': [['class',
  461. 'all',
  462. '']]}}),
  463. ('browser',
  464. 'tall',
  465. 0,
  466. {'all_tree_states': {loc('../../../$Setup/Python/Libs/pyglet-1.0-docs/examples/programming_guide/hello_world.py'): {'c'\
  467. 'olumn-widths': [1.0],
  468. 'expanded-nodes': [],
  469. 'selected-nodes': [],
  470. 'top-node': [('generic attribute',
  471. loc('../../../$Setup/Python/Libs/pyglet-1.0-docs/examples/programming_guide/hello_world.py'),
  472. 'ft')]},
  473. loc('../../../Documents and Settings/User/Application Data/Wing IDE 3/x-wingide-zip:/C:/Python25/Lib/site-packages/simplejson-1.8.1-py2.5-win32.egg/simplejson/decoder.py'): {'c'\
  474. 'olumn-widths': [1.0],
  475. 'expanded-nodes': [],
  476. 'selected-nodes': [],
  477. 'top-node': [('generic attribute',
  478. loc('../../../Documents and Settings/User/Application Data/Wing IDE 3/x-wingide-zip:/C:/Python25/Lib/site-packages/simplejson-1.8.1-py2.5-win32.egg/simplejson/decoder.py'),
  479. 'ANYTHING')]},
  480. loc('../../../Python25/Lib/BeautifulSoup.py'): {'column-widths': [1.0],
  481. 'expanded-nodes': [],
  482. 'selected-nodes': [],
  483. 'top-node': [('class def',
  484. loc('../../../Python25/Lib/BeautifulSoup.py'),
  485. 'BeautifulSOAP')]},
  486. loc('../../../Python25/Lib/ConfigParser.py'): {'column-widths': [1.0],
  487. 'expanded-nodes': [],
  488. 'selected-nodes': [],
  489. 'top-node': [('class def',
  490. loc('../../../Python25/Lib/ConfigParser.py'),
  491. 'ConfigParser')]},
  492. loc('../../../Python25/Lib/StringIO.py'): {'column-widths': [1.0],
  493. 'expanded-nodes': [],
  494. 'selected-nodes': [],
  495. 'top-node': [('class def',
  496. loc('../../../Python25/Lib/StringIO.py'),
  497. 'StringIO')]},
  498. loc('../../../Python25/Lib/dircache.py'): {'column-widths': [1.0],
  499. 'expanded-nodes': [],
  500. 'selected-nodes': [],
  501. 'top-node': [('function def',
  502. loc('../../../Python25/Lib/dircache.py'),
  503. 'annotate')]},
  504. loc('../../../Python25/Lib/encodings/cp1257.py'): {'column-widths': [1.0],
  505. 'expanded-nodes': [],
  506. 'selected-nodes': [],
  507. 'top-node': [('class def',
  508. loc('../../../Python25/Lib/encodings/cp1257.py'),
  509. 'Codec')]},
  510. loc('../../../Python25/Lib/encodings/utf_8.py'): {'column-widths': [1.0],
  511. 'expanded-nodes': [],
  512. 'selected-nodes': [],
  513. 'top-node': [('function def',
  514. loc('../../../Python25/Lib/encodings/utf_8.py'),
  515. 'decode')]},
  516. loc('../../../Python25/Lib/ntpath.py'): {'column-widths': [1.0],
  517. 'expanded-nodes': [],
  518. 'selected-nodes': [],
  519. 'top-node': [('function def',
  520. loc('../../../Python25/Lib/ntpath.py'),
  521. 'abspath')]},
  522. loc('../../../Python25/Lib/re.py'): {'column-widths': [1.0],
  523. 'expanded-nodes': [],
  524. 'selected-nodes': [],
  525. 'top-node': [('generic attribute',
  526. loc('../../../Python25/Lib/re.py'),
  527. 'c')]},
  528. loc('../../../Python25/Lib/sgmllib.py'): {'column-widths': [1.0],
  529. 'expanded-nodes': [],
  530. 'selected-nodes': [],
  531. 'top-node': [('generic attribute',
  532. loc('../../../Python25/Lib/sgmllib.py'),
  533. 'attrfind')]},
  534. loc('../../../Python25/Lib/site-packages/PIL/BmpImagePlugin.py'): {'c'\
  535. 'olumn-widths': [1.0],
  536. 'expanded-nodes': [],
  537. 'selected-nodes': [],
  538. 'top-node': [('generic attribute',
  539. loc('../../../Python25/Lib/site-packages/PIL/BmpImagePlugin.py'),
  540. 'BIT2MODE')]},
  541. loc('../../../Python25/Lib/site-packages/PIL/GifImagePlugin.py'): {'c'\
  542. 'olumn-widths': [1.0],
  543. 'expanded-nodes': [],
  544. 'selected-nodes': [],
  545. 'top-node': [('function def',
  546. loc('../../../Python25/Lib/site-packages/PIL/GifImagePlugin.py'),
  547. 'getdata')]},
  548. loc('../../../Python25/Lib/site-packages/PIL/Image.py'): {'column-wi'\
  549. 'dths': [1.0],
  550. 'expanded-nodes': [],
  551. 'selected-nodes': [[('generic attribute',
  552. loc('../../../Python25/Lib/site-packages/PIL/Image.py'),
  553. '_initialized')]],
  554. 'top-node': [('generic attribute',
  555. loc('../../../Python25/Lib/site-packages/PIL/Image.py'),
  556. 'ADAPTIVE')]},
  557. loc('../../../Python25/Lib/site-packages/PIL/ImageFile.py'): {'colum'\
  558. 'n-widths': [1.0],
  559. 'expanded-nodes': [],
  560. 'selected-nodes': [],
  561. 'top-node': [('generic attribute',
  562. loc('../../../Python25/Lib/site-packages/PIL/ImageFile.py'),
  563. 'ERRORS')]},
  564. loc('../../../Python25/Lib/site-packages/PIL/ImagePalette.py'): {'co'\
  565. 'lumn-widths': [1.0],
  566. 'expanded-nodes': [],
  567. 'selected-nodes': [],
  568. 'top-node': [('class def',
  569. loc('../../../Python25/Lib/site-packages/PIL/ImagePalette.py'),
  570. 'ImagePalette')]},
  571. loc('../../../Python25/Lib/site-packages/argparse.py'): {'column-wid'\
  572. 'ths': [1.0],
  573. 'expanded-nodes': [],
  574. 'selected-nodes': [],
  575. 'top-node': [('class def',
  576. loc('../../../Python25/Lib/site-packages/argparse.py'),
  577. 'Action')]},
  578. loc('../../../Python25/Lib/site-packages/pdo.py'): {'column-widths': [1.0],
  579. 'expanded-nodes': [],
  580. 'selected-nodes': [],
  581. 'top-node': [('class def',
  582. loc('../../../Python25/Lib/site-packages/pdo.py'),
  583. 'connect')]},
  584. loc('../../../Python25/Lib/struct.py'): {'column-widths': [1.0],
  585. 'expanded-nodes': [],
  586. 'selected-nodes': [],
  587. 'top-node': [('function def',
  588. loc('../../../Python25/Lib/struct.py'),
  589. 'calcsize')]},
  590. loc('../../../Python27/Lib/site-packages/psycopg2/extras.py'): {'exp'\
  591. 'anded-nodes': [],
  592. 'selected-nodes': [],
  593. 'top-node': [('class def',
  594. loc('../../../Python27/Lib/site-packages/psycopg2/extras.py'),
  595. 'CompositeCaster')]},
  596. loc('../../../Python27/Lib/site-packages/win32com/client/dynamic.py'): {'e'\
  597. 'xpanded-nodes': [],
  598. 'selected-nodes': [],
  599. 'top-node': [('generic attribute',
  600. loc('../../../Python27/Lib/site-packages/win32com/client/dynamic.py'),
  601. 'ALL_INVOKE_TYPES')]},
  602. loc('../$test/test2.py'): {'column-widths': [1.0],
  603. 'expanded-nodes': [],
  604. 'selected-nodes': [],
  605. 'top-node': [('generic attribute',
  606. loc('../$test/test2.py'),
  607. 'con')]},
  608. loc('../$test/test3.py'): {'column-widths': [1.0],
  609. 'expanded-nodes': [],
  610. 'selected-nodes': [],
  611. 'top-node': [('generic attribute',
  612. loc('../$test/test3.py'),
  613. 'area')]},
  614. loc('../$test/test4.py'): {'column-widths': [1.0],
  615. 'expanded-nodes': [],
  616. 'selected-nodes': [],
  617. 'top-node': [('generic attribute',
  618. loc('../$test/test4.py'),
  619. 'con')]},
  620. loc('../5streets/5streets.py'): {'column-widths': [1.0],
  621. 'expanded-nodes': [],
  622. 'selected-nodes': [],
  623. 'top-node': [('generic attribute',
  624. loc('../5streets/5streets.py'),
  625. 'dlat')]},
  626. loc('../JS2/JSData.py'): {'column-widths': [1.0],
  627. 'expanded-nodes': [],
  628. 'selected-nodes': [],
  629. 'top-node': [('generic attribute',
  630. loc('../JS2/JSData.py'),
  631. 'db')]},
  632. loc('../JS2/const.py'): {'column-widths': [1.0],
  633. 'expanded-nodes': [],
  634. 'selected-nodes': [],
  635. 'top-node': [('generic attribute',
  636. loc('../JS2/const.py'),
  637. 'config')]},
  638. loc('../JS2/js2gif2.py'): {'column-widths': [1.0],
  639. 'expanded-nodes': [],
  640. 'selected-nodes': [],
  641. 'top-node': [('generic attribute',
  642. loc('../JS2/js2gif2.py'),
  643. 'argc')]},
  644. loc('../JS2/js3.py'): {'column-widths': [1.0],
  645. 'expanded-nodes': [],
  646. 'selected-nodes': [],
  647. 'top-node': [('function def',
  648. loc('../JS2/js3.py'),
  649. 'deg')]},
  650. loc('../JS2/js3s.py'): {'column-widths': [1.0],
  651. 'expanded-nodes': [],
  652. 'selected-nodes': [],
  653. 'top-node': [('function def',
  654. loc('../JS2/js3s.py'),
  655. 'deg')]},
  656. loc('../JS2/js_2gif.py'): {'column-widths': [1.0],
  657. 'expanded-nodes': [],
  658. 'selected-nodes': [],
  659. 'top-node': [('generic attribute',
  660. loc('../JS2/js_2gif.py'),
  661. 'argc')]},
  662. loc('../JS2/js_db.py'): {'column-widths': [1.0],
  663. 'expanded-nodes': [],
  664. 'selected-nodes': [],
  665. 'top-node': [('generic attribute',
  666. loc('../JS2/js_db.py'),
  667. 'bks93')]},
  668. loc('../JS2/js_map.py'): {'column-widths': [1.0],
  669. 'expanded-nodes': [],
  670. 'selected-nodes': [[('function def',
  671. loc('../JS2/js_map.py'),
  672. 'deg')]],
  673. 'top-node': [('function def',
  674. loc('../JS2/js_map.py'),
  675. 'deg')]},
  676. loc('../JS2/js_map2.py'): {'column-widths': [1.0],
  677. 'expanded-nodes': [],
  678. 'selected-nodes': [],
  679. 'top-node': [('function def',
  680. loc('../JS2/js_map2.py'),
  681. 'deg')]},
  682. loc('../JS2/js_map3.py'): {'column-widths': [1.0],
  683. 'expanded-nodes': [],
  684. 'selected-nodes': [],
  685. 'top-node': [('function def',
  686. loc('../JS2/js_map3.py'),
  687. 'deg')]},
  688. loc('../JS2/js_map4.py'): {'column-widths': [1.0],
  689. 'expanded-nodes': [],
  690. 'selected-nodes': [],
  691. 'top-node': [('function def',
  692. loc('../JS2/js_map4.py'),
  693. 'create_map')]},
  694. loc('../JS2/js_shp.py'): {'column-widths': [1.0],
  695. 'expanded-nodes': [],
  696. 'selected-nodes': [],
  697. 'top-node': [('generic attribute',
  698. loc('../JS2/js_shp.py'),
  699. 'cx')]},
  700. loc('../JS2/js_unpack.py'): {'column-widths': [1.0],
  701. 'expanded-nodes': [],
  702. 'selected-nodes': [],
  703. 'top-node': [('generic attribute',
  704. loc('../JS2/js_unpack.py'),
  705. 'argc')]},
  706. loc('../JS2/jsdb2.py'): {'column-widths': [1.0],
  707. 'expanded-nodes': [],
  708. 'selected-nodes': [],
  709. 'top-node': [('generic attribute',
  710. loc('../JS2/jsdb2.py'),
  711. 'bks93')]},
  712. loc('../JS2/jsunpack2.py'): {'column-widths': [1.0],
  713. 'expanded-nodes': [],
  714. 'selected-nodes': [],
  715. 'top-node': [('generic attribute',
  716. loc('../JS2/jsunpack2.py'),
  717. 'argc')]},
  718. loc('../JS2/ozimap.py'): {'column-widths': [1.0],
  719. 'expanded-nodes': [],
  720. 'selected-nodes': [],
  721. 'top-node': [('generic attribute',
  722. loc('../JS2/ozimap.py'),
  723. 'epilog')]},
  724. loc('../JS2/test PIL.py'): {'column-widths': [1.0],
  725. 'expanded-nodes': [],
  726. 'selected-nodes': [],
  727. 'top-node': [('function def',
  728. loc('../JS2/test PIL.py'),
  729. 'get_pp')]},
  730. loc('BeautifulSoup.py'): {'expanded-nodes': [],
  731. 'selected-nodes': [],
  732. 'top-node': [('class def',
  733. loc('BeautifulSoup.py'),
  734. 'BeautifulSOAP')]},
  735. loc('ContentSources.py'): {'expanded-nodes': [],
  736. 'selected-nodes': [],
  737. 'top-node': [('generic attribute',
  738. loc('ContentSources.py'),
  739. 'cfg_file')]},
  740. loc('config.py'): {'expanded-nodes': [],
  741. 'selected-nodes': [],
  742. 'top-node': [('generic attribute',
  743. loc('config.py'),
  744. 'config')]},
  745. loc('database.py'): {'expanded-nodes': [],
  746. 'selected-nodes': [],
  747. 'top-node': [('class def',
  748. loc('database.py'),
  749. 'Database')]},
  750. loc('excel3.py'): {'expanded-nodes': [],
  751. 'selected-nodes': [],
  752. 'top-node': [('class def',
  753. loc('excel3.py'),
  754. 'Excel')]},
  755. loc('iub_db.py'): {'expanded-nodes': [],
  756. 'selected-nodes': [],
  757. 'top-node': [('function def',
  758. loc('iub_db.py'),
  759. 'add_rec')]},
  760. loc('iub_db2.py'): {'expanded-nodes': [],
  761. 'selected-nodes': [[('generic attribute',
  762. loc('iub_db2.py'),
  763. 'version')]],
  764. 'top-node': [('generic attribute',
  765. loc('iub_db2.py'),
  766. 'config')]},
  767. loc('iubx.ini'): {'expanded-nodes': [],
  768. 'selected-nodes': [],
  769. 'top-node': None},
  770. loc('iubx.py'): {'column-widths': None,
  771. 'expanded-nodes': [],
  772. 'selected-nodes': [],
  773. 'top-node': [('function def',
  774. loc('iubx.py'),
  775. 'check_cpv')]},
  776. loc('iubx0.py'): {'column-widths': [1.0],
  777. 'expanded-nodes': [],
  778. 'selected-nodes': [[('generic attribute',
  779. loc('iubx0.py'),
  780. 'config')]],
  781. 'top-node': [('generic attribute',
  782. loc('iubx0.py'),
  783. 'config')]},
  784. loc('latvian.xml'): {'expanded-nodes': [],
  785. 'selected-nodes': [],
  786. 'top-node': None},
  787. loc('record.py'): {'expanded-nodes': [],
  788. 'selected-nodes': [],
  789. 'top-node': [('generic attribute',
  790. loc('record.py'),
  791. 'r1')]},
  792. loc('run.py'): {'expanded-nodes': [],
  793. 'selected-nodes': [[('class def',
  794. loc('run.py'),
  795. 'ChoiceBox')]],
  796. 'top-node': [('generic attribute',
  797. loc('run.py'),
  798. 'cfg_file')]},
  799. loc('sources/SourceBase.py'): {'expanded-nodes': [],
  800. 'selected-nodes': [],
  801. 'top-node': [('generic attribute',
  802. loc('sources/SourceBase.py'),
  803. 'headers2dict')]},
  804. loc('sources/euronews.py'): {'expanded-nodes': [],
  805. 'selected-nodes': [],
  806. 'top-node': [('generic attribute',
  807. loc('sources/euronews.py'),
  808. 'c')]},
  809. loc('sources/filmas.py'): {'expanded-nodes': [],
  810. 'selected-nodes': [],
  811. 'top-node': [('generic attribute',
  812. loc('sources/filmas.py'),
  813. 'data')]},
  814. loc('sources/filmix.py'): {'expanded-nodes': [],
  815. 'selected-nodes': [[('generic attribute',
  816. loc('sources/filmix.py'),
  817. 'data')]],
  818. 'top-node': [('generic attribute',
  819. loc('sources/filmix.py'),
  820. 'data')]},
  821. loc('sources/iplayer.py'): {'expanded-nodes': [],
  822. 'selected-nodes': [],
  823. 'top-node': [('generic attribute',
  824. loc('sources/iplayer.py'),
  825. 'API_URL')]},
  826. loc('sources/iub.py'): {'expanded-nodes': [],
  827. 'selected-nodes': [[('class def',
  828. loc('sources/iub.py'),
  829. 'Source')]],
  830. 'top-node': [('generic attribute',
  831. loc('sources/iub.py'),
  832. 'h')]},
  833. loc('sources/lmt.py'): {'expanded-nodes': [],
  834. 'selected-nodes': [],
  835. 'top-node': [('generic attribute',
  836. loc('sources/lmt.py'),
  837. 'data')]},
  838. loc('sources/ltc.py'): {'expanded-nodes': [],
  839. 'selected-nodes': [[('generic attribute',
  840. loc('sources/ltc.py'),
  841. 'vid2')]],
  842. 'top-node': [('generic attribute',
  843. loc('sources/ltc.py'),
  844. 'cmd')]},
  845. loc('sources/play24.py'): {'expanded-nodes': [],
  846. 'selected-nodes': [],
  847. 'top-node': [('generic attribute',
  848. loc('sources/play24.py'),
  849. 'API_URL')]},
  850. loc('sources/replay.py'): {'expanded-nodes': [],
  851. 'selected-nodes': [[('class def',
  852. loc('sources/replay.py'),
  853. 'Source')]],
  854. 'top-node': [('generic attribute',
  855. loc('sources/replay.py'),
  856. 'API_URL')]},
  857. loc('sources/serialguru.py'): {'expanded-nodes': [],
  858. 'selected-nodes': [],
  859. 'top-node': [('generic attribute',
  860. loc('sources/serialguru.py'),
  861. 'data')]},
  862. loc('sources/tmp/SourceBase.py'): {'expanded-nodes': [],
  863. 'selected-nodes': [],
  864. 'top-node': [('generic attribute',
  865. loc('sources/tmp/SourceBase.py'),
  866. 'headers2dict')]},
  867. loc('sources/tmp/ltc.py'): {'expanded-nodes': [],
  868. 'selected-nodes': [],
  869. 'top-node': [('generic attribute',
  870. loc('sources/tmp/ltc.py'),
  871. 'cmd')]},
  872. loc('sources/tvdom.py'): {'expanded-nodes': [],
  873. 'selected-nodes': [],
  874. 'top-node': [('generic attribute',
  875. loc('sources/tvdom.py'),
  876. 'data')]},
  877. loc('sources/tvplay.py'): {'expanded-nodes': [],
  878. 'selected-nodes': [[('generic attribute',
  879. loc('sources/tvplay.py'),
  880. 'data')]],
  881. 'top-node': [('generic attribute',
  882. loc('sources/tvplay.py'),
  883. 'data')]},
  884. loc('sources/xtv.py'): {'expanded-nodes': [],
  885. 'selected-nodes': [],
  886. 'top-node': [('generic attribute',
  887. loc('sources/xtv.py'),
  888. 'data')]},
  889. loc('test1.py'): {'expanded-nodes': [],
  890. 'selected-nodes': [],
  891. 'top-node': [('generic attribute',
  892. loc('test1.py'),
  893. 'conn')]},
  894. loc('test_sources.py'): {'expanded-nodes': [],
  895. 'selected-nodes': [],
  896. 'top-node': [('class def',
  897. loc('test_sources.py'),
  898. 'App')]},
  899. loc('test_sources2.py'): {'expanded-nodes': [],
  900. 'selected-nodes': [],
  901. 'top-node': [('generic attribute',
  902. loc('test_sources2.py'),
  903. 'data')]},
  904. loc('util.py'): {'expanded-nodes': [],
  905. 'selected-nodes': [[('function def',
  906. loc('util.py'),
  907. '_substitute_entity')]],
  908. 'top-node': [('generic attribute',
  909. loc('util.py'),
  910. 'CACHE_COOKIES')]},
  911. loc('utils.py'): {'expanded-nodes': [],
  912. 'selected-nodes': [],
  913. 'top-node': [('function def',
  914. loc('utils.py'),
  915. 'check_cpv')]},
  916. loc('../fakemap/fakemap.py'): {'column-widths': [1.0],
  917. 'expanded-nodes': [],
  918. 'selected-nodes': [],
  919. 'top-node': [('generic attribute',
  920. loc('../fakemap/fakemap.py'),
  921. 'dir')]},
  922. loc('../getpics/ggg2.py'): {'column-widths': [1.0],
  923. 'expanded-nodes': [],
  924. 'selected-nodes': [],
  925. 'top-node': [('generic attribute',
  926. loc('../getpics/ggg2.py'),
  927. 'con')]},
  928. loc('../ozi/ozi.py'): {'column-widths': [1.0],
  929. 'expanded-nodes': [],
  930. 'selected-nodes': [],
  931. 'top-node': [('generic attribute',
  932. loc('../ozi/ozi.py'),
  933. 'epilog')]},
  934. loc('../ozi/ozimap.py'): {'column-widths': [1.0],
  935. 'expanded-nodes': [],
  936. 'selected-nodes': [],
  937. 'top-node': [('generic attribute',
  938. loc('../ozi/ozimap.py'),
  939. 'epilog')]},
  940. loc('../theyr/ikite/ikite.py'): {'column-widths': [1.0],
  941. 'expanded-nodes': [],
  942. 'selected-nodes': [],
  943. 'top-node': [('generic attribute',
  944. loc('../theyr/ikite/ikite.py'),
  945. 'day')]},
  946. loc('../vietas/vietas.py'): {'column-widths': [1.0],
  947. 'expanded-nodes': [],
  948. 'selected-nodes': [],
  949. 'top-node': [('generic attribute',
  950. loc('../vietas/vietas.py'),
  951. 'count')]},
  952. loc('../vietas/vietas0.py'): {'column-widths': [1.0],
  953. 'expanded-nodes': [],
  954. 'selected-nodes': [],
  955. 'top-node': [('generic attribute',
  956. loc('../vietas/vietas0.py'),
  957. 'c')]},
  958. loc('../vietas/vietas2.py'): {'column-widths': [1.0],
  959. 'expanded-nodes': [],
  960. 'selected-nodes': [],
  961. 'top-node': [('generic attribute',
  962. loc('../vietas/vietas2.py'),
  963. 'd_lat')]},
  964. loc('../../SplashData/remdup.py'): {'column-widths': [1.0],
  965. 'expanded-nodes': [],
  966. 'selected-nodes': [],
  967. 'top-node': [('generic attribute',
  968. loc('../../SplashData/remdup.py'),
  969. 'f')]},
  970. loc('../../../../../Python27/Lib/lib-tk/Tkinter.py'): {'expanded-nod'\
  971. 'es': [],
  972. 'selected-nodes': [],
  973. 'top-node': [('function def',
  974. loc('../../../../../Python27/Lib/lib-tk/Tkinter.py'),
  975. 'At')]},
  976. loc('../../../../../Python27/Lib/lib-tk/tkCommonDialog.py'): {'expan'\
  977. 'ded-nodes': [],
  978. 'selected-nodes': [],
  979. 'top-node': [('class def',
  980. loc('../../../../../Python27/Lib/lib-tk/tkCommonDialog.py'),
  981. 'Dialog')]},
  982. loc('../../../../../Python27/Lib/lib-tk/tkMessageBox.py'): {'expande'\
  983. 'd-nodes': [],
  984. 'selected-nodes': [],
  985. 'top-node': [('generic attribute',
  986. loc('../../../../../Python27/Lib/lib-tk/tkMessageBox.py'),
  987. 'ABORT')]},
  988. loc('../../../../../Python27/Lib/lib-tk/tkSimpleDialog.py'): {'expan'\
  989. 'ded-nodes': [],
  990. 'selected-nodes': [],
  991. 'top-node': [('function def',
  992. loc('../../../../../Python27/Lib/lib-tk/tkSimpleDialog.py'),
  993. 'askfloat')]},
  994. loc('../../../../../Python27/Lib/lib-tk/ttk.py'): {'expanded-nodes': [],
  995. 'selected-nodes': [],
  996. 'top-node': [('class def',
  997. loc('../../../../../Python27/Lib/lib-tk/ttk.py'),
  998. 'Button')]},
  999. loc('../../../../../Python27/Lib/site-packages/PIL/Image.py'): {'exp'\
  1000. 'anded-nodes': [],
  1001. 'selected-nodes': [],
  1002. 'top-node': [('generic attribute',
  1003. loc('../../../../../Python27/Lib/site-packages/PIL/Image.py'),
  1004. 'ADAPTIVE')]},
  1005. loc('../../../../../Python27/Lib/site-packages/PIL/ImageTk.py'): {'e'\
  1006. 'xpanded-nodes': [],
  1007. 'selected-nodes': [[('function def',
  1008. loc('../../../../../Python27/Lib/site-packages/PIL/ImageTk.py'),
  1009. '_show')]],
  1010. 'top-node': [('class def',
  1011. loc('../../../../../Python27/Lib/site-packages/PIL/ImageTk.py'),
  1012. 'BitmapImage')]},
  1013. loc('unknown:<untitled> #3'): {'column-widths': [1.0],
  1014. 'expanded-nodes': [],
  1015. 'selected-nodes': [],
  1016. 'top-node': None},
  1017. loc('unknown:<untitled> #4'): {'expanded-nodes': [],
  1018. 'selected-nodes': [],
  1019. 'top-node': None},
  1020. loc('unknown:<untitled> #5'): {'expanded-nodes': [],
  1021. 'selected-nodes': [],
  1022. 'top-node': None},
  1023. loc('unknown:<untitled> #6'): {'column-widths': [1.0],
  1024. 'expanded-nodes': [],
  1025. 'selected-nodes': [],
  1026. 'top-node': None}},
  1027. 'browse_mode': u'Current Module',
  1028. 'follow-selection': False,
  1029. 'sort_mode': 'Alphabetically',
  1030. 'visibility_options': {u'Derived Classes': False,
  1031. u'Imported': False,
  1032. u'Modules': True}}),
  1033. ('debug-stack',
  1034. 'tall',
  1035. 1,
  1036. {'codeline-mode': 'below'}),
  1037. ('indent',
  1038. 'tall',
  1039. 2,
  1040. {}),
  1041. ('source-assistant',
  1042. 'tall',
  1043. 1,
  1044. {}),
  1045. ('templating#02EFWRQK9X23',
  1046. 'tall',
  1047. 0,
  1048. None)],
  1049. 'primary_view_state': {'area': 'wide',
  1050. 'constraint': None,
  1051. 'current_pages': [2,
  1052. 1],
  1053. 'notebook_display': 'normal',
  1054. 'notebook_percent': 0.35430463576158944,
  1055. 'override_title': None,
  1056. 'pagelist': [('debug-breakpoints',
  1057. 'wide',
  1058. 0,
  1059. {'tree-state': []}),
  1060. ('bookmarks',
  1061. 'wide',
  1062. 0,
  1063. {'filter-text': ''}),
  1064. ('debug-io',
  1065. 'wide',
  1066. 0,
  1067. {}),
  1068. ('debug-exceptions',
  1069. 'wide',
  1070. 0,
  1071. {}),
  1072. ('interactive-search',
  1073. 'wide',
  1074. 0,
  1075. {'fScope': {'fFileSetName': 'All Source Files',
  1076. 'fLocation': None,
  1077. 'fRecursive': True,
  1078. 'fType': 'project-files'},
  1079. 'fSearchSpec': {'fEndPos': None,
  1080. 'fIncludeLinenos': True,
  1081. 'fInterpretBackslashes': False,
  1082. 'fMatchCase': False,
  1083. 'fOmitBinary': True,
  1084. 'fRegexFlags': 42,
  1085. 'fReplaceText': u'xtv::',
  1086. 'fReverse': False,
  1087. 'fSearchText': u'api',
  1088. 'fStartPos': 0,
  1089. 'fStyle': 'text',
  1090. 'fWholeWords': False,
  1091. 'fWrap': True},
  1092. 'fUIOptions': {'fAutoBackground': True,
  1093. 'fFilePrefix': 'short-file',
  1094. 'fFindAfterReplace': True,
  1095. 'fInSelection': False,
  1096. 'fIncremental': True,
  1097. 'fReplaceOnDisk': False,
  1098. 'fShowFirstMatch': False,
  1099. 'fShowLineno': True,
  1100. 'fShowReplaceWidgets': False}}),
  1101. ('debug-data',
  1102. 'wide',
  1103. 0,
  1104. {}),
  1105. ('testing',
  1106. 'wide',
  1107. 0,
  1108. {'added-files': [],
  1109. 'filter': u'',
  1110. 'recent-filters': None,
  1111. 'sort-order': 'alpha',
  1112. 'tree-state': {'expanded-nodes': [],
  1113. 'selected-nodes': [],
  1114. 'top-node': (0,)}}),
  1115. ('versioncontrol.git',
  1116. 'wide',
  1117. 0,
  1118. {}),
  1119. ('debug-modules',
  1120. 'wide',
  1121. 0,
  1122. {}),
  1123. ('debug-probe',
  1124. 'wide',
  1125. 2,
  1126. {'active-range': (None,
  1127. -1,
  1128. -1),
  1129. 'attrib-starts': [],
  1130. 'code-line': '',
  1131. 'first-line': 21L,
  1132. 'folded-linenos': [],
  1133. 'history': {u'file:C:/Data/Programming/enigma2/PlayStream2/content/sources/filmas.py': ['p'\
  1134. 'rint data\n',
  1135. 'r.cookies\n',
  1136. 'dict(r.cookies)\n',
  1137. 'data\n',
  1138. 'r\n',
  1139. 'js\n',
  1140. 'js[1]\n',
  1141. 'print img\n',
  1142. 'it\n']},
  1143. 'launch-id': None,
  1144. 'sel-line': 25L,
  1145. 'sel-line-start': 2096L,
  1146. 'selection_end': 2096L,
  1147. 'selection_start': 2096L,
  1148. 'zoom': 0L}),
  1149. ('debug-watch',
  1150. 'wide',
  1151. 1,
  1152. {'node-states': [('eval',
  1153. u'r'),
  1154. ('eval',
  1155. u'js'),
  1156. ('eval',
  1157. u'title'),
  1158. ('eval',
  1159. u'item'),
  1160. ('eval',
  1161. u'request'),
  1162. ('eval',
  1163. 'js'),
  1164. ('eval',
  1165. 'it')],
  1166. 'tree-state': {'expanded-nodes': [],
  1167. 'selected-nodes': [(1,)],
  1168. 'top-node': (0,)}}),
  1169. ('messages',
  1170. 'wide',
  1171. 2,
  1172. {'current-domain': 0}),
  1173. ('os-command',
  1174. 'wide',
  1175. 1,
  1176. {'last-percent': 0.8,
  1177. 'toolbox-percent': 1.0,
  1178. 'toolbox-tree-sel': ''}),
  1179. ('uses',
  1180. 'wide',
  1181. 1,
  1182. {}),
  1183. ('python-shell',
  1184. 'wide',
  1185. 2,
  1186. {'active-range': (None,
  1187. -1,
  1188. -1),
  1189. 'attrib-starts': [],
  1190. 'code-line': '',
  1191. 'first-line': 0L,
  1192. 'folded-linenos': [],
  1193. 'history': {},
  1194. 'launch-id': None,
  1195. 'sel-line': 2L,
  1196. 'sel-line-start': 163L,
  1197. 'selection_end': 163L,
  1198. 'selection_start': 163L,
  1199. 'zoom': 0L})],
  1200. 'primary_view_state': {'editor_states': ('horizontal',
  1201. 0.9561181434599156,
  1202. ({'bookmarks': ([[loc('sources/filmas.py'),
  1203. {'attrib-starts': [],
  1204. 'code-line': '# if "movie" in data:\r\n',
  1205. 'first-line': 216L,
  1206. 'folded-linenos': [],
  1207. 'sel-line': 228L,
  1208. 'sel-line-start': 9792L,
  1209. 'selection_end': 9814L,
  1210. 'selection_start': 9812L,
  1211. 'zoom': 0L},
  1212. 1561891195.183],
  1213. [loc('sources/filmas.py'),
  1214. {'attrib-starts': [],
  1215. 'code-line': '# if "movie" in data:\r\n',
  1216. 'first-line': 216L,
  1217. 'folded-linenos': [],
  1218. 'sel-line': 228L,
  1219. 'sel-line-start': 9792L,
  1220. 'selection_end': 9813L,
  1221. 'selection_start': 9812L,
  1222. 'zoom': 0L},
  1223. 1561891198.57],
  1224. [loc('sources/filmas.py'),
  1225. {'attrib-starts': [('Source|0|',
  1226. 36),
  1227. ('Source|0|.get_streams|0|',
  1228. 109)],
  1229. 'code-line': 'Referer: https://www.filmas.lv/movi'\
  1230. 'e/%s/\r\n',
  1231. 'first-line': 123L,
  1232. 'folded-linenos': [],
  1233. 'sel-line': 128L,
  1234. 'sel-line-start': 5328L,
  1235. 'selection_end': 5364L,
  1236. 'selection_start': 5358L,
  1237. 'zoom': 0L},
  1238. 1561891205.302],
  1239. [loc('sources/filmas.py'),
  1240. {'attrib-starts': [('Source|0|',
  1241. 36),
  1242. ('Source|0|.get_streams|0|',
  1243. 109)],
  1244. 'code-line': 'Referer: https://www.filmas.lv/movi'\
  1245. 'e/%s/\r\n',
  1246. 'first-line': 123L,
  1247. 'folded-linenos': [],
  1248. 'sel-line': 128L,
  1249. 'sel-line-start': 5328L,
  1250. 'selection_end': 5363L,
  1251. 'selection_start': 5358L,
  1252. 'zoom': 0L},
  1253. 1561891210.956],
  1254. [loc('sources/filmas.py'),
  1255. {'attrib-starts': [('Source|0|',
  1256. 36),
  1257. ('Source|0|.get_streams|0|',
  1258. 109)],
  1259. 'code-line': 'Referer: https://www.filmas.lv/movi'\
  1260. 'e/%s/\r\n',
  1261. 'first-line': 123L,
  1262. 'folded-linenos': [],
  1263. 'sel-line': 128L,
  1264. 'sel-line-start': 5328L,
  1265. 'selection_end': 5361L,
  1266. 'selection_start': 5358L,
  1267. 'zoom': 0L},
  1268. 1561891211.078],
  1269. [loc('sources/filmas.py'),
  1270. {'attrib-starts': [('Source|0|',
  1271. 36),
  1272. ('Source|0|.get_streams|0|',
  1273. 109)],
  1274. 'code-line': 'Referer: https://www.filmas.lv/movi'\
  1275. 'e/%s/\r\n',
  1276. 'first-line': 123L,
  1277. 'folded-linenos': [],
  1278. 'sel-line': 128L,
  1279. 'sel-line-start': 5328L,
  1280. 'selection_end': 5360L,
  1281. 'selection_start': 5358L,
  1282. 'zoom': 0L},
  1283. 1561891211.225],
  1284. [loc('sources/filmas.py'),
  1285. {'attrib-starts': [('Source|0|',
  1286. 36),
  1287. ('Source|0|.get_streams|0|',
  1288. 109)],
  1289. 'code-line': 'Referer: https://www.filmas.lv/movi'\
  1290. 'e/%s/\r\n',
  1291. 'first-line': 123L,
  1292. 'folded-linenos': [],
  1293. 'sel-line': 128L,
  1294. 'sel-line-start': 5328L,
  1295. 'selection_end': 5365L,
  1296. 'selection_start': 5364L,
  1297. 'zoom': 0L},
  1298. 1561891214.481],
  1299. [loc('sources/filmas.py'),
  1300. {'attrib-starts': [],
  1301. 'code-line': '# data = "movie/3112/"\r\n',
  1302. 'first-line': 215L,
  1303. 'folded-linenos': [],
  1304. 'sel-line': 227L,
  1305. 'sel-line-start': 9760L,
  1306. 'selection_end': 9784L,
  1307. 'selection_start': 9778L,
  1308. 'zoom': 0L},
  1309. 1561891215.412],
  1310. [loc('sources/filmas.py'),
  1311. {'attrib-starts': [('Source|0|',
  1312. 36),
  1313. ('Source|0|.get_content|0|',
  1314. 59)],
  1315. 'code-line': " result = re.findall(r'<"\
  1316. "a href=\"/(movie/\\d+)\">.+?src=\"([^\"]+)\".+?\"movie-catalog-titl"\
  1317. "e\">([^<]+)<.+?\"movie-catalog-year\">([^<]+)<', r, re.DOTALL)\r\n",
  1318. 'first-line': 74L,
  1319. 'folded-linenos': [],
  1320. 'sel-line': 79L,
  1321. 'sel-line-start': 3377L,
  1322. 'selection_end': 3428L,
  1323. 'selection_start': 3422L,
  1324. 'zoom': 0L},
  1325. 1561891223.336],
  1326. [loc('sources/filmas.py'),
  1327. {'attrib-starts': [('Source|0|',
  1328. 36),
  1329. ('Source|0|.get_streams|0|',
  1330. 109)],
  1331. 'code-line': 'Referer: https://www.filmas.lv/movi'\
  1332. 'e/%s/\r\n',
  1333. 'first-line': 116L,
  1334. 'folded-linenos': [],
  1335. 'sel-line': 128L,
  1336. 'sel-line-start': 5328L,
  1337. 'selection_end': 5365L,
  1338. 'selection_start': 5359L,
  1339. 'zoom': 0L},
  1340. 1561891225.59],
  1341. [loc('sources/filmas.py'),
  1342. {'attrib-starts': [],
  1343. 'code-line': '# data = "movie/3112/"\r\n',
  1344. 'first-line': 215L,
  1345. 'folded-linenos': [],
  1346. 'sel-line': 227L,
  1347. 'sel-line-start': 9760L,
  1348. 'selection_end': 9784L,
  1349. 'selection_start': 9778L,
  1350. 'zoom': 0L},
  1351. 1561891226.415],
  1352. [loc('sources/filmas.py'),
  1353. {'attrib-starts': [('Source|0|',
  1354. 36),
  1355. ('Source|0|.get_streams|0|',
  1356. 109)],
  1357. 'code-line': ' headers["Origin"] = "ht'\
  1358. 'tps://www.filmas.lv"\r\n',
  1359. 'first-line': 92L,
  1360. 'folded-linenos': [],
  1361. 'sel-line': 154L,
  1362. 'sel-line-start': 6529L,
  1363. 'selection_end': 6529L,
  1364. 'selection_start': 6529L,
  1365. 'zoom': 0L},
  1366. 1561894512.868],
  1367. [loc('sources/filmas.py'),
  1368. {'attrib-starts': [('Source|0|',
  1369. 36),
  1370. ('Source|0|.get_content|0|',
  1371. 59)],
  1372. 'code-line': ' ("Mekl\xc4\x93t", "'\
  1373. 'filmas::lmdb/api/search/?term={0}","","Mekl\xc4\x93t"),\r\n',
  1374. 'first-line': 57L,
  1375. 'folded-linenos': [],
  1376. 'sel-line': 67L,
  1377. 'sel-line-start': 2243L,
  1378. 'selection_end': 2304L,
  1379. 'selection_start': 2304L,
  1380. 'zoom': 0L},
  1381. 1561894811.652],
  1382. [loc('sources/filmas.py'),
  1383. {'attrib-starts': [('Source|0|',
  1384. 36),
  1385. ('Source|0|.get_content|0|',
  1386. 59)],
  1387. 'code-line': ' js = json.loads(r)\r\n',
  1388. 'first-line': 66L,
  1389. 'folded-linenos': [],
  1390. 'sel-line': 78L,
  1391. 'sel-line-start': 3337L,
  1392. 'selection_end': 3337L,
  1393. 'selection_start': 3337L,
  1394. 'zoom': 0L},
  1395. 1561895193.177],
  1396. [loc('run.py'),
  1397. {'attrib-starts': [('Main|0|',
  1398. 22),
  1399. ('Main|0|.show_content|0|',
  1400. 183)],
  1401. 'code-line': ' self.listbox.delete(0, END)'\
  1402. '\r\n',
  1403. 'first-line': 181L,
  1404. 'folded-linenos': [],
  1405. 'sel-line': 187L,
  1406. 'sel-line-start': 7472L,
  1407. 'selection_end': 7472L,
  1408. 'selection_start': 7472L,
  1409. 'zoom': 0L},
  1410. 1561895207.949],
  1411. [loc('sources/filmas.py'),
  1412. {'attrib-starts': [('Source|0|',
  1413. 36),
  1414. ('Source|0|.get_content|0|',
  1415. 59)],
  1416. 'code-line': '\r\n',
  1417. 'first-line': 73L,
  1418. 'folded-linenos': [],
  1419. 'sel-line': 76L,
  1420. 'sel-line-start': 3268L,
  1421. 'selection_end': 3268L,
  1422. 'selection_start': 3268L,
  1423. 'zoom': 0L},
  1424. 1561896244.291],
  1425. [loc('run.py'),
  1426. {'attrib-starts': [('Main|0|',
  1427. 22),
  1428. ('Main|0|.show_content|0|',
  1429. 183)],
  1430. 'code-line': ' self.listbox.delete(0, END)'\
  1431. '\r\n',
  1432. 'first-line': 181L,
  1433. 'folded-linenos': [],
  1434. 'sel-line': 187L,
  1435. 'sel-line-start': 7472L,
  1436. 'selection_end': 7472L,
  1437. 'selection_start': 7472L,
  1438. 'zoom': 0L},
  1439. 1561896248.74],
  1440. [loc('run.py'),
  1441. {'attrib-starts': [('Main|0|',
  1442. 22),
  1443. ('Main|0|.show_content|0|',
  1444. 183)],
  1445. 'code-line': ' self.show_desc()\r\n',
  1446. 'first-line': 179L,
  1447. 'folded-linenos': [],
  1448. 'sel-line': 193L,
  1449. 'sel-line-start': 7714L,
  1450. 'selection_end': 7738L,
  1451. 'selection_start': 7738L,
  1452. 'zoom': 0L},
  1453. 1561896269.787],
  1454. [loc('sources/filmas.py'),
  1455. {'attrib-starts': [('Source|0|',
  1456. 36),
  1457. ('Source|0|.get_content|0|',
  1458. 59)],
  1459. 'code-line': ' return content\r\n',
  1460. 'first-line': 73L,
  1461. 'folded-linenos': [],
  1462. 'sel-line': 87L,
  1463. 'sel-line-start': 3854L,
  1464. 'selection_end': 3880L,
  1465. 'selection_start': 3880L,
  1466. 'zoom': 0L},
  1467. 1561896284.003],
  1468. [loc('run.py'),
  1469. {'attrib-starts': [('Main|0|',
  1470. 22),
  1471. ('Main|0|.show_content|0|',
  1472. 183)],
  1473. 'code-line': ' for item in self.content:\r'\
  1474. '\n',
  1475. 'first-line': 179L,
  1476. 'folded-linenos': [],
  1477. 'sel-line': 188L,
  1478. 'sel-line-start': 7509L,
  1479. 'selection_end': 7509L,
  1480. 'selection_start': 7509L,
  1481. 'zoom': 0L},
  1482. 1561896294.961]],
  1483. 20),
  1484. 'current-loc': loc('sources/filmas.py'),
  1485. 'editor-state-list': [(loc('sources/ltc2.py'),
  1486. {'attrib-starts': [('Source|0|',
  1487. 30),
  1488. ('Source|0|.is_video|0|',
  1489. 650)],
  1490. 'code-line': ' if clist in ("live-s'\
  1491. 'treams","record-streams","vod-streams", "catchup"):\r\n',
  1492. 'first-line': 644L,
  1493. 'folded-linenos': [32L,
  1494. 533L,
  1495. 573L,
  1496. 684L,
  1497. 756L,
  1498. 863L,
  1499. 914L,
  1500. 962L],
  1501. 'sel-line': 654L,
  1502. 'sel-line-start': 37134L,
  1503. 'selection_end': 37151L,
  1504. 'selection_start': 37151L,
  1505. 'zoom': 0L}),
  1506. (loc('sources/ltc.py'),
  1507. {'attrib-starts': [('Source|0|',
  1508. 26),
  1509. ('Source|0|.get_info2|0|',
  1510. 950)],
  1511. 'code-line': ' if " - " in set1'\
  1512. ':\r\n',
  1513. 'first-line': 951L,
  1514. 'folded-linenos': [581L],
  1515. 'sel-line': 970L,
  1516. 'sel-line-start': 50400L,
  1517. 'selection_end': 50400L,
  1518. 'selection_start': 50400L,
  1519. 'zoom': 0L}),
  1520. (loc('ltcproxy.py'),
  1521. {'attrib-starts': [],
  1522. 'code-line': ' # get_epg("101", 1561839'\
  1523. '586)\r\n',
  1524. 'first-line': 521L,
  1525. 'folded-linenos': [50L],
  1526. 'sel-line': 527L,
  1527. 'sel-line-start': 20603L,
  1528. 'selection_end': 20609L,
  1529. 'selection_start': 20609L,
  1530. 'zoom': 0L}),
  1531. (loc('playstreamproxy.py'),
  1532. {'attrib-starts': [('StreamHandler|0|',
  1533. 90),
  1534. ('StreamHandler|0|.fetch_source|0|',
  1535. 184)],
  1536. 'code-line': ' r = self.get_page_se'\
  1537. 's(url,ses,True,headers = headers2)\r\n',
  1538. 'first-line': 221L,
  1539. 'folded-linenos': [123L,
  1540. 492L,
  1541. 498L],
  1542. 'sel-line': 226L,
  1543. 'sel-line-start': 8085L,
  1544. 'selection_end': 8122L,
  1545. 'selection_start': 8119L,
  1546. 'zoom': 0L}),
  1547. (loc('run.py'),
  1548. {'attrib-starts': [('Main|0|',
  1549. 22),
  1550. ('Main|0|.show_content|0|',
  1551. 183)],
  1552. 'code-line': ' for item in self.con'\
  1553. 'tent:\r\n',
  1554. 'first-line': 179L,
  1555. 'folded-linenos': [],
  1556. 'sel-line': 188L,
  1557. 'sel-line-start': 7509L,
  1558. 'selection_end': 7509L,
  1559. 'selection_start': 7509L,
  1560. 'zoom': 0L}),
  1561. (loc('bottle.py'),
  1562. {'attrib-starts': [('Bottle|0|',
  1563. 620),
  1564. ('Bottle|0|._cast|0|',
  1565. 1026)],
  1566. 'code-line': ' while not first:'\
  1567. '\n',
  1568. 'first-line': 1067L,
  1569. 'folded-linenos': [],
  1570. 'sel-line': 1072L,
  1571. 'sel-line-start': 42625L,
  1572. 'selection_end': 42625L,
  1573. 'selection_start': 42625L,
  1574. 'zoom': 0L}),
  1575. (loc('../../../../../Python27/Lib/socket.py'),
  1576. {'attrib-starts': [],
  1577. 'code-line': 'except ImportError:\n',
  1578. 'first-line': 86L,
  1579. 'folded-linenos': [],
  1580. 'sel-line': 94L,
  1581. 'sel-line-start': 3197L,
  1582. 'selection_end': 3197L,
  1583. 'selection_start': 3197L,
  1584. 'zoom': 0L}),
  1585. (loc('sources/filmas.py'),
  1586. {'attrib-starts': [('Source|0|',
  1587. 36),
  1588. ('Source|0|.get_content|0|',
  1589. 59)],
  1590. 'code-line': ' data2 = '\
  1591. '"movie/%s" % it["value"]\r\n',
  1592. 'first-line': 77L,
  1593. 'folded-linenos': [],
  1594. 'sel-line': 85L,
  1595. 'sel-line-start': 3702L,
  1596. 'selection_end': 3739L,
  1597. 'selection_start': 3739L,
  1598. 'zoom': 0L}),
  1599. (loc('../../../../../Python27/Lib/re.py'),
  1600. {'attrib-starts': [('search|0|',
  1601. 142)],
  1602. 'code-line': ' return _compile(pattern,'\
  1603. ' flags).search(string)\n',
  1604. 'first-line': 140L,
  1605. 'folded-linenos': [],
  1606. 'sel-line': 145L,
  1607. 'sel-line-start': 6856L,
  1608. 'selection_end': 6856L,
  1609. 'selection_start': 6856L,
  1610. 'zoom': 0L})],
  1611. 'has-focus': True,
  1612. 'locked': False},
  1613. [loc('sources/ltc2.py'),
  1614. loc('sources/ltc.py'),
  1615. loc('ltcproxy.py'),
  1616. loc('playstreamproxy.py'),
  1617. loc('run.py'),
  1618. loc('bottle.py'),
  1619. loc('../../../../../Python27/Lib/socket.py'),
  1620. loc('sources/filmas.py'),
  1621. loc('../../../../../Python27/Lib/re.py')]),
  1622. ({'bookmarks': ([[loc('ltcproxy.py'),
  1623. {'attrib-starts': [('get_live_chunk|0|',
  1624. 124)],
  1625. 'code-line': ' mediaid= s["m"+chid]\r'\
  1626. '\n',
  1627. 'first-line': 129L,
  1628. 'folded-linenos': [50L,
  1629. 316L],
  1630. 'sel-line': 144L,
  1631. 'sel-line-start': 5102L,
  1632. 'selection_end': 5133L,
  1633. 'selection_start': 5133L,
  1634. 'zoom': 0L},
  1635. 1561818679.77],
  1636. [loc('ltcproxy.py'),
  1637. {'attrib-starts': [('refresh_live_chunklist_url|0|',
  1638. 279)],
  1639. 'code-line': 'def refresh_live_chunklist_url(stre'\
  1640. 'am_url):\r\n',
  1641. 'first-line': 269L,
  1642. 'folded-linenos': [50L,
  1643. 316L],
  1644. 'sel-line': 279L,
  1645. 'sel-line-start': 10875L,
  1646. 'selection_end': 10905L,
  1647. 'selection_start': 10879L,
  1648. 'zoom': 0L},
  1649. 1561820795.952],
  1650. [loc('ltcproxy.py'),
  1651. {'attrib-starts': [('live_get_stream_url|0|',
  1652. 238)],
  1653. 'code-line': ' s.set(ch, stream_url0, expi'\
  1654. 're=3600*24*7, read=False)\r\n',
  1655. 'first-line': 239L,
  1656. 'folded-linenos': [50L,
  1657. 316L],
  1658. 'sel-line': 255L,
  1659. 'sel-line-start': 9938L,
  1660. 'selection_end': 9967L,
  1661. 'selection_start': 9956L,
  1662. 'zoom': 0L},
  1663. 1561820868.038],
  1664. [loc('ltcproxy.py'),
  1665. {'attrib-starts': [('refresh_live_chunklist_url|0|',
  1666. 287)],
  1667. 'code-line': ' stream_url2 = base2 + rest2 # c'\
  1668. 'hunlist url\r\n',
  1669. 'first-line': 287L,
  1670. 'folded-linenos': [50L,
  1671. 326L],
  1672. 'sel-line': 298L,
  1673. 'sel-line-start': 11678L,
  1674. 'selection_end': 11689L,
  1675. 'selection_start': 11689L,
  1676. 'zoom': 0L},
  1677. 1561824664.095],
  1678. [loc('ltcproxy.py'),
  1679. {'attrib-starts': [('get_vod|0|',
  1680. 387)],
  1681. 'code-line': ' print "** getting vod to %s'\
  1682. ' from cache (%s)" % (path0, request.remote_addr)\r\n',
  1683. 'first-line': 384L,
  1684. 'folded-linenos': [50L,
  1685. 326L],
  1686. 'sel-line': 392L,
  1687. 'sel-line-start': 15853L,
  1688. 'selection_end': 15935L,
  1689. 'selection_start': 15916L,
  1690. 'zoom': 0L},
  1691. 1561825021.549]],
  1692. 5),
  1693. 'current-loc': loc('ltcproxy.py'),
  1694. 'editor-state-list': [(loc('ltcproxy.py'),
  1695. {'attrib-starts': [('refresh_live_chunklist'\
  1696. '_url|0|',
  1697. 288)],
  1698. 'code-line': 'def refresh_live_chunklist_u'\
  1699. 'rl(ch):\r\n',
  1700. 'first-line': 288L,
  1701. 'folded-linenos': [50L],
  1702. 'sel-line': 288L,
  1703. 'sel-line-start': 11270L,
  1704. 'selection_end': 11300L,
  1705. 'selection_start': 11274L,
  1706. 'zoom': 0L})],
  1707. 'has-focus': False,
  1708. 'locked': False},
  1709. [loc('ltcproxy.py')])),
  1710. 'open_files': [u'bottle.py',
  1711. u'playstreamproxy.py',
  1712. u'sources/ltc.py',
  1713. u'sources/ltc2.py',
  1714. u'../../../../../Python27/Lib/socket.py',
  1715. u'ltcproxy.py',
  1716. u'run.py',
  1717. u'sources/filmas.py',
  1718. u'ltcproxy.py']},
  1719. 'saved_notebook_display': None,
  1720. 'split_percents': {0: 0.5565410199556541},
  1721. 'splits': 2,
  1722. 'tab_location': 'top',
  1723. 'traversal_pos': ((0,
  1724. 2),
  1725. 1561896432.242),
  1726. 'user_data': {}},
  1727. 'saved_notebook_display': None,
  1728. 'split_percents': {0: 0.5},
  1729. 'splits': 2,
  1730. 'tab_location': 'left',
  1731. 'traversal_pos': ((1,
  1732. 0),
  1733. 1561819013.904),
  1734. 'user_data': {}},
  1735. 'window-alloc': (65,
  1736. 0,
  1737. 1215,
  1738. 720)}]}
  1739. guimgr.recent-documents = [loc('sources/filmas.py'),
  1740. loc('run.py'),
  1741. loc('../../../../../Python27/Lib/re.py'),
  1742. loc('ltcproxy.py'),
  1743. loc('../../../../../Python27/Lib/socket.py'),
  1744. loc('sources/ltc2.py'),
  1745. loc('sources/ltc.py'),
  1746. loc('playstreamproxy.py')]
  1747. guimgr.visual-state = {loc('../../../Python25/Lib/BeautifulSoup.py'): {'attr'\
  1748. 'ib-starts': [('NavigableString',
  1749. 354),
  1750. ('NavigableString.__getattr__',
  1751. 356)],
  1752. 'first-line': 337,
  1753. 'sel-line': 363,
  1754. 'sel-line-start': 13868,
  1755. 'selection_end': 13868,
  1756. 'selection_start': 13868},
  1757. loc('../../../Python25/Lib/HTMLParser.py'): {'attrib-'\
  1758. 'starts': [('HTMLParser',
  1759. 66),
  1760. ('HTMLParser.check_for_whole_start_tag',
  1761. 274)],
  1762. 'first-line': 284,
  1763. 'folded-linenos': [],
  1764. 'sel-line': 301,
  1765. 'sel-line-start': 10981,
  1766. 'selection_end': 11013,
  1767. 'selection_start': 11013},
  1768. loc('../../../Python25/Lib/VideoCapture.py'): {'attri'\
  1769. 'b-starts': [],
  1770. 'first-line': 0,
  1771. 'folded-linenos': [],
  1772. 'sel-line': 7,
  1773. 'sel-line-start': 85,
  1774. 'selection_end': 128,
  1775. 'selection_start': 85},
  1776. loc('../../../Python25/Lib/encodings/cp1257.py'): {'a'\
  1777. 'ttrib-starts': [('Codec',
  1778. 8),
  1779. ('Codec.encode',
  1780. 10)],
  1781. 'first-line': 0,
  1782. 'folded-linenos': [],
  1783. 'sel-line': 10,
  1784. 'sel-line-start': 197,
  1785. 'selection_end': 197,
  1786. 'selection_start': 197},
  1787. loc('../../../Python25/Lib/re.py'): {'attrib-starts': [],
  1788. 'first-line': 0,
  1789. 'folded-linenos': [],
  1790. 'sel-line': 0,
  1791. 'sel-line-start': 0,
  1792. 'selection_end': 0,
  1793. 'selection_start': 0},
  1794. loc('../../../Python25/Lib/site-packages/BeautifulSoup.py'): {'a'\
  1795. 'ttrib-starts': [('SoupStrainer',
  1796. 817),
  1797. ('SoupStrainer._matches',
  1798. 904)],
  1799. 'first-line': 907,
  1800. 'folded-linenos': [],
  1801. 'sel-line': 928,
  1802. 'sel-line-start': 35455,
  1803. 'selection_end': 35455,
  1804. 'selection_start': 35455},
  1805. loc('../../../Python25/Lib/site-packages/PIL/Image.py'): {'a'\
  1806. 'ttrib-starts': [],
  1807. 'first-line': 26,
  1808. 'folded-linenos': [],
  1809. 'sel-line': 44,
  1810. 'sel-line-start': 1253,
  1811. 'selection_end': 1253,
  1812. 'selection_start': 1253},
  1813. loc('../../../Python25/Lib/site-packages/PIL/__init__.py'): {'a'\
  1814. 'ttrib-starts': [],
  1815. 'first-line': 0,
  1816. 'folded-linenos': [],
  1817. 'sel-line': 0,
  1818. 'sel-line-start': 0,
  1819. 'selection_end': 0,
  1820. 'selection_start': 0},
  1821. loc('../../../Python25/Lib/site-packages/argparse.py'): {'a'\
  1822. 'ttrib-starts': [('_ActionsContainer',
  1823. 926),
  1824. ('_ActionsContainer._handle_conflict_error',
  1825. 1132)],
  1826. 'first-line': 1106,
  1827. 'folded-linenos': [],
  1828. 'sel-line': 1137,
  1829. 'sel-line-start': 41374,
  1830. 'selection_end': 41374,
  1831. 'selection_start': 41374},
  1832. loc('../../../Python25/Lib/site-packages/win32com/client/__init__.py'): {'a'\
  1833. 'ttrib-starts': [('DispatchBaseClass',
  1834. 410),
  1835. ('DispatchBaseClass._ApplyTypes_',
  1836. 443)],
  1837. 'first-line': 425,
  1838. 'folded-linenos': [],
  1839. 'sel-line': 447,
  1840. 'sel-line-start': 19318,
  1841. 'selection_end': 19318,
  1842. 'selection_start': 19318},
  1843. loc('../../../Python25/Lib/site-packages/win32com/client/dynamic.py'): {'a'\
  1844. 'ttrib-starts': [('CDispatch',
  1845. 151),
  1846. ('CDispatch.__getattr__',
  1847. 421)],
  1848. 'first-line': 489,
  1849. 'folded-linenos': [],
  1850. 'sel-line': 494,
  1851. 'sel-line-start': 19030,
  1852. 'selection_end': 19030,
  1853. 'selection_start': 19030},
  1854. loc('../../../Python25/Lib/site-packages/win32com/gen_py/00020813-0000-0000-C000-000000000046x0x1x6.py'): {'a'\
  1855. 'ttrib-starts': [('Range',
  1856. 26378),
  1857. ('Range.__call__',
  1858. 27016)],
  1859. 'first-line': 26996,
  1860. 'folded-linenos': [],
  1861. 'sel-line': 27018,
  1862. 'sel-line-start': 1285165,
  1863. 'selection_end': 1285165,
  1864. 'selection_start': 1285165},
  1865. loc('../../../Python25/Lib/socket.py'): {'attrib-star'\
  1866. 'ts': [('_fileobject',
  1867. 195),
  1868. ('_fileobject.readline',
  1869. 320)],
  1870. 'first-line': 301,
  1871. 'sel-line': 330,
  1872. 'sel-line-start': 10707,
  1873. 'selection_end': 10707,
  1874. 'selection_start': 10707},
  1875. loc('../../../Python25/Lib/sre_parse.py'): {'attrib-s'\
  1876. 'tarts': [('_parse',
  1877. 384)],
  1878. 'first-line': 375,
  1879. 'folded-linenos': [],
  1880. 'sel-line': 406,
  1881. 'sel-line-start': 12403,
  1882. 'selection_end': 12403,
  1883. 'selection_start': 12403},
  1884. loc('ContentSources.py'): {'attrib-starts': [('Conten'\
  1885. 'tSources',
  1886. 16),
  1887. ('ContentSources.get_streams',
  1888. 98)],
  1889. 'first-line': 106L,
  1890. 'folded-linenos': [20L],
  1891. 'sel-line': 118L,
  1892. 'sel-line-start': 5065L,
  1893. 'selection_end': 5065L,
  1894. 'selection_start': 5065L,
  1895. 'zoom': 0L},
  1896. loc('Downloader.py'): {'attrib-starts': [('print_prog'\
  1897. 'ress',
  1898. 237)],
  1899. 'first-line': 248L,
  1900. 'folded-linenos': [9L,
  1901. 47L,
  1902. 76L],
  1903. 'sel-line': 239L,
  1904. 'sel-line-start': 9698L,
  1905. 'selection_end': 9724L,
  1906. 'selection_start': 9724L,
  1907. 'zoom': 0L},
  1908. loc('bottle.py'): {'attrib-starts': [('Bottle|0|',
  1909. 620),
  1910. ('Bottle|0|._cast|0|',
  1911. 1026)],
  1912. 'code-line': ' while not first:\n',
  1913. 'first-line': 1067L,
  1914. 'folded-linenos': [],
  1915. 'sel-line': 1072L,
  1916. 'sel-line-start': 42625L,
  1917. 'selection_end': 42625L,
  1918. 'selection_start': 42625L,
  1919. 'zoom': 0L},
  1920. loc('changelog.md'): {'attrib-starts': [],
  1921. 'first-line': 0L,
  1922. 'folded-linenos': [],
  1923. 'sel-line': 2L,
  1924. 'sel-line-start': 34L,
  1925. 'selection_end': 59L,
  1926. 'selection_start': 59L,
  1927. 'zoom': 0L},
  1928. loc('config.py'): {'attrib-starts': [],
  1929. 'first-line': 0,
  1930. 'folded-linenos': [],
  1931. 'sel-line': 38,
  1932. 'sel-line-start': 1110,
  1933. 'selection_end': 1110,
  1934. 'selection_start': 1110},
  1935. loc('daemonize.py'): {'attrib-starts': [('Daemon|0|',
  1936. 25)],
  1937. 'code-line': ' Usage: subclass the Daemon class and override the '\
  1938. 'run() method\n',
  1939. 'first-line': 18L,
  1940. 'folded-linenos': [],
  1941. 'sel-line': 29L,
  1942. 'sel-line-start': 494L,
  1943. 'selection_end': 560L,
  1944. 'selection_start': 560L,
  1945. 'zoom': 0L},
  1946. loc('iub.py'): {'attrib-starts': [('get_table',
  1947. 51)],
  1948. 'first-line': 0,
  1949. 'folded-linenos': [],
  1950. 'sel-line': 101,
  1951. 'sel-line-start': 3652,
  1952. 'selection_end': 3685,
  1953. 'selection_start': 3669},
  1954. loc('iubx.py'): {'attrib-starts': [('parse_arguments',
  1955. 25)],
  1956. 'first-line': 0,
  1957. 'folded-linenos': [],
  1958. 'sel-line': 32,
  1959. 'sel-line-start': 1289,
  1960. 'selection_end': 1335,
  1961. 'selection_start': 1335},
  1962. loc('iubx0.py'): {'attrib-starts': [('main',
  1963. 40)],
  1964. 'first-line': 349,
  1965. 'folded-linenos': [],
  1966. 'sel-line': 84,
  1967. 'sel-line-start': 3404,
  1968. 'selection_end': 3450,
  1969. 'selection_start': 3449},
  1970. loc('kivy_test.py'): {'attrib-starts': [],
  1971. 'first-line': 0L,
  1972. 'folded-linenos': [24L],
  1973. 'sel-line': 0L,
  1974. 'sel-line-start': 0L,
  1975. 'selection_end': 3L,
  1976. 'selection_start': 3L,
  1977. 'zoom': 0L},
  1978. loc('kivy_test2.py'): {'attrib-starts': [],
  1979. 'first-line': 0L,
  1980. 'folded-linenos': [],
  1981. 'sel-line': 1L,
  1982. 'sel-line-start': 11L,
  1983. 'selection_end': 42L,
  1984. 'selection_start': 42L,
  1985. 'zoom': 0L},
  1986. loc('ltcproxy.cfg'): {'attrib-starts': [],
  1987. 'code-line': 'port = 8881\r\n',
  1988. 'first-line': 0L,
  1989. 'folded-linenos': [],
  1990. 'sel-line': 2L,
  1991. 'sel-line-start': 27L,
  1992. 'selection_end': 38L,
  1993. 'selection_start': 38L,
  1994. 'zoom': 0L},
  1995. loc('ltcproxy.py'): {'attrib-starts': [('get_live|0|',
  1996. 104)],
  1997. 'code-line': ' r2 = requests.get(stream_url2,headers=headers0)\r'\
  1998. '\n',
  1999. 'first-line': 110L,
  2000. 'folded-linenos': [50L,
  2001. 316L],
  2002. 'sel-line': 115L,
  2003. 'sel-line-start': 3936L,
  2004. 'selection_end': 3936L,
  2005. 'selection_start': 3936L,
  2006. 'zoom': 0L},
  2007. loc('mtwsgi.py'): {'attrib-starts': [('MTServer|0|',
  2008. 41),
  2009. ('MTServer|0|.run|0|',
  2010. 42)],
  2011. 'code-line': " thread_count = self.options.pop('thread_count'"\
  2012. ", None)\n",
  2013. 'first-line': 30L,
  2014. 'folded-linenos': [],
  2015. 'sel-line': 43L,
  2016. 'sel-line-start': 1545L,
  2017. 'selection_end': 1598L,
  2018. 'selection_start': 1586L,
  2019. 'zoom': 0L},
  2020. loc('playstreamproxy.py'): {'attrib-starts': [('Strea'\
  2021. 'mHandler',
  2022. 48),
  2023. ('StreamHandler.write_error',
  2024. 361)],
  2025. 'first-line': 353L,
  2026. 'folded-linenos': [],
  2027. 'sel-line': 363L,
  2028. 'sel-line-start': 14434L,
  2029. 'selection_end': 14533L,
  2030. 'selection_start': 14434L,
  2031. 'zoom': 0L},
  2032. loc('playstreamproxyX.py'): {'attrib-starts': [],
  2033. 'first-line': 0L,
  2034. 'folded-linenos': [63L,
  2035. 239L,
  2036. 242L,
  2037. 253L,
  2038. 377L,
  2039. 381L,
  2040. 408L],
  2041. 'sel-line': 8L,
  2042. 'sel-line-start': 201L,
  2043. 'selection_end': 212L,
  2044. 'selection_start': 212L,
  2045. 'zoom': 0L},
  2046. loc('resolver.py'): {'attrib-starts': [],
  2047. 'first-line': 0L,
  2048. 'folded-linenos': [],
  2049. 'sel-line': 0L,
  2050. 'sel-line-start': 0L,
  2051. 'selection_end': 0L,
  2052. 'selection_start': 0L,
  2053. 'zoom': 0L},
  2054. loc('resolvers/cloudsany.py'): {'attrib-starts': [('r'\
  2055. 'esolve',
  2056. 30)],
  2057. 'first-line': 32L,
  2058. 'folded-linenos': [],
  2059. 'sel-line': 39L,
  2060. 'sel-line-start': 1116L,
  2061. 'selection_end': 1158L,
  2062. 'selection_start': 1130L,
  2063. 'zoom': 0L},
  2064. loc('resolvers/hqqresolver.py'): {'attrib-starts': [('r'\
  2065. 'esolve',
  2066. 127)],
  2067. 'first-line': 155L,
  2068. 'folded-linenos': [],
  2069. 'sel-line': 166L,
  2070. 'sel-line-start': 6121L,
  2071. 'selection_end': 6141L,
  2072. 'selection_start': 6137L,
  2073. 'zoom': 0L},
  2074. loc('resolvers/openload3.py'): {'attrib-starts': [('r'\
  2075. 'esolve',
  2076. 49)],
  2077. 'first-line': 47L,
  2078. 'folded-linenos': [],
  2079. 'sel-line': 59L,
  2080. 'sel-line-start': 1909L,
  2081. 'selection_end': 1932L,
  2082. 'selection_start': 1928L,
  2083. 'zoom': 0L},
  2084. loc('run.py'): {'attrib-starts': [('Main',
  2085. 22),
  2086. ('Main.__init__',
  2087. 24)],
  2088. 'first-line': 30L,
  2089. 'folded-linenos': [],
  2090. 'sel-line': 38L,
  2091. 'sel-line-start': 1189L,
  2092. 'selection_end': 1272L,
  2093. 'selection_start': 1272L,
  2094. 'zoom': 0L},
  2095. loc('sources/SourceBase.py'): {'attrib-starts': [('So'\
  2096. 'urceBase',
  2097. 32),
  2098. ('SourceBase._http_request',
  2099. 118)],
  2100. 'first-line': 117L,
  2101. 'folded-linenos': [],
  2102. 'sel-line': 127L,
  2103. 'sel-line-start': 4774L,
  2104. 'selection_end': 4774L,
  2105. 'selection_start': 4774L,
  2106. 'zoom': 0L},
  2107. loc('sources/cinemalive.py'): {'attrib-starts': [('So'\
  2108. 'urce',
  2109. 29),
  2110. ('Source.get_streams',
  2111. 166)],
  2112. 'first-line': 176L,
  2113. 'folded-linenos': [],
  2114. 'sel-line': 184L,
  2115. 'sel-line-start': 9047L,
  2116. 'selection_end': 9087L,
  2117. 'selection_start': 9074L,
  2118. 'zoom': 0L},
  2119. loc('sources/config.py'): {'attrib-starts': [('Source'\
  2120. '|0|',
  2121. 12),
  2122. ('Source|0|.write_streams|0|',
  2123. 81)],
  2124. 'code-line': ' t = self.get_title(l)\r\n',
  2125. 'first-line': 0L,
  2126. 'folded-linenos': [],
  2127. 'sel-line': 106L,
  2128. 'sel-line-start': 3909L,
  2129. 'selection_end': 3909L,
  2130. 'selection_start': 3909L,
  2131. 'zoom': 0L},
  2132. loc('sources/euronews.py'): {'attrib-starts': [('Sour'\
  2133. 'ce',
  2134. 26),
  2135. ('Source.get_content',
  2136. 54)],
  2137. 'first-line': 127L,
  2138. 'folded-linenos': [],
  2139. 'sel-line': 137L,
  2140. 'sel-line-start': 6524L,
  2141. 'selection_end': 6613L,
  2142. 'selection_start': 6540L,
  2143. 'zoom': 0L},
  2144. loc('sources/filmas.py'): {'attrib-starts': [('Source',
  2145. 36),
  2146. ('Source.get_streams',
  2147. 108)],
  2148. 'first-line': 159L,
  2149. 'folded-linenos': [],
  2150. 'sel-line': 168L,
  2151. 'sel-line-start': 7362L,
  2152. 'selection_end': 7404L,
  2153. 'selection_start': 7404L,
  2154. 'zoom': 0L},
  2155. loc('sources/filmix.py'): {'attrib-starts': [('Source',
  2156. 31),
  2157. ('Source.get_streams',
  2158. 270)],
  2159. 'first-line': 275L,
  2160. 'folded-linenos': [],
  2161. 'sel-line': 280L,
  2162. 'sel-line-start': 12065L,
  2163. 'selection_end': 12065L,
  2164. 'selection_start': 12065L,
  2165. 'zoom': 0L},
  2166. loc('sources/filmon.py'): {'attrib-starts': [('Source',
  2167. 32),
  2168. ('Source.get_content',
  2169. 47)],
  2170. 'first-line': 113L,
  2171. 'folded-linenos': [],
  2172. 'sel-line': 122L,
  2173. 'sel-line-start': 4665L,
  2174. 'selection_end': 4665L,
  2175. 'selection_start': 4665L,
  2176. 'zoom': 0L},
  2177. loc('sources/iplayer.py'): {'attrib-starts': [('Sourc'\
  2178. 'e',
  2179. 27),
  2180. ('Source.get_epg_video',
  2181. 370)],
  2182. 'first-line': 396L,
  2183. 'folded-linenos': [],
  2184. 'sel-line': 406L,
  2185. 'sel-line-start': 20357L,
  2186. 'selection_end': 20357L,
  2187. 'selection_start': 20357L,
  2188. 'zoom': 0L},
  2189. loc('sources/lmt.py'): {'attrib-starts': [('Source',
  2190. 32),
  2191. ('Source.get_streams',
  2192. 134)],
  2193. 'first-line': 208L,
  2194. 'folded-linenos': [],
  2195. 'sel-line': 217L,
  2196. 'sel-line-start': 9700L,
  2197. 'selection_end': 9739L,
  2198. 'selection_start': 9736L,
  2199. 'zoom': 0L},
  2200. loc('sources/ltc.py'): {'attrib-starts': [('Source',
  2201. 26),
  2202. ('Source.get_streams',
  2203. 572)],
  2204. 'first-line': 580L,
  2205. 'folded-linenos': [581L],
  2206. 'sel-line': 590L,
  2207. 'sel-line-start': 34647L,
  2208. 'selection_end': 34725L,
  2209. 'selection_start': 34721L,
  2210. 'zoom': 0L},
  2211. loc('sources/ltc2.py'): {'attrib-starts': [('Source',
  2212. 30),
  2213. ('Source.get_content',
  2214. 68)],
  2215. 'first-line': 73L,
  2216. 'folded-linenos': [32L,
  2217. 519L,
  2218. 559L,
  2219. 672L,
  2220. 744L,
  2221. 851L,
  2222. 902L,
  2223. 950L],
  2224. 'sel-line': 146L,
  2225. 'sel-line-start': 6422L,
  2226. 'selection_end': 6471L,
  2227. 'selection_start': 6471L,
  2228. 'zoom': 0L},
  2229. loc('sources/ltcp.py'): {'attrib-starts': [('LTC|0|',
  2230. 29),
  2231. ('LTC|0|.__init__|0|',
  2232. 31)],
  2233. 'code-line': ' self.api_url = "https://manstv.lattelecom.tv/a'\
  2234. 'pi/v1.7/get/content/"\r\n',
  2235. 'first-line': 27L,
  2236. 'folded-linenos': [59L,
  2237. 86L,
  2238. 100L,
  2239. 109L,
  2240. 565L,
  2241. 598L,
  2242. 603L,
  2243. 681L,
  2244. 694L,
  2245. 701L,
  2246. 708L,
  2247. 716L,
  2248. 725L,
  2249. 758L,
  2250. 775L,
  2251. 788L,
  2252. 803L,
  2253. 815L,
  2254. 828L,
  2255. 838L,
  2256. 842L,
  2257. 883L],
  2258. 'sel-line': 38L,
  2259. 'sel-line-start': 1428L,
  2260. 'selection_end': 1503L,
  2261. 'selection_start': 1451L,
  2262. 'zoom': 0L},
  2263. loc('sources/movieplace.py'): {'attrib-starts': [('So'\
  2264. 'urce',
  2265. 32),
  2266. ('Source.__init__',
  2267. 34)],
  2268. 'first-line': 26L,
  2269. 'folded-linenos': [],
  2270. 'sel-line': 38L,
  2271. 'sel-line-start': 1089L,
  2272. 'selection_end': 1119L,
  2273. 'selection_start': 1119L,
  2274. 'zoom': 0L},
  2275. loc('sources/mtgplay.py'): {'attrib-starts': [('Sourc'\
  2276. 'e',
  2277. 40),
  2278. ('Source.get_content',
  2279. 51)],
  2280. 'first-line': 155L,
  2281. 'folded-linenos': [],
  2282. 'sel-line': 162L,
  2283. 'sel-line-start': 8033L,
  2284. 'selection_end': 8077L,
  2285. 'selection_start': 8077L,
  2286. 'zoom': 0L},
  2287. loc('sources/play24.py'): {'attrib-starts': [('Source',
  2288. 28),
  2289. ('Source.__init__',
  2290. 30)],
  2291. 'first-line': 21L,
  2292. 'folded-linenos': [],
  2293. 'sel-line': 31L,
  2294. 'sel-line-start': 1014L,
  2295. 'selection_end': 1079L,
  2296. 'selection_start': 1079L,
  2297. 'zoom': 0L},
  2298. loc('sources/replay.py'): {'attrib-starts': [('Source',
  2299. 31),
  2300. ('Source.get_streams',
  2301. 220)],
  2302. 'first-line': 219L,
  2303. 'folded-linenos': [143L,
  2304. 166L,
  2305. 284L],
  2306. 'sel-line': 274L,
  2307. 'sel-line-start': 13890L,
  2308. 'selection_end': 13890L,
  2309. 'selection_start': 13890L,
  2310. 'zoom': 0L},
  2311. loc('sources/serialguru.py'): {'attrib-starts': [('So'\
  2312. 'urce',
  2313. 25),
  2314. ('Source.__init__',
  2315. 27)],
  2316. 'first-line': 15L,
  2317. 'folded-linenos': [],
  2318. 'sel-line': 28L,
  2319. 'sel-line-start': 817L,
  2320. 'selection_end': 882L,
  2321. 'selection_start': 825L,
  2322. 'zoom': 0L},
  2323. loc('sources/tmp/SourceBase.py'): {'attrib-starts': [],
  2324. 'first-line': 11L,
  2325. 'folded-linenos': [],
  2326. 'sel-line': 28L,
  2327. 'sel-line-start': 906L,
  2328. 'selection_end': 906L,
  2329. 'selection_start': 906L,
  2330. 'zoom': 0L},
  2331. loc('sources/tmp/ltc.py'): {'attrib-starts': [('Sourc'\
  2332. 'e',
  2333. 26),
  2334. ('Source.get_streams',
  2335. 572)],
  2336. 'first-line': 574L,
  2337. 'folded-linenos': [],
  2338. 'sel-line': 572L,
  2339. 'sel-line-start': 33932L,
  2340. 'selection_end': 33951L,
  2341. 'selection_start': 33940L,
  2342. 'zoom': 0L},
  2343. loc('sources/tvdom.py'): {'attrib-starts': [('Source',
  2344. 32),
  2345. ('Source.get_content',
  2346. 84)],
  2347. 'first-line': 0L,
  2348. 'folded-linenos': [],
  2349. 'sel-line': 196L,
  2350. 'sel-line-start': 8971L,
  2351. 'selection_end': 8971L,
  2352. 'selection_start': 8971L,
  2353. 'zoom': 0L},
  2354. loc('sources/tvplay.py'): {'attrib-starts': [],
  2355. 'first-line': 23L,
  2356. 'folded-linenos': [159L],
  2357. 'sel-line': 28L,
  2358. 'sel-line-start': 732L,
  2359. 'selection_end': 800L,
  2360. 'selection_start': 797L,
  2361. 'zoom': 0L},
  2362. loc('sources/ustvnow.py'): {'attrib-starts': [('Sourc'\
  2363. 'e',
  2364. 32),
  2365. ('Source.__init__',
  2366. 34)],
  2367. 'first-line': 26L,
  2368. 'folded-linenos': [],
  2369. 'sel-line': 38L,
  2370. 'sel-line-start': 1260L,
  2371. 'selection_end': 1287L,
  2372. 'selection_start': 1287L,
  2373. 'zoom': 0L},
  2374. loc('sources/viaplay.py'): {'attrib-starts': [('Sourc'\
  2375. 'e',
  2376. 36),
  2377. ('Source.__init__',
  2378. 38)],
  2379. 'first-line': 37L,
  2380. 'folded-linenos': [],
  2381. 'sel-line': 42L,
  2382. 'sel-line-start': 1308L,
  2383. 'selection_end': 1324L,
  2384. 'selection_start': 1316L,
  2385. 'zoom': 0L},
  2386. loc('sources/xtv.py'): {'attrib-starts': [('Source',
  2387. 32),
  2388. ('Source.get_streams',
  2389. 105)],
  2390. 'first-line': 95L,
  2391. 'folded-linenos': [],
  2392. 'sel-line': 105L,
  2393. 'sel-line-start': 4527L,
  2394. 'selection_end': 4546L,
  2395. 'selection_start': 4535L,
  2396. 'zoom': 0L},
  2397. loc('test_sources.py'): {'attrib-starts': [('App',
  2398. 2),
  2399. ('App.__init__',
  2400. 4)],
  2401. 'first-line': 0L,
  2402. 'folded-linenos': [],
  2403. 'sel-line': 11L,
  2404. 'sel-line-start': 403L,
  2405. 'selection_end': 429L,
  2406. 'selection_start': 424L,
  2407. 'zoom': 0L},
  2408. loc('test_sources2.py'): {'attrib-starts': [('Main',
  2409. 12),
  2410. ('Main.initUI',
  2411. 30)],
  2412. 'first-line': 39L,
  2413. 'folded-linenos': [],
  2414. 'sel-line': 41L,
  2415. 'sel-line-start': 1171L,
  2416. 'selection_end': 1857L,
  2417. 'selection_start': 1171L,
  2418. 'zoom': 0L},
  2419. loc('test_url.py'): {'attrib-starts': [],
  2420. 'code-line': 'dt2ts = lambda dt: int(time.mktime(dt.timetuple()))\r'\
  2421. '\n',
  2422. 'first-line': 0L,
  2423. 'folded-linenos': [],
  2424. 'sel-line': 4L,
  2425. 'sel-line-start': 105L,
  2426. 'selection_end': 278L,
  2427. 'selection_start': 105L,
  2428. 'zoom': 0L},
  2429. loc('util.py'): {'attrib-starts': [('streamproxy_deco'\
  2430. 'de3|0|',
  2431. 260)],
  2432. 'code-line': ' m = re.search("http://[^/]+",urlp)\r\n',
  2433. 'first-line': 175L,
  2434. 'folded-linenos': [179L,
  2435. 196L,
  2436. 209L,
  2437. 224L,
  2438. 237L,
  2439. 285L,
  2440. 622L,
  2441. 625L,
  2442. 658L,
  2443. 680L],
  2444. 'sel-line': 261L,
  2445. 'sel-line-start': 9003L,
  2446. 'selection_end': 9003L,
  2447. 'selection_start': 9003L,
  2448. 'zoom': 0L},
  2449. loc('../untitled-1.py'): {'attrib-starts': [],
  2450. 'first-line': 0,
  2451. 'folded-linenos': [],
  2452. 'sel-line': 0,
  2453. 'sel-line-start': 0,
  2454. 'selection_end': 1,
  2455. 'selection_start': 1},
  2456. loc('../../../../../Python27/Lib/ConfigParser.py'): {'a'\
  2457. 'ttrib-starts': [('RawConfigParser|0|',
  2458. 54),
  2459. ('RawConfigParser|0|.getboolean|0|',
  2460. 366)],
  2461. 'code-line': " raise ValueError, 'Not a boolean: %s' % v"\
  2462. "\n",
  2463. 'first-line': 352L,
  2464. 'folded-linenos': [],
  2465. 'sel-line': 369L,
  2466. 'sel-line-start': 12500L,
  2467. 'selection_end': 12500L,
  2468. 'selection_start': 12500L,
  2469. 'zoom': 0L},
  2470. loc('../../../../../Python27/Lib/SocketServer.py'): {'a'\
  2471. 'ttrib-starts': [],
  2472. 'code-line': '"""Generic socket server classes.\n',
  2473. 'first-line': 0L,
  2474. 'folded-linenos': [],
  2475. 'sel-line': 0L,
  2476. 'sel-line-start': 0L,
  2477. 'selection_end': 0L,
  2478. 'selection_start': 0L,
  2479. 'zoom': 0L},
  2480. loc('../../../../../Python27/Lib/_abcoll.py'): {'attr'\
  2481. 'ib-starts': [('MutableMapping|0|',
  2482. 492),
  2483. ('MutableMapping|0|.update|0|',
  2484. 547)],
  2485. 'code-line': ' self = args[0]\n',
  2486. 'first-line': 548L,
  2487. 'folded-linenos': [],
  2488. 'sel-line': 556L,
  2489. 'sel-line-start': 14832L,
  2490. 'selection_end': 14832L,
  2491. 'selection_start': 14832L,
  2492. 'zoom': 0L},
  2493. loc('../../../../../Python27/Lib/ftplib.py'): {'attri'\
  2494. 'b-starts': [],
  2495. 'first-line': 0L,
  2496. 'folded-linenos': [],
  2497. 'sel-line': 0L,
  2498. 'sel-line-start': 0L,
  2499. 'selection_end': 0L,
  2500. 'selection_start': 0L,
  2501. 'zoom': 0L},
  2502. loc('../../../../../Python27/Lib/lib-tk/Tkinter.py'): {'a'\
  2503. 'ttrib-starts': [('CallWrapper',
  2504. 1528),
  2505. ('CallWrapper.__call__',
  2506. 1536)],
  2507. 'first-line': 1537L,
  2508. 'folded-linenos': [],
  2509. 'sel-line': 1542L,
  2510. 'sel-line-start': 60799L,
  2511. 'selection_end': 60799L,
  2512. 'selection_start': 60799L,
  2513. 'zoom': 0L},
  2514. loc('../../../../../Python27/Lib/lib-tk/tkCommonDialog.py'): {'a'\
  2515. 'ttrib-starts': [('Dialog',
  2516. 12)],
  2517. 'first-line': 12L,
  2518. 'folded-linenos': [],
  2519. 'sel-line': 12L,
  2520. 'sel-line-start': 298L,
  2521. 'selection_end': 298L,
  2522. 'selection_start': 298L,
  2523. 'zoom': 0L},
  2524. loc('../../../../../Python27/Lib/lib-tk/tkSimpleDialog.py'): {'a'\
  2525. 'ttrib-starts': [('Dialog',
  2526. 29),
  2527. ('Dialog.__init__',
  2528. 36)],
  2529. 'first-line': 61L,
  2530. 'folded-linenos': [],
  2531. 'sel-line': 76L,
  2532. 'sel-line-start': 1627L,
  2533. 'selection_end': 1686L,
  2534. 'selection_start': 1686L,
  2535. 'zoom': 0L},
  2536. loc('../../../../../Python27/Lib/re.py'): {'attrib-st'\
  2537. 'arts': [('_compile|0|',
  2538. 229)],
  2539. 'code-line': ' raise error, v # invalid expression\n',
  2540. 'first-line': 233L,
  2541. 'folded-linenos': [],
  2542. 'sel-line': 250L,
  2543. 'sel-line-start': 10653L,
  2544. 'selection_end': 10653L,
  2545. 'selection_start': 10653L,
  2546. 'zoom': 0L},
  2547. loc('../../../../../Python27/Lib/site-packages/PIL/Image.py'): {'a'\
  2548. 'ttrib-starts': [('DecompressionBombError',
  2549. 73)],
  2550. 'first-line': 40L,
  2551. 'folded-linenos': [],
  2552. 'sel-line': 73L,
  2553. 'sel-line-start': 1583L,
  2554. 'selection_end': 1583L,
  2555. 'selection_start': 1583L,
  2556. 'zoom': 0L},
  2557. loc('../../../../../Python27/Lib/site-packages/PIL/ImageTk.py'): {'a'\
  2558. 'ttrib-starts': [('PhotoImage',
  2559. 69),
  2560. ('PhotoImage.paste',
  2561. 155)],
  2562. 'first-line': 167L,
  2563. 'folded-linenos': [],
  2564. 'sel-line': 184L,
  2565. 'sel-line-start': 5644L,
  2566. 'selection_end': 5668L,
  2567. 'selection_start': 5665L,
  2568. 'zoom': 0L},
  2569. loc('../../../../../Python27/Lib/site-packages/requests/adapters.py'): {'a'\
  2570. 'ttrib-starts': [('HTTPAdapter',
  2571. 80),
  2572. ('HTTPAdapter.send',
  2573. 387)],
  2574. 'first-line': 493L,
  2575. 'folded-linenos': [],
  2576. 'sel-line': 505L,
  2577. 'sel-line-start': 20166L,
  2578. 'selection_end': 20166L,
  2579. 'selection_start': 20166L,
  2580. 'zoom': 0L},
  2581. loc('../../../../../Python27/Lib/site-packages/requests/api.py'): {'a'\
  2582. 'ttrib-starts': [('get|0|',
  2583. 60)],
  2584. 'code-line': 'def get(url, params=None, **kwargs):\n',
  2585. 'first-line': 50L,
  2586. 'folded-linenos': [],
  2587. 'sel-line': 60L,
  2588. 'sel-line-start': 3054L,
  2589. 'selection_end': 3061L,
  2590. 'selection_start': 3058L,
  2591. 'zoom': 0L},
  2592. loc('../../../../../Python27/Lib/site-packages/requests/models.py'): {'a'\
  2593. 'ttrib-starts': [('Response',
  2594. 577),
  2595. ('Response.content',
  2596. 810)],
  2597. 'first-line': 819L,
  2598. 'folded-linenos': [],
  2599. 'sel-line': 827L,
  2600. 'sel-line-start': 29594L,
  2601. 'selection_end': 29594L,
  2602. 'selection_start': 29594L,
  2603. 'zoom': 0L},
  2604. loc('../../../../../Python27/Lib/wsgiref/handlers.py'): {'a'\
  2605. 'ttrib-starts': [],
  2606. 'code-line': '"""Base classes for server/gateway implementations"""'\
  2607. '\n',
  2608. 'first-line': 0L,
  2609. 'folded-linenos': [],
  2610. 'sel-line': 0L,
  2611. 'sel-line-start': 0L,
  2612. 'selection_end': 0L,
  2613. 'selection_start': 0L,
  2614. 'zoom': 0L},
  2615. loc('../../../../../Python27/Lib/wsgiref/simple_server.py'): {'a'\
  2616. 'ttrib-starts': [('WSGIRequestHandler|0|',
  2617. 68),
  2618. ('WSGIRequestHandler|0|.handle|0|',
  2619. 112)],
  2620. 'code-line': '\n',
  2621. 'first-line': 112L,
  2622. 'folded-linenos': [],
  2623. 'sel-line': 122L,
  2624. 'sel-line-start': 3709L,
  2625. 'selection_end': 3709L,
  2626. 'selection_start': 3709L,
  2627. 'zoom': 0L},
  2628. loc('../../../../../Users/user/AppData/Roaming/Kodi/addons/script.module.requests/lib/requests/__init__.py'): {'a'\
  2629. 'ttrib-starts': [],
  2630. 'code-line': '',
  2631. 'first-line': 0L,
  2632. 'folded-linenos': [],
  2633. 'sel-line': 0L,
  2634. 'sel-line-start': 0L,
  2635. 'selection_end': 0L,
  2636. 'selection_start': 0L,
  2637. 'zoom': 0L},
  2638. loc('x-wingide-zip://C:/Python25/Lib/site-packages/argparse-1.1-py2.5.egg//argparse.py'): {'a'\
  2639. 'ttrib-starts': [('_ActionsContainer',
  2640. 1187),
  2641. ('_ActionsContainer.add_argument',
  2642. 1270)],
  2643. 'first-line': 1271,
  2644. 'folded-linenos': [],
  2645. 'sel-line': 1283,
  2646. 'sel-line-start': 45405,
  2647. 'selection_end': 45405,
  2648. 'selection_start': 45405},
  2649. loc('x-wingide-zip://C:/Python25/Lib/site-packages/beautifulsoup-3.1.0.1-py2.5.egg//BeautifulSoup.py'): {'a'\
  2650. 'ttrib-starts': [('BeautifulSoup',
  2651. 1446),
  2652. ('BeautifulSoup.__init__',
  2653. 1494)],
  2654. 'first-line': 1481,
  2655. 'folded-linenos': [],
  2656. 'sel-line': 1498,
  2657. 'sel-line-start': 57438,
  2658. 'selection_end': 57438,
  2659. 'selection_start': 57438}}
  2660. proj.build-cmd = {None: ('default',
  2661. None)}
  2662. proj.env-vars = {None: ('default',
  2663. [u''])}
  2664. proj.matplotlib-event-loop = False
  2665. proj.template-debugging = False
  2666. proj.vcs-system-config = ('prefs',
  2667. {'bzr': {'versioncontrol.bzr.active': 'active-if-p'\
  2668. 'roject-dir',
  2669. 'versioncontrol.bzr.executable': u'bzr'},
  2670. 'cvs': {'versioncontrol.cvs.active': 'active-if-p'\
  2671. 'roject-dir',
  2672. 'versioncontrol.cvs.executable': u'cvs',
  2673. 'versioncontrol.cvs.extra-global-args': '-'\
  2674. 'z3'},
  2675. 'git': {'versioncontrol.git.active': 'active-if-p'\
  2676. 'roject-dir',
  2677. 'versioncontrol.git.executable': u'git',
  2678. 'versioncontrol.git.use-porcelain': True},
  2679. 'hg': {'versioncontrol.hg.active': 'active-if-pro'\
  2680. 'ject-dir',
  2681. 'versioncontrol.hg.dont-find-unregistered': True,
  2682. 'versioncontrol.hg.executable': u'hg',
  2683. 'versioncontrol.hg.extra-global-args': '--'\
  2684. 'encoding=utf8'},
  2685. 'perforce': {'versioncontrol.perforce.active': 'n'\
  2686. 'ot-active',
  2687. 'versioncontrol.perforce.dont-find-unregistered': True,
  2688. 'versioncontrol.perforce.executable': u'p4',
  2689. 'versioncontrol.perforce.extra-global-args': ''},
  2690. 'svn': {'versioncontrol.svn.active': 'active-if-p'\
  2691. 'roject-dir',
  2692. 'versioncontrol.svn.executable': u'svn',
  2693. 'versioncontrol.svn.extra-global-args': '',
  2694. 'versioncontrol.svn.svnadmin-executable': u'svnadmin'}})
  2695. search.replace-history = [u'filmix.co',
  2696. u'https://replay.lsm.lv',
  2697. u'www.shortcut.lv',
  2698. u'shortcut.lv']
  2699. search.search-history = [u'movie/',
  2700. u'/movie',
  2701. u'data',
  2702. u'refreshi',
  2703. u'** ',
  2704. u'headers0',
  2705. u's =',
  2706. u'token',
  2707. u'path2+"#"',
  2708. u'debug',
  2709. u'opening',
  2710. u'chag',
  2711. u'print',
  2712. u'return con',
  2713. u'yield',
  2714. u'def get_live',
  2715. u'start = ',
  2716. u'start',
  2717. u'rais',
  2718. u'eid']
  2719. testing.stored-results = (1,
  2720. [],
  2721. {})