forked from Kodi-vStream/venom-xbmc-addons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsites.json
1106 lines (1106 loc) · 80.6 KB
/
sites.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"name": "Tv_seriestreaming.py",
"path": "plugin.video.vstream/resources/sites/Tv_seriestreaming.py",
"sha": "98d3b0edca9178d69dd85a9b56be30ead9297097",
"size": 15109,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/Tv_seriestreaming.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/Tv_seriestreaming.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/98d3b0edca9178d69dd85a9b56be30ead9297097",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/sites/Tv_seriestreaming.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/Tv_seriestreaming.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/98d3b0edca9178d69dd85a9b56be30ead9297097",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/Tv_seriestreaming.py"
}
},
{
"name": "__init__.py",
"path": "plugin.video.vstream/resources/sites/__init__.py",
"sha": "5ff26b2a15514665aeb39711a5b25145dbcedcb6",
"size": 93,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/__init__.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/__init__.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/5ff26b2a15514665aeb39711a5b25145dbcedcb6",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/sites/__init__.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/__init__.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/5ff26b2a15514665aeb39711a5b25145dbcedcb6",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/__init__.py"
}
},
{
"name": "adkami_com.py",
"path": "plugin.video.vstream/resources/sites/adkami_com.py",
"sha": "f3ab70bff1e43a38aec2031ee58ad00a0b011dea",
"size": 15425,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/adkami_com.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/adkami_com.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/f3ab70bff1e43a38aec2031ee58ad00a0b011dea",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/sites/adkami_com.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/adkami_com.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/f3ab70bff1e43a38aec2031ee58ad00a0b011dea",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/adkami_com.py"
}
},
{
"name": "alluc_ee.py",
"path": "plugin.video.vstream/resources/sites/alluc_ee.py",
"sha": "c9f907496db4f1a25fced92f39d1f7f1d9756adf",
"size": 6885,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/alluc_ee.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/alluc_ee.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/c9f907496db4f1a25fced92f39d1f7f1d9756adf",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/sites/alluc_ee.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/alluc_ee.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/c9f907496db4f1a25fced92f39d1f7f1d9756adf",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/alluc_ee.py"
}
},
{
"name": "buzzmonclick_com.py",
"path": "plugin.video.vstream/resources/sites/buzzmonclick_com.py",
"sha": "5c549a3641b8936199097da8a4de9b77559bb98e",
"size": 6763,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/buzzmonclick_com.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/buzzmonclick_com.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/5c549a3641b8936199097da8a4de9b77559bb98e",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/sites/buzzmonclick_com.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/buzzmonclick_com.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/5c549a3641b8936199097da8a4de9b77559bb98e",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/buzzmonclick_com.py"
}
},
{
"name": "cineiz.py",
"path": "plugin.video.vstream/resources/sites/cineiz.py",
"sha": "b781086b3dbc1fd2d7289b4c6f01d314b7477c58",
"size": 24307,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/cineiz.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/cineiz.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/b781086b3dbc1fd2d7289b4c6f01d314b7477c58",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/sites/cineiz.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/cineiz.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/b781086b3dbc1fd2d7289b4c6f01d314b7477c58",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/cineiz.py"
}
},
{
"name": "cinemavf.py",
"path": "plugin.video.vstream/resources/sites/cinemavf.py",
"sha": "b6ed7f4abe15f8d854c871b05bb981ba143399cd",
"size": 19134,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/cinemavf.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/cinemavf.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/b6ed7f4abe15f8d854c871b05bb981ba143399cd",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/sites/cinemavf.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/cinemavf.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/b6ed7f4abe15f8d854c871b05bb981ba143399cd",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/cinemavf.py"
}
},
{
"name": "cinemay_com.py",
"path": "plugin.video.vstream/resources/sites/cinemay_com.py",
"sha": "85dacee5902e40bb8b42e9979633c367071a0564",
"size": 17065,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/cinemay_com.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/cinemay_com.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/85dacee5902e40bb8b42e9979633c367071a0564",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/sites/cinemay_com.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/cinemay_com.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/85dacee5902e40bb8b42e9979633c367071a0564",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/cinemay_com.py"
}
},
{
"name": "cinemegatoil_org.py",
"path": "plugin.video.vstream/resources/sites/cinemegatoil_org.py",
"sha": "55bb3e3d4ccd6a7c9269718f7bcc7712ea01f2ab",
"size": 7859,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/cinemegatoil_org.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/cinemegatoil_org.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/55bb3e3d4ccd6a7c9269718f7bcc7712ea01f2ab",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/sites/cinemegatoil_org.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/cinemegatoil_org.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/55bb3e3d4ccd6a7c9269718f7bcc7712ea01f2ab",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/cinemegatoil_org.py"
}
},
{
"name": "ddl_island_su.py",
"path": "plugin.video.vstream/resources/sites/ddl_island_su.py",
"sha": "84a21de2c4d59a65fd5c31e562c4a6b8844c7be2",
"size": 38251,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/ddl_island_su.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/ddl_island_su.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/84a21de2c4d59a65fd5c31e562c4a6b8844c7be2",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/sites/ddl_island_su.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/ddl_island_su.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/84a21de2c4d59a65fd5c31e562c4a6b8844c7be2",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/ddl_island_su.py"
}
},
{
"name": "disneyhd_tk.py",
"path": "plugin.video.vstream/resources/sites/disneyhd_tk.py",
"sha": "f163668e4c259fa462821651b784d87b74efe3dc",
"size": 7944,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/disneyhd_tk.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/disneyhd_tk.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/f163668e4c259fa462821651b784d87b74efe3dc",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/sites/disneyhd_tk.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/disneyhd_tk.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/f163668e4c259fa462821651b784d87b74efe3dc",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/disneyhd_tk.py"
}
},
{
"name": "documentaires_streaming_com.py",
"path": "plugin.video.vstream/resources/sites/documentaires_streaming_com.py",
"sha": "c04f0952352b440b24c450a91187799b5572f66a",
"size": 8354,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/documentaires_streaming_com.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/documentaires_streaming_com.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/c04f0952352b440b24c450a91187799b5572f66a",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/sites/documentaires_streaming_com.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/documentaires_streaming_com.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/c04f0952352b440b24c450a91187799b5572f66a",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/documentaires_streaming_com.py"
}
},
{
"name": "film_illimit_fr.py",
"path": "plugin.video.vstream/resources/sites/film_illimit_fr.py",
"sha": "a0178cf46027ff29c9d1aeaabae1eb9b85a8364c",
"size": 15397,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/film_illimit_fr.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/film_illimit_fr.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/a0178cf46027ff29c9d1aeaabae1eb9b85a8364c",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/sites/film_illimit_fr.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/film_illimit_fr.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/a0178cf46027ff29c9d1aeaabae1eb9b85a8364c",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/film_illimit_fr.py"
}
},
{
"name": "filmstreamvk_com.py",
"path": "plugin.video.vstream/resources/sites/filmstreamvk_com.py",
"sha": "b2e72dcbc2b68f7574e7018f3872b73bc1fda2aa",
"size": 15964,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/filmstreamvk_com.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/filmstreamvk_com.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/b2e72dcbc2b68f7574e7018f3872b73bc1fda2aa",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/sites/filmstreamvk_com.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/filmstreamvk_com.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/b2e72dcbc2b68f7574e7018f3872b73bc1fda2aa",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/filmstreamvk_com.py"
}
},
{
"name": "filmsvostfr_biz.py",
"path": "plugin.video.vstream/resources/sites/filmsvostfr_biz.py",
"sha": "4c0299d6e0582daf50b6c09b40aea85fd1303abd",
"size": 18679,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/filmsvostfr_biz.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/filmsvostfr_biz.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/4c0299d6e0582daf50b6c09b40aea85fd1303abd",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/sites/filmsvostfr_biz.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/filmsvostfr_biz.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/4c0299d6e0582daf50b6c09b40aea85fd1303abd",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/filmsvostfr_biz.py"
}
},
{
"name": "filmzenstream_com.py",
"path": "plugin.video.vstream/resources/sites/filmzenstream_com.py",
"sha": "b6adba8ca4e28e5f4d9c0c0fd4b365dc45de37f3",
"size": 8978,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/filmzenstream_com.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/filmzenstream_com.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/b6adba8ca4e28e5f4d9c0c0fd4b365dc45de37f3",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/sites/filmzenstream_com.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/filmzenstream_com.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/b6adba8ca4e28e5f4d9c0c0fd4b365dc45de37f3",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/filmzenstream_com.py"
}
},
{
"name": "free_telechargement_org.py",
"path": "plugin.video.vstream/resources/sites/free_telechargement_org.py",
"sha": "8a8ccf8127ce4e4c1db4ee87afc5d929db96d5e6",
"size": 34293,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/free_telechargement_org.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/free_telechargement_org.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/8a8ccf8127ce4e4c1db4ee87afc5d929db96d5e6",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/sites/free_telechargement_org.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/free_telechargement_org.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/8a8ccf8127ce4e4c1db4ee87afc5d929db96d5e6",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/free_telechargement_org.py"
}
},
{
"name": "freebox.py",
"path": "plugin.video.vstream/resources/sites/freebox.py",
"sha": "e61bde2b6be243bd349260f4689e7d3ab53ae4b4",
"size": 26086,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/freebox.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/freebox.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/e61bde2b6be243bd349260f4689e7d3ab53ae4b4",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/sites/freebox.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/freebox.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/e61bde2b6be243bd349260f4689e7d3ab53ae4b4",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/freebox.py"
}
},
{
"name": "french_stream_com.py",
"path": "plugin.video.vstream/resources/sites/french_stream_com.py",
"sha": "12c438f341c656284bcfea8e058066a8654d3b31",
"size": 22526,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/french_stream_com.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/french_stream_com.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/12c438f341c656284bcfea8e058066a8654d3b31",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/sites/french_stream_com.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/french_stream_com.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/12c438f341c656284bcfea8e058066a8654d3b31",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/french_stream_com.py"
}
},
{
"name": "full_stream_org.py",
"path": "plugin.video.vstream/resources/sites/full_stream_org.py",
"sha": "6d1aed4e7046c65ba52d6b5e852bfca902c97e23",
"size": 15690,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/full_stream_org.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/full_stream_org.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/6d1aed4e7046c65ba52d6b5e852bfca902c97e23",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/sites/full_stream_org.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/full_stream_org.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/6d1aed4e7046c65ba52d6b5e852bfca902c97e23",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/full_stream_org.py"
}
},
{
"name": "fullstreaming.py",
"path": "plugin.video.vstream/resources/sites/fullstreaming.py",
"sha": "a6d4137531db5d86af32b24ede24a4e8fe2767cd",
"size": 9162,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/fullstreaming.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/fullstreaming.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/a6d4137531db5d86af32b24ede24a4e8fe2767cd",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/sites/fullstreaming.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/fullstreaming.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/a6d4137531db5d86af32b24ede24a4e8fe2767cd",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/fullstreaming.py"
}
},
{
"name": "gum_gum_streaming_com.py",
"path": "plugin.video.vstream/resources/sites/gum_gum_streaming_com.py",
"sha": "82461ae6a39a7d62e5f3044f3ea2d516ccb008e4",
"size": 12748,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/gum_gum_streaming_com.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/gum_gum_streaming_com.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/82461ae6a39a7d62e5f3044f3ea2d516ccb008e4",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/sites/gum_gum_streaming_com.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/gum_gum_streaming_com.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/82461ae6a39a7d62e5f3044f3ea2d516ccb008e4",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/gum_gum_streaming_com.py"
}
},
{
"name": "kaydo_ws.py",
"path": "plugin.video.vstream/resources/sites/kaydo_ws.py",
"sha": "b217de7759448fa85f991c7e77650aab20865265",
"size": 18232,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/kaydo_ws.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/kaydo_ws.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/b217de7759448fa85f991c7e77650aab20865265",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/sites/kaydo_ws.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/kaydo_ws.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/b217de7759448fa85f991c7e77650aab20865265",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/kaydo_ws.py"
}
},
{
"name": "kepliz_com.py",
"path": "plugin.video.vstream/resources/sites/kepliz_com.py",
"sha": "47d33232499d3975bdff26f31ca79d397b1c299e",
"size": 18393,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/kepliz_com.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/kepliz_com.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/47d33232499d3975bdff26f31ca79d397b1c299e",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/sites/kepliz_com.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/kepliz_com.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/47d33232499d3975bdff26f31ca79d397b1c299e",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/kepliz_com.py"
}
},
{
"name": "les_debiles.py",
"path": "plugin.video.vstream/resources/sites/les_debiles.py",
"sha": "ff5da81908f848436ca9c1c01b016ebcb52e0a12",
"size": 6826,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/les_debiles.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/les_debiles.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/ff5da81908f848436ca9c1c01b016ebcb52e0a12",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/sites/les_debiles.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/les_debiles.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/ff5da81908f848436ca9c1c01b016ebcb52e0a12",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/les_debiles.py"
}
},
{
"name": "les_docus.py",
"path": "plugin.video.vstream/resources/sites/les_docus.py",
"sha": "e9bf13a1badfdbae4e38dc5b32747f860e136a7c",
"size": 9537,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/les_docus.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/les_docus.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/e9bf13a1badfdbae4e38dc5b32747f860e136a7c",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/sites/les_docus.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/les_docus.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/e9bf13a1badfdbae4e38dc5b32747f860e136a7c",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/les_docus.py"
}
},
{
"name": "libertyland_tv.py",
"path": "plugin.video.vstream/resources/sites/libertyland_tv.py",
"sha": "258a4070c86de21f9f56f3af9847e3f6433789a8",
"size": 19878,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/libertyland_tv.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/libertyland_tv.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/258a4070c86de21f9f56f3af9847e3f6433789a8",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/sites/libertyland_tv.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/libertyland_tv.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/258a4070c86de21f9f56f3af9847e3f6433789a8",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/libertyland_tv.py"
}
},
{
"name": "libre_stream_org.py",
"path": "plugin.video.vstream/resources/sites/libre_stream_org.py",
"sha": "4e4436d630c15dbcf091aca848d03effb64716a9",
"size": 13835,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/libre_stream_org.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/libre_stream_org.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/4e4436d630c15dbcf091aca848d03effb64716a9",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/sites/libre_stream_org.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/libre_stream_org.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/4e4436d630c15dbcf091aca848d03effb64716a9",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/libre_stream_org.py"
}
},
{
"name": "malaisetv.py",
"path": "plugin.video.vstream/resources/sites/malaisetv.py",
"sha": "83fd3cd0226578a9b1bfb29da61079214b7b074b",
"size": 4646,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/malaisetv.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/malaisetv.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/83fd3cd0226578a9b1bfb29da61079214b7b074b",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/sites/malaisetv.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/malaisetv.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/83fd3cd0226578a9b1bfb29da61079214b7b074b",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/malaisetv.py"
}
},
{
"name": "mamcin.py",
"path": "plugin.video.vstream/resources/sites/mamcin.py",
"sha": "4290f207f06ce7bc69680ddbe7271c004fd727d1",
"size": 5560,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/mamcin.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/mamcin.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/4290f207f06ce7bc69680ddbe7271c004fd727d1",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/sites/mamcin.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/mamcin.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/4290f207f06ce7bc69680ddbe7271c004fd727d1",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/mamcin.py"
}
},
{
"name": "mangacity_org.py",
"path": "plugin.video.vstream/resources/sites/mangacity_org.py",
"sha": "70212e4418d57fce629c12cfccb463f6f3111ac9",
"size": 27154,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/mangacity_org.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/mangacity_org.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/70212e4418d57fce629c12cfccb463f6f3111ac9",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/sites/mangacity_org.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/mangacity_org.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/70212e4418d57fce629c12cfccb463f6f3111ac9",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/mangacity_org.py"
}
},
{
"name": "mareplaytv.py",
"path": "plugin.video.vstream/resources/sites/mareplaytv.py",
"sha": "c0323e758c57ed1ef779edc9ead8b35c1d5211c1",
"size": 8811,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/mareplaytv.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/mareplaytv.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/c0323e758c57ed1ef779edc9ead8b35c1d5211c1",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/sites/mareplaytv.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/mareplaytv.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/c0323e758c57ed1ef779edc9ead8b35c1d5211c1",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/mareplaytv.py"
}
},
{
"name": "navixsport_com.py",
"path": "plugin.video.vstream/resources/sites/navixsport_com.py",
"sha": "840b90bedbda34f572ac8d46645dad510660663d",
"size": 7068,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/navixsport_com.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/navixsport_com.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/840b90bedbda34f572ac8d46645dad510660663d",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/sites/navixsport_com.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/navixsport_com.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/840b90bedbda34f572ac8d46645dad510660663d",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/navixsport_com.py"
}
},
{
"name": "neuf_docu.py",
"path": "plugin.video.vstream/resources/sites/neuf_docu.py",
"sha": "e7914891f148c4a5ed0d22fed327d4c23ad7d907",
"size": 8984,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/neuf_docu.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/neuf_docu.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/e7914891f148c4a5ed0d22fed327d4c23ad7d907",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/sites/neuf_docu.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/neuf_docu.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/e7914891f148c4a5ed0d22fed327d4c23ad7d907",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/neuf_docu.py"
}
},
{
"name": "otakufr_com.py",
"path": "plugin.video.vstream/resources/sites/otakufr_com.py",
"sha": "c9a44b54b1feab07434ddec68cfe0cd575929d21",
"size": 12876,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/otakufr_com.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/otakufr_com.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/c9a44b54b1feab07434ddec68cfe0cd575929d21",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/sites/otakufr_com.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/otakufr_com.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/c9a44b54b1feab07434ddec68cfe0cd575929d21",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/otakufr_com.py"
}
},
{
"name": "papstream.py",
"path": "plugin.video.vstream/resources/sites/papstream.py",
"sha": "4a83010a6ef96e8dfc0a0d98ba71f2c0c13dd3f8",
"size": 16895,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/papstream.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/papstream.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/4a83010a6ef96e8dfc0a0d98ba71f2c0c13dd3f8",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/sites/papstream.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/papstream.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/4a83010a6ef96e8dfc0a0d98ba71f2c0c13dd3f8",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/papstream.py"
}
},
{
"name": "planet_streaming.py",
"path": "plugin.video.vstream/resources/sites/planet_streaming.py",
"sha": "648eb18dc9ddc9c83bc7107d2744885effcce30f",
"size": 8823,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/planet_streaming.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/planet_streaming.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/648eb18dc9ddc9c83bc7107d2744885effcce30f",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/sites/planet_streaming.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/planet_streaming.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/648eb18dc9ddc9c83bc7107d2744885effcce30f",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/planet_streaming.py"
}
},
{
"name": "regarder_films.py",
"path": "plugin.video.vstream/resources/sites/regarder_films.py",
"sha": "ec0fbe2b8b3f2b18d47d71914296f4cbde5ffc91",
"size": 9340,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/regarder_films.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/regarder_films.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/ec0fbe2b8b3f2b18d47d71914296f4cbde5ffc91",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/sites/regarder_films.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/regarder_films.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/ec0fbe2b8b3f2b18d47d71914296f4cbde5ffc91",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/regarder_films.py"
}
},
{
"name": "replaytvstreaming_com.py",
"path": "plugin.video.vstream/resources/sites/replaytvstreaming_com.py",
"sha": "c35d6f33d96994f4f10a594fc85de87afac67d82",
"size": 7427,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/replaytvstreaming_com.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/replaytvstreaming_com.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/c35d6f33d96994f4f10a594fc85de87afac67d82",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/sites/replaytvstreaming_com.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/replaytvstreaming_com.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/c35d6f33d96994f4f10a594fc85de87afac67d82",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/replaytvstreaming_com.py"
}
},
{
"name": "reportagestv_com.py",
"path": "plugin.video.vstream/resources/sites/reportagestv_com.py",
"sha": "5e3794077d72c9304f3995e8e5762018bfb61b2d",
"size": 6809,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/reportagestv_com.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/reportagestv_com.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/5e3794077d72c9304f3995e8e5762018bfb61b2d",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/sites/reportagestv_com.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/reportagestv_com.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/5e3794077d72c9304f3995e8e5762018bfb61b2d",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/reportagestv_com.py"
}
},
{
"name": "robindesdroits.py",
"path": "plugin.video.vstream/resources/sites/robindesdroits.py",
"sha": "7f17fe58d89d38dfe3bd8510da0ece97e178145c",
"size": 17944,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/robindesdroits.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/robindesdroits.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/7f17fe58d89d38dfe3bd8510da0ece97e178145c",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/sites/robindesdroits.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/robindesdroits.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/7f17fe58d89d38dfe3bd8510da0ece97e178145c",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/robindesdroits.py"
}
},
{
"name": "serie_streaming_watch.py",
"path": "plugin.video.vstream/resources/sites/serie_streaming_watch.py",
"sha": "2e1132e5e743ee0bb982f1272356fa0088b2354b",
"size": 13342,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/serie_streaming_watch.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/serie_streaming_watch.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/2e1132e5e743ee0bb982f1272356fa0088b2354b",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/sites/serie_streaming_watch.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/serie_streaming_watch.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/2e1132e5e743ee0bb982f1272356fa0088b2354b",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/serie_streaming_watch.py"
}
},
{
"name": "serie_streaminghd.py",
"path": "plugin.video.vstream/resources/sites/serie_streaminghd.py",
"sha": "0aa8a4eb795c5984e6f145f3b1ea32ca96982c2f",
"size": 7603,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/serie_streaminghd.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/serie_streaminghd.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/0aa8a4eb795c5984e6f145f3b1ea32ca96982c2f",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/sites/serie_streaminghd.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/serie_streaminghd.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/0aa8a4eb795c5984e6f145f3b1ea32ca96982c2f",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/serie_streaminghd.py"
}
},
{
"name": "siteuptobox.py",
"path": "plugin.video.vstream/resources/sites/siteuptobox.py",
"sha": "7fc71a7c2877e7e8a02f8a511394beecf05bf623",
"size": 11426,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/siteuptobox.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/siteuptobox.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/7fc71a7c2877e7e8a02f8a511394beecf05bf623",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/sites/siteuptobox.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/siteuptobox.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/7fc71a7c2877e7e8a02f8a511394beecf05bf623",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/siteuptobox.py"
}
},
{
"name": "skstream_co.py",
"path": "plugin.video.vstream/resources/sites/skstream_co.py",
"sha": "62483ef8d6c5be39cda9a5b1541872abcda63f74",
"size": 17220,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/skstream_co.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/skstream_co.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/62483ef8d6c5be39cda9a5b1541872abcda63f74",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/sites/skstream_co.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/skstream_co.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/62483ef8d6c5be39cda9a5b1541872abcda63f74",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/skstream_co.py"
}
},
{
"name": "sokrostream_biz.py",
"path": "plugin.video.vstream/resources/sites/sokrostream_biz.py",
"sha": "f32d894bc31a3e986f6e8ba7123dac898865b005",
"size": 23607,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/sokrostream_biz.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/sokrostream_biz.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/f32d894bc31a3e986f6e8ba7123dac898865b005",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/sites/sokrostream_biz.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/sokrostream_biz.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/f32d894bc31a3e986f6e8ba7123dac898865b005",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/sokrostream_biz.py"
}
},
{
"name": "spion_com.py",
"path": "plugin.video.vstream/resources/sites/spion_com.py",
"sha": "ff08f99524a8788c74f7333a0df8b580737a5e78",
"size": 8621,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/spion_com.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/spion_com.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/ff08f99524a8788c74f7333a0df8b580737a5e78",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/sites/spion_com.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/spion_com.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/ff08f99524a8788c74f7333a0df8b580737a5e78",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/spion_com.py"
}
},
{
"name": "streamay_bz.py",
"path": "plugin.video.vstream/resources/sites/streamay_bz.py",
"sha": "2ab935495536fa1c1b9ed3db16c855715116018e",
"size": 26568,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/streamay_bz.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/streamay_bz.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/2ab935495536fa1c1b9ed3db16c855715116018e",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/sites/streamay_bz.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/streamay_bz.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/2ab935495536fa1c1b9ed3db16c855715116018e",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/streamay_bz.py"
}
},
{
"name": "streamcomplet.py",
"path": "plugin.video.vstream/resources/sites/streamcomplet.py",
"sha": "77704b819d6e8e23770af62e9bbc76ad4d0461c5",
"size": 7216,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/streamcomplet.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/streamcomplet.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/77704b819d6e8e23770af62e9bbc76ad4d0461c5",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/sites/streamcomplet.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/streamcomplet.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/77704b819d6e8e23770af62e9bbc76ad4d0461c5",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/streamcomplet.py"
}
},
{
"name": "streamelite.py",
"path": "plugin.video.vstream/resources/sites/streamelite.py",
"sha": "7e1986c71546c6a9e260f250519003a44ff624fd",
"size": 10505,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/streamelite.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/streamelite.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/7e1986c71546c6a9e260f250519003a44ff624fd",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/sites/streamelite.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/streamelite.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/7e1986c71546c6a9e260f250519003a44ff624fd",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/streamelite.py"
}
},
{
"name": "streamfilmzzz.py",
"path": "plugin.video.vstream/resources/sites/streamfilmzzz.py",
"sha": "1ca3696503585c79691e46ff2939a1f039ba2cc6",
"size": 9556,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/streamfilmzzz.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/streamfilmzzz.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/1ca3696503585c79691e46ff2939a1f039ba2cc6",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/sites/streamfilmzzz.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/streamfilmzzz.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/1ca3696503585c79691e46ff2939a1f039ba2cc6",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/streamfilmzzz.py"
}
},
{
"name": "streaming_series_org.py",
"path": "plugin.video.vstream/resources/sites/streaming_series_org.py",
"sha": "e3c7607be624add3aab2c374d0574104bf9f260a",
"size": 12231,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/streaming_series_org.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/streaming_series_org.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/e3c7607be624add3aab2c374d0574104bf9f260a",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/sites/streaming_series_org.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/streaming_series_org.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/e3c7607be624add3aab2c374d0574104bf9f260a",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/streaming_series_org.py"
}
},
{
"name": "streaming_series_xyz.py",
"path": "plugin.video.vstream/resources/sites/streaming_series_xyz.py",
"sha": "edfe7464a21f3bbcfb25b7c9c1df1757efb6f8a4",
"size": 13191,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/streaming_series_xyz.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/streaming_series_xyz.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/edfe7464a21f3bbcfb25b7c9c1df1757efb6f8a4",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/sites/streaming_series_xyz.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/streaming_series_xyz.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/edfe7464a21f3bbcfb25b7c9c1df1757efb6f8a4",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/streaming_series_xyz.py"
}
},
{
"name": "streamingbb.py",
"path": "plugin.video.vstream/resources/sites/streamingbb.py",
"sha": "6ce55bb1cd19eef11be450350cce2751d8630bef",
"size": 10909,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/streamingbb.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/streamingbb.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/6ce55bb1cd19eef11be450350cce2751d8630bef",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/sites/streamingbb.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/streamingbb.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/6ce55bb1cd19eef11be450350cce2751d8630bef",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/streamingbb.py"
}
},
{
"name": "streamingk_com.py",
"path": "plugin.video.vstream/resources/sites/streamingk_com.py",
"sha": "37c04f34ad07dacc8b96d2d77be263eb9843b6c0",
"size": 16906,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/streamingk_com.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/streamingk_com.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/37c04f34ad07dacc8b96d2d77be263eb9843b6c0",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/sites/streamingk_com.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/streamingk_com.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/37c04f34ad07dacc8b96d2d77be263eb9843b6c0",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/streamingk_com.py"
}
},
{
"name": "streamiz_co.py",
"path": "plugin.video.vstream/resources/sites/streamiz_co.py",
"sha": "b50640d01b0364b35ccab2dcfce3766b52114de3",
"size": 7619,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/streamiz_co.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/streamiz_co.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/b50640d01b0364b35ccab2dcfce3766b52114de3",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/sites/streamiz_co.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/streamiz_co.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/b50640d01b0364b35ccab2dcfce3766b52114de3",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/streamiz_co.py"
}
},
{
"name": "streamzzz_com.py",
"path": "plugin.video.vstream/resources/sites/streamzzz_com.py",
"sha": "e052c29292f9da9d771b55b9d06a76ab0b115221",
"size": 13358,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/streamzzz_com.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/streamzzz_com.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/e052c29292f9da9d771b55b9d06a76ab0b115221",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/sites/streamzzz_com.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/streamzzz_com.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/e052c29292f9da9d771b55b9d06a76ab0b115221",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/streamzzz_com.py"
}
},
{
"name": "themoviedb_org.py",
"path": "plugin.video.vstream/resources/sites/themoviedb_org.py",
"sha": "d6e1b9cef1df11c1ea07d0c15f383f0148d53efa",
"size": 41950,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/themoviedb_org.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/themoviedb_org.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/d6e1b9cef1df11c1ea07d0c15f383f0148d53efa",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/sites/themoviedb_org.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/themoviedb_org.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/d6e1b9cef1df11c1ea07d0c15f383f0148d53efa",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/themoviedb_org.py"
}
},
{
"name": "topimdb.py",
"path": "plugin.video.vstream/resources/sites/topimdb.py",
"sha": "7d0cd7175ed15ba735cd82de9068bd82450df989",
"size": 10936,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/topimdb.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/topimdb.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/7d0cd7175ed15ba735cd82de9068bd82450df989",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/sites/topimdb.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/topimdb.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/7d0cd7175ed15ba735cd82de9068bd82450df989",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/topimdb.py"
}
},
{
"name": "topreplay.py",
"path": "plugin.video.vstream/resources/sites/topreplay.py",
"sha": "f8e82911911784445cc975ac246f807663b74272",
"size": 10630,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/topreplay.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/topreplay.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/f8e82911911784445cc975ac246f807663b74272",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/sites/topreplay.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/topreplay.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/f8e82911911784445cc975ac246f807663b74272",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/topreplay.py"
}
},
{
"name": "trash",
"path": "plugin.video.vstream/resources/sites/trash",
"sha": "fd87698a837c5af14a3134e5a20610ec2e6fe922",
"size": 0,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/trash?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/tree/master/plugin.video.vstream/resources/sites/trash",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/trees/fd87698a837c5af14a3134e5a20610ec2e6fe922",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/trash?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/trees/fd87698a837c5af14a3134e5a20610ec2e6fe922",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/tree/master/plugin.video.vstream/resources/sites/trash"
}
},
{
"name": "tv_streaming_ch.py",
"path": "plugin.video.vstream/resources/sites/tv_streaming_ch.py",
"sha": "fa182ae5687a793353d2845b73c1ee0c87f9e825",
"size": 13527,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/tv_streaming_ch.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/tv_streaming_ch.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/fa182ae5687a793353d2845b73c1ee0c87f9e825",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/sites/tv_streaming_ch.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/tv_streaming_ch.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/fa182ae5687a793353d2845b73c1ee0c87f9e825",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/tv_streaming_ch.py"
}
},
{
"name": "tvrex_net.py",
"path": "plugin.video.vstream/resources/sites/tvrex_net.py",
"sha": "2c7ce58a8fc8ed3908c86027a6146b72dfa3468a",
"size": 21596,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/sites/tvrex_net.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/sites/tvrex_net.py",