forked from Kodi-vStream/venom-xbmc-addons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhosts.json
1298 lines (1298 loc) · 92.3 KB
/
hosts.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": "__init__.py",
"path": "plugin.video.vstream/resources/hosters/__init__.py",
"sha": "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391",
"size": 0,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/__init__.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/__init__.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/e69de29bb2d1d6434b8b29ae775ad8c2e48c5391",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/hosters/__init__.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/__init__.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/e69de29bb2d1d6434b8b29ae775ad8c2e48c5391",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/__init__.py"
}
},
{
"name": "allmyvideos.py",
"path": "plugin.video.vstream/resources/hosters/allmyvideos.py",
"sha": "20b26746cf2a39b6270fd52308f4acd08034386a",
"size": 2418,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/allmyvideos.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/allmyvideos.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/20b26746cf2a39b6270fd52308f4acd08034386a",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/hosters/allmyvideos.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/allmyvideos.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/20b26746cf2a39b6270fd52308f4acd08034386a",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/allmyvideos.py"
}
},
{
"name": "allvid.py",
"path": "plugin.video.vstream/resources/hosters/allvid.py",
"sha": "d9ee5289e4b946463351add3b7e39ded6c91f172",
"size": 3162,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/allvid.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/allvid.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/d9ee5289e4b946463351add3b7e39ded6c91f172",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/hosters/allvid.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/allvid.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/d9ee5289e4b946463351add3b7e39ded6c91f172",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/allvid.py"
}
},
{
"name": "amazon.py",
"path": "plugin.video.vstream/resources/hosters/amazon.py",
"sha": "8d83dec8dd74aec1523062c9e11eacad4ab1fed0",
"size": 3129,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/amazon.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/amazon.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/8d83dec8dd74aec1523062c9e11eacad4ab1fed0",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/hosters/amazon.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/amazon.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/8d83dec8dd74aec1523062c9e11eacad4ab1fed0",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/amazon.py"
}
},
{
"name": "cloudy.py",
"path": "plugin.video.vstream/resources/hosters/cloudy.py",
"sha": "136ce9858c4e52677c30f385609f8ac7382dca9e",
"size": 3052,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/cloudy.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/cloudy.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/136ce9858c4e52677c30f385609f8ac7382dca9e",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/hosters/cloudy.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/cloudy.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/136ce9858c4e52677c30f385609f8ac7382dca9e",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/cloudy.py"
}
},
{
"name": "daclips.py",
"path": "plugin.video.vstream/resources/hosters/daclips.py",
"sha": "407d3c8309025657be83233b0324c9d78b11cc2e",
"size": 2329,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/daclips.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/daclips.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/407d3c8309025657be83233b0324c9d78b11cc2e",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/hosters/daclips.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/daclips.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/407d3c8309025657be83233b0324c9d78b11cc2e",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/daclips.py"
}
},
{
"name": "dailymotion.py",
"path": "plugin.video.vstream/resources/hosters/dailymotion.py",
"sha": "97324a6362f07285394e35ce0cf2e2b1f9389e91",
"size": 6126,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/dailymotion.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/dailymotion.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/97324a6362f07285394e35ce0cf2e2b1f9389e91",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/hosters/dailymotion.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/dailymotion.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/97324a6362f07285394e35ce0cf2e2b1f9389e91",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/dailymotion.py"
}
},
{
"name": "divxstage.py",
"path": "plugin.video.vstream/resources/hosters/divxstage.py",
"sha": "e16deb98191a3b1346dfb45efb9eb096a80025f6",
"size": 2868,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/divxstage.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/divxstage.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/e16deb98191a3b1346dfb45efb9eb096a80025f6",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/hosters/divxstage.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/divxstage.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/e16deb98191a3b1346dfb45efb9eb096a80025f6",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/divxstage.py"
}
},
{
"name": "easyvid.py",
"path": "plugin.video.vstream/resources/hosters/easyvid.py",
"sha": "da4b6c4420eae39d98938cff38a3a65c2da32b35",
"size": 2970,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/easyvid.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/easyvid.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/da4b6c4420eae39d98938cff38a3a65c2da32b35",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/hosters/easyvid.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/easyvid.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/da4b6c4420eae39d98938cff38a3a65c2da32b35",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/easyvid.py"
}
},
{
"name": "easywatch.py",
"path": "plugin.video.vstream/resources/hosters/easywatch.py",
"sha": "c08a61883972ae96e9e238b757a8a21a60b1e69c",
"size": 2526,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/easywatch.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/easywatch.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/c08a61883972ae96e9e238b757a8a21a60b1e69c",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/hosters/easywatch.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/easywatch.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/c08a61883972ae96e9e238b757a8a21a60b1e69c",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/easywatch.py"
}
},
{
"name": "estream.py",
"path": "plugin.video.vstream/resources/hosters/estream.py",
"sha": "951b8437e9ae4bd5d9e541f7c902323409bf397a",
"size": 3151,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/estream.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/estream.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/951b8437e9ae4bd5d9e541f7c902323409bf397a",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/hosters/estream.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/estream.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/951b8437e9ae4bd5d9e541f7c902323409bf397a",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/estream.py"
}
},
{
"name": "exashare.py",
"path": "plugin.video.vstream/resources/hosters/exashare.py",
"sha": "2bf8a16dbd9bfe48c1bb8c040874d531ee7cacf0",
"size": 4740,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/exashare.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/exashare.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/2bf8a16dbd9bfe48c1bb8c040874d531ee7cacf0",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/hosters/exashare.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/exashare.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/2bf8a16dbd9bfe48c1bb8c040874d531ee7cacf0",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/exashare.py"
}
},
{
"name": "facebook.py",
"path": "plugin.video.vstream/resources/hosters/facebook.py",
"sha": "d5db2f780df40e7e0b42e3dc622ae33a13a02688",
"size": 2340,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/facebook.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/facebook.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/d5db2f780df40e7e0b42e3dc622ae33a13a02688",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/hosters/facebook.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/facebook.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/d5db2f780df40e7e0b42e3dc622ae33a13a02688",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/facebook.py"
}
},
{
"name": "filepup.py",
"path": "plugin.video.vstream/resources/hosters/filepup.py",
"sha": "4d36bba974adf69cc782035bdd7d8c26c2a6a6f3",
"size": 2002,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/filepup.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/filepup.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/4d36bba974adf69cc782035bdd7d8c26c2a6a6f3",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/hosters/filepup.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/filepup.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/4d36bba974adf69cc782035bdd7d8c26c2a6a6f3",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/filepup.py"
}
},
{
"name": "filetrip.py",
"path": "plugin.video.vstream/resources/hosters/filetrip.py",
"sha": "d5a925b98f88a2a24b5c101166c5480d94a9cf2e",
"size": 2940,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/filetrip.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/filetrip.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/d5a925b98f88a2a24b5c101166c5480d94a9cf2e",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/hosters/filetrip.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/filetrip.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/d5a925b98f88a2a24b5c101166c5480d94a9cf2e",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/filetrip.py"
}
},
{
"name": "filez.py",
"path": "plugin.video.vstream/resources/hosters/filez.py",
"sha": "ee5540eb209c5d6a5085818f37cecb6781784ac1",
"size": 2272,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/filez.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/filez.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/ee5540eb209c5d6a5085818f37cecb6781784ac1",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/hosters/filez.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/filez.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/ee5540eb209c5d6a5085818f37cecb6781784ac1",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/filez.py"
}
},
{
"name": "flashx.py",
"path": "plugin.video.vstream/resources/hosters/flashx.py",
"sha": "cce014da06c861f89ea5998b49100325945cb794",
"size": 14382,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/flashx.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/flashx.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/cce014da06c861f89ea5998b49100325945cb794",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/hosters/flashx.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/flashx.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/cce014da06c861f89ea5998b49100325945cb794",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/flashx.py"
}
},
{
"name": "googledrive.py",
"path": "plugin.video.vstream/resources/hosters/googledrive.py",
"sha": "65e9eff38ebf1c90293749f75cc91442307657e3",
"size": 4012,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/googledrive.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/googledrive.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/65e9eff38ebf1c90293749f75cc91442307657e3",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/hosters/googledrive.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/googledrive.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/65e9eff38ebf1c90293749f75cc91442307657e3",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/googledrive.py"
}
},
{
"name": "googlevideo.py",
"path": "plugin.video.vstream/resources/hosters/googlevideo.py",
"sha": "2622a9b144d5b39d436659bd3cf6a3b9871db618",
"size": 4906,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/googlevideo.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/googlevideo.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/2622a9b144d5b39d436659bd3cf6a3b9871db618",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/hosters/googlevideo.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/googlevideo.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/2622a9b144d5b39d436659bd3cf6a3b9871db618",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/googlevideo.py"
}
},
{
"name": "gorillavid.py",
"path": "plugin.video.vstream/resources/hosters/gorillavid.py",
"sha": "a2a63ea850f7cb892c65cf4cab1a5f85cfde31ef",
"size": 2314,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/gorillavid.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/gorillavid.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/a2a63ea850f7cb892c65cf4cab1a5f85cfde31ef",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/hosters/gorillavid.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/gorillavid.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/a2a63ea850f7cb892c65cf4cab1a5f85cfde31ef",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/gorillavid.py"
}
},
{
"name": "hoster.py",
"path": "plugin.video.vstream/resources/hosters/hoster.py",
"sha": "cb04a45a2432f50022b0b869f095edaa529dc3c6",
"size": 817,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/hoster.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/hoster.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/cb04a45a2432f50022b0b869f095edaa529dc3c6",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/hosters/hoster.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/hoster.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/cb04a45a2432f50022b0b869f095edaa529dc3c6",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/hoster.py"
}
},
{
"name": "idowatch.py",
"path": "plugin.video.vstream/resources/hosters/idowatch.py",
"sha": "a1328aebe0eff6e7f3e4f46833965caefa6d5d37",
"size": 1794,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/idowatch.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/idowatch.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/a1328aebe0eff6e7f3e4f46833965caefa6d5d37",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/hosters/idowatch.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/idowatch.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/a1328aebe0eff6e7f3e4f46833965caefa6d5d37",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/idowatch.py"
}
},
{
"name": "kvid.py",
"path": "plugin.video.vstream/resources/hosters/kvid.py",
"sha": "734ed208905a12df8f442807f204679951ed3778",
"size": 1624,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/kvid.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/kvid.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/734ed208905a12df8f442807f204679951ed3778",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/hosters/kvid.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/kvid.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/734ed208905a12df8f442807f204679951ed3778",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/kvid.py"
}
},
{
"name": "letwatch.py",
"path": "plugin.video.vstream/resources/hosters/letwatch.py",
"sha": "9b6089859449afa7264af17833407da27ae85255",
"size": 2890,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/letwatch.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/letwatch.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/9b6089859449afa7264af17833407da27ae85255",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/hosters/letwatch.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/letwatch.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/9b6089859449afa7264af17833407da27ae85255",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/letwatch.py"
}
},
{
"name": "lien_direct.py",
"path": "plugin.video.vstream/resources/hosters/lien_direct.py",
"sha": "99572ae0f4058637920590e99125e4a5aa69e3ea",
"size": 3472,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/lien_direct.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/lien_direct.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/99572ae0f4058637920590e99125e4a5aa69e3ea",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/hosters/lien_direct.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/lien_direct.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/99572ae0f4058637920590e99125e4a5aa69e3ea",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/lien_direct.py"
}
},
{
"name": "mailru.py",
"path": "plugin.video.vstream/resources/hosters/mailru.py",
"sha": "d741246857a62ad4526b8769b4b843fab3b61718",
"size": 3593,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/mailru.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/mailru.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/d741246857a62ad4526b8769b4b843fab3b61718",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/hosters/mailru.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/mailru.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/d741246857a62ad4526b8769b4b843fab3b61718",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/mailru.py"
}
},
{
"name": "megawatch.py",
"path": "plugin.video.vstream/resources/hosters/megawatch.py",
"sha": "6d5c549a391f9423dddb3cccf41327c903200846",
"size": 2293,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/megawatch.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/megawatch.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/6d5c549a391f9423dddb3cccf41327c903200846",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/hosters/megawatch.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/megawatch.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/6d5c549a391f9423dddb3cccf41327c903200846",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/megawatch.py"
}
},
{
"name": "mystream.py",
"path": "plugin.video.vstream/resources/hosters/mystream.py",
"sha": "d8dd97bc05d22d0ae8b8887e43068f0d0531b570",
"size": 2176,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/mystream.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/mystream.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/d8dd97bc05d22d0ae8b8887e43068f0d0531b570",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/hosters/mystream.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/mystream.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/d8dd97bc05d22d0ae8b8887e43068f0d0531b570",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/mystream.py"
}
},
{
"name": "netu.py",
"path": "plugin.video.vstream/resources/hosters/netu.py",
"sha": "27e1449e8ba2a34f8784a4e2b7fe8fb094851278",
"size": 10642,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/netu.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/netu.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/27e1449e8ba2a34f8784a4e2b7fe8fb094851278",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/hosters/netu.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/netu.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/27e1449e8ba2a34f8784a4e2b7fe8fb094851278",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/netu.py"
}
},
{
"name": "nosvideo.py",
"path": "plugin.video.vstream/resources/hosters/nosvideo.py",
"sha": "8942c5d740ae2f0e58f8eafb67a538106b71d705",
"size": 2364,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/nosvideo.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/nosvideo.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/8942c5d740ae2f0e58f8eafb67a538106b71d705",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/hosters/nosvideo.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/nosvideo.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/8942c5d740ae2f0e58f8eafb67a538106b71d705",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/nosvideo.py"
}
},
{
"name": "novamov.py",
"path": "plugin.video.vstream/resources/hosters/novamov.py",
"sha": "380673e320f11a408b309acb9d3a9e7ebbb0e52b",
"size": 2874,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/novamov.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/novamov.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/380673e320f11a408b309acb9d3a9e7ebbb0e52b",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/hosters/novamov.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/novamov.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/380673e320f11a408b309acb9d3a9e7ebbb0e52b",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/novamov.py"
}
},
{
"name": "nowvideo.py",
"path": "plugin.video.vstream/resources/hosters/nowvideo.py",
"sha": "eb28add4385d83ede9d682fb8b5f0931751836d3",
"size": 3766,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/nowvideo.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/nowvideo.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/eb28add4385d83ede9d682fb8b5f0931751836d3",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/hosters/nowvideo.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/nowvideo.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/eb28add4385d83ede9d682fb8b5f0931751836d3",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/nowvideo.py"
}
},
{
"name": "ok_ru.py",
"path": "plugin.video.vstream/resources/hosters/ok_ru.py",
"sha": "bc0094fe63cedec6702c6b74b0f6e031d2a2853c",
"size": 3881,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/ok_ru.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/ok_ru.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/bc0094fe63cedec6702c6b74b0f6e031d2a2853c",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/hosters/ok_ru.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/ok_ru.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/bc0094fe63cedec6702c6b74b0f6e031d2a2853c",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/ok_ru.py"
}
},
{
"name": "onefichier.py",
"path": "plugin.video.vstream/resources/hosters/onefichier.py",
"sha": "b1cbbcb5a533e87e46cb0b2d7a513cb23e540e71",
"size": 5704,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/onefichier.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/onefichier.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/b1cbbcb5a533e87e46cb0b2d7a513cb23e540e71",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/hosters/onefichier.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/onefichier.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/b1cbbcb5a533e87e46cb0b2d7a513cb23e540e71",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/onefichier.py"
}
},
{
"name": "onevideo.py",
"path": "plugin.video.vstream/resources/hosters/onevideo.py",
"sha": "b36ca563e8475f934ce01a93983641e6d95d96ad",
"size": 3205,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/onevideo.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/onevideo.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/b36ca563e8475f934ce01a93983641e6d95d96ad",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/hosters/onevideo.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/onevideo.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/b36ca563e8475f934ce01a93983641e6d95d96ad",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/onevideo.py"
}
},
{
"name": "openload.py",
"path": "plugin.video.vstream/resources/hosters/openload.py",
"sha": "81975e1f01da9029bf5d32b53652aaab15e72e73",
"size": 85018,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/openload.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/openload.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/81975e1f01da9029bf5d32b53652aaab15e72e73",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/hosters/openload.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/openload.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/81975e1f01da9029bf5d32b53652aaab15e72e73",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/openload.py"
}
},
{
"name": "pixsil.py",
"path": "plugin.video.vstream/resources/hosters/pixsil.py",
"sha": "88e7e1d6f8a9a963acc40ed5d54dc854761073d3",
"size": 1678,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/pixsil.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/pixsil.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/88e7e1d6f8a9a963acc40ed5d54dc854761073d3",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/hosters/pixsil.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/pixsil.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/88e7e1d6f8a9a963acc40ed5d54dc854761073d3",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/pixsil.py"
}
},
{
"name": "playreplay.py",
"path": "plugin.video.vstream/resources/hosters/playreplay.py",
"sha": "d3ded4870bd8a8701abc68a72608f203ce8cf033",
"size": 2561,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/playreplay.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/playreplay.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/d3ded4870bd8a8701abc68a72608f203ce8cf033",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/hosters/playreplay.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/playreplay.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/d3ded4870bd8a8701abc68a72608f203ce8cf033",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/playreplay.py"
}
},
{
"name": "raptu.py",
"path": "plugin.video.vstream/resources/hosters/raptu.py",
"sha": "e49b105d9cdfad8076582930e35b203c06ecf683",
"size": 2999,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/raptu.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/raptu.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/e49b105d9cdfad8076582930e35b203c06ecf683",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/hosters/raptu.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/raptu.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/e49b105d9cdfad8076582930e35b203c06ecf683",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/raptu.py"
}
},
{
"name": "resolver.py",
"path": "plugin.video.vstream/resources/hosters/resolver.py",
"sha": "38ba8c6e052e50344cbe904bd5b7bc8e2aac683f",
"size": 1725,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/resolver.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/resolver.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/38ba8c6e052e50344cbe904bd5b7bc8e2aac683f",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/hosters/resolver.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/resolver.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/38ba8c6e052e50344cbe904bd5b7bc8e2aac683f",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/resolver.py"
}
},
{
"name": "rutube.py",
"path": "plugin.video.vstream/resources/hosters/rutube.py",
"sha": "2ddc376321724be95fd35217f57afa3bb8b9ab22",
"size": 3993,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/rutube.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/rutube.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/2ddc376321724be95fd35217f57afa3bb8b9ab22",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/hosters/rutube.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/rutube.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/2ddc376321724be95fd35217f57afa3bb8b9ab22",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/rutube.py"
}
},
{
"name": "sendvid.py",
"path": "plugin.video.vstream/resources/hosters/sendvid.py",
"sha": "ebfe199de5a1f7adf1e95f880e7f790dc1b9dcf9",
"size": 2055,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/sendvid.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/sendvid.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/ebfe199de5a1f7adf1e95f880e7f790dc1b9dcf9",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/hosters/sendvid.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/sendvid.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/ebfe199de5a1f7adf1e95f880e7f790dc1b9dcf9",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/sendvid.py"
}
},
{
"name": "speedvid.py",
"path": "plugin.video.vstream/resources/hosters/speedvid.py",
"sha": "0e7673e48fd53bc95361d58675ed577a03576637",
"size": 2515,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/speedvid.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/speedvid.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/0e7673e48fd53bc95361d58675ed577a03576637",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/hosters/speedvid.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/speedvid.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/0e7673e48fd53bc95361d58675ed577a03576637",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/speedvid.py"
}
},
{
"name": "speedvideo.py",
"path": "plugin.video.vstream/resources/hosters/speedvideo.py",
"sha": "c3c5d96ff779ad8fa9d30fab224a8bd73722e3a3",
"size": 2243,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/speedvideo.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/speedvideo.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/c3c5d96ff779ad8fa9d30fab224a8bd73722e3a3",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/hosters/speedvideo.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/speedvideo.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/c3c5d96ff779ad8fa9d30fab224a8bd73722e3a3",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/speedvideo.py"
}
},
{
"name": "stagevu.py",
"path": "plugin.video.vstream/resources/hosters/stagevu.py",
"sha": "1bd78e3c409f815515b456728df56d19d72b825a",
"size": 1745,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/stagevu.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/stagevu.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/1bd78e3c409f815515b456728df56d19d72b825a",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/hosters/stagevu.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/stagevu.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/1bd78e3c409f815515b456728df56d19d72b825a",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/stagevu.py"
}
},
{
"name": "streaminto.py",
"path": "plugin.video.vstream/resources/hosters/streaminto.py",
"sha": "bb0f3f442fbe9720e75e50e03fad958fc1d78d03",
"size": 2594,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/streaminto.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/streaminto.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/bb0f3f442fbe9720e75e50e03fad958fc1d78d03",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/hosters/streaminto.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/streaminto.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/bb0f3f442fbe9720e75e50e03fad958fc1d78d03",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/streaminto.py"
}
},
{
"name": "streammoe.py",
"path": "plugin.video.vstream/resources/hosters/streammoe.py",
"sha": "c4140ac89632e531aa03904a304df50b294f4cc4",
"size": 2355,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/streammoe.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/streammoe.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/c4140ac89632e531aa03904a304df50b294f4cc4",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/hosters/streammoe.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/streammoe.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/c4140ac89632e531aa03904a304df50b294f4cc4",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/streammoe.py"
}
},
{
"name": "thevid.py",
"path": "plugin.video.vstream/resources/hosters/thevid.py",
"sha": "743e1fcd0e7c20638b7af149fff502c479e6e6fa",
"size": 2386,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/thevid.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/thevid.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/743e1fcd0e7c20638b7af149fff502c479e6e6fa",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/hosters/thevid.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/thevid.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/743e1fcd0e7c20638b7af149fff502c479e6e6fa",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/thevid.py"
}
},
{
"name": "thevideo_me.py",
"path": "plugin.video.vstream/resources/hosters/thevideo_me.py",
"sha": "5dd3e73e2891b246c86ba96d031c90c35f2882dd",
"size": 3644,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/thevideo_me.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/thevideo_me.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/5dd3e73e2891b246c86ba96d031c90c35f2882dd",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/hosters/thevideo_me.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/thevideo_me.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/5dd3e73e2891b246c86ba96d031c90c35f2882dd",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/thevideo_me.py"
}
},
{
"name": "trash",
"path": "plugin.video.vstream/resources/hosters/trash",
"sha": "3ba9078d9407a36e704f488247c58fd1753818d0",
"size": 0,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/trash?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/tree/master/plugin.video.vstream/resources/hosters/trash",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/trees/3ba9078d9407a36e704f488247c58fd1753818d0",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/trash?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/trees/3ba9078d9407a36e704f488247c58fd1753818d0",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/tree/master/plugin.video.vstream/resources/hosters/trash"
}
},
{
"name": "tune.py",
"path": "plugin.video.vstream/resources/hosters/tune.py",
"sha": "8d43d117e0b4af39f25cd25e0fabedcb84443b16",
"size": 2872,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/tune.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/tune.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/8d43d117e0b4af39f25cd25e0fabedcb84443b16",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/hosters/tune.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/tune.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/8d43d117e0b4af39f25cd25e0fabedcb84443b16",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/tune.py"
}
},
{
"name": "up2stream.py",
"path": "plugin.video.vstream/resources/hosters/up2stream.py",
"sha": "4e3256a8d8b56b16bc8f65196092539cf532fde0",
"size": 2232,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/up2stream.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/up2stream.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/4e3256a8d8b56b16bc8f65196092539cf532fde0",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/hosters/up2stream.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/up2stream.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/4e3256a8d8b56b16bc8f65196092539cf532fde0",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/up2stream.py"
}
},
{
"name": "uplea.py",
"path": "plugin.video.vstream/resources/hosters/uplea.py",
"sha": "f9d1f3d94963255a83ad633194ae49cf01b13997",
"size": 4513,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/uplea.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/uplea.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/f9d1f3d94963255a83ad633194ae49cf01b13997",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/hosters/uplea.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/uplea.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/f9d1f3d94963255a83ad633194ae49cf01b13997",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/uplea.py"
}
},
{
"name": "uploaded.py",
"path": "plugin.video.vstream/resources/hosters/uploaded.py",
"sha": "9df3473e8143dd34862119abf38c2a5e938a5051",
"size": 2281,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/uploaded.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/uploaded.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/9df3473e8143dd34862119abf38c2a5e938a5051",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/hosters/uploaded.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/uploaded.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/9df3473e8143dd34862119abf38c2a5e938a5051",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/uploaded.py"
}
},
{
"name": "uptobox.py",
"path": "plugin.video.vstream/resources/hosters/uptobox.py",
"sha": "695c462867ac29cce15b5a3afd29422adc525663",
"size": 8525,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/uptobox.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/uptobox.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/695c462867ac29cce15b5a3afd29422adc525663",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/hosters/uptobox.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/uptobox.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/695c462867ac29cce15b5a3afd29422adc525663",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/uptobox.py"
}
},
{
"name": "uptostream.py",
"path": "plugin.video.vstream/resources/hosters/uptostream.py",
"sha": "5a39bd63a1874792b61afd176047c7866f30f29d",
"size": 5228,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/uptostream.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/uptostream.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/5a39bd63a1874792b61afd176047c7866f30f29d",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/hosters/uptostream.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/uptostream.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/5a39bd63a1874792b61afd176047c7866f30f29d",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/uptostream.py"
}
},
{
"name": "veehd.py",
"path": "plugin.video.vstream/resources/hosters/veehd.py",
"sha": "085d0d3c2266a1745735f295fa62c3e159b8937a",
"size": 2259,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/veehd.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/veehd.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/085d0d3c2266a1745735f295fa62c3e159b8937a",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/hosters/veehd.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/veehd.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/085d0d3c2266a1745735f295fa62c3e159b8937a",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/veehd.py"
}
},
{
"name": "vid_ag.py",
"path": "plugin.video.vstream/resources/hosters/vid_ag.py",
"sha": "3f6135cce7fabbc65340fa0348ed32409cdce9dc",
"size": 2842,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/vid_ag.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/vid_ag.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/3f6135cce7fabbc65340fa0348ed32409cdce9dc",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/hosters/vid_ag.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/vid_ag.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/3f6135cce7fabbc65340fa0348ed32409cdce9dc",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/vid_ag.py"
}
},
{
"name": "vidbull.py",
"path": "plugin.video.vstream/resources/hosters/vidbull.py",
"sha": "12698a99cfa1b5e3906159f1c25a7af46649ecd8",
"size": 3471,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/vidbull.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/vidbull.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/12698a99cfa1b5e3906159f1c25a7af46649ecd8",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/hosters/vidbull.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/vidbull.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/12698a99cfa1b5e3906159f1c25a7af46649ecd8",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/vidbull.py"
}
},
{
"name": "videohut.py",
"path": "plugin.video.vstream/resources/hosters/videohut.py",
"sha": "57d866e81c2fe47c0f28766b0dedf86b3650b83a",
"size": 3205,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/videohut.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/videohut.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/57d866e81c2fe47c0f28766b0dedf86b3650b83a",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/hosters/videohut.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/videohut.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/57d866e81c2fe47c0f28766b0dedf86b3650b83a",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/videohut.py"
}
},
{
"name": "videoraj.py",
"path": "plugin.video.vstream/resources/hosters/videoraj.py",
"sha": "515ae6abc95de5a44e3d47d5277ba9a2616dbe71",
"size": 3137,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/videoraj.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/videoraj.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/515ae6abc95de5a44e3d47d5277ba9a2616dbe71",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/hosters/videoraj.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/videoraj.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/515ae6abc95de5a44e3d47d5277ba9a2616dbe71",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/videoraj.py"
}
},
{
"name": "videott.py",
"path": "plugin.video.vstream/resources/hosters/videott.py",
"sha": "d5faef4829913b8694bdf966df7391e7a55d1030",
"size": 3207,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/videott.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/videott.py",
"git_url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/d5faef4829913b8694bdf966df7391e7a55d1030",
"download_url": "https://raw.githubusercontent.com/Kodi-vStream/venom-xbmc-addons/master/plugin.video.vstream/resources/hosters/videott.py",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/videott.py?ref=master",
"git": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/git/blobs/d5faef4829913b8694bdf966df7391e7a55d1030",
"html": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/videott.py"
}
},
{
"name": "videoweed.py",
"path": "plugin.video.vstream/resources/hosters/videoweed.py",
"sha": "7f7496d11bafca4f6c0018b5f5ad522aa3994be3",
"size": 2927,
"url": "https://api.github.com/repos/Kodi-vStream/venom-xbmc-addons/contents/plugin.video.vstream/resources/hosters/videoweed.py?ref=master",
"html_url": "https://github.com/Kodi-vStream/venom-xbmc-addons/blob/master/plugin.video.vstream/resources/hosters/videoweed.py",