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

project.wpr 103KB

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