-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdata.json
23765 lines (23765 loc) · 898 KB
/
data.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
{
"Python": [
{
"id": 744297530,
"node_id": "R_kgDOLF0UOg",
"name": "WeChatOpenDevTools-Python",
"full_name": "JaveleyQAQ/WeChatOpenDevTools-Python",
"owner": {
"login": "JaveleyQAQ",
"id": 132129852,
"avatar_url": "https://avatars.githubusercontent.com/u/132129852?v=4",
"url": "https://api.github.com/users/JaveleyQAQ",
"html_url": "https://github.com/JaveleyQAQ"
},
"html_url": "https://github.com/JaveleyQAQ/WeChatOpenDevTools-Python",
"description": "WeChatOpenDevTool 微信小程序强制开启开发者工具",
"url": "https://api.github.com/repos/JaveleyQAQ/WeChatOpenDevTools-Python",
"languages_url": "https://api.github.com/repos/JaveleyQAQ/WeChatOpenDevTools-Python/languages",
"created_at": "2024-01-17T02:17:07Z",
"updated_at": "2025-02-07T08:16:02Z",
"git_url": "git://github.com/JaveleyQAQ/WeChatOpenDevTools-Python.git",
"ssh_url": "[email protected]:JaveleyQAQ/WeChatOpenDevTools-Python.git",
"clone_url": "https://github.com/JaveleyQAQ/WeChatOpenDevTools-Python.git",
"homepage": "",
"stargazers_count": 2564,
"watchers_count": 2564,
"language": "Python",
"topics": []
},
{
"id": 752615721,
"node_id": "R_kgDOLNwBKQ",
"name": "iptv-api",
"full_name": "Guovin/iptv-api",
"owner": {
"login": "Guovin",
"id": 37107669,
"avatar_url": "https://avatars.githubusercontent.com/u/37107669?v=4",
"url": "https://api.github.com/users/Guovin",
"html_url": "https://github.com/Guovin"
},
"html_url": "https://github.com/Guovin/iptv-api",
"description": "📺IPTV电视直播源更新项目『✨秒播级体验🚀』:支持IPv4/IPv6;支持自定义频道;支持本地源、组播源、酒店源、订阅源、关键字搜索;每天自动更新两次,结果可用于TVBox等播放软件;支持工作流、Docker(amd64/arm64/arm v7)、命令行、GUI运行方式 | IPTV live TV source update project",
"url": "https://api.github.com/repos/Guovin/iptv-api",
"languages_url": "https://api.github.com/repos/Guovin/iptv-api/languages",
"created_at": "2024-02-04T11:22:59Z",
"updated_at": "2025-02-08T00:54:41Z",
"git_url": "git://github.com/Guovin/iptv-api.git",
"ssh_url": "[email protected]:Guovin/iptv-api.git",
"clone_url": "https://github.com/Guovin/iptv-api.git",
"homepage": "",
"stargazers_count": 13022,
"watchers_count": 13022,
"language": "Python",
"topics": [
"amd64",
"api",
"arm64",
"armv7",
"auto",
"diy",
"docker",
"iptv",
"ipv4",
"ipv6",
"m3u",
"m3u8",
"tv",
"tvbox",
"workflow"
]
},
{
"id": 222751131,
"node_id": "MDEwOlJlcG9zaXRvcnkyMjI3NTExMzE=",
"name": "30-Days-Of-Python",
"full_name": "Asabeneh/30-Days-Of-Python",
"owner": {
"login": "Asabeneh",
"id": 9008063,
"avatar_url": "https://avatars.githubusercontent.com/u/9008063?v=4",
"url": "https://api.github.com/users/Asabeneh",
"html_url": "https://github.com/Asabeneh"
},
"html_url": "https://github.com/Asabeneh/30-Days-Of-Python",
"description": "30 days of Python programming challenge is a step-by-step guide to learn the Python programming language in 30 days. This challenge may take more than100 days, follow your own pace. These videos may help too: https://www.youtube.com/channel/UC7PNRuno1rzYPb1xLa4yktw",
"url": "https://api.github.com/repos/Asabeneh/30-Days-Of-Python",
"languages_url": "https://api.github.com/repos/Asabeneh/30-Days-Of-Python/languages",
"created_at": "2019-11-19T17:24:16Z",
"updated_at": "2025-02-08T01:17:59Z",
"git_url": "git://github.com/Asabeneh/30-Days-Of-Python.git",
"ssh_url": "[email protected]:Asabeneh/30-Days-Of-Python.git",
"clone_url": "https://github.com/Asabeneh/30-Days-Of-Python.git",
"homepage": "",
"stargazers_count": 44326,
"watchers_count": 44326,
"language": "Python",
"topics": [
"30-days-of-python",
"flask",
"github",
"heroku",
"matplotlib",
"mongodb",
"numpy",
"pandas",
"python",
"python3"
]
},
{
"id": 737509032,
"node_id": "R_kgDOK_V-qA",
"name": "Game-Cheats-Manager",
"full_name": "dyang886/Game-Cheats-Manager",
"owner": {
"login": "dyang886",
"id": 88755186,
"avatar_url": "https://avatars.githubusercontent.com/u/88755186?v=4",
"url": "https://api.github.com/users/dyang886",
"html_url": "https://github.com/dyang886"
},
"html_url": "https://github.com/dyang886/Game-Cheats-Manager",
"description": "Easily download and manage game cheats for your convenience",
"url": "https://api.github.com/repos/dyang886/Game-Cheats-Manager",
"languages_url": "https://api.github.com/repos/dyang886/Game-Cheats-Manager/languages",
"created_at": "2023-12-31T10:09:12Z",
"updated_at": "2025-02-08T00:46:15Z",
"git_url": "git://github.com/dyang886/Game-Cheats-Manager.git",
"ssh_url": "[email protected]:dyang886/Game-Cheats-Manager.git",
"clone_url": "https://github.com/dyang886/Game-Cheats-Manager.git",
"homepage": "",
"stargazers_count": 6179,
"watchers_count": 6179,
"language": "Python",
"topics": []
},
{
"id": 821072759,
"node_id": "R_kgDOMPCTdw",
"name": "opensource-lighthouse",
"full_name": "LeslieLeung/opensource-lighthouse",
"owner": {
"login": "LeslieLeung",
"id": 22127499,
"avatar_url": "https://avatars.githubusercontent.com/u/22127499?v=4",
"url": "https://api.github.com/users/LeslieLeung",
"html_url": "https://github.com/LeslieLeung"
},
"html_url": "https://github.com/LeslieLeung/opensource-lighthouse",
"description": "汇总统计各「大厂」的开源团队和项目。",
"url": "https://api.github.com/repos/LeslieLeung/opensource-lighthouse",
"languages_url": "https://api.github.com/repos/LeslieLeung/opensource-lighthouse/languages",
"created_at": "2024-06-27T18:53:54Z",
"updated_at": "2025-02-07T08:31:13Z",
"git_url": "git://github.com/LeslieLeung/opensource-lighthouse.git",
"ssh_url": "[email protected]:LeslieLeung/opensource-lighthouse.git",
"clone_url": "https://github.com/LeslieLeung/opensource-lighthouse.git",
"homepage": "https://opensource-lighthouse.streamlit.app",
"stargazers_count": 704,
"watchers_count": 704,
"language": "Python",
"topics": [
"github",
"open-source",
"statistics"
]
},
{
"id": 770153867,
"node_id": "R_kgDOLeediw",
"name": "MoneyPrinterTurbo",
"full_name": "harry0703/MoneyPrinterTurbo",
"owner": {
"login": "harry0703",
"id": 4928832,
"avatar_url": "https://avatars.githubusercontent.com/u/4928832?v=4",
"url": "https://api.github.com/users/harry0703",
"html_url": "https://github.com/harry0703"
},
"html_url": "https://github.com/harry0703/MoneyPrinterTurbo",
"description": "利用AI大模型,一键生成高清短视频 Generate short videos with one click using AI LLM.",
"url": "https://api.github.com/repos/harry0703/MoneyPrinterTurbo",
"languages_url": "https://api.github.com/repos/harry0703/MoneyPrinterTurbo/languages",
"created_at": "2024-03-11T02:57:34Z",
"updated_at": "2025-02-08T00:22:09Z",
"git_url": "git://github.com/harry0703/MoneyPrinterTurbo.git",
"ssh_url": "[email protected]:harry0703/MoneyPrinterTurbo.git",
"clone_url": "https://github.com/harry0703/MoneyPrinterTurbo.git",
"homepage": "",
"stargazers_count": 21504,
"watchers_count": 21504,
"language": "Python",
"topics": [
"ai",
"automation",
"chatgpt",
"moviepy",
"python",
"shortvideo",
"tiktok"
]
},
{
"id": 434668441,
"node_id": "R_kgDOGeiDmQ",
"name": "TwitchDropsMiner",
"full_name": "DevilXD/TwitchDropsMiner",
"owner": {
"login": "DevilXD",
"id": 4180725,
"avatar_url": "https://avatars.githubusercontent.com/u/4180725?v=4",
"url": "https://api.github.com/users/DevilXD",
"html_url": "https://github.com/DevilXD"
},
"html_url": "https://github.com/DevilXD/TwitchDropsMiner",
"description": "An app that allows you to AFK mine timed Twitch drops, with automatic drop claiming and channel switching.",
"url": "https://api.github.com/repos/DevilXD/TwitchDropsMiner",
"languages_url": "https://api.github.com/repos/DevilXD/TwitchDropsMiner/languages",
"created_at": "2021-12-03T16:48:20Z",
"updated_at": "2025-02-07T22:38:17Z",
"git_url": "git://github.com/DevilXD/TwitchDropsMiner.git",
"ssh_url": "[email protected]:DevilXD/TwitchDropsMiner.git",
"clone_url": "https://github.com/DevilXD/TwitchDropsMiner.git",
"homepage": "",
"stargazers_count": 1855,
"watchers_count": 1855,
"language": "Python",
"topics": [
"drop",
"drops",
"farming",
"miner",
"mining",
"twitch"
]
},
{
"id": 738052715,
"node_id": "R_kgDOK_3Kaw",
"name": "auto_job__find__chatgpt__rpa",
"full_name": "Frrrrrrrrank/auto_job__find__chatgpt__rpa",
"owner": {
"login": "Frrrrrrrrank",
"id": 82270228,
"avatar_url": "https://avatars.githubusercontent.com/u/82270228?v=4",
"url": "https://api.github.com/users/Frrrrrrrrank",
"html_url": "https://github.com/Frrrrrrrrank"
},
"html_url": "https://github.com/Frrrrrrrrank/auto_job__find__chatgpt__rpa",
"description": "This is a tool used to automatically generate a cover letter using chatgpt based on your resume and job description and send messages to bosses in China.",
"url": "https://api.github.com/repos/Frrrrrrrrank/auto_job__find__chatgpt__rpa",
"languages_url": "https://api.github.com/repos/Frrrrrrrrank/auto_job__find__chatgpt__rpa/languages",
"created_at": "2024-01-02T09:57:23Z",
"updated_at": "2025-02-07T14:01:22Z",
"git_url": "git://github.com/Frrrrrrrrank/auto_job__find__chatgpt__rpa.git",
"ssh_url": "[email protected]:Frrrrrrrrank/auto_job__find__chatgpt__rpa.git",
"clone_url": "https://github.com/Frrrrrrrrank/auto_job__find__chatgpt__rpa.git",
"homepage": null,
"stargazers_count": 1484,
"watchers_count": 1484,
"language": "Python",
"topics": []
},
{
"id": 459466436,
"node_id": "R_kgDOG2LmxA",
"name": "hcaptcha-challenger",
"full_name": "QIN2DIM/hcaptcha-challenger",
"owner": {
"login": "QIN2DIM",
"id": 62018067,
"avatar_url": "https://avatars.githubusercontent.com/u/62018067?v=4",
"url": "https://api.github.com/users/QIN2DIM",
"html_url": "https://github.com/QIN2DIM"
},
"html_url": "https://github.com/QIN2DIM/hcaptcha-challenger",
"description": "🥂 Gracefully face hCaptcha challenge with MoE(ONNX) embedded solution.",
"url": "https://api.github.com/repos/QIN2DIM/hcaptcha-challenger",
"languages_url": "https://api.github.com/repos/QIN2DIM/hcaptcha-challenger/languages",
"created_at": "2022-02-15T07:08:12Z",
"updated_at": "2025-01-31T11:08:08Z",
"git_url": "git://github.com/QIN2DIM/hcaptcha-challenger.git",
"ssh_url": "[email protected]:QIN2DIM/hcaptcha-challenger.git",
"clone_url": "https://github.com/QIN2DIM/hcaptcha-challenger.git",
"homepage": "https://docs.captchax.top/",
"stargazers_count": 1499,
"watchers_count": 1499,
"language": "Python",
"topics": [
"clip",
"computer-vision",
"hcaptcha",
"hcaptcha-solver",
"image-segmentation",
"multi-modal",
"multi-modal-learning",
"object-detection",
"onnx",
"onnx-models",
"onnxruntime",
"opencv-python",
"playwright",
"solver",
"yolo",
"yolov5",
"zero-shot-classification"
]
},
{
"id": 731499402,
"node_id": "R_kgDOK5nLig",
"name": "NLCISBNPlugin",
"full_name": "DoiiarX/NLCISBNPlugin",
"owner": {
"login": "DoiiarX",
"id": 25550075,
"avatar_url": "https://avatars.githubusercontent.com/u/25550075?v=4",
"url": "https://api.github.com/users/DoiiarX",
"html_url": "https://github.com/DoiiarX"
},
"html_url": "https://github.com/DoiiarX/NLCISBNPlugin",
"description": "基于中国国家图书馆ISBN检索的calibre的source/metadata插件。https://doiiars.com/article/NLCISBNPlugin",
"url": "https://api.github.com/repos/DoiiarX/NLCISBNPlugin",
"languages_url": "https://api.github.com/repos/DoiiarX/NLCISBNPlugin/languages",
"created_at": "2023-12-14T08:13:34Z",
"updated_at": "2025-02-07T13:34:16Z",
"git_url": "git://github.com/DoiiarX/NLCISBNPlugin.git",
"ssh_url": "[email protected]:DoiiarX/NLCISBNPlugin.git",
"clone_url": "https://github.com/DoiiarX/NLCISBNPlugin.git",
"homepage": "https://doiiars.com/",
"stargazers_count": 562,
"watchers_count": 562,
"language": "Python",
"topics": [
"calibre",
"calibre-metadata",
"calibre-plugin",
"isbn",
"metadata",
"spider"
]
},
{
"id": 720798474,
"node_id": "R_kgDOKvaDCg",
"name": "clone-voice",
"full_name": "jianchang512/clone-voice",
"owner": {
"login": "jianchang512",
"id": 3378335,
"avatar_url": "https://avatars.githubusercontent.com/u/3378335?v=4",
"url": "https://api.github.com/users/jianchang512",
"html_url": "https://github.com/jianchang512"
},
"html_url": "https://github.com/jianchang512/clone-voice",
"description": "A sound cloning tool with a web interface, using your voice or any sound to record audio / 一个带web界面的声音克隆工具,使用你的音色或任意声音来录制音频",
"url": "https://api.github.com/repos/jianchang512/clone-voice",
"languages_url": "https://api.github.com/repos/jianchang512/clone-voice/languages",
"created_at": "2023-11-19T16:29:06Z",
"updated_at": "2025-02-08T01:17:14Z",
"git_url": "git://github.com/jianchang512/clone-voice.git",
"ssh_url": "[email protected]:jianchang512/clone-voice.git",
"clone_url": "https://github.com/jianchang512/clone-voice.git",
"homepage": "https://pyvideotrans.com",
"stargazers_count": 7931,
"watchers_count": 7931,
"language": "Python",
"topics": [
"clonevoice",
"speech-analysis",
"sts",
"tts",
"voice-assistant"
]
},
{
"id": 175366155,
"node_id": "MDEwOlJlcG9zaXRvcnkxNzUzNjYxNTU=",
"name": "examples-of-web-crawlers",
"full_name": "shengqiangzhang/examples-of-web-crawlers",
"owner": {
"login": "shengqiangzhang",
"id": 28225826,
"avatar_url": "https://avatars.githubusercontent.com/u/28225826?v=4",
"url": "https://api.github.com/users/shengqiangzhang",
"html_url": "https://github.com/shengqiangzhang"
},
"html_url": "https://github.com/shengqiangzhang/examples-of-web-crawlers",
"description": "一些非常有趣的python爬虫例子,对新手比较友好,主要爬取淘宝、天猫、微信、微信读书、豆瓣、QQ等网站。(Some interesting examples of python crawlers that are friendly to beginners. )",
"url": "https://api.github.com/repos/shengqiangzhang/examples-of-web-crawlers",
"languages_url": "https://api.github.com/repos/shengqiangzhang/examples-of-web-crawlers/languages",
"created_at": "2019-03-13T07:11:23Z",
"updated_at": "2025-02-07T16:28:20Z",
"git_url": "git://github.com/shengqiangzhang/examples-of-web-crawlers.git",
"ssh_url": "[email protected]:shengqiangzhang/examples-of-web-crawlers.git",
"clone_url": "https://github.com/shengqiangzhang/examples-of-web-crawlers.git",
"homepage": "",
"stargazers_count": 14012,
"watchers_count": 14012,
"language": "Python",
"topics": [
"agent-pool",
"crawler",
"example",
"fund",
"multithreading",
"pyquery",
"python",
"selenium",
"spider",
"stock",
"taobao",
"tmall",
"wechat",
"wechat-report",
"wereader"
]
},
{
"id": 723296829,
"node_id": "R_kgDOKxyiPQ",
"name": "ql-script",
"full_name": "wjf0214/ql-script",
"owner": {
"login": "wjf0214",
"id": 23102821,
"avatar_url": "https://avatars.githubusercontent.com/u/23102821?v=4",
"url": "https://api.github.com/users/wjf0214",
"html_url": "https://github.com/wjf0214"
},
"html_url": "https://github.com/wjf0214/ql-script",
"description": "基于qinglong任务管理平台进行开发学习测试的脚本库。",
"url": "https://api.github.com/repos/wjf0214/ql-script",
"languages_url": "https://api.github.com/repos/wjf0214/ql-script/languages",
"created_at": "2023-11-25T08:02:08Z",
"updated_at": "2025-01-22T05:48:10Z",
"git_url": "git://github.com/wjf0214/ql-script.git",
"ssh_url": "[email protected]:wjf0214/ql-script.git",
"clone_url": "https://github.com/wjf0214/ql-script.git",
"homepage": null,
"stargazers_count": 5,
"watchers_count": 5,
"language": "Python",
"topics": []
},
{
"id": 679219059,
"node_id": "R_kgDOKHwPcw",
"name": "XHS-Downloader",
"full_name": "JoeanAmier/XHS-Downloader",
"owner": {
"login": "JoeanAmier",
"id": 49263334,
"avatar_url": "https://avatars.githubusercontent.com/u/49263334?v=4",
"url": "https://api.github.com/users/JoeanAmier",
"html_url": "https://github.com/JoeanAmier"
},
"html_url": "https://github.com/JoeanAmier/XHS-Downloader",
"description": "小红书(XiaoHongShu、RedNote)链接提取/作品采集工具:提取账号发布、收藏、点赞、专辑作品链接;提取搜索结果作品、用户链接;采集小红书作品信息;提取小红书作品下载地址;下载小红书无水印作品文件",
"url": "https://api.github.com/repos/JoeanAmier/XHS-Downloader",
"languages_url": "https://api.github.com/repos/JoeanAmier/XHS-Downloader/languages",
"created_at": "2023-08-16T11:03:36Z",
"updated_at": "2025-02-08T00:37:08Z",
"git_url": "git://github.com/JoeanAmier/XHS-Downloader.git",
"ssh_url": "[email protected]:JoeanAmier/XHS-Downloader.git",
"clone_url": "https://github.com/JoeanAmier/XHS-Downloader.git",
"homepage": "https://discord.com/invite/ZYtmgKud9Y",
"stargazers_count": 6384,
"watchers_count": 6384,
"language": "Python",
"topics": [
"aiohttp",
"api",
"css",
"docker",
"javascript",
"json",
"linux",
"macos",
"python",
"server",
"tampermonkey",
"textual",
"userscript",
"windows",
"xhs"
]
},
{
"id": 626742977,
"node_id": "R_kgDOJVtWwQ",
"name": "AutoAnimeMv",
"full_name": "AutoAnimeMV-Teams/AutoAnimeMv",
"owner": {
"login": "AutoAnimeMV-Teams",
"id": 159900553,
"avatar_url": "https://avatars.githubusercontent.com/u/159900553?v=4",
"url": "https://api.github.com/users/AutoAnimeMV-Teams",
"html_url": "https://github.com/AutoAnimeMV-Teams"
},
"html_url": "https://github.com/AutoAnimeMV-Teams/AutoAnimeMv",
"description": "😊这是一个番剧自动识别剧名剧集+自动重命名+自动整理工具,用来配合QBittorrent实现Rss订阅下载全自动刮削一条龙到家式爽歪歪服务!",
"url": "https://api.github.com/repos/AutoAnimeMV-Teams/AutoAnimeMv",
"languages_url": "https://api.github.com/repos/AutoAnimeMV-Teams/AutoAnimeMv/languages",
"created_at": "2023-04-12T04:29:01Z",
"updated_at": "2025-02-01T07:30:30Z",
"git_url": "git://github.com/AutoAnimeMV-Teams/AutoAnimeMv.git",
"ssh_url": "[email protected]:AutoAnimeMV-Teams/AutoAnimeMv.git",
"clone_url": "https://github.com/AutoAnimeMV-Teams/AutoAnimeMv.git",
"homepage": "",
"stargazers_count": 452,
"watchers_count": 452,
"language": "Python",
"topics": [
"automation",
"linux",
"nas",
"python3",
"qbittorrent",
"rename",
"synology",
"windows"
]
},
{
"id": 332736941,
"node_id": "MDEwOlJlcG9zaXRvcnkzMzI3MzY5NDE=",
"name": "nvitop",
"full_name": "XuehaiPan/nvitop",
"owner": {
"login": "XuehaiPan",
"id": 16078332,
"avatar_url": "https://avatars.githubusercontent.com/u/16078332?v=4",
"url": "https://api.github.com/users/XuehaiPan",
"html_url": "https://github.com/XuehaiPan"
},
"html_url": "https://github.com/XuehaiPan/nvitop",
"description": "An interactive NVIDIA-GPU process viewer and beyond, the one-stop solution for GPU process management.",
"url": "https://api.github.com/repos/XuehaiPan/nvitop",
"languages_url": "https://api.github.com/repos/XuehaiPan/nvitop/languages",
"created_at": "2021-01-25T12:17:02Z",
"updated_at": "2025-02-07T21:17:31Z",
"git_url": "git://github.com/XuehaiPan/nvitop.git",
"ssh_url": "[email protected]:XuehaiPan/nvitop.git",
"clone_url": "https://github.com/XuehaiPan/nvitop.git",
"homepage": "https://nvitop.readthedocs.io",
"stargazers_count": 5107,
"watchers_count": 5107,
"language": "Python",
"topics": [
"command-line-tool",
"console",
"cuda",
"curses",
"gpu",
"gpu-monitoring",
"grafana",
"grafana-dashboard",
"htop",
"monitoring",
"monitoring-tool",
"nvidia",
"nvidia-smi",
"nvml",
"process-monitoring",
"prometheus",
"prometheus-exporter",
"resource-monitor",
"top"
]
},
{
"id": 573420887,
"node_id": "R_kgDOIi21Vw",
"name": "kubespider",
"full_name": "opennaslab/kubespider",
"owner": {
"login": "opennaslab",
"id": 131788585,
"avatar_url": "https://avatars.githubusercontent.com/u/131788585?v=4",
"url": "https://api.github.com/users/opennaslab",
"html_url": "https://github.com/opennaslab"
},
"html_url": "https://github.com/opennaslab/kubespider",
"description": "A global resource download orchestration system, build your home download center. ",
"url": "https://api.github.com/repos/opennaslab/kubespider",
"languages_url": "https://api.github.com/repos/opennaslab/kubespider/languages",
"created_at": "2022-12-02T12:28:02Z",
"updated_at": "2025-02-07T14:27:11Z",
"git_url": "git://github.com/opennaslab/kubespider.git",
"ssh_url": "[email protected]:opennaslab/kubespider.git",
"clone_url": "https://github.com/opennaslab/kubespider.git",
"homepage": "https://kubespider.netlify.app/",
"stargazers_count": 2102,
"watchers_count": 2102,
"language": "Python",
"topics": [
"aria2",
"asustor",
"automation",
"bt",
"chrome-extension",
"container",
"docker",
"download",
"kubespider",
"linux",
"magnet",
"nas",
"pt",
"python",
"qbittorrent",
"qnap",
"synology",
"terramaster",
"torrent",
"xunlei"
]
},
{
"id": 21289110,
"node_id": "MDEwOlJlcG9zaXRvcnkyMTI4OTExMA==",
"name": "awesome-python",
"full_name": "vinta/awesome-python",
"owner": {
"login": "vinta",
"id": 652070,
"avatar_url": "https://avatars.githubusercontent.com/u/652070?v=4",
"url": "https://api.github.com/users/vinta",
"html_url": "https://github.com/vinta"
},
"html_url": "https://github.com/vinta/awesome-python",
"description": "An opinionated list of awesome Python frameworks, libraries, software and resources.",
"url": "https://api.github.com/repos/vinta/awesome-python",
"languages_url": "https://api.github.com/repos/vinta/awesome-python/languages",
"created_at": "2014-06-27T21:00:06Z",
"updated_at": "2025-02-08T01:19:36Z",
"git_url": "git://github.com/vinta/awesome-python.git",
"ssh_url": "[email protected]:vinta/awesome-python.git",
"clone_url": "https://github.com/vinta/awesome-python.git",
"homepage": "https://awesome-python.com/",
"stargazers_count": 233146,
"watchers_count": 233146,
"language": "Python",
"topics": [
"awesome",
"collections",
"python",
"python-framework",
"python-library",
"python-resources"
]
},
{
"id": 488069222,
"node_id": "R_kgDOHRdYZg",
"name": "Auto_Bangumi",
"full_name": "EstrellaXD/Auto_Bangumi",
"owner": {
"login": "EstrellaXD",
"id": 33726646,
"avatar_url": "https://avatars.githubusercontent.com/u/33726646?v=4",
"url": "https://api.github.com/users/EstrellaXD",
"html_url": "https://github.com/EstrellaXD"
},
"html_url": "https://github.com/EstrellaXD/Auto_Bangumi",
"description": "AutoBangumi - 全自动追番工具",
"url": "https://api.github.com/repos/EstrellaXD/Auto_Bangumi",
"languages_url": "https://api.github.com/repos/EstrellaXD/Auto_Bangumi/languages",
"created_at": "2022-05-03T03:46:36Z",
"updated_at": "2025-02-07T11:13:19Z",
"git_url": "git://github.com/EstrellaXD/Auto_Bangumi.git",
"ssh_url": "[email protected]:EstrellaXD/Auto_Bangumi.git",
"clone_url": "https://github.com/EstrellaXD/Auto_Bangumi.git",
"homepage": "https://autobangumi.org",
"stargazers_count": 7219,
"watchers_count": 7219,
"language": "Python",
"topics": [
"anime",
"auto-downloader",
"docker",
"python",
"qbittorrent",
"rss-parser"
]
},
{
"id": 611618121,
"node_id": "R_kgDOJHSNSQ",
"name": "awesome-free-chatgpt",
"full_name": "LiLittleCat/awesome-free-chatgpt",
"owner": {
"login": "LiLittleCat",
"id": 40536573,
"avatar_url": "https://avatars.githubusercontent.com/u/40536573?v=4",
"url": "https://api.github.com/users/LiLittleCat",
"html_url": "https://github.com/LiLittleCat"
},
"html_url": "https://github.com/LiLittleCat/awesome-free-chatgpt",
"description": "🆓免费的 ChatGPT 镜像网站列表,持续更新。List of free ChatGPT mirror sites, continuously updated. ",
"url": "https://api.github.com/repos/LiLittleCat/awesome-free-chatgpt",
"languages_url": "https://api.github.com/repos/LiLittleCat/awesome-free-chatgpt/languages",
"created_at": "2023-03-09T07:37:37Z",
"updated_at": "2025-02-07T23:35:02Z",
"git_url": "git://github.com/LiLittleCat/awesome-free-chatgpt.git",
"ssh_url": "[email protected]:LiLittleCat/awesome-free-chatgpt.git",
"clone_url": "https://github.com/LiLittleCat/awesome-free-chatgpt.git",
"homepage": "",
"stargazers_count": 19387,
"watchers_count": 19387,
"language": "Python",
"topics": [
"awesome",
"awesome-list",
"chat",
"chatgpt",
"free",
"freechatgpt"
]
},
{
"id": 555855184,
"node_id": "R_kgDOISGtUA",
"name": "ns-emu-tools",
"full_name": "triwinds/ns-emu-tools",
"owner": {
"login": "triwinds",
"id": 7413161,
"avatar_url": "https://avatars.githubusercontent.com/u/7413161?v=4",
"url": "https://api.github.com/users/triwinds",
"html_url": "https://github.com/triwinds"
},
"html_url": "https://github.com/triwinds/ns-emu-tools",
"description": "一个用于安装/更新 NS 模拟器的工具",
"url": "https://api.github.com/repos/triwinds/ns-emu-tools",
"languages_url": "https://api.github.com/repos/triwinds/ns-emu-tools/languages",
"created_at": "2022-10-22T13:46:50Z",
"updated_at": "2025-02-06T16:07:00Z",
"git_url": "git://github.com/triwinds/ns-emu-tools.git",
"ssh_url": "[email protected]:triwinds/ns-emu-tools.git",
"clone_url": "https://github.com/triwinds/ns-emu-tools.git",
"homepage": "",
"stargazers_count": 4295,
"watchers_count": 4295,
"language": "Python",
"topics": []
},
{
"id": 5483330,
"node_id": "MDEwOlJlcG9zaXRvcnk1NDgzMzMw",
"name": "you-get",
"full_name": "soimort/you-get",
"owner": {
"login": "soimort",
"id": 342945,
"avatar_url": "https://avatars.githubusercontent.com/u/342945?v=4",
"url": "https://api.github.com/users/soimort",
"html_url": "https://github.com/soimort"
},
"html_url": "https://github.com/soimort/you-get",
"description": ":arrow_double_down: Dumb downloader that scrapes the web",
"url": "https://api.github.com/repos/soimort/you-get",
"languages_url": "https://api.github.com/repos/soimort/you-get/languages",
"created_at": "2012-08-20T15:53:36Z",
"updated_at": "2025-02-07T18:03:30Z",
"git_url": "git://github.com/soimort/you-get.git",
"ssh_url": "[email protected]:soimort/you-get.git",
"clone_url": "https://github.com/soimort/you-get.git",
"homepage": "https://you-get.org/",
"stargazers_count": 54616,
"watchers_count": 54616,
"language": "Python",
"topics": []
},
{
"id": 1039520,
"node_id": "MDEwOlJlcG9zaXRvcnkxMDM5NTIw",
"name": "youtube-dl",
"full_name": "ytdl-org/youtube-dl",
"owner": {
"login": "ytdl-org",
"id": 48381040,
"avatar_url": "https://avatars.githubusercontent.com/u/48381040?v=4",
"url": "https://api.github.com/users/ytdl-org",
"html_url": "https://github.com/ytdl-org"
},
"html_url": "https://github.com/ytdl-org/youtube-dl",
"description": "Command-line program to download videos from YouTube.com and other video sites",
"url": "https://api.github.com/repos/ytdl-org/youtube-dl",
"languages_url": "https://api.github.com/repos/ytdl-org/youtube-dl/languages",
"created_at": "2010-10-31T14:35:07Z",
"updated_at": "2025-02-08T00:59:33Z",
"git_url": "git://github.com/ytdl-org/youtube-dl.git",
"ssh_url": "[email protected]:ytdl-org/youtube-dl.git",
"clone_url": "https://github.com/ytdl-org/youtube-dl.git",
"homepage": "http://ytdl-org.github.io/youtube-dl/",
"stargazers_count": 134026,
"watchers_count": 134026,
"language": "Python",
"topics": []
},
{
"id": 165224631,
"node_id": "MDEwOlJlcG9zaXRvcnkxNjUyMjQ2MzE=",
"name": "py_regular_expressions",
"full_name": "learnbyexample/py_regular_expressions",
"owner": {
"login": "learnbyexample",
"id": 17766317,
"avatar_url": "https://avatars.githubusercontent.com/u/17766317?v=4",
"url": "https://api.github.com/users/learnbyexample",
"html_url": "https://github.com/learnbyexample"
},
"html_url": "https://github.com/learnbyexample/py_regular_expressions",
"description": "Learn Python Regular Expressions step by step from beginner to advanced levels",
"url": "https://api.github.com/repos/learnbyexample/py_regular_expressions",
"languages_url": "https://api.github.com/repos/learnbyexample/py_regular_expressions/languages",
"created_at": "2019-01-11T10:22:19Z",
"updated_at": "2025-02-03T14:33:57Z",
"git_url": "git://github.com/learnbyexample/py_regular_expressions.git",
"ssh_url": "[email protected]:learnbyexample/py_regular_expressions.git",
"clone_url": "https://github.com/learnbyexample/py_regular_expressions.git",
"homepage": "https://learnbyexample.github.io/py_regular_expressions/",
"stargazers_count": 1779,
"watchers_count": 1779,
"language": "Python",
"topics": [
"ebook",
"exercises",
"learning-by-doing",
"python",
"regex",
"regular-expressions"
]
},
{
"id": 642323624,
"node_id": "R_kgDOJkkUqA",
"name": "DragGAN",
"full_name": "XingangPan/DragGAN",
"owner": {
"login": "XingangPan",
"id": 13579537,
"avatar_url": "https://avatars.githubusercontent.com/u/13579537?v=4",
"url": "https://api.github.com/users/XingangPan",
"html_url": "https://github.com/XingangPan"
},
"html_url": "https://github.com/XingangPan/DragGAN",
"description": "Official Code for DragGAN (SIGGRAPH 2023)",
"url": "https://api.github.com/repos/XingangPan/DragGAN",
"languages_url": "https://api.github.com/repos/XingangPan/DragGAN/languages",
"created_at": "2023-05-18T10:08:02Z",
"updated_at": "2025-02-07T10:55:27Z",
"git_url": "git://github.com/XingangPan/DragGAN.git",
"ssh_url": "[email protected]:XingangPan/DragGAN.git",
"clone_url": "https://github.com/XingangPan/DragGAN.git",
"homepage": "https://vcai.mpi-inf.mpg.de/projects/DragGAN/",
"stargazers_count": 35844,
"watchers_count": 35844,
"language": "Python",
"topics": [
"artificial-intelligence",
"generative-adversarial-network",
"generative-models",
"image-manipulation"
]
},
{
"id": 339920287,
"node_id": "MDEwOlJlcG9zaXRvcnkzMzk5MjAyODc=",
"name": "manga-image-translator",
"full_name": "zyddnys/manga-image-translator",
"owner": {
"login": "zyddnys",
"id": 17797982,
"avatar_url": "https://avatars.githubusercontent.com/u/17797982?v=4",
"url": "https://api.github.com/users/zyddnys",
"html_url": "https://github.com/zyddnys"
},
"html_url": "https://github.com/zyddnys/manga-image-translator",
"description": "Translate manga/image 一键翻译各类图片内文字 https://cotrans.touhou.ai/",
"url": "https://api.github.com/repos/zyddnys/manga-image-translator",
"languages_url": "https://api.github.com/repos/zyddnys/manga-image-translator/languages",
"created_at": "2021-02-18T03:03:23Z",
"updated_at": "2025-02-07T17:49:31Z",
"git_url": "git://github.com/zyddnys/manga-image-translator.git",
"ssh_url": "[email protected]:zyddnys/manga-image-translator.git",
"clone_url": "https://github.com/zyddnys/manga-image-translator.git",
"homepage": "https://cotrans.touhou.ai/",
"stargazers_count": 5842,
"watchers_count": 5842,
"language": "Python",
"topics": [
"anime",
"auto-translation",
"chinese-translation",
"deep-learning",
"image-processing",
"inpainting",
"japanese-translations",
"machine-translation",
"manga",
"neural-network",
"ocr",
"pytorch-implementation",
"text-detection",
"text-detection-recognition",
"transformer"
]
},
{
"id": 646480766,
"node_id": "R_kgDOJoiDfg",
"name": "roop",
"full_name": "s0md3v/roop",
"owner": {
"login": "s0md3v",
"id": 26716802,
"avatar_url": "https://avatars.githubusercontent.com/u/26716802?v=4",
"url": "https://api.github.com/users/s0md3v",
"html_url": "https://github.com/s0md3v"
},
"html_url": "https://github.com/s0md3v/roop",
"description": "one-click face swap",
"url": "https://api.github.com/repos/s0md3v/roop",
"languages_url": "https://api.github.com/repos/s0md3v/roop/languages",
"created_at": "2023-05-28T14:37:54Z",
"updated_at": "2025-02-07T23:51:53Z",
"git_url": "git://github.com/s0md3v/roop.git",
"ssh_url": "[email protected]:s0md3v/roop.git",
"clone_url": "https://github.com/s0md3v/roop.git",
"homepage": "",
"stargazers_count": 29245,
"watchers_count": 29245,
"language": "Python",
"topics": [
"ai",
"face-swap"
]
},
{
"id": 512334495,
"node_id": "R_kgDOHomanw",
"name": "lamda",
"full_name": "firerpa/lamda",
"owner": {
"login": "firerpa",
"id": 176481157,
"avatar_url": "https://avatars.githubusercontent.com/u/176481157?v=4",
"url": "https://api.github.com/users/firerpa",
"html_url": "https://github.com/firerpa"
},
"html_url": "https://github.com/firerpa/lamda",
"description": "🤖 史上最强云手机远程桌面逆向抓包HOOK自动化取证能力集一体的安卓 RPA 框架,下一代移动数据自动化机器人。",
"url": "https://api.github.com/repos/firerpa/lamda",
"languages_url": "https://api.github.com/repos/firerpa/lamda/languages",
"created_at": "2022-07-10T03:20:56Z",
"updated_at": "2025-02-07T09:38:27Z",
"git_url": "git://github.com/firerpa/lamda.git",
"ssh_url": "[email protected]:firerpa/lamda.git",
"clone_url": "https://github.com/firerpa/lamda.git",
"homepage": "https://device-farm.com/doc/index.html",
"stargazers_count": 6496,
"watchers_count": 6496,
"language": "Python",
"topics": [
"adb",
"android",
"appium",
"autojs",
"debugging",
"frida",
"httpcanary",
"magisk",
"mitmproxy",
"movecert",
"proxy",
"proxydroid",
"python",
"remote-control",
"reverse-engineering",
"socks5",
"uiautomation",
"uiautomator2",
"xposed"
]
},
{
"id": 79510167,
"node_id": "MDEwOlJlcG9zaXRvcnk3OTUxMDE2Nw==",
"name": "pipenv",
"full_name": "pypa/pipenv",
"owner": {
"login": "pypa",
"id": 647025,
"avatar_url": "https://avatars.githubusercontent.com/u/647025?v=4",
"url": "https://api.github.com/users/pypa",
"html_url": "https://github.com/pypa"