forked from GrowingGit/GitHub-Chinese-Top-Charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.md
2193 lines (2138 loc) · 427 KB
/
README.md
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

#### 榜单设立目的
- :cn: GitHub中文排行榜,帮助你发现高分优秀中文项目;
- 各位开发者伙伴可以更高效地吸收国人的优秀经验、成果;
- 中文项目只能满足阶段性的需求,想要有进一步提升,还请多花时间学习高分神级英文项目;
#### 榜单设立范围
- 设立1个总榜(所有语言项目汇总排名)、18个分榜(单个语言项目排名);
#### 榜单入选规则
- 一个小小的要求:项目的 Description 和 README.md 都要包含中文说明;
- 更新越持续越好:最近半年内有更新过的项目才有机会入选(拥抱活跃,远离僵尸);
- Stars 越多越好:在满足持续更新的前提条件下,各榜根据 Stars 对项目进行排序;
#### 榜单更新频率
- 每周更新一次,最近更新时间为2021年10月29日;
#### License
- 本仓库内容的定义、创建、更新维护均由本人发起与推进,在您引用本仓库内容、转载文章时,请在开头明显处标明作者及页面地址,谢谢;
<br/>
## 目录
- 总榜
- [All Language](#All-Language)
- 分榜
- [Java](#Java)
- [Python](#Python)
- [Go](#Go)
- [PHP](#PHP)
- [JavaScript](#JavaScript)
- [Vue](#Vue)
- [CSS](#CSS)
- [HTML](#HTML)
- [Objective-C](#Objective-C)
- [Swift](https://github.com/kon9chunkit/GitHub-Chinese-Top-Charts/blob/master/README-Part2.md#Swift)
- [Jupyter Notebook](https://github.com/kon9chunkit/GitHub-Chinese-Top-Charts/blob/master/README-Part2.md#Jupyter-Notebook)
- [Shell](https://github.com/kon9chunkit/GitHub-Chinese-Top-Charts/blob/master/README-Part2.md#Shell)
- [C](https://github.com/kon9chunkit/GitHub-Chinese-Top-Charts/blob/master/README-Part2.md#C)
- [C++](https://github.com/kon9chunkit/GitHub-Chinese-Top-Charts/blob/master/README-Part2.md#C-1)
- [C#](https://github.com/kon9chunkit/GitHub-Chinese-Top-Charts/blob/master/README-Part2.md#C-2)
- [Dart](https://github.com/kon9chunkit/GitHub-Chinese-Top-Charts/blob/master/README-Part2.md#Dart)
- [TeX](https://github.com/kon9chunkit/GitHub-Chinese-Top-Charts/blob/master/README-Part2.md#TeX)
- [Vim script](https://github.com/kon9chunkit/GitHub-Chinese-Top-Charts/blob/master/README-Part2.md#Vim-script)
<br/>
## All Language
|#|Repository|Description|Stars|Language|Updated|
|:-|:-|:-|:-|:-|:-|
|1|[Snailclimb/JavaGuide](https://github.com/Snailclimb/JavaGuide)|「Java学习+面试指南」一份涵盖大部分 Java 程序员所需要掌握的核心知识。准备 Java 面试,首选 JavaGuide!|112.8k|Java|10/28|
|2|[jackfrued/Python-100-Days](https://github.com/jackfrued/Python-100-Days)|Python - 100天从新手到大师|110.7k|Python|10/27|
|3|[labuladong/fucking-algorithm](https://github.com/labuladong/fucking-algorithm)|刷算法全靠套路,认准 labuladong 就够了!English version supported! Crack LeetCode, not only how, but also why. |97.5k|-|10/28|
|4|[justjavac/free-programming-books-zh_CN](https://github.com/justjavac/free-programming-books-zh_CN)|:books: 免费的计算机编程类中文书籍,欢迎投稿|83.7k|-|09/08|
|5|[MisterBooo/LeetCodeAnimation](https://github.com/MisterBooo/LeetCodeAnimation)|Demonstrate all the questions on LeetCode in the form of animation.(用动画的形式呈现解LeetCode题目的思路)|67.5k|Java|06/24|
|6|[doocs/advanced-java](https://github.com/doocs/advanced-java)|😮 Core Interview Questions & Answers For Experienced Java(Backend) Developers 互联网 Java 工程师进阶知识完全扫盲:涵盖高并发、分布式、高可用、微服务、海量数据处理等领域知识|58.3k|Java|10/24|
|7|[xingshaocheng/architect-awesome](https://github.com/xingshaocheng/architect-awesome)|后端架构师技术图谱|54.6k|-|09/08|
|8|[macrozheng/mall](https://github.com/macrozheng/mall)|mall项目是一套电商系统,包括前台商城系统及后台管理系统,基于SpringBoot+MyBatis实现,采用Docker容器化部署。 前台商城系统包含首页门户、商品推荐、商品搜索、商品展示、购物车、订单流程、会员中心、客户服务、帮助中心等模块。 后台管理系统包含商品管理、订单管理、会员管理、促销管理、运营管理、内容管理、统计报表、财务管理、权限管理、设置等模块。|53.7k|Java|10/26|
|9|[scutan90/DeepLearning-500-questions](https://github.com/scutan90/DeepLearning-500-questions)|深度学习500问,以问答形式对常用的概率知识、线性代数、机器学习、深度学习、计算机视觉等热点问题进行阐述,以帮助自己及有需要的读者。 全书分为18个章节,50余万字。由于水平有限,书中不妥之处恳请广大读者批评指正。 未完待续............ 如有意合作,联系[email protected] 版权所有,违权必究 Tan 2018.06|46.3k|JavaScript|10/14|
|10|[bailicangdu/vue2-elm](https://github.com/bailicangdu/vue2-elm)|基于 vue2 + vuex 构建一个具有 45 个页面的大型单页面应用|37.1k|Vue|09/13|
|11|[chinese-poetry/chinese-poetry](https://github.com/chinese-poetry/chinese-poetry)|The most comprehensive database of Chinese poetry 🧶最全中华古诗词数据库, 唐宋两朝近一万四千古诗人, 接近5.5万首唐诗加26万宋诗. 两宋时期1564位词人,21050首词。|34.3k|JavaScript|10/09|
|12|[fighting41love/funNLP](https://github.com/fighting41love/funNLP)|中英文敏感词、语言检测、中外手机/电话归属地/运营商查询、名字推断性别、手机号抽取、身份证抽取、邮箱抽取、中日文人名库、中文缩写库、拆字词典、词汇情感值、停用词、反动词表、暴恐词表、繁简体转换、英文模拟中文发音、汪峰歌词生成器、职业名称词库、同义词库、反义词库、否定词库、汽车品牌词库、汽车零件词库、连续英文切割、各种中文词向量、公司名字大全、古诗词库、IT词库、财经词库、成语词库、地名词库、历史名人词库、诗词词库、医学词库、饮食词库、法律词库、汽车词库、动物词库、中文聊天语料、中文谣言数据、百度中文问答数据集、句子相似度匹配算法集合、bert资源、文本生成&摘要相关工具、cocoNLP信息抽取 ...|34.4k|Python|08/20|
|13|[dcloudio/uni-app](https://github.com/dcloudio/uni-app)|uni-app 是使用 Vue 语法开发小程序、H5、App的统一框架|34.1k|JavaScript|10/28|
|14|[0voice/interview_internal_reference](https://github.com/0voice/interview_internal_reference)|2021年最新总结,阿里,腾讯,百度,美团,头条等技术面试题目,以及答案,专家出题人分析汇总。|32.6k|Python|08/25|
|15|[apachecn/AiLearning](https://github.com/apachecn/AiLearning)|AiLearning: 机器学习 - MachineLearning - ML、深度学习 - DeepLearning - DL、自然语言处理 NLP|31.7k|Python|09/07|
|16|[testerSunshine/12306](https://github.com/testerSunshine/12306)|12306智能刷票,订票|30.3k|Python|08/25|
|17|[NervJS/taro](https://github.com/NervJS/taro)|开放式跨端跨框架解决方案,支持使用 React/Vue/Nerv 等框架来开发微信/京东/百度/支付宝/字节跳动/ QQ 小程序/H5/React Native 等应用。 https://taro.zone/|29.9k|JavaScript|10/29|
|18|[xitu/gold-miner](https://github.com/xitu/gold-miner)|🥇掘金翻译计划,可能是世界最大最好的英译中技术社区,最懂读者和译者的翻译平台:|29.7k|-|10/27|
|19|[geekxh/hello-algorithm](https://github.com/geekxh/hello-algorithm)|🌍 针对小白的算法训练 包括四部分:①.算法基础 ②.力扣图解 ③.大厂面经 ④.CS_汇总 附:1、千本开源电子书 2、百张技术思维导图(项目花了上百小时,希望可以点 star 支持,🌹感谢~)|29.0k|Java|10/11|
|20|[unknwon/the-way-to-go_ZH_CN](https://github.com/unknwon/the-way-to-go_ZH_CN)|《The Way to Go》中文译本,中文正式名《Go 入门指南》|27.8k|Go|10/25|
|21|[formulahendry/955.WLB](https://github.com/formulahendry/955.WLB)|955 不加班的公司名单 - 工作 955,work–life balance (工作与生活的平衡)|27.7k|-|08/08|
|22|[alibaba/arthas](https://github.com/alibaba/arthas)|Alibaba Java Diagnostic Tool Arthas/Alibaba Java诊断利器Arthas|27.5k|Java|10/28|
|23|[shengxinjing/programmer-job-blacklist](https://github.com/shengxinjing/programmer-job-blacklist)|:see_no_evil:程序员找工作黑名单,换工作和当技术合伙人需谨慎啊 更新有赞|27.4k|Shell|08/10|
|24|[fxsjy/jieba](https://github.com/fxsjy/jieba)|结巴中文分词|27.2k|Python|07/25|
|25|[ityouknow/spring-boot-examples](https://github.com/ityouknow/spring-boot-examples)|about learning Spring Boot via examples. Spring Boot 教程、技术栈示例代码,快速简单上手教程。 |26.5k|Java|06/14|
|26|[d2l-ai/d2l-zh](https://github.com/d2l-ai/d2l-zh)|《动手学深度学习》:面向中文读者、能运行、可讨论。中英文版被全球200所大学采用教学。|26.4k|Python|10/29|
|27|[proxyee-down-org/proxyee-down](https://github.com/proxyee-down-org/proxyee-down)|http下载工具,基于http代理,支持多连接分块下载|25.3k|Java|06/05|
|28|[sentsin/layui](https://github.com/sentsin/layui)|采用自身模块规范编写的前端 UI 框架,遵循原生 HTML/CSS/JS 的书写形式,极低门槛,拿来即用。|25.2k|JavaScript|10/26|
|29|[lib-pku/libpku](https://github.com/lib-pku/libpku)|贵校课程资料民间整理|24.7k|TeX|10/08|
|30|[alibaba/druid](https://github.com/alibaba/druid)|阿里云计算平台DataWorks(https://help.aliyun.com/document_detail/137663.html) 团队出品,为监控而生的数据库连接池|24.7k|Java|10/20|
|31|[mqyqingfeng/Blog](https://github.com/mqyqingfeng/Blog)|冴羽写博客的地方,预计写四个系列:JavaScript深入系列、JavaScript专题系列、ES6系列、React系列。|24.5k|-|06/09|
|32|[fengdu78/Coursera-ML-AndrewNg-Notes](https://github.com/fengdu78/Coursera-ML-AndrewNg-Notes)|吴恩达老师的机器学习课程个人笔记|23.3k|HTML|07/24|
|33|[QSCTech/zju-icicles](https://github.com/QSCTech/zju-icicles)|浙江大学课程攻略共享计划|23.1k|C|10/16|
|34|[jobbole/awesome-python-cn](https://github.com/jobbole/awesome-python-cn)|Python资源大全中文版,包括:Web框架、网络爬虫、模板引擎、数据库、数据可视化、图片处理等,由「开源前哨」和「Python开发者」微信公号团队维护更新。|23.1k|Makefile|10/15|
|35|[scwang90/SmartRefreshLayout](https://github.com/scwang90/SmartRefreshLayout)|🔥下拉刷新、上拉加载、二级刷新、淘宝二楼、RefreshLayout、OverScroll,Android智能下拉刷新框架,支持越界回弹、越界拖动,具有极强的扩展性,集成了几十种炫酷的Header和 Footer。|23.1k|Java|05/24|
|36|[alibaba/flutter-go](https://github.com/alibaba/flutter-go)|flutter 开发者帮助 APP,包含 flutter 常用 140+ 组件的demo 演示与中文文档|22.9k|Dart|05/20|
|37|[YMFE/yapi](https://github.com/YMFE/yapi)|YApi 是一个可本地部署的、打通前后端及QA的、可视化的接口管理平台|22.8k|JavaScript|10/20|
|38|[bannedbook/fanqiang](https://github.com/bannedbook/fanqiang)|翻墙-科学上网|22.8k|Kotlin|10/28|
|39|[qiurunze123/miaosha](https://github.com/qiurunze123/miaosha)|⭐⭐⭐⭐秒杀系统设计与实现.互联网工程师进阶与分析🙋🐓|22.7k|Java|06/04|
|40|[lenve/vhr](https://github.com/lenve/vhr)|微人事是一个前后端分离的人力资源管理系统,项目采用SpringBoot+Vue开发。|22.6k|Java|10/28|
|41|[Binaryify/NeteaseCloudMusicApi](https://github.com/Binaryify/NeteaseCloudMusicApi)|网易云音乐 Node.js API service|21.7k|JavaScript|10/28|
|42|[Tencent/wepy](https://github.com/Tencent/wepy)|小程序组件化开发框架|21.6k|JavaScript|09/09|
|43|[alibaba/easyexcel](https://github.com/alibaba/easyexcel)|快速、简单避免OOM的java处理Excel工具|21.6k|Java|10/21|
|44|[kataras/iris](https://github.com/kataras/iris)|The fastest HTTP/2 Go Web Framework. AWS Lambda, gRPC, MVC, Unique Router, Websockets, Sessions, Test suite, Dependency Injection and more. A true successor of expressjs and laravel 谢谢 https://github.com/kataras/iris/issues/1329 |21.3k|Go|10/13|
|45|[MustangYM/WeChatExtension-ForMac](https://github.com/MustangYM/WeChatExtension-ForMac)|Mac微信功能拓展/微信插件/微信小助手(A plugin for Mac WeChat)|18.9k|Objective-C|08/12|
|46|[ehang-io/nps](https://github.com/ehang-io/nps)|一款轻量级、高性能、功能强大的内网穿透代理服务器。支持tcp、udp、socks5、http等几乎所有流量转发,可用来访问内网网站、本地支付接口调试、ssh访问、远程桌面,内网dns解析、内网socks5代理等等……,并带有功能强大的web管理端。a lightweight, high-performance, powerful intranet penetration proxy server, with a powerful web management terminal.|18.8k|Go|10/15|
|47|[datawhalechina/pumpkin-book](https://github.com/datawhalechina/pumpkin-book)|《机器学习》(西瓜书)公式推导解析,在线阅读地址:https://datawhalechina.github.io/pumpkin-book|18.6k|-|10/27|
|48|[PKUanonym/REKCARC-TSC-UHT](https://github.com/PKUanonym/REKCARC-TSC-UHT)|清华大学计算机系课程攻略 Guidance for courses in Department of Computer Science and Technology, Tsinghua University|18.5k|HTML|10/12|
|49|[TeamStuQ/skill-map](https://github.com/TeamStuQ/skill-map)|程序员技能图谱|18.5k|HTML|06/25|
|50|[Awesome-HarmonyOS/HarmonyOS](https://github.com/Awesome-HarmonyOS/HarmonyOS)|A curated list of awesome things related to HarmonyOS. 华为鸿蒙操作系统。|18.3k|C|06/17|
|51|[didi/DoraemonKit](https://github.com/didi/DoraemonKit)|一款面向泛前端产品研发全生命周期的效率平台。|18.1k|Java|10/28|
|52|[ryanhanwu/How-To-Ask-Questions-The-Smart-Way](https://github.com/ryanhanwu/How-To-Ask-Questions-The-Smart-Way)|本文原文由知名 Hacker Eric S. Raymond 所撰寫,教你如何正確的提出技術問題並獲得你滿意的答案。|17.9k|JavaScript|10/13|
|53|[qianguyihao/Web](https://github.com/qianguyihao/Web)|千古前端图文教程,超详细的前端入门到进阶学习笔记。从零开始学前端,做一名精致优雅的前端工程师。公众号「千古壹号」作者。|17.9k|JavaScript|10/28|
|54|[wenyan-lang/wenyan](https://github.com/wenyan-lang/wenyan)|文言文編程語言 A programming language for the ancient Chinese.|17.7k|TypeScript|10/25|
|55|[alibaba/Sentinel](https://github.com/alibaba/Sentinel)|A powerful flow control component enabling reliability, resilience and monitoring for microservices. (面向云原生微服务的高可用流控防护组件)|17.7k|Java|10/28|
|56|[youngyangyang04/leetcode-master](https://github.com/youngyangyang04/leetcode-master)|LeetCode 刷题攻略:200道经典题目刷题顺序,共60w字的详细图解,视频难点剖析,50余张思维导图,支持C++,Java,Python,Go,JavaScript等多语言版本,从此算法学习不再迷茫!🔥🔥 来看看,你会发现相见恨晚!🚀 |17.5k|-|10/28|
|57|[jumpserver/jumpserver](https://github.com/jumpserver/jumpserver)|JumpServer 是全球首款开源的堡垒机,是符合 4A 的专业运维安全审计系统。|17.2k|Python|10/28|
|58|[1c7/chinese-independent-developer](https://github.com/1c7/chinese-independent-developer)|👩🏿💻👨🏾💻👩🏼💻👨🏽💻👩🏻💻中国独立开发者项目列表 -- 分享大家都在做什么|17.1k|-|10/28|
|59|[jaywcjlove/linux-command](https://github.com/jaywcjlove/linux-command)|Linux命令大全搜索工具,内容包含Linux命令手册、详解、学习、搜集。https://git.io/linux|17.0k|Markdown|10/28|
|60|[PaddlePaddle/Paddle](https://github.com/PaddlePaddle/Paddle)|PArallel Distributed Deep LEarning: Machine Learning Framework from Industrial Practice (『飞桨』核心框架,深度学习&机器学习高性能单机、分布式训练和跨平台部署)|16.8k|Python|10/29|
|61|[CarGuo/GSYVideoPlayer](https://github.com/CarGuo/GSYVideoPlayer)|视频播放器(IJKplayer、ExoPlayer、MediaPlayer),HTTPS,支持弹幕,外挂字幕,支持滤镜、水印、gif截图,片头广告、中间广告,多个同时播放,支持基本的拖动,声音、亮度调节,支持边播边缓存,支持视频自带rotation的旋转(90,270之类),重力旋转与手动旋转的同步支持,支持列表播放 ,列表全屏动画,视频加载速度,列表小窗口支持拖动,动画效果,调整比例,多分辨率切换,支持切换播放器,进度条小窗口预览,列表切换详情页面无缝播放,rtsp、concat、mpeg。 |16.8k|Java|10/15|
|62|[MLEveryday/100-Days-Of-ML-Code](https://github.com/MLEveryday/100-Days-Of-ML-Code)|100-Days-Of-ML-Code中文版|16.7k|Jupyter Notebook|08/11|
|63|[alibaba/ice](https://github.com/alibaba/ice)|🚀 The Progressive Framework Based On React(基于 React 的渐进式研发框架),站点国内镜像:https://iceteam.gitee.io|16.7k|TypeScript|10/28|
|64|[elunez/eladmin](https://github.com/elunez/eladmin)|项目基于 Spring Boot 2.1.0 、 Jpa、 Spring Security、redis、Vue的前后端分离的后台管理系统,项目采用分模块开发方式, 权限控制采用 RBAC,支持数据字典与数据权限管理,支持一键生成前后端代码,支持动态路由|16.6k|Java|10/14|
|65|[LingCoder/OnJava8](https://github.com/LingCoder/OnJava8)|《On Java 8》中文版 |16.5k|-|09/25|
|66|[linlinjava/litemall](https://github.com/linlinjava/litemall)|又一个小商城。litemall = Spring Boot后端 + Vue管理员前端 + 微信小程序用户前端 + Vue用户移动端|16.5k|Java|10/07|
|67|[ascoders/weekly](https://github.com/ascoders/weekly)|前端精读周刊。帮你理解最前沿、实用的技术。|16.4k|JavaScript|10/26|
|68|[facert/awesome-spider](https://github.com/facert/awesome-spider)|爬虫集合|16.3k|-|09/02|
|69|[shuzheng/zheng](https://github.com/shuzheng/zheng)|基于Spring+SpringMVC+Mybatis分布式敏捷开发系统架构,提供整套公共微服务服务模块:集中权限管理(单点登录)、内容管理、支付中心、用户管理(支持第三方登录)、微信平台、存储系统、配置中心、日志分析、任务和通知等,支持服务治理、监控和追踪,努力为中小型企业打造全方位J2EE企业级开发解决方案。|16.1k|Java|09/21|
|70|[forezp/SpringCloudLearning](https://github.com/forezp/SpringCloudLearning)|《史上最简单的Spring Cloud教程源码》|16.1k|Java|04/12|
|71|[ZhongFuCheng3y/3y](https://github.com/ZhongFuCheng3y/3y)|:notebook:从Java基础、JavaWeb基础到常用的框架再到面试题都有完整的教程,几乎涵盖了Java后端必备的知识点|15.4k|-|07/22|
|72|[youzan/vant-weapp](https://github.com/youzan/vant-weapp)|轻量、可靠的小程序 UI 组件库|15.3k|JavaScript|10/28|
|73|[freefq/free](https://github.com/freefq/free)|翻墙、免费翻墙、免费科学上网、免费节点、免费梯子、免费ss/v2ray/trojan节点、蓝灯、谷歌商店、翻墙梯子|15.0k|-|10/29|
|74|[nndl/nndl.github.io](https://github.com/nndl/nndl.github.io)|《神经网络与深度学习》 邱锡鹏著 Neural Network and Deep Learning |14.9k|HTML|05/18|
|75|[zergtant/pytorch-handbook](https://github.com/zergtant/pytorch-handbook)|pytorch handbook是一本开源的书籍,目标是帮助那些希望和使用PyTorch进行深度学习开发和研究的朋友快速入门,其中包含的Pytorch教程全部通过测试保证可以成功运行|15.5k|Jupyter Notebook|10/25|
|76|[EastWorld/wechat-app-mall](https://github.com/EastWorld/wechat-app-mall)|微信小程序商城,微信小程序微店|15.2k|JavaScript|10/24|
|77|[233boy/v2ray](https://github.com/233boy/v2ray)|最好用的 V2Ray 一键安装脚本 & 管理脚本|14.8k|Shell|08/24|
|78|[fengdu78/lihang-code](https://github.com/fengdu78/lihang-code)|《统计学习方法》的代码实现|14.7k|Jupyter Notebook|05/31|
|79|[shimohq/chinese-programmer-wrong-pronunciation](https://github.com/shimohq/chinese-programmer-wrong-pronunciation)|中国程序员容易发音错误的单词|14.6k|Python|07/29|
|80|[JeffLi1993/springboot-learning-example](https://github.com/JeffLi1993/springboot-learning-example)|spring boot 实践学习案例,是 spring boot 初学者及核心技术巩固的最佳实践。另外写博客,用 OpenWrite。|14.6k|Java|10/11|
|81|[zhongyang219/TrafficMonitor](https://github.com/zhongyang219/TrafficMonitor)|这是一个用于显示当前网速、CPU及内存利用率的桌面悬浮窗软件,并支持任务栏显示,支持更换皮肤。|14.1k|C++|10/28|
|82|[lyswhut/lx-music-desktop](https://github.com/lyswhut/lx-music-desktop)|一个基于 electron 的音乐软件|14.0k|JavaScript|10/26|
|83|[wangshub/wechat_jump_game](https://github.com/wangshub/wechat_jump_game)|微信《跳一跳》Python 辅助|13.9k|Python|10/13|
|84|[lin-xin/vue-manage-system](https://github.com/lin-xin/vue-manage-system)|基于Vue3 + Element Plus 的后台管理系统解决方案|13.9k|Vue|09/22|
|85|[Kr1s77/awesome-python-login-model](https://github.com/Kr1s77/awesome-python-login-model)|😮python模拟登陆一些大型网站,还有一些简单的爬虫,希望对你们有所帮助❤️,如果喜欢记得给个star哦🌟|13.8k|Python|07/24|
|86|[fengdu78/deeplearning_ai_books](https://github.com/fengdu78/deeplearning_ai_books)|deeplearning.ai(吴恩达老师的深度学习课程笔记及资源)|13.8k|HTML|10/23|
|87|[jhao104/proxy_pool](https://github.com/jhao104/proxy_pool)|Python爬虫代理IP池(proxy pool)|13.5k|Python|10/27|
|88|[alibaba/ARouter](https://github.com/alibaba/ARouter)|💪 A framework for assisting in the renovation of Android componentization (帮助 Android App 进行组件化改造的路由框架)|13.5k|Java|09/13|
|89|[521xueweihan/git-tips](https://github.com/521xueweihan/git-tips)|:trollface:Git的奇技淫巧|13.4k|-|10/18|
|90|[dcloudio/mui](https://github.com/dcloudio/mui)|最接近原生APP体验的高性能框架|13.3k|JavaScript|07/07|
|91|[Tencent/QMUI_Android](https://github.com/Tencent/QMUI_Android)|提高 Android UI 开发效率的 UI 库|13.2k|Java|10/25|
|92|[greyireland/algorithm-pattern](https://github.com/greyireland/algorithm-pattern)|算法模板,最科学的刷题方式,最快速的刷题路径,你值得拥有~|12.8k|Go|05/14|
|93|[wangeditor-team/wangEditor](https://github.com/wangeditor-team/wangEditor)|wangEditor —— 轻量级web富文本框|12.5k|TypeScript|10/22|
|94|[jobbole/awesome-programming-books](https://github.com/jobbole/awesome-programming-books)|经典编程书籍大全,涵盖:计算机系统与网络、系统架构、算法与数据结构、前端开发、后端开发、移动开发、数据库、测试、项目与团队、程序员职业修炼、求职面试等|12.5k|-|08/27|
|95|[stephentian/33-js-concepts](https://github.com/stephentian/33-js-concepts)|:scroll: 每个 JavaScript 工程师都应懂的33个概念 @leonardomso|12.2k|JavaScript|08/12|
|96|[YunaiV/SpringBoot-Labs](https://github.com/YunaiV/SpringBoot-Labs)|一个涵盖六个专栏:Spring Boot 2.X、Spring Cloud、Spring Cloud Alibaba、Dubbo、分布式消息队列、分布式事务的仓库。希望胖友小手一抖,右上角来个 Star,感恩 1024|12.1k|Java|09/21|
|97|[qier222/YesPlayMusic](https://github.com/qier222/YesPlayMusic)|高颜值的第三方网易云播放器,支持 Windows / macOS / Linux :electron: |12.1k|JavaScript|10/28|
|98|[Tencent/omi](https://github.com/Tencent/omi)| Front End Cross-Frameworks Framework - 前端跨框架跨平台框架|12.1k|JavaScript|10/21|
|99|[dragen1860/Deep-Learning-with-TensorFlow-book](https://github.com/dragen1860/Deep-Learning-with-TensorFlow-book)|深度学习入门开源书,基于TensorFlow 2.0案例实战。Open source Deep Learning book, based on TensorFlow 2.0 framework.|12.0k|Jupyter Notebook|08/30|
|100|[huiyadanli/RevokeMsgPatcher](https://github.com/huiyadanli/RevokeMsgPatcher)|:trollface: A hex editor for WeChat/QQ/TIM - PC版微信/QQ/TIM防撤回补丁(我已经看到了,撤回也没用了)|11.9k|C#|09/17|
|101|[eip-work/kuboard-press](https://github.com/eip-work/kuboard-press)|Kuboard 是基于 Kubernetes 的微服务管理界面。同时提供 Kubernetes 免费中文教程,入门教程,最新版本的 Kubernetes v1.20 安装手册,(k8s install) 在线答疑,持续更新。|11.9k|JavaScript|10/17|
|102|[leisurelicht/wtfpython-cn](https://github.com/leisurelicht/wtfpython-cn)|wtfpython的中文翻译/施工结束/ 能力有限,欢迎帮我改进翻译|11.9k|Python|07/08|
|103|[Tencent/APIJSON](https://github.com/Tencent/APIJSON)|🚀 零代码、热更新、全自动 ORM 库,后端接口和文档零代码,前端(客户端) 定制返回 JSON 的数据和结构。 🚀 A JSON Transmission Protocol and an ORM Library for automatically providing APIs and Docs.|11.9k|Java|10/26|
|104|[qyuhen/book](https://github.com/qyuhen/book)|学习笔记|11.8k|-|04/07|
|105|[amfe/lib-flexible](https://github.com/amfe/lib-flexible)|可伸缩布局方案|11.7k|JavaScript|04/06|
|106|[peterq/pan-light](https://github.com/peterq/pan-light)|百度网盘不限速客户端, golang + qt5, 跨平台图形界面|11.7k|Go|10/06|
|107|[Tim9Liu9/TimLiu-iOS](https://github.com/Tim9Liu9/TimLiu-iOS)|iOS开发常用三方库、插件、知名博客等等|10.8k|-|10/21|
|108|[weilanwl/ColorUI](https://github.com/weilanwl/ColorUI)|鲜亮的高饱和色彩,专注视觉的小程序组件库|10.8k|Vue|05/16|
|109|[walter201230/Python](https://github.com/walter201230/Python)|最良心的 Python 教程:|10.6k|-|07/14|
|110|[opendigg/awesome-github-vue](https://github.com/opendigg/awesome-github-vue)|Vue相关开源项目库汇总|10.6k|-|05/07|
|111|[sparanoid/chinese-copywriting-guidelines](https://github.com/sparanoid/chinese-copywriting-guidelines)|Chinese copywriting guidelines for better written communication/中文文案排版指北|10.5k|-|10/03|
|112|[0voice/from_coder_to_expert](https://github.com/0voice/from_coder_to_expert)|2021年最新总结,从程序员到CTO,从专业走向卓越,分享大牛企业内部pdf与PPT|10.4k|-|08/25|
|113|[NLP-LOVE/ML-NLP](https://github.com/NLP-LOVE/ML-NLP)|此项目是机器学习(Machine Learning)、深度学习(Deep Learning)、NLP面试中常考到的知识点和代码实现,也是作为一个算法工程师必会的理论基础知识。|10.4k|Jupyter Notebook|06/26|
|114|[itdevbooks/pdf](https://github.com/itdevbooks/pdf)|编程电子书,电子书,编程书籍,包括C,C#,Docker,Elasticsearch,Git,Hadoop,HeadFirst,Java,Javascript,jvm,Kafka,Linux,Maven,MongoDB,MyBatis,MySQL,Netty,Nginx,Python,RabbitMQ,Redis,Scala,Solr,Spark,Spring,SpringBoot,SpringCloud,TCPIP,Tomcat,Zookeeper,人工智能,大数据类,并发编程,数据库类,数据挖掘,新面试题,架构设计,算法系列,计算机类,设计模式,软件测试,重构优化,等更多分类|10.3k|-|10/09|
|115|[pagehelper/Mybatis-PageHelper](https://github.com/pagehelper/Mybatis-PageHelper)|Mybatis通用分页插件|10.7k|Java|10/08|
|116|[heibaiying/BigData-Notes](https://github.com/heibaiying/BigData-Notes)|大数据入门指南 :star:|10.7k|Java|05/12|
|117|[babysor/MockingBird](https://github.com/babysor/MockingBird)|🚀AI拟声: 5秒内克隆您的声音并生成任意语音内容 Clone a voice in 5 seconds to generate arbitrary speech in real-time|10.7k|JavaScript|10/27|
|118|[chuzhixin/vue-admin-beautiful-pro](https://github.com/chuzhixin/vue-admin-beautiful-pro)|🚀🚀🚀vue3,vue3.0,vue,vue3.x,vue.js,vue后台管理,admin,vue-admin,vue-element-admin,ant-design,vue-admin-beautiful-pro,vab admin pro,vab admin plus主线版本基于element-plus、element-ui、ant-design-vue三者并行开发维护,同时支持电脑,手机,平板,切换分支查看不同的vue版本,element-plus版本已发布(vue3,vue3.0,vue,vue3.x,vue.js)|10.5k|Vue|10/16|
|119|[apachecn/apachecn-algo-zh](https://github.com/apachecn/apachecn-algo-zh)|ApacheCN 数据结构与算法译文集|10.5k|JavaScript|05/09|
|120|[zhaoolee/ChineseBQB](https://github.com/zhaoolee/ChineseBQB)|🇨🇳 Chinese sticker pack,More joy / 表情包的博物馆, Github最有毒的仓库, 中国表情包大集合, 聚欢乐~|9.3k|JavaScript|10/23|
|121|[the1812/Bilibili-Evolved](https://github.com/the1812/Bilibili-Evolved)|强大的哔哩哔哩增强脚本: 下载视频, 音乐, 封面, 弹幕 / 简化直播间, 评论区, 首页 / 自定义顶栏, 删除广告, 夜间模式 / 触屏设备支持|9.3k|TypeScript|10/29|
|122|[hackstoic/golang-open-source-projects](https://github.com/hackstoic/golang-open-source-projects)|为互联网IT人打造的中文版awesome-go|9.2k|-|05/13|
|123|[chefyuan/algorithm-base](https://github.com/chefyuan/algorithm-base)|专门为刚开始刷题的同学准备的算法基地,没有最细只有更细,立志用动画将晦涩难懂的算法说的通俗易懂!|9.2k|Java|10/15|
|124|[cnodejs/nodeclub](https://github.com/cnodejs/nodeclub)|:baby_chick:Nodeclub 是使用 Node.js 和 MongoDB 开发的社区系统|9.1k|JavaScript|10/23|
|125|[rootsongjc/kubernetes-handbook](https://github.com/rootsongjc/kubernetes-handbook)|Kubernetes中文指南/云原生应用架构实践手册 - https://jimmysong.io/kubernetes-handbook|9.1k|Shell|10/20|
|126|[XIU2/TrackersListCollection](https://github.com/XIU2/TrackersListCollection)|🎈 Updated daily! A list of popular BitTorrent Trackers! / 每天更新!全网热门 BT Tracker 列表!|9.1k|-|10/29|
|127|[darknessomi/musicbox](https://github.com/darknessomi/musicbox)|网易云音乐命令行版本|9.1k|Python|09/21|
|128|[iamshuaidi/CS-Book](https://github.com/iamshuaidi/CS-Book)|计算机类常用电子书整理,并且附带下载链接,包括Java,Python,Linux,Go,C,C++,数据结构与算法,人工智能,计算机基础,面试,设计模式,数据库,前端等书籍|9.1k|-|08/10|
|129|[Tencent/secguide](https://github.com/Tencent/secguide)|面向开发人员梳理的代码安全指南|9.0k|-|10/06|
|130|[daniulive/SmarterStreaming](https://github.com/daniulive/SmarterStreaming)|业内为数不多致力于极致体验的超强全自研跨平台(windows/android/iOS)流媒体内核,通过模块化自由组合,支持实时RTMP推流、RTSP推流、RTMP播放器、RTSP播放器、录像、多路流媒体转发、音视频导播、动态视频合成、音频混音、直播互动、内置轻量级RTSP服务等,比快更快,业界真正靠谱的超低延迟直播SDK(1秒内,低延迟模式下200~400ms)。|9.8k|Java|08/07|
|131|[w7corp/easywechat](https://github.com/w7corp/easywechat)|:package: 一个 PHP 微信 SDK|9.6k|PHP|10/25|
|132|[Vonng/ddia](https://github.com/Vonng/ddia)|《Designing Data-Intensive Application》DDIA中文翻译|9.6k|Python|10/21|
|133|[halfrost/Halfrost-Field](https://github.com/halfrost/Halfrost-Field)|✍🏻 这里是写博客的地方 —— Halfrost-Field 冰霜之地|9.6k|Go|06/11|
|134|[yifeikong/reverse-interview-zh](https://github.com/yifeikong/reverse-interview-zh)|技术面试最后反问面试官的话|9.5k|-|10/13|
|135|[unlock-music/unlock-music](https://github.com/unlock-music/unlock-music)|Unlock encrypted music file in browser. 在浏览器中解锁加密的音乐文件。|9.7k|TypeScript|10/07|
|136|[lihengming/spring-boot-api-project-seed](https://github.com/lihengming/spring-boot-api-project-seed)|:seedling::rocket:一个基于Spring Boot & MyBatis的种子项目,用于快速构建中小型API、RESTful API项目~|8.9k|Java|07/21|
|137|[macrozheng/mall-admin-web](https://github.com/macrozheng/mall-admin-web)|mall-admin-web是一个电商后台管理系统的前端项目,基于Vue+Element实现。 主要包括商品管理、订单管理、会员管理、促销管理、运营管理、内容管理、统计报表、财务管理、权限管理、设置等功能。|8.9k|Vue|08/09|
|138|[hackware1993/MagicIndicator](https://github.com/hackware1993/MagicIndicator)|A powerful, customizable and extensible ViewPager indicator framework. As the best alternative of ViewPagerIndicator, TabLayout and PagerSlidingTabStrip —— 强大、可定制、易扩展的 ViewPager 指示器框架。是ViewPagerIndicator、TabLayout、PagerSlidingTabStrip的最佳替代品。支持角标,更支持在非ViewPager场景下使用(使用hide()、show()切换Fragment或使用se ...|8.9k|Java|06/20|
|139|[OI-wiki/OI-wiki](https://github.com/OI-wiki/OI-wiki)|:star2: Wiki of OI / ICPC for everyone. (某大型游戏线上攻略,内含炫酷算术魔法)|8.9k|-|10/28|
|140|[ChenYilong/iOSInterviewQuestions](https://github.com/ChenYilong/iOSInterviewQuestions)|iOS interview questions;iOS面试题集锦(附答案)--学习qq群或 Telegram 群交流 https://github.com/ChenYilong/iOSBlog/issues/21|8.9k|C++|09/03|
|141|[DuGuQiuBai/Java](https://github.com/DuGuQiuBai/Java)|27天成为Java大神|8.8k|Java|05/20|
|142|[programthink/zhao](https://github.com/programthink/zhao)|【编程随想】整理的《太子党关系网络》,专门揭露赵国的权贵|8.8k|Python|08/01|
|143|[geektutu/7days-golang](https://github.com/geektutu/7days-golang)|7 days golang programs from scratch (web framework Gee, distributed cache GeeCache, object relational mapping ORM framework GeeORM, rpc framework GeeRPC etc) 7天用Go动手写/从零实现系列|8.7k|Go|08/26|
|144|[fangzesheng/free-api](https://github.com/fangzesheng/free-api)|收集免费的接口服务,做一个api的搬运工|8.7k|-|10/08|
|145|[flutterchina/flutter-in-action](https://github.com/flutterchina/flutter-in-action)|《Flutter实战》电子书|8.7k|JavaScript|10/07|
|146|[didi/chameleon](https://github.com/didi/chameleon)|🦎 一套代码运行多端,一端所见即多端所见|8.6k|JavaScript|10/07|
|147|[XiangLinPro/IT_book](https://github.com/XiangLinPro/IT_book)|本项目收藏这些年来看过或者听过的一些不错的常用的上千本书籍,没准你想找的书就在这里呢,包含了互联网行业大多数书籍和面试经验题目等等。有人工智能系列(常用深度学习框架TensorFlow、pytorch、keras。NLP、机器学习,深度学习等等),大数据系列(Spark,Hadoop,Scala,kafka等),程序员必修系列(C、C++、java、数据结构、linux,设计模式、数据库等等)|8.6k|-|10/23|
|148|[sfyc23/EverydayWechat](https://github.com/sfyc23/EverydayWechat)|微信助手:1.每日定时给好友(女友)发送定制消息。2.机器人自动回复好友。3.群助手功能(例如:查询垃圾分类、天气、日历、电影实时票房、快递物流、PM2.5等)|8.6k|Python|06/22|
|149|[mzlogin/awesome-adb](https://github.com/mzlogin/awesome-adb)|ADB Usage Complete / ADB 用法大全|8.5k|-|07/23|
|150|[wsdjeg/vim-galore-zh_cn](https://github.com/wsdjeg/vim-galore-zh_cn)|Vim 从入门到精通|8.5k|Vim script|08/21|
|151|[x-hw/amazing-qr](https://github.com/x-hw/amazing-qr)|💮 amazing QRCode generator in Python (supporting animated gif) - Python amazing 二维码生成器(支持 gif 动态图片二维码)|8.5k|Python|09/08|
|152|[GcsSloop/AndroidNote](https://github.com/GcsSloop/AndroidNote)|安卓学习笔记|8.4k|Java|05/25|
|153|[baidu/amis](https://github.com/baidu/amis)|前端低代码框架,通过 JSON 配置就能生成各种页面。|8.4k|TypeScript|10/28|
|154|[crawlab-team/crawlab](https://github.com/crawlab-team/crawlab)|Distributed web crawler admin platform for spiders management regardless of languages and frameworks. 分布式爬虫管理平台,支持任何语言和框架|8.3k|Go|10/24|
|155|[xcatliu/typescript-tutorial](https://github.com/xcatliu/typescript-tutorial)|TypeScript 入门教程|8.2k|TypeScript|09/10|
|156|[sentsin/layer](https://github.com/sentsin/layer)|丰富多样的 Web 弹出层组件,可轻松实现 Alert/Confirm/Prompt/ 普通提示/页面区块/iframe/tips等等几乎所有的弹出交互。目前已成为最多人使用的弹层解决方案|8.2k|JavaScript|05/22|
|157|[polaris1119/The-Golang-Standard-Library-by-Example](https://github.com/polaris1119/The-Golang-Standard-Library-by-Example)|Golang标准库。对于程序员而言,标准库与语言本身同样重要,它好比一个百宝箱,能为各种常见的任务提供完美的解决方案。以示例驱动的方式讲解Golang的标准库。|8.2k|Go|10/19|
|158|[litten/hexo-theme-yilia](https://github.com/litten/hexo-theme-yilia)|一个简洁优雅的hexo主题 A simple and elegant theme for hexo.|8.1k|JavaScript|06/05|
|159|[zh-google-styleguide/zh-google-styleguide](https://github.com/zh-google-styleguide/zh-google-styleguide)|Google 开源项目风格指南 (中文版)|8.1k|Makefile|10/19|
|160|[wistbean/learn_python3_spider](https://github.com/wistbean/learn_python3_spider)|python爬虫教程系列、从0到1学习python爬虫,包括浏览器抓包,手机APP抓包,如 fiddler、mitmproxy,各种爬虫涉及的模块的使用,如:requests、beautifulSoup、selenium、appium、scrapy等,以及IP代理,验证码识别,Mysql,MongoDB数据库的python使用,多线程多进程爬虫的使用,css 爬虫加密逆向破解,JS爬虫逆向,分布式爬虫,爬虫项目实战实例等|8.1k|Python|10/21|
|161|[hq450/fancyss_history_package](https://github.com/hq450/fancyss_history_package)|科学上网插件的离线安装包储存在这里|8.1k|-|05/25|
|162|[jindongwang/transferlearning](https://github.com/jindongwang/transferlearning)|Transfer learning / domain adaptation / domain generalization / multi-task learning etc. papers, codes. datasets, applications, tutorials.-迁移学习|8.1k|Python|10/27|
|163|[DayBreak-u/chineseocr_lite](https://github.com/DayBreak-u/chineseocr_lite)|超轻量级中文ocr,支持竖排文字识别, 支持ncnn、mnn、tnn推理 ( dbnet(1.8M) + crnn(2.5M) + anglenet(378KB)) 总模型仅4.7M |8.1k|C++|10/28|
|164|[guyueyingmu/avbook](https://github.com/guyueyingmu/avbook)|AV 电影管理系统, avmoo , javbus , javlibrary 爬虫,线上 AV 影片图书馆,AV 磁力链接数据库,Japanese Adult Video Library,Adult Video Magnet Links - Japanese Adult Video Database|8.1k|PHP|10/06|
|165|[newbee-ltd/newbee-mall](https://github.com/newbee-ltd/newbee-mall)|🔥 🎉newbee-mall 项目(新蜂商城)是一套电商系统,包括 newbee-mall 商城系统及 newbee-mall-admin 商城后台管理系统,基于 Spring Boot 2.X 及相关技术栈开发。 前台商城系统包含首页门户、商品分类、新品上线、首页轮播、商品推荐、商品搜索、商品展示、购物车、订单结算、订单流程、个人订单管理、会员中心、帮助中心等模块。 后台管理系统包含数据面板、轮播图管理、商品管理、订单管理、会员管理、分类管理、设置等模块。|8.0k|Java|10/22|
|166|[crossoverJie/cim](https://github.com/crossoverJie/cim)|📲cim(cross IM) 适用于开发者的分布式即时通讯系统|8.0k|Java|10/12|
|167|[unknwon/go-fundamental-programming](https://github.com/unknwon/go-fundamental-programming)|《Go 编程基础》是一套针对 Google 出品的 Go 语言的视频语音教程,主要面向新手级别的学习者。|7.9k|Go|10/25|
|168|[tgbot-collection/YYeTsBot](https://github.com/tgbot-collection/YYeTsBot)|🎬 人人影视bot,完全对接人人影视全部无删减资源|7.9k|Python|10/01|
|169|[huanghaibin-dev/CalendarView](https://github.com/huanghaibin-dev/CalendarView)|Android上一个优雅、万能自定义UI、仿iOS、支持垂直、水平方向切换、支持周视图、自定义周起始、性能高效的日历控件,支持热插拔实现的UI定制!支持标记、自定义颜色、农历、自定义月视图各种显示模式等。Canvas绘制,速度快、占用内存低,你真的想不到日历居然还可以如此优雅!An elegant, highly customized and high-performance Calendar Widget on Android.|7.9k|Java|10/11|
|170|[hoochanlon/w3-goto-world](https://github.com/hoochanlon/w3-goto-world)|🍅 Git/AWS/Google 镜像 ,SS/SSR/VMESS节点,WireGuard,IPFS, DeepWeb,Capitalism 、行业研究报告的知识储备库|7.9k|Python|09/23|
|171|[extreme-assistant/CVPR2021-Paper-Code-Interpretation](https://github.com/extreme-assistant/CVPR2021-Paper-Code-Interpretation)|cvpr2021/cvpr2020/cvpr2019/cvpr2018/cvpr2017 论文/代码/解读/直播合集,极市团队整理|7.9k|-|08/23|
|172|[fuck-xuexiqiangguo/Fuck-XueXiQiangGuo](https://github.com/fuck-xuexiqiangguo/Fuck-XueXiQiangGuo)|学习强国 懒人刷分工具 自动学习|7.8k|-|07/12|
|173|[521xueweihan/GitHub520](https://github.com/521xueweihan/GitHub520)|:kissing_heart: 让你“爱”上 GitHub,解决访问时图裂、加载慢的问题。(无需安装)|7.8k|Python|10/29|
|174|[evil-huawei/evil-huawei](https://github.com/evil-huawei/evil-huawei)|Evil Huawei - 华为作过的恶|7.8k|JavaScript|07/02|
|175|[getgridea/gridea](https://github.com/getgridea/gridea)|✍️ A static blog writing client (一个静态博客写作客户端)|7.8k|CSS|10/23|
|176|[skywind3000/awesome-cheatsheets](https://github.com/skywind3000/awesome-cheatsheets)|超级速查表 - 编程语言、框架和开发工具的速查表,单个文件包含一切你需要知道的东西 :zap:|7.7k|Shell|09/13|
|177|[judasn/Linux-Tutorial](https://github.com/judasn/Linux-Tutorial)|《Java 程序员眼中的 Linux》|7.7k|Shell|07/05|
|178|[wangshub/Douyin-Bot](https://github.com/wangshub/Douyin-Bot)|😍 Python 抖音机器人,论如何在抖音上找到漂亮小姐姐? |7.6k|Python|09/08|
|179|[macrozheng/mall-swarm](https://github.com/macrozheng/mall-swarm)|mall-swarm是一套微服务商城系统,采用了 Spring Cloud Hoxton & Alibaba、Spring Boot 2.3、Oauth2、MyBatis、Docker、Elasticsearch、Kubernetes等核心技术,同时提供了基于Vue的管理后台方便快速搭建系统。mall-swarm在电商业务的基础集成了注册中心、配置中心、监控中心、网关等系统功能。文档齐全,附带全套Spring Cloud教程。|7.6k|Java|08/23|
|180|[doocs/jvm](https://github.com/doocs/jvm)|🤗 JVM 底层原理最全知识总结|7.5k|Java|10/21|
|181|[timqian/chinese-independent-blogs](https://github.com/timqian/chinese-independent-blogs)|中文独立博客列表|7.5k|JavaScript|10/28|
|182|[doocs/leetcode](https://github.com/doocs/leetcode)|😏 LeetCode solutions in any programming language 多种编程语言实现 LeetCode、《剑指 Offer(第 2 版)》、《程序员面试金典(第 6 版)》题解|7.5k|Java|10/28|
|183|[easzlab/kubeasz](https://github.com/easzlab/kubeasz)|使用Ansible脚本安装K8S集群,介绍组件交互原理,方便直接,不受国内网络环境影响|7.5k|Jinja|10/26|
|184|[bingoogolapple/BGAQRCode-Android](https://github.com/bingoogolapple/BGAQRCode-Android)|QRCode 扫描二维码、扫描条形码、相册获取图片后识别、生成带 Logo 二维码、支持微博微信 QQ 二维码扫描样式|7.4k|C|04/05|
|185|[Caldis/Mos](https://github.com/Caldis/Mos)|一个用于在 macOS 上平滑你的鼠标滚动效果或单独设置滚动方向的小工具, 让你的滚轮爽如触控板 A lightweight tool used to smooth scrolling and set scroll direction independently for your mouse on macOS|7.4k|Swift|06/05|
|186|[EZLippi/Tinyhttpd](https://github.com/EZLippi/Tinyhttpd)|Tinyhttpd 是J. David Blackstone在1999年写的一个不到 500 行的超轻量型 Http Server,用来学习非常不错,可以帮助我们真正理解服务器程序的本质。官网:http://tinyhttpd.sourceforge.net|7.5k|C|10/08|
|187|[chokcoco/CSS-Inspiration](https://github.com/chokcoco/CSS-Inspiration)|CSS Inspiration,在这里找到写 CSS 的灵感!|7.4k|CSS|10/22|
|188|[zhoutaoo/SpringCloud](https://github.com/zhoutaoo/SpringCloud)|基于SpringCloud2.1的微服务开发脚手架,整合了spring-security-oauth2、nacos、feign、sentinel、springcloud-gateway等。服务治理方面引入elasticsearch、skywalking、springboot-admin、zipkin等,让项目开发快速进入业务开发,而不需过多时间花费在架构搭建上。持续更新中|6.9k|Java|09/04|
|189|[luyishisi/Anti-Anti-Spider](https://github.com/luyishisi/Anti-Anti-Spider)|越来越多的网站具有反爬虫特性,有的用图片隐藏关键数据,有的使用反人类的验证码,建立反反爬虫的代码仓库,通过与不同特性的网站做斗争(无恶意)提高技术。(欢迎提交难以采集的网站)(因工作原因,项目暂停) |6.9k|Python|10/18|
|190|[panjf2000/ants](https://github.com/panjf2000/ants)|🐜🐜🐜 ants is a high-performance and low-cost goroutine pool in Go, inspired by fasthttp./ ants 是一个高性能且低损耗的 goroutine 池。|6.8k|Go|10/23|
|191|[amusi/CVPR2021-Papers-with-Code](https://github.com/amusi/CVPR2021-Papers-with-Code)|CVPR 2021 论文和开源项目合集|6.8k|-|07/11|
|192|[ACL4SSR/ACL4SSR](https://github.com/ACL4SSR/ACL4SSR)|SSR 去广告ACL规则/SS完整GFWList规则/Clash规则碎片,Telegram频道订阅地址|6.7k|-|10/23|
|193|[KunMinX/Jetpack-MVVM-Best-Practice](https://github.com/KunMinX/Jetpack-MVVM-Best-Practice)|是 难得一见 的 Jetpack MVVM 最佳实践!在 以简驭繁 的代码中,对 视图控制器 乃至 标准化开发模式 形成正确、深入的理解!|6.7k|Java|10/28|
|194|[goldze/MVVMHabit](https://github.com/goldze/MVVMHabit)|👕基于谷歌最新AAC架构,MVVM设计模式的一套快速开发库,整合Okhttp+RxJava+Retrofit+Glide等主流模块,满足日常开发需求。使用该框架可以快速开发一个高质量、易维护的Android应用。|6.7k|Java|10/25|
|195|[kaina404/FlutterDouBan](https://github.com/kaina404/FlutterDouBan)|🔥🔥🔥Flutter豆瓣客户端,Awesome Flutter Project,全网最100%还原豆瓣客户端。首页、书影音、小组、市集及个人中心,一个不拉。( https://img.xuvip.top/douyademo.mp4)|6.7k|Dart|08/01|
|196|[renzifeng/ZFPlayer](https://github.com/renzifeng/ZFPlayer)|Support customization of any player SDK and control layer(支持定制任何播放器SDK和控制层)|6.7k|Objective-C|10/13|
|197|[openspug/spug](https://github.com/openspug/spug)|开源运维平台:面向中小型企业设计的轻量级无Agent的自动化运维平台,整合了主机管理、主机批量执行、主机在线终端、文件在线上传下载、应用发布部署、在线任务计划、配置中心、监控、报警等一系列功能。|6.6k|JavaScript|10/28|
|198|[opsnull/follow-me-install-kubernetes-cluster](https://github.com/opsnull/follow-me-install-kubernetes-cluster)|和我一步步部署 kubernetes 集群|6.6k|Shell|06/04|
|199|[skyline75489/what-happens-when-zh_CN](https://github.com/skyline75489/what-happens-when-zh_CN)|What-happens-when 的中文翻译,原仓库 https://github.com/alex/what-happens-when|6.5k|-|07/01|
|200|[taowen/awesome-lowcode](https://github.com/taowen/awesome-lowcode)|国内低代码平台从业者交流|6.5k|-|10/29|
|201|[alibaba/otter](https://github.com/alibaba/otter)|阿里巴巴分布式数据库同步系统(解决中美异地机房)|6.9k|Java|10/05|
|202|[phodal/github](https://github.com/phodal/github)|GitHub 漫游指南- a Chinese ebook on how to build a good project on Github. Explore the users' behavior. Find some thing interest.|6.9k|Rich Text Format|10/28|
|203|[ljianshu/Blog](https://github.com/ljianshu/Blog)|关注基础知识,打造优质前端博客,公众号[前端工匠]的作者|6.8k|JavaScript|10/06|
|204|[ustbhuangyi/vue-analysis](https://github.com/ustbhuangyi/vue-analysis)|:thumbsup: Vue.js 源码分析|6.5k|JavaScript|10/06|
|205|[datawhalechina/leeml-notes](https://github.com/datawhalechina/leeml-notes)|李宏毅《机器学习》笔记,在线阅读地址:https://datawhalechina.github.io/leeml-notes|6.5k|-|09/16|
|206|[ElemeFE/v-charts](https://github.com/ElemeFE/v-charts)|基于 Vue2.0 和 ECharts 封装的图表组件📈📊|6.5k|JavaScript|04/06|
|207|[Exrick/xmall](https://github.com/Exrick/xmall)|基于SOA架构的分布式电商购物商城 前后端分离 前台商城:Vue全家桶 后台管理系统:Dubbo/SSM/Elasticsearch/Redis/MySQL/ActiveMQ/Shiro/Zookeeper等|6.4k|Java|07/28|
|208|[Tencent/QMUI_iOS](https://github.com/Tencent/QMUI_iOS)|QMUI iOS——致力于提高项目 UI 开发效率的解决方案|6.4k|Objective-C|09/01|
|209|[MorvanZhou/PyTorch-Tutorial](https://github.com/MorvanZhou/PyTorch-Tutorial)|Build your neural network easy and fast, 莫烦Python中文教学|6.3k|Jupyter Notebook|04/01|
|210|[Meituan-Dianping/walle](https://github.com/Meituan-Dianping/walle)|Android Signature V2 Scheme签名下的新一代渠道包打包神器|6.2k|Java|09/07|
|211|[PaddlePaddle/models](https://github.com/PaddlePaddle/models)|Pre-trained and Reproduced Deep Learning Models (『飞桨』官方模型库,包含多种学术前沿和工业场景验证的深度学习模型)|6.2k|Python|10/22|
|212|[fuzhengwei/CodeGuide](https://github.com/fuzhengwei/CodeGuide)|:books: 本代码库是作者小傅哥多年从事一线互联网 Java 开发的学习历程技术汇总,旨在为大家提供一个清晰详细的学习教程,侧重点更倾向编写Java核心内容。如果本仓库能为您提供帮助,请给予支持(关注、点赞、分享)!|6.2k|-|10/29|
|213|[wolverinn/Waking-Up](https://github.com/wolverinn/Waking-Up)|计算机基础(计算机网络/操作系统/数据库/Git...)面试问题全面总结,包含详细的follow-up question以及答案;全部采用【问题+追问+答案】的形式,即拿即用,直击互联网大厂面试:rocket:;可用于模拟面试、面试前复习、短期内快速备战面试...|6.2k|-|09/24|
|214|[smallnest/rpcx](https://github.com/smallnest/rpcx)|Best microservices framework in Go, like alibaba Dubbo, but with more features, Scale easily. Try it. Test it. If you feel it's better, use it! 𝐉𝐚𝐯𝐚有𝐝𝐮𝐛𝐛𝐨, 𝐆𝐨𝐥𝐚𝐧𝐠有𝐫𝐩𝐜𝐱!|6.2k|Go|10/25|
|215|[wuchangming/spy-debugger](https://github.com/wuchangming/spy-debugger)|微信调试,各种WebView样式调试、手机浏览器的页面真机调试。便捷的远程调试手机页面、抓包工具,支持:HTTP/HTTPS,无需USB连接设备。|6.2k|JavaScript|09/22|
|216|[Linzaer/Ultra-Light-Fast-Generic-Face-Detector-1MB](https://github.com/Linzaer/Ultra-Light-Fast-Generic-Face-Detector-1MB)| 💎1MB lightweight face detection model (1MB轻量级人脸检测模型)|6.1k|Python|04/26|
|217|[ymcui/Chinese-BERT-wwm](https://github.com/ymcui/Chinese-BERT-wwm)|Pre-Training with Whole Word Masking for Chinese BERT(中文BERT-wwm系列模型)|6.1k|Python|10/23|
|218|[nswbmw/node-in-debugging](https://github.com/nswbmw/node-in-debugging)|《Node.js 调试指南》|6.1k|-|09/03|
|219|[nilaoda/N_m3u8DL-CLI](https://github.com/nilaoda/N_m3u8DL-CLI)|[.NET] m3u8 downloader 开源的命令行m3u8/HLS/dash下载器,支持普通AES-128-CBC解密,多线程,自定义请求头等. 支持简体中文,繁体中文和英文. English Supported.|6.1k|C#|10/26|
|220|[gsdios/SDCycleScrollView](https://github.com/gsdios/SDCycleScrollView)|Autoscroll Banner. 无限循环图片、文字轮播器。|6.1k|Objective-C|08/03|
|221|[shidenggui/easytrader](https://github.com/shidenggui/easytrader)|提供同花顺客户端/国金/华泰客户端/雪球的基金、股票自动程序化交易以及自动打新,支持跟踪 joinquant /ricequant 模拟交易 和 实盘雪球组合, 量化交易组件|6.1k|Python|07/17|
|222|[Mikoto10032/DeepLearning](https://github.com/Mikoto10032/DeepLearning)|深度学习入门教程, 优秀文章, Deep Learning Tutorial|6.1k|Jupyter Notebook|10/21|
|223|[NLPchina/ansj_seg](https://github.com/NLPchina/ansj_seg)|ansj分词.ict的真正java实现.分词效果速度都超过开源版的ict. 中文分词,人名识别,词性标注,用户自定义词典|6.0k|Java|08/15|
|224|[Ewenwan/MVision](https://github.com/Ewenwan/MVision)|机器人视觉 移动机器人 VS-SLAM ORB-SLAM2 深度学习目标检测 yolov3 行为检测 opencv PCL 机器学习 无人驾驶|6.0k|C++|07/29|
|225|[nonstriater/Learn-Algorithms](https://github.com/nonstriater/Learn-Algorithms)|算法学习笔记|6.0k|C|10/28|
|226|[li-xiaojun/XPopup](https://github.com/li-xiaojun/XPopup)|🔥XPopup2.0版本重磅来袭,2倍以上性能提升,带来可观的动画性能优化和交互细节的提升!!!功能强大,交互优雅,动画丝滑的通用弹窗!可以替代Dialog,PopupWindow,PopupMenu,BottomSheet,DrawerLayout,Spinner等组件,自带十几种效果良好的动画, 支持完全的UI和动画自定义!(Powerful and Beautiful Popup for Android,can absolutely replace Dialog,PopupWindow,PopupMenu,BottomSheet,DrawerLayout,Spinner. With bu ...|6.0k|Java|10/27|
|227|[QUANTAXIS/QUANTAXIS](https://github.com/QUANTAXIS/QUANTAXIS)|QUANTAXIS 支持任务调度 分布式部署的 股票/期货/期权/港股/虚拟货币 数据/回测/模拟/交易/可视化/多账户 纯本地量化解决方案|6.0k|Python|10/21|
|228|[wowchemy/wowchemy-hugo-themes](https://github.com/wowchemy/wowchemy-hugo-themes)|🔥 Hugo website builder, Hugo themes & Hugo CMS. No code, build with widgets! 创建在线课程,学术简历或初创网站。|6.0k|HTML|10/28|
|229|[zouzg/mybatis-generator-gui](https://github.com/zouzg/mybatis-generator-gui)|mybatis-generator界面工具,让你生成代码更简单更快捷|6.0k|Java|07/05|
|230|[hotoo/pinyin](https://github.com/hotoo/pinyin)|:cn: 汉字拼音 ➜ hàn zì pīn yīn|6.0k|JavaScript|10/21|
|231|[xianhu/LearnPython](https://github.com/xianhu/LearnPython)|以撸代码的形式学习Python|6.0k|Jupyter Notebook|09/26|
|232|[yezihaohao/react-admin](https://github.com/yezihaohao/react-admin)|:sparkles: react-admin system solution : react 后台管理系统解决方案|5.9k|TypeScript|09/10|
|233|[eastlakeside/interpy-zh](https://github.com/eastlakeside/interpy-zh)|📘《Python进阶》(Intermediate Python 中文版)|5.9k|CSS|08/22|
|234|[kangvcar/InfoSpider](https://github.com/kangvcar/InfoSpider)|INFO-SPIDER 是一个集众多数据源于一身的爬虫工具箱🧰,旨在安全快捷的帮助用户拿回自己的数据,工具代码开源,流程透明。支持数据源包括GitHub、QQ邮箱、网易邮箱、阿里邮箱、新浪邮箱、Hotmail邮箱、Outlook邮箱、京东、淘宝、支付宝、中国移动、中国联通、中国电信、知乎、哔哩哔哩、网易云音乐、QQ好友、QQ群、生成朋友圈相册、浏览器浏览历史、12306、博客园、CSDN博客、开源中国博客、简书。|5.9k|Python|09/08|
|235|[fengdu78/Data-Science-Notes](https://github.com/fengdu78/Data-Science-Notes)|数据科学的笔记以及资料搜集|5.9k|Jupyter Notebook|08/16|
|236|[SecWiki/windows-kernel-exploits](https://github.com/SecWiki/windows-kernel-exploits)|windows-kernel-exploits Windows平台提权漏洞集合|5.8k|C|06/12|
|237|[selierlin/Share-SSR-V2ray](https://github.com/selierlin/Share-SSR-V2ray)|🃏 Free SS/SSR/V2ray 免费分享节点账号信息网站|5.8k|-|10/15|
|238|[ityouknow/spring-cloud-examples](https://github.com/ityouknow/spring-cloud-examples)|Spring Cloud 学习案例,服务发现、服务治理、链路追踪、服务监控等|5.8k|Java|08/21|
|239|[PaddlePaddle/Paddle-Lite](https://github.com/PaddlePaddle/Paddle-Lite)|Multi-platform high performance deep learning inference engine (『飞桨』多平台高性能深度学习预测引擎)|5.8k|C++|10/28|
|240|[Tencent/Shadow](https://github.com/Tencent/Shadow)|零反射全动态Android插件框架|5.7k|Java|10/29|
|241|[metersphere/metersphere](https://github.com/metersphere/metersphere)|MeterSphere is an End-to-End open source continuous testing platform. MeterSphere 是一站式开源持续测试平台,涵盖测试跟踪、接口测试、性能测试、团队协作等功能,全面兼容 JMeter、Postman、Swagger 等开源、主流标准。|5.7k|Java|10/28|
|242|[HcySunYang/vue-design](https://github.com/HcySunYang/vue-design)|📖 master分支:《渲染器》|5.7k|JavaScript|10/11|
|243|[sparklemotion/nokogiri](https://github.com/sparklemotion/nokogiri)|Nokogiri (鋸) makes it easy and painless to work with XML and HTML from Ruby.|5.7k|C|10/29|
|244|[wangzhiwubigdata/God-Of-BigData](https://github.com/wangzhiwubigdata/God-Of-BigData)|专注大数据学习面试,大数据成神之路开启。Flink/Spark/Hadoop/Hbase/Hive...|5.7k|-|10/13|
|245|[sohutv/cachecloud](https://github.com/sohutv/cachecloud)|搜狐视频(sohu tv)Redis私有云平台|5.7k|Java|06/08|
|246|[lancopku/pkuseg-python](https://github.com/lancopku/pkuseg-python)|pkuseg多领域中文分词工具; The pkuseg toolkit for multi-domain Chinese word segmentation|5.6k|Python|10/19|
|247|[senghoo/golang-design-pattern](https://github.com/senghoo/golang-design-pattern)|设计模式 Golang实现-《研磨设计模式》读书笔记|5.6k|Go|05/12|
|248|[xiaolai/everyone-can-use-english](https://github.com/xiaolai/everyone-can-use-english)|人人都能用英语|5.6k|-|10/28|
|249|[febsteam/FEBS-Shiro](https://github.com/febsteam/FEBS-Shiro)|Spring Boot 2.4.2,Shiro1.6.0 & Layui 2.5.6 权限管理系统。预览地址:http://47.104.70.138:8080/login|5.6k|Java|08/24|
|250|[Vay-keen/Machine-learning-learning-notes](https://github.com/Vay-keen/Machine-learning-learning-notes)|周志华《机器学习》又称西瓜书是一本较为全面的书籍,书中详细介绍了机器学习领域不同类型的算法(例如:监督学习、无监督学习、半监督学习、强化学习、集成降维、特征选择等),记录了本人在学习过程中的理解思路与扩展知识点,希望对新人阅读西瓜书有所帮助!|5.6k|-|08/01|
|251|[DataV-Team/DataV](https://github.com/DataV-Team/DataV)|Vue数据可视化组件库(类似阿里DataV,大屏数据展示),提供SVG的边框及装饰、图表、水位图、飞线图等组件,简单易用,长期更新(React版已发布)|5.6k|Vue|05/20|
|252|[lining0806/PythonSpiderNotes](https://github.com/lining0806/PythonSpiderNotes)|Python入门网络爬虫之精华版|5.6k|Python|06/21|
|253|[MrXujiang/h5-Dooring](https://github.com/MrXujiang/h5-Dooring)|H5 Page Maker, H5 Editor, LowCode. Make H5 as easy as building blocks. 让H5制作像搭积木一样简单, 轻松搭建H5页面, H5网站, PC端网站,LowCode平台.|5.6k|JavaScript|10/03|
|254|[simplezhli/flutter_deer](https://github.com/simplezhli/flutter_deer)|🦌 Flutter 练习项目(包括集成测试、可访问性测试)。内含完整UI设计图,更贴近真实项目的练习。Flutter practice project. Includes a complete UI design and exercises that are closer to real projects.|5.4k|Dart|10/27|
|255|[ecomfe/echarts-for-weixin](https://github.com/ecomfe/echarts-for-weixin)|Apache ECharts (incubating) 的微信小程序版本|5.4k|JavaScript|09/22|
|256|[javascript-tutorial/zh.javascript.info](https://github.com/javascript-tutorial/zh.javascript.info)|现代 JavaScript 教程(The Modern JavaScript Tutorial)|5.4k|HTML|10/24|
|257|[miloyip/json-tutorial](https://github.com/miloyip/json-tutorial)|从零开始的 JSON 库教程|5.4k|C|10/21|
|258|[jobbole/awesome-c-cn](https://github.com/jobbole/awesome-c-cn)|C 资源大全中文版,包括了:构建系统、编译器、数据库、加密、初中高的教程/指南、书籍、库等。|5.3k|-|08/05|
|259|[panjf2000/gnet](https://github.com/panjf2000/gnet)|🚀 gnet is a high-performance, lightweight, non-blocking, event-driven networking framework written in pure Go./ gnet 是一个高性能、轻量级、非阻塞的事件驱动 Go 网络框架。|5.4k|Go|10/24|
|260|[weolar/miniblink49](https://github.com/weolar/miniblink49)|a lighter, faster browser kernel of blink to integrate HTML UI in your app. 一个小巧、轻量的浏览器内核,用来取代wke和libcef|5.3k|C++|09/23|
|261|[Sky24n/flutter_wanandroid](https://github.com/Sky24n/flutter_wanandroid)|🔥🔥🔥 基于Google Flutter的WanAndroid客户端,支持Android和iOS。包括BLoC、RxDart 、国际化、主题色、启动页、引导页!|5.3k|Dart|05/21|
|262|[h2pl/Java-Tutorial](https://github.com/h2pl/Java-Tutorial)|【Java工程师面试复习指南】本仓库涵盖大部分Java程序员所需要掌握的核心知识,整合了互联网上的很多优质Java技术文章,力求打造为最完整最实用的Java开发者学习指南,如果对你有帮助,给个star告诉我吧,谢谢!|5.3k|Java|05/14|
|263|[liuwons/wxBot](https://github.com/liuwons/wxBot)|Python网页微信API|5.3k|Python|04/07|
|264|[Jrohy/multi-v2ray](https://github.com/Jrohy/multi-v2ray)|v2ray/xray多用户管理部署程序|5.3k|Python|10/15|
|265|[roboticcam/machine-learning-notes](https://github.com/roboticcam/machine-learning-notes)|My continuously updated Machine Learning, Probabilistic Models and Deep Learning notes and demos (2000+ slides) 我不间断更新的机器学习,概率模型和深度学习的讲义(2000+页)和视频链接|5.3k|Jupyter Notebook|10/13|
|266|[changmingxie/tcc-transaction](https://github.com/changmingxie/tcc-transaction)|tcc-transaction是TCC型事务java实现|5.2k|Java|09/29|
|267|[gzu-liyujiang/AndroidPicker](https://github.com/gzu-liyujiang/AndroidPicker)|安卓选择器类库,包括日期及时间选择器(可用于出生日期、营业时间等)、单项选择器(可用于性别、民族、职业、学历、星座等)、二三级联动选择器(可用于车牌号、基金定投日期等)、城市地址选择器(分省级、地市级及区县级)、数字选择器(可用于年龄、身高、体重、温度等)、日历选日期择器(可用于酒店及机票预定日期)、颜色选择器、文件及目录选择器、图片选择器等……WheelPicker/DatePicker/TimePicker/OptionPicker/NumberPicker/LinkagePicker/AddressPicker/CarNumberPicker/CalendarPicker/ColorPi ...|5.2k|Java|10/28|
|268|[shengcaishizhan/kkndme_tianya](https://github.com/shengcaishizhan/kkndme_tianya)|天涯 kkndme 神贴聊房价|5.2k|-|10/25|
|269|[OpenAtomFoundation/TencentOS-tiny](https://github.com/OpenAtomFoundation/TencentOS-tiny)|腾讯物联网终端操作系统|5.2k|C|09/29|
|270|[527515025/springBoot](https://github.com/527515025/springBoot)|springboot 框架与其它组件结合如 jpa、mybatis、websocket、security、shiro、cache等|5.2k|Java|06/05|
|271|[lcdevelop/ChatBotCourse](https://github.com/lcdevelop/ChatBotCourse)|自己动手做聊天机器人教程|5.2k|Python|09/06|
|272|[giantray/stackoverflow-java-top-qa](https://github.com/giantray/stackoverflow-java-top-qa)|stackoverflow上Java相关回答整理翻译|5.2k|-|10/07|
|273|[chyroc/WechatSogou](https://github.com/chyroc/WechatSogou)|基于搜狗微信搜索的微信公众号爬虫接口|5.2k|Python|10/09|
|274|[wb14123/seq2seq-couplet](https://github.com/wb14123/seq2seq-couplet)|Play couplet with seq2seq model. 用深度学习对对联。|5.1k|Python|10/15|
|275|[csseky/cskaoyan](https://github.com/csseky/cskaoyan)|提供计算机考研和软件工程考研专业的各个学校 考研真题|5.1k|-|09/24|
|276|[go-admin-team/go-admin](https://github.com/go-admin-team/go-admin)|基于Gin + Vue + Element UI的前后端分离权限管理系统脚手架(包含了:多租户的支持,基础用户管理功能,jwt鉴权,代码生成器,RBAC资源控制,表单构建,定时任务等)3分钟构建自己的中后台项目;文档:https://doc.go-admin.dev Demo: https://www.go-admin.dev Antd beta版本:https://preview.go-admin.dev|5.1k|Go|10/22|
|277|[EasyDarwin/EasyDarwin](https://github.com/EasyDarwin/EasyDarwin)|open source、high performance、industrial rtsp streaming server,a lot of optimization on streaming relay,KeyFrame cache,RESTful,and web management,also EasyDarwin support distributed load balancing,a simple streaming media cloud platform architecture.高性能开源RTSP流媒体服务器,基于go语言研发,维护和优化:RTSP推模式转发、RTSP拉模式转发、 ...|5.1k|Go|10/26|
|278|[gedoor/legado](https://github.com/gedoor/legado)|阅读3.0, 阅读是一款可以自定义来源阅读网络内容的工具,为广大网络文学爱好者提供一种方便、快捷舒适的试读体验。|5.1k|Kotlin|10/27|
|279|[623637646/996.Leave](https://github.com/623637646/996.Leave)|逃离996|4.5k|-|06/13|
|280|[jobbole/awesome-go-cn](https://github.com/jobbole/awesome-go-cn)|Go 资源大全中文版, 内容包括:Web框架、模板引擎、表单、身份认证、数据库、ORM框架、图片处理、文本处理、自然语言处理、机器学习、日志、代码分析、教程和(电子)书等。由「开源前哨」和「Go开发大全」微信团队维护。|4.5k|-|08/05|
|281|[zhanghai/Douya](https://github.com/zhanghai/Douya)|开源的 Material Design 豆瓣客户端(A Material Design app for douban.com)|4.5k|Java|06/15|
|282|[meng-chuan/Unlock-netease-cloud-music](https://github.com/meng-chuan/Unlock-netease-cloud-music)|解锁网易云音乐客户端变灰歌曲|4.5k|JavaScript|05/12|
|283|[P3TERX/Actions-OpenWrt](https://github.com/P3TERX/Actions-OpenWrt)|A template for building OpenWrt with GitHub Actions 使用 GitHub Actions 云编译 OpenWrt|4.5k|Shell|10/20|
|284|[981011512/--](https://github.com/981011512/--)|停车场系统源码,停车场小程序,智能停车,Parking system,【功能介绍】:①兼容市面上主流的多家相机,理论上兼容所有硬件,可灵活扩展,②相机识别后数据自动上传到云端并记录,校验相机唯一id和硬件序列号,防止非法数据录入,③用户手机查询停车记录详情可自主缴费(支持微信,支付宝,银行接口支付,支持每个停车场指定不同的商户进行收款),支付后出场在免费时间内会自动抬杆。④支持app上查询附近停车场(导航,可用车位数,停车场费用,优惠券,评分,评论等),可预约车位。⑤断电断网支持岗亭人员使用app可接管硬件进行停车记录的录入。 【技术架构】:后端开发语言java,框架oauth2+spring ...|4.5k|Java|09/09|
|285|[techGay/v9porn](https://github.com/techGay/v9porn)|9*Porn Android 客户端,突破游客每天观看10次视频的限制,还可以下载视频|4.5k|Java|04/23|
|286|[apachecn/sklearn-doc-zh](https://github.com/apachecn/sklearn-doc-zh)|:book: [译] scikit-learn(sklearn) 中文文档|4.5k|CSS|10/14|
|287|[itorr/nbnhhsh](https://github.com/itorr/nbnhhsh)|😩「能不能好好说话?」 拼音首字母缩写翻译工具|4.5k|HTML|07/09|
|288|[hustcc/JS-Sorting-Algorithm](https://github.com/hustcc/JS-Sorting-Algorithm)|一本关于排序算法的 GitBook 在线书籍 《十大经典排序算法》,多语言实现。|4.4k|Java|04/13|
|289|[GavinZhuLei/vue-form-making](https://github.com/GavinZhuLei/vue-form-making)|A visual form designer/generator base on Vue.js, make form development simple and efficient.(基于Vue的可视化表单设计器,让表单开发简单而高效。)|4.4k|Vue|09/03|
|290|[qunten/iOS-Core-Animation-Advanced-Techniques](https://github.com/qunten/iOS-Core-Animation-Advanced-Techniques)|翻译|4.4k|-|08/13|
|291|[feiskyer/kubernetes-handbook](https://github.com/feiskyer/kubernetes-handbook)|Kubernetes Handbook (Kubernetes指南) https://kubernetes.feisky.xyz|4.4k|Makefile|10/08|
|292|[ZXZxin/ZXBlog](https://github.com/ZXZxin/ZXBlog)|记录各种学习笔记(算法、Java、数据库、并发......)|4.9k|Java|09/26|
|293|[yipianfengye/android-zxingLibrary](https://github.com/yipianfengye/android-zxingLibrary)|几行代码快速集成二维码扫描功能|4.9k|Java|08/21|
|294|[fanux/sealos](https://github.com/fanux/sealos)|一条命令离线安装高可用kubernetes,3min装完,700M,100年证书,生产环境稳如老狗|4.9k|Go|10/09|
|295|[ly525/luban-h5](https://github.com/ly525/luban-h5)|[WIP]en: web design tool mobile page builder/editor mini webflow for mobile page. zh: 类似易企秀的H5制作、建站工具、可视化搭建系统.|4.9k|JavaScript|10/23|
|296|[fecshop/yii2_fecshop](https://github.com/fecshop/yii2_fecshop)|yii2 ( PHP ) fecmall(fecshop) core code used for ecommerce shop 多语言多货币多入口的开源电商 B2C 商城,支持移动端vue, app, html5,微信小程序微店,微信小程序商城等|4.8k|PHP|09/02|
|297|[SecWiki/sec-chart](https://github.com/SecWiki/sec-chart)|安全思维导图集合|4.8k|-|09/02|
|298|[billryan/resume](https://github.com/billryan/resume)|An elegant \LaTeX\ résumé template. 大陆镜像 https://gods.coding.net/p/resume/git|4.8k|TeX|09/05|
|299|[sorenduan/awesome-java-books](https://github.com/sorenduan/awesome-java-books)|Java开发者技术书籍大全 - Java入门书籍,Java基础及进阶书籍,框架与中间件,架构设计,设计模式,数学与算法,JVM周边语言,项目管理&领导力&流程,职业素养与个人成长,格局与视野,面试参考书等。|4.8k|-|10/20|
|300|[nl8590687/ASRT_SpeechRecognition](https://github.com/nl8590687/ASRT_SpeechRecognition)|A Deep-Learning-Based Chinese Speech Recognition System 基于深度学习的中文语音识别系统|4.8k|Python|09/08|
⬆ [回到目录](#目录)
<br/>
## Java
|#|Repository|Description|Stars|Language|Updated|
|:-|:-|:-|:-|:-|:-|
|1|[CyC2018/CS-Notes](https://github.com/CyC2018/CS-Notes)|:books: 技术面试必备基础知识、Leetcode、计算机操作系统、计算机网络、系统设计|140.8k|Java|10/22|
|2|[Snailclimb/JavaGuide](https://github.com/Snailclimb/JavaGuide)|「Java学习+面试指南」一份涵盖大部分 Java 程序员所需要掌握的核心知识。准备 Java 面试,首选 JavaGuide!|112.8k|Java|10/28|
|3|[MisterBooo/LeetCodeAnimation](https://github.com/MisterBooo/LeetCodeAnimation)|Demonstrate all the questions on LeetCode in the form of animation.(用动画的形式呈现解LeetCode题目的思路)|67.5k|Java|06/24|
|4|[macrozheng/mall](https://github.com/macrozheng/mall)|mall项目是一套电商系统,包括前台商城系统及后台管理系统,基于SpringBoot+MyBatis实现,采用Docker容器化部署。 前台商城系统包含首页门户、商品推荐、商品搜索、商品展示、购物车、订单流程、会员中心、客户服务、帮助中心等模块。 后台管理系统包含商品管理、订单管理、会员管理、促销管理、运营管理、内容管理、统计报表、财务管理、权限管理、设置等模块。|53.7k|Java|10/26|
|5|[kon9chunkit/GitHub-Chinese-Top-Charts](https://github.com/kon9chunkit/GitHub-Chinese-Top-Charts)|:cn: GitHub中文排行榜,帮助你发现高分优秀中文项目、更高效地吸收国人的优秀经验成果;榜单每周更新一次,敬请关注!|39.3k|Java|10/25|
|6|[geekxh/hello-algorithm](https://github.com/geekxh/hello-algorithm)|🌍 针对小白的算法训练 包括四部分:①.算法基础 ②.力扣图解 ③.大厂面经 ④.CS_汇总 附:1、千本开源电子书 2、百张技术思维导图(项目花了上百小时,希望可以点 star 支持,🌹感谢~)|29.0k|Java|10/11|
|7|[alibaba/arthas](https://github.com/alibaba/arthas)|Alibaba Java Diagnostic Tool Arthas/Alibaba Java诊断利器Arthas|27.5k|Java|10/28|
|8|[ityouknow/spring-boot-examples](https://github.com/ityouknow/spring-boot-examples)|about learning Spring Boot via examples. Spring Boot 教程、技术栈示例代码,快速简单上手教程。 |26.5k|Java|06/14|
|9|[jeecgboot/jeecg-boot](https://github.com/jeecgboot/jeecg-boot)|「企业级低代码平台」前后端分离架构SpringBoot 2.x,SpringCloud,Ant Design&Vue,Mybatis-plus,Shiro,JWT。强大的代码生成器让前后端代码一键生成,无需写任何代码! 引领新的开发模式OnlineCoding->代码生成->手工MERGE,帮助Java项目解决70%重复工作,让开发更关注业务,既能快速提高效率,帮助公司节省成本,同时又不失灵活性。|25.6k|Java|10/27|
|10|[proxyee-down-org/proxyee-down](https://github.com/proxyee-down-org/proxyee-down)|http下载工具,基于http代理,支持多连接分块下载|25.3k|Java|06/05|
|11|[alibaba/druid](https://github.com/alibaba/druid)|阿里云计算平台DataWorks(https://help.aliyun.com/document_detail/137663.html) 团队出品,为监控而生的数据库连接池|24.7k|Java|10/20|
|12|[xkcoding/spring-boot-demo](https://github.com/xkcoding/spring-boot-demo)|该项目已成功集成 actuator(监控)、admin(可视化监控)、logback(日志)、aopLog(通过AOP记录web请求日志)、统一异常处理(json级别和页面级别)、freemarker(模板引擎)、thymeleaf(模板引擎)、Beetl(模板引擎)、Enjoy(模板引擎)、JdbcTemplate(通用JDBC操作数据库)、JPA(强大的ORM框架)、mybatis(强大的ORM框架)、通用Mapper(快速操作Mybatis)、PageHelper(通用的Mybatis分页插件)、mybatis-plus(快速操作Mybatis)、BeetlSQL(强大的ORM框架)、u ...|23.8k|Java|10/27|
|13|[scwang90/SmartRefreshLayout](https://github.com/scwang90/SmartRefreshLayout)|🔥下拉刷新、上拉加载、二级刷新、淘宝二楼、RefreshLayout、OverScroll,Android智能下拉刷新框架,支持越界回弹、越界拖动,具有极强的扩展性,集成了几十种炫酷的Header和 Footer。|23.1k|Java|05/24|
|14|[qiurunze123/miaosha](https://github.com/qiurunze123/miaosha)|⭐⭐⭐⭐秒杀系统设计与实现.互联网工程师进阶与分析🙋🐓|22.7k|Java|06/04|
|15|[lenve/vhr](https://github.com/lenve/vhr)|微人事是一个前后端分离的人力资源管理系统,项目采用SpringBoot+Vue开发。|22.6k|Java|10/28|
|16|[wuyouzhuguli/SpringAll](https://github.com/wuyouzhuguli/SpringAll)|循序渐进,学习Spring Boot、Spring Boot & Shiro、Spring Batch、Spring Cloud、Spring Cloud Alibaba、Spring Security & Spring Security OAuth2,博客Spring系列源码:https://mrbird.cc|22.0k|Java|08/30|
|17|[alibaba/easyexcel](https://github.com/alibaba/easyexcel)|快速、简单避免OOM的java处理Excel工具|21.6k|Java|10/21|
|18|[halo-dev/halo](https://github.com/halo-dev/halo)|✍ 一款优秀的开源博客发布应用。|20.1k|Java|10/28|
|19|[xuxueli/xxl-job](https://github.com/xuxueli/xxl-job)|A distributed task scheduling framework.(分布式任务调度平台XXL-JOB)|19.8k|Java|10/21|
|20|[didi/DoraemonKit](https://github.com/didi/DoraemonKit)|一款面向泛前端产品研发全生命周期的效率平台。|18.1k|Java|10/28|
|21|[alibaba/Sentinel](https://github.com/alibaba/Sentinel)|A powerful flow control component enabling reliability, resilience and monitoring for microservices. (面向云原生微服务的高可用流控防护组件)|17.7k|Java|10/28|
|22|[CarGuo/GSYVideoPlayer](https://github.com/CarGuo/GSYVideoPlayer)|视频播放器(IJKplayer、ExoPlayer、MediaPlayer),HTTPS,支持弹幕,外挂字幕,支持滤镜、水印、gif截图,片头广告、中间广告,多个同时播放,支持基本的拖动,声音、亮度调节,支持边播边缓存,支持视频自带rotation的旋转(90,270之类),重力旋转与手动旋转的同步支持,支持列表播放 ,列表全屏动画,视频加载速度,列表小窗口支持拖动,动画效果,调整比例,多分辨率切换,支持切换播放器,进度条小窗口预览,列表切换详情页面无缝播放,rtsp、concat、mpeg。 |16.8k|Java|10/15|
|23|[elunez/eladmin](https://github.com/elunez/eladmin)|项目基于 Spring Boot 2.1.0 、 Jpa、 Spring Security、redis、Vue的前后端分离的后台管理系统,项目采用分模块开发方式, 权限控制采用 RBAC,支持数据字典与数据权限管理,支持一键生成前后端代码,支持动态路由|16.6k|Java|10/14|
|24|[shuzheng/zheng](https://github.com/shuzheng/zheng)|基于Spring+SpringMVC+Mybatis分布式敏捷开发系统架构,提供整套公共微服务服务模块:集中权限管理(单点登录)、内容管理、支付中心、用户管理(支持第三方登录)、微信平台、存储系统、配置中心、日志分析、任务和通知等,支持服务治理、监控和追踪,努力为中小型企业打造全方位J2EE企业级开发解决方案。|16.1k|Java|09/21|
|25|[dianping/cat](https://github.com/dianping/cat)|CAT 作为服务端项目基础组件,提供了 Java, C/C++, Node.js, Python, Go 等多语言客户端,已经在美团点评的基础架构中间件框架(MVC框架,RPC框架,数据库框架,缓存框架等,消息队列,配置系统等)深度集成,为美团点评各业务线提供系统丰富的性能指标、健康状况、实时告警等。|16.0k|Java|09/09|
|26|[JeffLi1993/springboot-learning-example](https://github.com/JeffLi1993/springboot-learning-example)|spring boot 实践学习案例,是 spring boot 初学者及核心技术巩固的最佳实践。另外写博客,用 OpenWrite。|14.6k|Java|10/11|
|27|[dyc87112/SpringBoot-Learning](https://github.com/dyc87112/SpringBoot-Learning)|《Spring Boot基础教程》,2.x版本持续连载中!点击下方链接直达教程目录!|13.7k|Java|10/12|
|28|[alibaba/ARouter](https://github.com/alibaba/ARouter)|💪 A framework for assisting in the renovation of Android componentization (帮助 Android App 进行组件化改造的路由框架)|13.5k|Java|09/13|
|29|[Tencent/QMUI_Android](https://github.com/Tencent/QMUI_Android)|提高 Android UI 开发效率的 UI 库|13.2k|Java|10/25|
|30|[Bigkoo/Android-PickerView](https://github.com/Bigkoo/Android-PickerView)|This is a picker view for android , support linkage effect, timepicker and optionspicker.(时间选择器、省市区三级联动)|12.9k|Java|06/28|
|31|[justauth/JustAuth](https://github.com/justauth/JustAuth)|🏆Gitee 最有价值开源项目 🚀:100: 小而全而美的第三方登录开源组件。目前已支持Github、Gitee、微博、钉钉、百度、Coding、腾讯云开发者平台、OSChina、支付宝、QQ、微信、淘宝、Google、Facebook、抖音、领英、小米、微软、今日头条、Teambition、StackOverflow、Pinterest、人人、华为、企业微信、酷家乐、Gitlab、美团、饿了么、推特、飞书、京东、阿里云、喜马拉雅、Amazon、Slack和 Line 等第三方平台的授权登录。 Login, so easy!|12.3k|Java|10/18|
|32|[YunaiV/SpringBoot-Labs](https://github.com/YunaiV/SpringBoot-Labs)|一个涵盖六个专栏:Spring Boot 2.X、Spring Cloud、Spring Cloud Alibaba、Dubbo、分布式消息队列、分布式事务的仓库。希望胖友小手一抖,右上角来个 Star,感恩 1024|12.1k|Java|09/21|
|33|[JessYanCoding/AndroidAutoSize](https://github.com/JessYanCoding/AndroidAutoSize)|🔥 A low-cost Android screen adaptation solution (今日头条屏幕适配方案终极版,一个极低成本的 Android 屏幕适配方案).|12.0k|Java|06/24|
|34|[Tencent/APIJSON](https://github.com/Tencent/APIJSON)|🚀 零代码、热更新、全自动 ORM 库,后端接口和文档零代码,前端(客户端) 定制返回 JSON 的数据和结构。 🚀 A JSON Transmission Protocol and an ORM Library for automatically providing APIs and Docs.|11.9k|Java|10/26|
|35|[youth5201314/banner](https://github.com/youth5201314/banner)|🔥🔥🔥Banner 2.0 来了!Android广告图片轮播控件,内部基于ViewPager2实现,Indicator和UI都可以自定义。|11.6k|Java|07/11|
|36|[seaswalker/spring-analysis](https://github.com/seaswalker/spring-analysis)|Spring源码阅读|11.1k|Java|06/05|
|37|[zhisheng17/flink-learning](https://github.com/zhisheng17/flink-learning)|flink learning blog. http://www.54tianzhisheng.cn/ 含 Flink 入门、概念、原理、实战、性能调优、源码解析等内容。涉及 Flink Connector、Metrics、Library、DataStream API、Table API & SQL 等内容的学习案例,还有 Flink 落地应用的大型项目案例(PVUV、日志存储、百亿数据实时去重、监控告警)分享。欢迎大家支持我的专栏《大数据实时计算引擎 Flink 实战与性能优化》|11.0k|Java|10/08|
|38|[LuckSiege/PictureSelector](https://github.com/LuckSiege/PictureSelector)|Picture Selector Library for Android or 图片选择器|10.9k|Java|10/27|
|39|[pagehelper/Mybatis-PageHelper](https://github.com/pagehelper/Mybatis-PageHelper)|Mybatis通用分页插件|10.7k|Java|10/08|
|40|[hyb1996/Auto.js](https://github.com/hyb1996/Auto.js)|A UiAutomator on android, does not need root access(安卓平台上的JavaScript自动化工具)|10.7k|Java|10/17|
|41|[heibaiying/BigData-Notes](https://github.com/heibaiying/BigData-Notes)|大数据入门指南 :star:|10.7k|Java|05/12|
|42|[frank-lam/fullstack-tutorial](https://github.com/frank-lam/fullstack-tutorial)|🚀 fullstack tutorial 2021,后台技术栈/架构师之路/全栈开发社区,春招/秋招/校招/面试|10.2k|Java|09/30|
|43|[gyf-dev/ImmersionBar](https://github.com/gyf-dev/ImmersionBar)|android 4.4以上沉浸式状态栏和沉浸式导航栏管理,适配横竖屏切换、刘海屏、软键盘弹出等问题,可以修改状态栏字体颜色和导航栏图标颜色,以及不可修改字体颜色手机的适配,适用于Activity、Fragment、DialogFragment、Dialog,PopupWindow,一句代码轻松实现,以及对bar的其他设置,详见README。简书请参考:http://www.jianshu.com/p/2a884e211a62|9.9k|Java|10/22|
|44|[macrozheng/mall-learning](https://github.com/macrozheng/mall-learning)|mall学习教程,架构、业务、技术要点全方位解析。mall项目(40k+star)是一套电商系统,使用现阶段主流技术实现。涵盖了SpringBoot 2.3.0、MyBatis 3.4.6、Elasticsearch 7.6.2、RabbitMQ 3.7.15、Redis 5.0、MongoDB 4.2.5、Mysql5.7等技术,采用Docker容器化部署。|9.9k|Java|10/24|
|45|[alibaba/DataX](https://github.com/alibaba/DataX)|DataX是阿里云DataWorks数据集成的开源版本。|9.9k|Java|10/23|
|46|[daniulive/SmarterStreaming](https://github.com/daniulive/SmarterStreaming)|业内为数不多致力于极致体验的超强全自研跨平台(windows/android/iOS)流媒体内核,通过模块化自由组合,支持实时RTMP推流、RTSP推流、RTMP播放器、RTSP播放器、录像、多路流媒体转发、音视频导播、动态视频合成、音频混音、直播互动、内置轻量级RTSP服务等,比快更快,业界真正靠谱的超低延迟直播SDK(1秒内,低延迟模式下200~400ms)。|9.8k|Java|08/07|
|47|[chefyuan/algorithm-base](https://github.com/chefyuan/algorithm-base)|专门为刚开始刷题的同学准备的算法基地,没有最细只有更细,立志用动画将晦涩难懂的算法说的通俗易懂!|9.2k|Java|10/15|
|48|[paascloud/paascloud-master](https://github.com/paascloud/paascloud-master)|spring cloud + vue + oAuth2.0全家桶实战,前后端分离模拟商城,完整的购物流程、后端运营平台,可以实现快速搭建企业级微服务项目。支持微信登录等三方登录。|9.2k|Java|04/23|
|49|[lihengming/spring-boot-api-project-seed](https://github.com/lihengming/spring-boot-api-project-seed)|:seedling::rocket:一个基于Spring Boot & MyBatis的种子项目,用于快速构建中小型API、RESTful API项目~|8.9k|Java|07/21|
|50|[hackware1993/MagicIndicator](https://github.com/hackware1993/MagicIndicator)|A powerful, customizable and extensible ViewPager indicator framework. As the best alternative of ViewPagerIndicator, TabLayout and PagerSlidingTabStrip —— 强大、可定制、易扩展的 ViewPager 指示器框架。是ViewPagerIndicator、TabLayout、PagerSlidingTabStrip的最佳替代品。支持角标,更支持在非ViewPager场景下使用(使用hide()、show()切换Fragment或使用se ...|8.9k|Java|06/20|
|51|[DuGuQiuBai/Java](https://github.com/DuGuQiuBai/Java)|27天成为Java大神|8.8k|Java|05/20|
|52|[GcsSloop/AndroidNote](https://github.com/GcsSloop/AndroidNote)|安卓学习笔记|8.4k|Java|05/25|
|53|[newbee-ltd/newbee-mall](https://github.com/newbee-ltd/newbee-mall)|🔥 🎉newbee-mall 项目(新蜂商城)是一套电商系统,包括 newbee-mall 商城系统及 newbee-mall-admin 商城后台管理系统,基于 Spring Boot 2.X 及相关技术栈开发。 前台商城系统包含首页门户、商品分类、新品上线、首页轮播、商品推荐、商品搜索、商品展示、购物车、订单结算、订单流程、个人订单管理、会员中心、帮助中心等模块。 后台管理系统包含数据面板、轮播图管理、商品管理、订单管理、会员管理、分类管理、设置等模块。|8.0k|Java|10/22|
|54|[crossoverJie/cim](https://github.com/crossoverJie/cim)|📲cim(cross IM) 适用于开发者的分布式即时通讯系统|8.0k|Java|10/12|
|55|[huanghaibin-dev/CalendarView](https://github.com/huanghaibin-dev/CalendarView)|Android上一个优雅、万能自定义UI、仿iOS、支持垂直、水平方向切换、支持周视图、自定义周起始、性能高效的日历控件,支持热插拔实现的UI定制!支持标记、自定义颜色、农历、自定义月视图各种显示模式等。Canvas绘制,速度快、占用内存低,你真的想不到日历居然还可以如此优雅!An elegant, highly customized and high-performance Calendar Widget on Android.|7.9k|Java|10/11|
|56|[hs-web/hsweb-framework](https://github.com/hs-web/hsweb-framework)|hsweb (haʊs wɛb) 是一个基于spring-boot 2.x开发 ,首个使用全响应式编程的企业级后台管理系统基础项目。|7.7k|Java|10/28|
|57|[macrozheng/mall-swarm](https://github.com/macrozheng/mall-swarm)|mall-swarm是一套微服务商城系统,采用了 Spring Cloud Hoxton & Alibaba、Spring Boot 2.3、Oauth2、MyBatis、Docker、Elasticsearch、Kubernetes等核心技术,同时提供了基于Vue的管理后台方便快速搭建系统。mall-swarm在电商业务的基础集成了注册中心、配置中心、监控中心、网关等系统功能。文档齐全,附带全套Spring Cloud教程。|7.6k|Java|08/23|
|58|[doocs/jvm](https://github.com/doocs/jvm)|🤗 JVM 底层原理最全知识总结|7.5k|Java|10/21|
|59|[doocs/leetcode](https://github.com/doocs/leetcode)|😏 LeetCode solutions in any programming language 多种编程语言实现 LeetCode、《剑指 Offer(第 2 版)》、《程序员面试金典(第 6 版)》题解|7.5k|Java|10/28|
|60|[doocs/source-code-hunter](https://github.com/doocs/source-code-hunter)|😱 从源码层面,剖析挖掘互联网行业主流技术的底层实现原理,为广大开发者 “提升技术深度” 提供便利。目前开放 Spring 全家桶,Mybatis、Netty、Dubbo 框架,及 Redis、Tomcat 中间件等|7.2k|Java|09/13|
|61|[gedoor/MyBookshelf](https://github.com/gedoor/MyBookshelf)|阅读是一款可以自定义来源阅读网络内容的工具,为广大网络文学爱好者提供一种方便、快捷舒适的试读体验。|7.1k|Java|10/26|
|62|[alibaba/otter](https://github.com/alibaba/otter)|阿里巴巴分布式数据库同步系统(解决中美异地机房)|6.9k|Java|10/05|
|63|[zhoutaoo/SpringCloud](https://github.com/zhoutaoo/SpringCloud)|基于SpringCloud2.1的微服务开发脚手架,整合了spring-security-oauth2、nacos、feign、sentinel、springcloud-gateway等。服务治理方面引入elasticsearch、skywalking、springboot-admin、zipkin等,让项目开发快速进入业务开发,而不需过多时间花费在架构搭建上。持续更新中|6.9k|Java|09/04|
|64|[KunMinX/Jetpack-MVVM-Best-Practice](https://github.com/KunMinX/Jetpack-MVVM-Best-Practice)|是 难得一见 的 Jetpack MVVM 最佳实践!在 以简驭繁 的代码中,对 视图控制器 乃至 标准化开发模式 形成正确、深入的理解!|6.7k|Java|10/28|
|65|[goldze/MVVMHabit](https://github.com/goldze/MVVMHabit)|👕基于谷歌最新AAC架构,MVVM设计模式的一套快速开发库,整合Okhttp+RxJava+Retrofit+Glide等主流模块,满足日常开发需求。使用该框架可以快速开发一个高质量、易维护的Android应用。|6.7k|Java|10/25|
|66|[dromara/Sa-Token](https://github.com/dromara/Sa-Token)|这可能是史上功能最全的Java权限认证框架!目前已集成——登录认证、权限认证、分布式Session会话、微服务网关鉴权、单点登录、OAuth2.0、踢人下线、Redis集成、前后台分离、记住我模式、模拟他人账号、临时身份切换、账号封禁、多账号认证体系、注解式鉴权、路由拦截式鉴权、花式token生成、自动续签、同端互斥登录、会话治理、密码加密、jwt集成、Spring集成、WebFlux集成...|6.7k|Java|10/22|
|67|[Exrick/xmall](https://github.com/Exrick/xmall)|基于SOA架构的分布式电商购物商城 前后端分离 前台商城:Vue全家桶 后台管理系统:Dubbo/SSM/Elasticsearch/Redis/MySQL/ActiveMQ/Shiro/Zookeeper等|6.4k|Java|07/28|
|68|[wildfirechat/server](https://github.com/wildfirechat/server)|即时通讯(IM)系统|6.3k|Java|10/26|
|69|[lenve/VBlog](https://github.com/lenve/VBlog)|V部落,Vue+SpringBoot实现的多用户博客管理平台!|6.3k|Java|04/27|
|70|[Meituan-Dianping/walle](https://github.com/Meituan-Dianping/walle)|Android Signature V2 Scheme签名下的新一代渠道包打包神器|6.2k|Java|09/07|
|71|[kekingcn/kkFileView](https://github.com/kekingcn/kkFileView)|spring-boot打造文件文档在线预览项目|6.0k|Java|10/11|
|72|[NLPchina/ansj_seg](https://github.com/NLPchina/ansj_seg)|ansj分词.ict的真正java实现.分词效果速度都超过开源版的ict. 中文分词,人名识别,词性标注,用户自定义词典|6.0k|Java|08/15|
|73|[li-xiaojun/XPopup](https://github.com/li-xiaojun/XPopup)|🔥XPopup2.0版本重磅来袭,2倍以上性能提升,带来可观的动画性能优化和交互细节的提升!!!功能强大,交互优雅,动画丝滑的通用弹窗!可以替代Dialog,PopupWindow,PopupMenu,BottomSheet,DrawerLayout,Spinner等组件,自带十几种效果良好的动画, 支持完全的UI和动画自定义!(Powerful and Beautiful Popup for Android,can absolutely replace Dialog,PopupWindow,PopupMenu,BottomSheet,DrawerLayout,Spinner. With bu ...|6.0k|Java|10/27|
|74|[zouzg/mybatis-generator-gui](https://github.com/zouzg/mybatis-generator-gui)|mybatis-generator界面工具,让你生成代码更简单更快捷|6.0k|Java|07/05|
|75|[ityouknow/spring-cloud-examples](https://github.com/ityouknow/spring-cloud-examples)|Spring Cloud 学习案例,服务发现、服务治理、链路追踪、服务监控等|5.8k|Java|08/21|
|76|[Tencent/Shadow](https://github.com/Tencent/Shadow)|零反射全动态Android插件框架|5.7k|Java|10/29|
|77|[metersphere/metersphere](https://github.com/metersphere/metersphere)|MeterSphere is an End-to-End open source continuous testing platform. MeterSphere 是一站式开源持续测试平台,涵盖测试跟踪、接口测试、性能测试、团队协作等功能,全面兼容 JMeter、Postman、Swagger 等开源、主流标准。|5.7k|Java|10/28|
|78|[sohutv/cachecloud](https://github.com/sohutv/cachecloud)|搜狐视频(sohu tv)Redis私有云平台|5.7k|Java|06/08|
|79|[febsteam/FEBS-Shiro](https://github.com/febsteam/FEBS-Shiro)|Spring Boot 2.4.2,Shiro1.6.0 & Layui 2.5.6 权限管理系统。预览地址:http://47.104.70.138:8080/login|5.6k|Java|08/24|
|80|[liyifeng1994/ssm](https://github.com/liyifeng1994/ssm)|手把手教你整合最优雅SSM框架:SpringMVC + Spring + MyBatis|5.5k|Java|07/15|
|81|[knightliao/disconf](https://github.com/knightliao/disconf)|Distributed Configuration Management Platform(分布式配置管理平台)|5.5k|Java|09/28|
|82|[jpush/aurora-imui](https://github.com/jpush/aurora-imui)|General IM UI components. Android/iOS/RectNative ready. 通用 IM 聊天 UI 组件,已经同时支持 Android/iOS/RN。|5.5k|Java|09/21|
|83|[wxiaoqi/Spring-Cloud-Platform](https://github.com/wxiaoqi/Spring-Cloud-Platform)|🔥🔥🔥国内首个Spring Cloud微服务化RBAC的管理平台,核心采用Spring Boot 2.4、Spring Cloud 2020.0.0 & Alibaba,前端采用d2-admin中台框架。 🔝 🔝 记得上边点个star 关注更新|5.5k|Java|09/08|
|84|[h2pl/Java-Tutorial](https://github.com/h2pl/Java-Tutorial)|【Java工程师面试复习指南】本仓库涵盖大部分Java程序员所需要掌握的核心知识,整合了互联网上的很多优质Java技术文章,力求打造为最完整最实用的Java开发者学习指南,如果对你有帮助,给个star告诉我吧,谢谢!|5.3k|Java|05/14|
|85|[changmingxie/tcc-transaction](https://github.com/changmingxie/tcc-transaction)|tcc-transaction是TCC型事务java实现|5.2k|Java|09/29|
|86|[gzu-liyujiang/AndroidPicker](https://github.com/gzu-liyujiang/AndroidPicker)|安卓选择器类库,包括日期及时间选择器(可用于出生日期、营业时间等)、单项选择器(可用于性别、民族、职业、学历、星座等)、二三级联动选择器(可用于车牌号、基金定投日期等)、城市地址选择器(分省级、地市级及区县级)、数字选择器(可用于年龄、身高、体重、温度等)、日历选日期择器(可用于酒店及机票预定日期)、颜色选择器、文件及目录选择器、图片选择器等……WheelPicker/DatePicker/TimePicker/OptionPicker/NumberPicker/LinkagePicker/AddressPicker/CarNumberPicker/CalendarPicker/ColorPi ...|5.2k|Java|10/28|
|87|[527515025/springBoot](https://github.com/527515025/springBoot)|springboot 框架与其它组件结合如 jpa、mybatis、websocket、security、shiro、cache等|5.2k|Java|06/05|
|88|[YunaiV/onemall](https://github.com/YunaiV/onemall)|芋道 mall 商城,基于微服务的思想,构建在 B2C 电商场景下的项目实战。核心技术栈,是 Spring Boot + Dubbo 。未来,会重构成 Spring Cloud Alibaba 。|5.2k|Java|10/13|
|89|[ZXZxin/ZXBlog](https://github.com/ZXZxin/ZXBlog)|记录各种学习笔记(算法、Java、数据库、并发......)|4.9k|Java|09/26|
|90|[yipianfengye/android-zxingLibrary](https://github.com/yipianfengye/android-zxingLibrary)|几行代码快速集成二维码扫描功能|4.9k|Java|08/21|
|91|[ffay/lanproxy](https://github.com/ffay/lanproxy)|lanproxy是一个将局域网个人电脑、服务器代理到公网的内网穿透工具,支持tcp流量转发,可支持任何tcp上层协议(访问内网网站、本地支付接口调试、ssh访问、远程桌面、http代理、https代理、socks5代理...)。技术交流QQ群 678776401|4.7k|Java|09/05|
|92|[AriaLyy/Aria](https://github.com/AriaLyy/Aria)|下载可以很简单|4.7k|Java|09/05|
|93|[hongyangAndroid/baseAdapter](https://github.com/hongyangAndroid/baseAdapter)|Android 万能的Adapter for ListView,RecyclerView,GridView等,支持多种Item类型的情况。|4.6k|Java|10/13|
|94|[Nepxion/Discovery](https://github.com/Nepxion/Discovery)|☀️ Nepxion Discovery is a solution for Spring Cloud with blue green, gray, route, limitation, circuit breaker, degrade, isolation, tracing, dye, failover 蓝绿、灰度、路由、限流、熔断、降级、隔离、追踪、流量染色、故障转移|4.6k|Java|10/06|
|95|[youlookwhat/CloudReader](https://github.com/youlookwhat/CloudReader)|🗡️ 云阅:一款基于网易云音乐UI,使用玩Android、Gank.Io Api,MVVM-DataBinding架构开发的符合Google Material Design的Android客户端|4.6k|Java|10/20|
|96|[chentao0707/SimplifyReader](https://github.com/chentao0707/SimplifyReader)|一款基于Google Material Design设计开发的Android客户端,包括新闻简读,图片浏览,视频爽看 ,音乐轻听以及二维码扫描五个子模块。项目采取的是MVP架构开发,由于还是摸索阶段,可能不是很规范。但基本上应该是这么个套路,至少我个人认为是这样的~恩,就是这样的!|4.6k|Java|09/17|
|97|[SplashCodes/JAViewer](https://github.com/SplashCodes/JAViewer)|更优雅的驾车体验|4.6k|Java|08/22|
|98|[razerdp/BasePopup](https://github.com/razerdp/BasePopup)|一款针对系统PopupWindow优化的Popup库,功能强大,支持背景模糊,使用简单,你会爱上他的~|4.6k|Java|10/20|
|99|[bingoogolapple/BGARefreshLayout-Android](https://github.com/bingoogolapple/BGARefreshLayout-Android)|多种下拉刷新效果、上拉加载更多、可配置自定义头部广告位|4.2k|Java|04/05|
|100|[macrozheng/springcloud-learning](https://github.com/macrozheng/springcloud-learning)|一套涵盖大部分核心组件使用的Spring Cloud教程,包括Spring Cloud Alibaba及分布式事务Seata,基于Spring Cloud Greenwich及SpringBoot 2.1.7。22篇文章,篇篇精华,32个Demo,涵盖大部分应用场景。|4.2k|Java|08/23|
|101|[getActivity/AndroidProject](https://github.com/getActivity/AndroidProject)|Android 技术中台,但愿人长久,搬砖不再有|4.2k|Java|10/11|
|102|[2227324689/gpmall](https://github.com/2227324689/gpmall)|【咕泡学院实战项目】-基于SpringBoot+Dubbo构建的电商平台-微服务架构、商城、电商、微服务、高并发、kafka、Elasticsearch|4.2k|Java|10/24|
|103|[hansonwang99/Spring-Boot-In-Action](https://github.com/hansonwang99/Spring-Boot-In-Action)|Spring Boot 系列实战合集|4.1k|Java|06/08|
|104|[zhanglei-workspace/shopping-management-system](https://github.com/zhanglei-workspace/shopping-management-system)|该项目为多个小项目的集合(持续更新中...)。内容类似淘宝、京东等网购管理系统以及图书管理、超市管理等系统。目的在于便于Java初级爱好者在学习完某一部分Java知识后有一个合适的项目锻炼、运用所学知识,完善知识体系。适用人群:Java基础到入门的爱好者。|4.1k|Java|08/07|
|105|[zhaojun1998/zfile](https://github.com/zhaojun1998/zfile)|在线云盘、网盘、OneDrive、云存储、私有云、对象存储、h5ai|4.1k|Java|10/07|
|106|[CodingDocs/springboot-guide](https://github.com/CodingDocs/springboot-guide)|SpringBoot2.0+从入门到实战!|4.0k|Java|09/09|
|107|[fuzhengwei/itstack-demo-design](https://github.com/fuzhengwei/itstack-demo-design)|:art: 《重学Java设计模式》是一本互联网真实案例实践书籍。以落地解决方案为核心,从实际业务中抽离出,交易、营销、秒杀、中间件、源码等22个真实场景,来学习设计模式的运用。欢迎关注小傅哥,微信(fustack),公众号:bugstack虫洞栈,博客:https://bugstack.cn|4.0k|Java|08/25|
|108|[bingoogolapple/BGABanner-Android](https://github.com/bingoogolapple/BGABanner-Android)|引导界面滑动导航 + 大于等于1页时无限轮播 + 各种切换动画轮播效果|4.0k|Java|04/05|
|109|[zuihou/lamp-cloud](https://github.com/zuihou/lamp-cloud)|lamp-cloud 基于Jdk11 + SpringCloud + SpringBoot的微服务快速开发平台,其中的可配置的SaaS功能尤其闪耀, 具备RBAC功能、网关统一鉴权、Xss防跨站攻击、自动代码生成、多种存储系统、分布式事务、分布式定时任务等多个模块,支持多业务系统并行开发, 支持多服务并行开发,可以作为后端服务的开发脚手架。代码简洁,注释齐全,架构清晰,非常适合学习和企业作为基础框架使用。|4.0k|Java|10/26|
|110|[ZHENFENG13/spring-boot-projects](https://github.com/ZHENFENG13/spring-boot-projects)|该仓库中主要是 Spring Boot 的入门学习教程以及一些常用的 Spring Boot 实战项目教程,包括 Spring Boot 使用的各种示例代码,同时也包括一些实战项目的项目源码和效果展示,实战项目包括基本的 web 开发以及目前大家普遍使用的线上博客项目/企业大型商城系统/前后端分离实践项目等,摆脱各种 hello world 入门案例的束缚,真正的掌握 Spring Boot 开发。|4.0k|Java|10/21|
|111|[yhaolpz/FloatWindow](https://github.com/yhaolpz/FloatWindow)|Andorid 任意界面悬浮窗,实现悬浮窗如此简单|3.9k|Java|10/13|
|112|[luckybilly/CC](https://github.com/luckybilly/CC)|业界首个支持渐进式组件化改造的Android组件化开源框架,支持跨进程调用。Componentize your android project gradually.|3.8k|Java|05/14|
|113|[Heeexy/SpringBoot-Shiro-Vue](https://github.com/Heeexy/SpringBoot-Shiro-Vue)|提供一套基于Spring Boot-Shiro-Vue的权限管理思路.前后端都加以控制,做到按钮/接口级别的权限。(当前新版本已移除shiro依赖,简化了配置)|3.8k|Java|05/27|
|114|[bjmashibing/InternetArchitect](https://github.com/bjmashibing/InternetArchitect)|年薪百万互联网架构师课程文档及源码(公开部分)|3.8k|Java|09/09|
|115|[oldmanpushcart/greys-anatomy](https://github.com/oldmanpushcart/greys-anatomy)|Java诊断工具|3.8k|Java|06/08|
|116|[Doikki/DKVideoPlayer](https://github.com/Doikki/DKVideoPlayer)|Android Video Player. 安卓视频播放器,封装MediaPlayer、ExoPlayer、IjkPlayer。模仿抖音并实现预加载,列表播放,悬浮播放,广告播放,弹幕|3.7k|Java|08/07|
|117|[dataease/dataease](https://github.com/dataease/dataease)|人人可用的开源数据可视化分析工具。|3.6k|Java|10/28|
|118|[xuexiangjys/XUI](https://github.com/xuexiangjys/XUI)|💍A simple and elegant Android native UI framework, free your hands! (一个简洁而优雅的Android原生UI框架,解放你的双手!)|3.5k|Java|10/18|
|119|[mpusher/mpush](https://github.com/mpusher/mpush)|MPush开源实时消息推送系统|3.4k|Java|09/25|
|120|[Javen205/IJPay](https://github.com/Javen205/IJPay)|IJPay 让支付触手可及,封装了微信支付、QQ支付、支付宝支付、京东支付、银联支付、PayPal 支付等常用的支付方式以及各种常用的接口。不依赖任何第三方 mvc 框架,仅仅作为工具使用简单快速完成支付模块的开发,可轻松嵌入到任何系统里。右上角点下小星星✨ |3.4k|Java|10/05|
|121|[Exrick/xboot](https://github.com/Exrick/xboot)|基于Spring Boot 2.x的一站式前后端分离快速开发平台XBoot 微信小程序+Uniapp 前端:Vue+iView Admin 后端:Spring Boot 2.x/Spring Security/JWT/JPA+Mybatis-Plus/Redis/Elasticsearch/Activiti 分布式限流/同步锁/验证码/SnowFlake雪花算法ID 动态权限 数据权限 工作流 代码生成 定时任务 社交账号 短信登录 单点登录 OAuth2开放平台 客服机器人 数据大屏 暗黑模式|3.4k|Java|07/02|
|122|[saysky/ForestBlog](https://github.com/saysky/ForestBlog)|一个简单漂亮的SSM(Spring+SpringMVC+Mybatis)博客系统|3.4k|Java|10/13|
|123|[stylefeng/Guns](https://github.com/stylefeng/Guns)|Guns基于SpringBoot 2,致力于做更简洁的后台管理系统,完美整合springmvc + shiro + mybatis-plus + beetl!Guns项目代码简洁,注释丰富,上手容易,同时Guns包含许多基础模块(用户管理,角色管理,部门管理,字典管理等10个模块),可以直接作为一个后台管理系统的脚手架!|3.3k|Java|09/15|
|124|[RedSpider1/concurrent](https://github.com/RedSpider1/concurrent)|这是RedSpider社区成员原创与维护的Java多线程系列文章。|3.3k|Java|10/28|
|125|[liuyubobobo/Play-with-Algorithms](https://github.com/liuyubobobo/Play-with-Algorithms)|Codes of my MOOC Course <Play with Algorithms>, Both in C++ and Java language. Updated contents and practices are also included. 我在慕课网上的课程《算法与数据结构》示例代码,包括C++和Java版本。课程的更多更新内容及辅助练习也将逐步添加进这个代码仓。|3.3k|Java|04/14|
|126|[java-aodeng/hope-boot](https://github.com/java-aodeng/hope-boot)|🌱 Hope-Boot 一款现代化的脚手架项目|3.2k|Java|08/25|
|127|[JeremyLiao/LiveEventBus](https://github.com/JeremyLiao/LiveEventBus)|:mailbox_with_mail:EventBus for Android,消息总线,基于LiveData,具有生命周期感知能力,支持Sticky,支持AndroidX,支持跨进程,支持跨APP|3.2k|Java|09/03|
|128|[zlt2000/microservices-platform](https://github.com/zlt2000/microservices-platform)|基于SpringBoot2.x、SpringCloud和SpringCloudAlibaba并采用前后端分离的企业级微服务多租户系统架构。并引入组件化的思想实现高内聚低耦合,项目代码简洁注释丰富上手容易,适合学习和企业中使用。真正实现了基于RBAC、jwt和oauth2的无状态统一权限认证的解决方案,面向互联网设计同时适合B端和C端用户,支持CI/CD多环境部署,并提供应用管理方便第三方系统接入;同时还集合各种微服务治理功能和监控功能。模块包括:企业级的认证系统、开发平台、应用监控、慢sql监控、统一日志、单点登录、Redis分布式高速缓存、配置中心、分布式任务调度、接口文档、代码生成等等。|3.1k|Java|10/14|
|129|[JavaNoober/BackgroundLibrary](https://github.com/JavaNoober/BackgroundLibrary)|A framework for directly generating shape through Tags, no need to write shape.xml again(通过标签直接生成shape,无需再写shape.xml)|3.1k|Java|09/26|
|130|[qunarcorp/bistoury](https://github.com/qunarcorp/bistoury)|Bistoury是去哪儿网的java应用生产问题诊断工具,提供了一站式的问题诊断方案|3.1k|Java|06/17|
|131|[WeiYe-Jing/datax-web](https://github.com/WeiYe-Jing/datax-web)|DataX集成可视化页面,选择数据源即可一键生成数据同步任务,支持RDBMS、Hive、HBase、ClickHouse、MongoDB等数据源,批量创建RDBMS数据同步任务,集成开源调度系统,支持分布式、增量同步数据、实时查看运行日志、监控执行器资源、KILL运行进程、数据源信息加密等。|3.1k|Java|10/19|
|132|[didi/LogiKM](https://github.com/didi/LogiKM)|一站式Apache Kafka集群指标监控与运维管控平台|3.1k|Java|09/21|
|133|[dingjikerbo/Android-BluetoothKit](https://github.com/dingjikerbo/Android-BluetoothKit)|Android BLE蓝牙通信库|2.9k|Java|06/08|
|134|[FinalTeam/RxGalleryFinal](https://github.com/FinalTeam/RxGalleryFinal)|图片选择库,单选/多选、拍照、裁剪、压缩,自定义。包括视频选择和录制。|2.8k|Java|06/22|
|135|[phodal/migration](https://github.com/phodal/migration)|《系统重构与迁移指南》手把手教你分析、评估现有系统、制定重构策略、探索可行重构方案、搭建测试防护网、进行系统架构重构、服务架构重构、模块重构、代码重构、数据库重构、重构后的架构守护|2.7k|Java|08/12|
|136|[Hitomis/transferee](https://github.com/Hitomis/transferee)|一个帮助您完成从缩略视图到原视图无缝过渡转变的神奇框架|2.7k|Java|07/29|
|137|[201206030/fiction_house](https://github.com/201206030/fiction_house)|小说精品屋是一个多平台(web、安卓app、微信小程序)、功能完善的屏幕自适应小说漫画连载系统,包含精品小说专区、轻小说专区和漫画专区。包括小说/漫画分类、小说/漫画搜索、小说/漫画排行、完本小说/漫画、小说/漫画评分、小说/漫画在线阅读、小说/漫画书架、小说/漫画阅读记录、小说下载、小说弹幕、小说/漫画自动采集/更新/纠错、小说内容自动分享到微博、邮件自动推广、链接自动推送到百度搜索引擎等功能。|2.7k|Java|06/04|
|138|[jeecgboot/JimuReport](https://github.com/jeecgboot/JimuReport)|「低代码可视化报表」类似excel操作风格,在线拖拽完成设计!功能涵盖: 报表设计、图形报表、打印设计、大屏设计等,完全免费!秉承“简单、易用、专业”的产品理念,极大的降低报表开发难度、缩短开发周期、解决各类报表难题。|2.7k|Java|10/11|
|139|[Pay-Group/best-pay-sdk](https://github.com/Pay-Group/best-pay-sdk)|可能是最好的支付SDK|2.6k|Java|09/03|
|140|[youlookwhat/DesignPattern](https://github.com/youlookwhat/DesignPattern)|📚 Java 23种设计模式全归纳|2.6k|Java|04/24|
|141|[ngbdf/redis-manager](https://github.com/ngbdf/redis-manager)|Redis 一站式管理平台,支持集群的监控、安装、管理、告警以及基本的数据操作|2.6k|Java|08/17|
|142|[yangchong211/LifeHelper](https://github.com/yangchong211/LifeHelper)|【停止维护】组件化综合案例,包含微信新闻,头条视频,美女图片,百度音乐,干活集中营,玩Android,豆瓣读书电影,知乎日报等等模块。架构模式:组件化+MVP+Rx+Retrofit+Desgin+Dagger2+阿里VLayout+腾讯X5+腾讯bugly。融合开发中需要的各种小案例!|2.6k|Java|10/17|
|143|[tianshiyeben/wgcloud](https://github.com/tianshiyeben/wgcloud)|linux运维监控工具,支持系统信息,内存,cpu,温度,磁盘空间及IO,硬盘smart,系统负载,网络流量等监控,API接口,大屏展示,拓扑图,进程监控,端口监控,docker监控,文件防篡改,日志监控,数据可视化,web ssh,堡垒机,指令下发批量执行,linux面板,探针,故障告警|2.6k|Java|10/17|
|144|[rememberber/WePush](https://github.com/rememberber/WePush)|专注批量推送的小而美的工具,目前支持:模板消息-公众号、模板消息-小程序、微信客服消息、微信企业号/企业微信消息、阿里云短信、阿里大于模板短信 、腾讯云短信、云片网短信、E-Mail、HTTP请求、钉钉、华为云短信、百度云短信、又拍云短信、七牛云短信|2.5k|Java|07/17|
|145|[bm-x/PhotoView](https://github.com/bm-x/PhotoView)|图片浏览缩放控件|2.5k|Java|10/15|
|146|[bingoogolapple/BGABadgeView-Android](https://github.com/bingoogolapple/BGABadgeView-Android)|Android 徽章控件|2.5k|Java|04/05|
|147|[JsonChao/Awesome-WanAndroid](https://github.com/JsonChao/Awesome-WanAndroid)|:zap:致力于打造一款极致体验的 http://www.wanandroid.com/ 客户端,知识和美是可以并存的哦QAQn(*≧▽≦*)n|2.5k|Java|08/17|
|148|[zhpanvip/BannerViewPager](https://github.com/zhpanvip/BannerViewPager)|🚀 An awesome banner view for Android,Based on ViewPager2. 这可能是全网最好用的ViewPager轮播图。简单、高效,一行代码实现循环轮播,一屏三页任意变,指示器样式任你挑。|2.5k|Java|10/26|
|149|[xiaojinzi123/Component](https://github.com/xiaojinzi123/Component)|🔥🔥🔥A powerful componentized framework.一个强大、100% 兼容、支持 AndroidX、支持 Kotlin并且灵活的组件化框架|2.4k|Java|10/13|
|150|[qunarcorp/qmq](https://github.com/qunarcorp/qmq)| QMQ是去哪儿网内部广泛使用的消息中间件,自2012年诞生以来在去哪儿网所有业务场景中广泛的应用,包括跟交易息息相关的订单场景; 也包括报价搜索等高吞吐量场景。|2.4k|Java|09/26|
|151|[liyiorg/weixin-popular](https://github.com/liyiorg/weixin-popular)|微信SDK JAVA (公众平台、开放平台、 商户平台、 服务商平台)|2.4k|Java|06/07|
|152|[mqzhangw/JIMU](https://github.com/mqzhangw/JIMU)|一种简单有效的android组件化方案,支持组件的代码资源隔离、单独调试、集成调试、组件交互、UI跳转、生命周期等完整功能。|2.3k|Java|06/13|
|153|[JPressProjects/jpress](https://github.com/JPressProjects/jpress)|JPress,一个使用 Java 开发的建站神器,目前已经有 10w+ 网站使用 JPress 进行驱动,其中包括多个政府机构,200+上市公司,中科院、红+字会等。|2.3k|Java|10/24|
|154|[ZHENFENG13/My-Blog](https://github.com/ZHENFENG13/My-Blog)|:palm_tree::octocat:A simple & beautiful blogging system implemented with spring-boot & thymeleaf & mybatis My Blog 是由 SpringBoot + Mybatis + Thymeleaf 等技术实现的 Java 博客系统,页面美观、功能齐全、部署简单及完善的代码,一定会给使用者无与伦比的体验|2.3k|Java|08/11|
|155|[jetlinks/jetlinks-community](https://github.com/jetlinks/jetlinks-community)|JetLinks 基于Java8,Spring Boot 2.x ,WebFlux,Netty,Vert.x,Reactor等开发, 是一个全响应式的企业级物联网平台。支持统一物模型管理,多种设备,多种厂家,统一管理。统一设备连接管理,多协议适配(TCP,MQTT,UDP,CoAP,HTTP等),屏蔽网络编程复杂性,灵活接入不同厂家不同协议等设备。实时数据处理,设备告警,消息通知,数据转发。地理位置,数据可视化等。能帮助你快速建立物联网相关业务系统。|2.3k|Java|10/28|
|156|[HuanTanSheng/EasyPhotos](https://github.com/HuanTanSheng/EasyPhotos)|兼容android11、android 10,相机拍照,相册选择(单选/多选),文件夹图片选择(单选/多选),视频选择,视频图片多类型复杂选择,各界面根据状态栏颜色智能适配状态栏字体颜色变色为深色或浅色,根据使用场景智能适配沉浸式状态栏,内部处理运行时权限,支持Glide/Picasso/Imageloader等所有图片加载框架库的带默认勾选选中图片的能填充自定义广告的自定义Ui相机相册图片浏览选择器;更有拼图/文字贴纸/贴图/图片缩放/Bitmap图片添加水印/媒体文件更新到媒体库等众多Bitmap图片编辑功能的android Bitmap图片处理工具框架库。|2.3k|Java|09/27|
|157|[xtuhcy/gecco](https://github.com/xtuhcy/gecco)|Easy to use lightweight web crawler(易用的轻量化网络爬虫)|2.3k|Java|08/24|
|158|[zxbu/webdav-aliyundriver](https://github.com/zxbu/webdav-aliyundriver)|阿里云盘(https://www.aliyundrive.com/) 的webdav协议开源实现|2.3k|Java|09/30|
|159|[liweiwei1419/LeetCode-Solutions-in-Good-Style](https://github.com/liweiwei1419/LeetCode-Solutions-in-Good-Style)|首页已经更新,希望能对大家有帮助。|2.2k|Java|04/10|
|160|[lihangleo2/ShadowLayout](https://github.com/lihangleo2/ShadowLayout)|可定制化阴影的万能阴影布局ShadowLayout 3.0 震撼上线。效果赶超CardView。阴影支持x,y轴偏移,支持阴影扩散程度,支持阴影圆角,支持单边或多边不显示阴影;控件支持动态设置shape和selector(项目里再也不用画shape了);支持随意更改颜色值,支持随意更改颜色值,支持随意更改颜色值。重要的事情说三遍|2.2k|Java|09/14|
|161|[bingoogolapple/BGASwipeBackLayout-Android](https://github.com/bingoogolapple/BGASwipeBackLayout-Android)|Android Activity 滑动返回。支持微信滑动返回样式、横屏滑动返回、全屏滑动返回|2.2k|Java|07/18|
|162|[IoT-Technology/IoT-Technical-Guide](https://github.com/IoT-Technology/IoT-Technical-Guide)|:honeybee: IoT Technical Guide --- 从零搭建高性能物联网平台及物联网解决方案和Thingsboard源码分析 :sparkles: :sparkles: :sparkles: (IoT Platform, SaaS, MQTT, CoAP, HTTP, Modbus, OPC, WebSocket, 物模型,Protobuf, PostgreSQL, MongoDB, Spring Security, OAuth2, RuleEngine, Kafka, Docker)|2.2k|Java|10/26|
|163|[WinterChenS/my-site](https://github.com/WinterChenS/my-site)|springboot2.0开发的个人网站,集成了:个人首页,个人博客,个人作品|2.2k|Java|10/16|
|164|[alibaba/yugong](https://github.com/alibaba/yugong)|阿里巴巴去Oracle数据迁移同步工具(全量+增量,目标支持MySQL/DRDS)|2.2k|Java|06/08|
|165|[Meituan-Dianping/Zebra](https://github.com/Meituan-Dianping/Zebra)|美团点评集团统一使用的MySQL数据库访问层的中间件。主要提供对业务开发透明、读写分库、分库分表能力,并提供了端到端SQL监控的集成方案。|2.2k|Java|09/15|
|166|[fuzhengwei/small-spring](https://github.com/fuzhengwei/small-spring)|🌱《 Spring 手撸专栏》,本专栏以 Spring 源码学习为目的,通过手写简化版 Spring 框架,了解 Spring 核心原理。在手写的过程中会简化 Spring 源码,摘取整体框架中的核心逻辑,简化代码实现过程,保留核心功能,例如:IOC、AOP、Bean生命周期、上下文、作用域、资源处理等内容实现。|2.2k|Java|10/29|
|167|[201206030/novel-plus](https://github.com/201206030/novel-plus)|小说精品屋-plus是一个多端(PC、WAP)阅读、功能完善的原创文学CMS系统,由前台门户系统、作家后台管理系统、平台后台管理系统、爬虫管理系统等多个子系统构成,支持多模版、会员充值、订阅模式、新闻发布和实时统计报表等功能,新书自动入库,老书自动更新。|2.2k|Java|09/28|
|168|[xubinux/xbin-store](https://github.com/xubinux/xbin-store)|模仿国内知名B2C网站,实现的一个分布式B2C商城 使用Spring Boot 自动配置 Dubbox / MVC / MyBatis / Druid / Solr / Redis 等。使用Spring Cloud版本请查看|2.1k|Java|08/25|
|169|[bingoogolapple/BGAPhotoPicker-Android](https://github.com/bingoogolapple/BGAPhotoPicker-Android)|Android 图片选择、预览、九宫格图片控件、拖拽排序九宫格图片控件|2.1k|Java|04/05|
|170|[EhsanTang/ApiManager](https://github.com/EhsanTang/ApiManager)|CRAP - 开源API接口管理平台 完全开源、免费使用的API接口管理系统、BUG管理系统:API接口管理、文档管理、数据库表管理、接口调试、浏览器调试插件、导出word&pdf接口…..,采用SpringMVC + MyBatis + Lucene + Bootstrap + Angularjs + Iconfont + Guava Cache ,线上使用地址:http://api.crap.cn|2.1k|Java|08/13|
|171|[qq53182347/liugh-parent](https://github.com/qq53182347/liugh-parent)|SpringBoot+SpringCloud Oauth2+JWT+MybatisPlus实现Restful快速开发后端脚手架|2.1k|Java|08/16|
|172|[sanshengshui/netty-learning-example](https://github.com/sanshengshui/netty-learning-example)|:egg: Netty实践学习案例,见微知著!带着你的心,跟着教程。我相信你行欧。|2.1k|Java|08/02|
|173|[jeequan/jeepay](https://github.com/jeequan/jeepay)|Jeepay是一套适合互联网企业使用的开源支付系统,支持多渠道服务商和普通商户模式。已对接微信支付,支付宝,云闪付官方接口,支持聚合码支付。|2.1k|Java|10/12|
|174|[MarkerHub/vueblog](https://github.com/MarkerHub/vueblog)|一个前后端分离的简单博客案例,适合刚入门vue,学前后端分离的童鞋!|1.8k|Java|10/07|
|175|[scalad/Note](https://github.com/scalad/Note)|常规Java工具,算法,加密,数据库,面试题,源代码分析,解决方案|1.8k|Java|05/12|
|176|[SpringCloud/spring-cloud-code](https://github.com/SpringCloud/spring-cloud-code)|🔥《重新定义Spring Cloud实战》实体书对应源码,欢迎大家Star点赞收藏|1.8k|Java|06/05|
|177|[zaiyunduan123/springboot-seckill](https://github.com/zaiyunduan123/springboot-seckill)|:racehorse:基于SpringBoot + MySQL + Redis + RabbitMQ + Guava开发的高并发商品限时秒杀系统|1.8k|Java|04/07|
|178|[zhegexiaohuozi/SeimiCrawler](https://github.com/zhegexiaohuozi/SeimiCrawler)|一个简单、敏捷、分布式的支持SpringBoot的Java爬虫框架;An agile, distributed crawler framework.|1.8k|Java|06/24|
|179|[vector4wang/spring-boot-quick](https://github.com/vector4wang/spring-boot-quick)|:herb: 基于springboot的快速学习示例,整合自己遇到的开源框架,如:rabbitmq(延迟队列)、Kafka、jpa、redies、oauth2、swagger、jsp、docker、spring-batch、异常处理、日志输出、多模块开发、多环境打包、缓存cache、爬虫、jwt、GraphQL、dubbo、zookeeper和Async等等:pushpin:|1.8k|Java|08/25|
|180|[Antabot/White-Jotter](https://github.com/Antabot/White-Jotter)|白卷是一款使用 Vue+Spring Boot 开发的前后端分离项目,附带全套开发教程。(A simple CMS developed by Spring Boot and Vue.js with development tutorials)|1.8k|Java|04/23|
|181|[kanwangzjm/funiture](https://github.com/kanwangzjm/funiture)|慕课网课程推荐 Java并发编程与高并发解决方案:http://coding.imooc.com/class/195.html Java开发企业级权限管理系统:http://coding.imooc.com/class/149.html github: https://github.com/kanwangzjm/funiture, spring项目,权限管理、系统监控、定时任务动态调整、qps限制、sql监控(邮件)、验证码服务、短链接服务、动态配置等|1.8k|Java|08/24|
|182|[dromara/raincat](https://github.com/dromara/raincat)|强一致分布式事务框架|1.8k|Java|06/04|
|183|[qiujiayu/AutoLoadCache](https://github.com/qiujiayu/AutoLoadCache)| AutoLoadCache 是基于AOP+Annotation等技术实现的高效的缓存管理解决方案,实现缓存与业务逻辑的解耦,并增加异步刷新及“拿来主义机制”,以适应高并发环境下的使用。|1.8k|Java|08/27|
|184|[donkingliang/ConsecutiveScroller](https://github.com/donkingliang/ConsecutiveScroller)|ConsecutiveScrollerLayout是Android下支持多个滑动布局(RecyclerView、WebView、ScrollView等)和普通控件(TextView、ImageView、LinearLayou、自定义View等)持续连贯滑动的容器,它使所有的子View像一个整体一样连续顺畅滑动。并且支持布局吸顶功能。|1.8k|Java|08/11|
|185|[baichengzhou/SpringMVC-Mybatis-Shiro-redis-0.2](https://github.com/baichengzhou/SpringMVC-Mybatis-Shiro-redis-0.2)|基于SpringMVC、Mybatis、Redis、Freemarker的Shiro管理Demo源码的升级版。 |1.8k|Java|09/21|
|186|[lealone/Lealone](https://github.com/lealone/Lealone)|极具创新的面向单机与分布式 OLTP/OLAP 场景的异步化 NewSQL 关系数据库|1.8k|Java|10/28|
|187|[sanluan/PublicCMS](https://github.com/sanluan/PublicCMS)|现代化java cms,由天津黑核科技有限公司开发,轻松支撑千万数据、千万PV;支持静态化,服务器端包含; 目前已经拥有全球0.0002%的用户,语言支持中、繁、日、英;是一个已走向海外的成熟CMS产品|1.7k|Java|10/28|
|188|[sunfusheng/GlideImageView](https://github.com/sunfusheng/GlideImageView)|基于Glide V4.9.0封装的图片加载库,可以监听加载图片时的进度|1.7k|Java|07/15|
|189|[InterestingLab/seatunnel](https://github.com/InterestingLab/seatunnel)|生产环境的海量数据计算产品,文档地址:|1.7k|Java|10/22|
|190|[xiaohaibin/XBanner](https://github.com/xiaohaibin/XBanner)|:fire:【图片轮播】支持图片无限轮播,支持AndroidX、自定义指示点、显示提示文字、切换动画、自定义布局,一屏显示多个等功能|1.7k|Java|10/08|
|191|[lygttpod/AndroidCustomView](https://github.com/lygttpod/AndroidCustomView)|带你在实战中学习自定义view,通过几个完整的例子带你走进自定义View的美妙世界|1.7k|Java|04/26|
|192|[ainilili/ratel](https://github.com/ainilili/ratel)|命令行斗地主!|1.7k|Java|07/19|
|193|[decaywood/XueQiuSuperSpider](https://github.com/decaywood/XueQiuSuperSpider)|雪球股票信息超级爬虫|1.7k|Java|08/24|
|194|[xuexiangjys/XUpdate](https://github.com/xuexiangjys/XUpdate)|🚀A lightweight, high availability Android version update framework.(一个轻量级、高可用性的Android版本更新框架)|1.6k|Java|09/23|
|195|[DTStack/flinkStreamSQL](https://github.com/DTStack/flinkStreamSQL)|基于开源的flink,对其实时sql进行扩展;主要实现了流与维表的join,支持原生flink SQL所有的语法|1.6k|Java|09/24|
|196|[dunwu/javacore](https://github.com/dunwu/javacore)|:coffee: JavaCore 是对 Java 核心技术的经验总结。|1.6k|Java|09/01|
|197|[YunaiV/ruoyi-vue-pro](https://github.com/YunaiV/ruoyi-vue-pro)|基于SpringBoot,Spring Security,JWT,Vue & Element 的前后端分离权限管理系统|1.6k|Java|10/28|
|198|[limpoxe/Android-Plugin-Framework](https://github.com/limpoxe/Android-Plugin-Framework)|Android插件框架,免安装运行插件APK ,支持独立插件和非独立插件|1.6k|Java|10/16|
|199|[wkeyuan/DWSurvey](https://github.com/wkeyuan/DWSurvey)|Survey System. 最好用的开源问卷调查系统、表单系统。|1.6k|Java|10/26|
|200|[doublechaintech/scm-biz-suite](https://github.com/doublechaintech/scm-biz-suite)|供应链中台系统基础版,集成零售管理, 电子商务, 供应链管理, 财务管理, 车队管理, 仓库管理, 人员管理, 产品管理, 订单管理, 会员管理, 连锁店管理, 加盟管理, 前端React/Ant Design, 后端Java Spring+自有开源框架,全面支持MySQL, PostgreSQL, 全面支持国产数据库南大通用GBase 8s,通过REST接口调用,前后端完全分离。|1.6k|Java|10/26|
⬆ [回到目录](#目录)
<br/>
## Python
|#|Repository|Description|Stars|Language|Updated|
|:-|:-|:-|:-|:-|:-|
|1|[jackfrued/Python-100-Days](https://github.com/jackfrued/Python-100-Days)|Python - 100天从新手到大师|110.7k|Python|10/27|
|2|[521xueweihan/HelloGitHub](https://github.com/521xueweihan/HelloGitHub)|:octocat: 分享 GitHub 上有趣、入门级的开源项目。Share interesting, entry-level open source projects on GitHub.|47.9k|Python|10/28|
|3|[fighting41love/funNLP](https://github.com/fighting41love/funNLP)|中英文敏感词、语言检测、中外手机/电话归属地/运营商查询、名字推断性别、手机号抽取、身份证抽取、邮箱抽取、中日文人名库、中文缩写库、拆字词典、词汇情感值、停用词、反动词表、暴恐词表、繁简体转换、英文模拟中文发音、汪峰歌词生成器、职业名称词库、同义词库、反义词库、否定词库、汽车品牌词库、汽车零件词库、连续英文切割、各种中文词向量、公司名字大全、古诗词库、IT词库、财经词库、成语词库、地名词库、历史名人词库、诗词词库、医学词库、饮食词库、法律词库、汽车词库、动物词库、中文聊天语料、中文谣言数据、百度中文问答数据集、句子相似度匹配算法集合、bert资源、文本生成&摘要相关工具、cocoNLP信息抽取 ...|34.4k|Python|08/20|
|4|[0voice/interview_internal_reference](https://github.com/0voice/interview_internal_reference)|2021年最新总结,阿里,腾讯,百度,美团,头条等技术面试题目,以及答案,专家出题人分析汇总。|32.6k|Python|08/25|
|5|[apachecn/AiLearning](https://github.com/apachecn/AiLearning)|AiLearning: 机器学习 - MachineLearning - ML、深度学习 - DeepLearning - DL、自然语言处理 NLP|31.7k|Python|09/07|
|6|[testerSunshine/12306](https://github.com/testerSunshine/12306)|12306智能刷票,订票|30.3k|Python|08/25|
|7|[fxsjy/jieba](https://github.com/fxsjy/jieba)|结巴中文分词|27.2k|Python|07/25|
|8|[d2l-ai/d2l-zh](https://github.com/d2l-ai/d2l-zh)|《动手学深度学习》:面向中文读者、能运行、可讨论。中英文版被全球200所大学采用教学。|26.4k|Python|10/29|
|9|[hankcs/HanLP](https://github.com/hankcs/HanLP)|中文分词 词性标注 命名实体识别 依存句法分析 成分句法分析 语义依存分析 语义角色标注 指代消解 风格转换 语义相似度 新词发现 关键词短语提取 自动摘要 文本分类聚类 拼音简繁转换 自然语言处理|24.0k|Python|10/28|
|10|[wangzheng0822/algo](https://github.com/wangzheng0822/algo)|数据结构和算法必知必会的50个代码实现|19.8k|Python|05/28|
|11|[jumpserver/jumpserver](https://github.com/jumpserver/jumpserver)|JumpServer 是全球首款开源的堡垒机,是符合 4A 的专业运维安全审计系统。|17.2k|Python|10/28|
|12|[PaddlePaddle/Paddle](https://github.com/PaddlePaddle/Paddle)|PArallel Distributed Deep LEarning: Machine Learning Framework from Industrial Practice (『飞桨』核心框架,深度学习&机器学习高性能单机、分布式训练和跨平台部署)|16.8k|Python|10/29|
|13|[shimohq/chinese-programmer-wrong-pronunciation](https://github.com/shimohq/chinese-programmer-wrong-pronunciation)|中国程序员容易发音错误的单词|14.6k|Python|07/29|
|14|[Jack-Cherish/python-spider](https://github.com/Jack-Cherish/python-spider)|:rainbow:Python3网络爬虫实战:淘宝、京东、网易云、B站、12306、抖音、笔趣阁、漫画小说下载、音乐电影下载等|13.9k|Python|10/15|
|15|[wangshub/wechat_jump_game](https://github.com/wangshub/wechat_jump_game)|微信《跳一跳》Python 辅助|13.9k|Python|10/13|
|16|[Kr1s77/awesome-python-login-model](https://github.com/Kr1s77/awesome-python-login-model)|😮python模拟登陆一些大型网站,还有一些简单的爬虫,希望对你们有所帮助❤️,如果喜欢记得给个star哦🌟|13.8k|Python|07/24|
|17|[h2y/Shadowrocket-ADBlock-Rules](https://github.com/h2y/Shadowrocket-ADBlock-Rules)|提供多款 Shadowrocket 规则,带广告过滤功能。用于 iOS 未越狱设备选择性地自动翻墙。|12.1k|Python|04/13|
|18|[leisurelicht/wtfpython-cn](https://github.com/leisurelicht/wtfpython-cn)|wtfpython的中文翻译/施工结束/ 能力有限,欢迎帮我改进翻译|11.9k|Python|07/08|
|19|[pjialin/py12306](https://github.com/pjialin/py12306)|🚂 12306 购票助手,支持集群,多账号,多任务购票以及 Web 页面管理 |11.5k|Python|10/21|
|20|[meolu/walle-web](https://github.com/meolu/walle-web)|walle - 瓦力 Devops开源项目代码部署平台|11.2k|Python|05/09|
|21|[Vonng/ddia](https://github.com/Vonng/ddia)|《Designing Data-Intensive Application》DDIA中文翻译|9.6k|Python|10/21|
|22|[darknessomi/musicbox](https://github.com/darknessomi/musicbox)|网易云音乐命令行版本|9.1k|Python|09/21|
|23|[programthink/zhao](https://github.com/programthink/zhao)|【编程随想】整理的《太子党关系网络》,专门揭露赵国的权贵|8.8k|Python|08/01|
|24|[sfyc23/EverydayWechat](https://github.com/sfyc23/EverydayWechat)|微信助手:1.每日定时给好友(女友)发送定制消息。2.机器人自动回复好友。3.群助手功能(例如:查询垃圾分类、天气、日历、电影实时票房、快递物流、PM2.5等)|8.6k|Python|06/22|
|25|[x-hw/amazing-qr](https://github.com/x-hw/amazing-qr)|💮 amazing QRCode generator in Python (supporting animated gif) - Python amazing 二维码生成器(支持 gif 动态图片二维码)|8.5k|Python|09/08|
|26|[Dod-o/Statistical-Learning-Method_Code](https://github.com/Dod-o/Statistical-Learning-Method_Code)|手写实现李航《统计学习方法》书中全部算法|8.3k|Python|09/13|
|27|[wistbean/learn_python3_spider](https://github.com/wistbean/learn_python3_spider)|python爬虫教程系列、从0到1学习python爬虫,包括浏览器抓包,手机APP抓包,如 fiddler、mitmproxy,各种爬虫涉及的模块的使用,如:requests、beautifulSoup、selenium、appium、scrapy等,以及IP代理,验证码识别,Mysql,MongoDB数据库的python使用,多线程多进程爬虫的使用,css 爬虫加密逆向破解,JS爬虫逆向,分布式爬虫,爬虫项目实战实例等|8.1k|Python|10/21|
|28|[jindongwang/transferlearning](https://github.com/jindongwang/transferlearning)|Transfer learning / domain adaptation / domain generalization / multi-task learning etc. papers, codes. datasets, applications, tutorials.-迁移学习|8.1k|Python|10/27|
|29|[tgbot-collection/YYeTsBot](https://github.com/tgbot-collection/YYeTsBot)|🎬 人人影视bot,完全对接人人影视全部无删减资源|7.9k|Python|10/01|
|30|[hoochanlon/w3-goto-world](https://github.com/hoochanlon/w3-goto-world)|🍅 Git/AWS/Google 镜像 ,SS/SSR/VMESS节点,WireGuard,IPFS, DeepWeb,Capitalism 、行业研究报告的知识储备库|7.9k|Python|09/23|
|31|[PaddlePaddle/models](https://github.com/PaddlePaddle/models)|Pre-trained and Reproduced Deep Learning Models (『飞桨』官方模型库,包含多种学术前沿和工业场景验证的深度学习模型)|6.2k|Python|10/22|
|32|[Linzaer/Ultra-Light-Fast-Generic-Face-Detector-1MB](https://github.com/Linzaer/Ultra-Light-Fast-Generic-Face-Detector-1MB)| 💎1MB lightweight face detection model (1MB轻量级人脸检测模型)|6.1k|Python|04/26|
|33|[ymcui/Chinese-BERT-wwm](https://github.com/ymcui/Chinese-BERT-wwm)|Pre-Training with Whole Word Masking for Chinese BERT(中文BERT-wwm系列模型)|6.1k|Python|10/23|
|34|[houtianze/bypy](https://github.com/houtianze/bypy)|Python client for Baidu Yun (Personal Cloud Storage) 百度云/百度网盘Python客户端|6.1k|Python|05/24|
|35|[shidenggui/easytrader](https://github.com/shidenggui/easytrader)|提供同花顺客户端/国金/华泰客户端/雪球的基金、股票自动程序化交易以及自动打新,支持跟踪 joinquant /ricequant 模拟交易 和 实盘雪球组合, 量化交易组件|6.1k|Python|07/17|
|36|[QUANTAXIS/QUANTAXIS](https://github.com/QUANTAXIS/QUANTAXIS)|QUANTAXIS 支持任务调度 分布式部署的 股票/期货/期权/港股/虚拟货币 数据/回测/模拟/交易/可视化/多账户 纯本地量化解决方案|6.0k|Python|10/21|
|37|[kangvcar/InfoSpider](https://github.com/kangvcar/InfoSpider)|INFO-SPIDER 是一个集众多数据源于一身的爬虫工具箱🧰,旨在安全快捷的帮助用户拿回自己的数据,工具代码开源,流程透明。支持数据源包括GitHub、QQ邮箱、网易邮箱、阿里邮箱、新浪邮箱、Hotmail邮箱、Outlook邮箱、京东、淘宝、支付宝、中国移动、中国联通、中国电信、知乎、哔哩哔哩、网易云音乐、QQ好友、QQ群、生成朋友圈相册、浏览器浏览历史、12306、博客园、CSDN博客、开源中国博客、简书。|5.9k|Python|09/08|
|38|[lancopku/pkuseg-python](https://github.com/lancopku/pkuseg-python)|pkuseg多领域中文分词工具; The pkuseg toolkit for multi-domain Chinese word segmentation|5.6k|Python|10/19|
|39|[jackzhenguo/python-small-examples](https://github.com/jackzhenguo/python-small-examples)|告别枯燥,致力于打造 Python 实用小例子,更多Python良心教程见 Python中文网 http://www.zglg.work|6.5k|Python|10/03|
|40|[lining0806/PythonSpiderNotes](https://github.com/lining0806/PythonSpiderNotes)|Python入门网络爬虫之精华版|5.6k|Python|06/21|
|41|[tychxn/jd-assistant](https://github.com/tychxn/jd-assistant)|京东抢购助手:包含登录,查询商品库存/价格,添加/清空购物车,抢购商品(下单),查询订单等功能|4.3k|Python|09/06|
|42|[akfamily/akshare](https://github.com/akfamily/akshare)|AKShare is an elegant and simple financial data interface library for Python, built for human beings! 开源财经数据接口库|4.1k|Python|10/28|
|43|[liangliangyy/DjangoBlog](https://github.com/liangliangyy/DjangoBlog)|🍺基于Django的博客系统|4.1k|Python|10/26|
|44|[EssayKillerBrain/EssayKiller_V2](https://github.com/EssayKillerBrain/EssayKiller_V2)|基于开源GPT2.0的初代创作型人工智能 可扩展、可进化|4.1k|Python|06/18|
|45|[shmilylty/OneForAll](https://github.com/shmilylty/OneForAll)|OneForAll是一款功能强大的子域收集工具|4.0k|Python|10/26|
|46|[yuanxiaosc/DeepNude-an-Image-to-Image-technology](https://github.com/yuanxiaosc/DeepNude-an-Image-to-Image-technology)|DeepNude's algorithm and general image generation theory and practice research, including pix2pix, CycleGAN, UGATIT, DCGAN, SinGAN, ALAE, mGANprior, StarGAN-v2 and VAE models (TensorFlow2 implementation). DeepNude的算法以及通用生成对抗网络(GAN,Generative Adversarial Network)图像生成的理论与实践研究。|4.0k|Python|10/02|
|47|[ownthink/KnowledgeGraphData](https://github.com/ownthink/KnowledgeGraphData)|史上最大规模1.4亿中文知识图谱开源下载|3.8k|Python|06/02|
|48|[TheKingOfDuck/fuzzDicts](https://github.com/TheKingOfDuck/fuzzDicts)|Web Pentesting Fuzz 字典,一个就够了。|3.8k|Python|09/28|
|49|[wbt5/real-url](https://github.com/wbt5/real-url)|获取斗鱼&虎牙&哔哩哔哩&抖音&快手等 58 个直播平台的真实流媒体地址(直播源)和弹幕,直播源可在 PotPlayer、flv.js 等播放器中播放。|3.5k|Python|10/27|
|50|[liuhuanyong/QASystemOnMedicalKG](https://github.com/liuhuanyong/QASystemOnMedicalKG)| A tutorial and implement of disease centered Medical knowledge graph and qa system based on it。知识图谱构建,自动问答,基于kg的自动问答。以疾病为中心的一定规模医药领域知识图谱,并以该知识图谱完成自动问答与分析服务。|3.4k|Python|10/14|
|51|[Jack-Cherish/PythonPark](https://github.com/Jack-Cherish/PythonPark)|Python 开源项目之「自学编程之路」,保姆级教程:AI实验室、宝藏视频、数据结构、学习指南、机器学习实战、深度学习实战、网络爬虫、大厂面经、程序人生、资源分享。|3.4k|Python|10/23|
|52|[TingsongYu/PyTorch_Tutorial](https://github.com/TingsongYu/PyTorch_Tutorial)|《Pytorch模型训练实用教程》中配套代码|3.4k|Python|10/13|
|53|[yoshiko2/AV_Data_Capture](https://github.com/yoshiko2/AV_Data_Capture)|本地电影刮削与整理一体化解决方案|3.3k|Python|10/29|
|54|[PaddlePaddle/PaddleX](https://github.com/PaddlePaddle/PaddleX)|PaddlePaddle End-to-End Development Toolkit(『飞桨』深度学习全流程开发工具)|3.3k|Python|10/28|
|55|[shidenggui/easyquotation](https://github.com/shidenggui/easyquotation)|实时获取新浪 / 腾讯 的免费股票行情 / 集思路的分级基金行情|3.2k|Python|07/29|
|56|[imfht/fanhaodaquan](https://github.com/imfht/fanhaodaquan)| 番号大全。|3.1k|Python|07/11|
|57|[PyQt5/PyQt](https://github.com/PyQt5/PyQt)|PyQt Examples(PyQt各种测试和例子) PyQt4 PyQt5|3.7k|Python|07/13|
|58|[rootphantomer/Blasting_dictionary](https://github.com/rootphantomer/Blasting_dictionary)|爆破字典|3.6k|Python|07/20|
|59|[bowenpay/wechat-spider](https://github.com/bowenpay/wechat-spider)|微信公众号爬虫|2.9k|Python|08/10|
|60|[Rockyzsu/stock](https://github.com/Rockyzsu/stock)|30天掌握量化交易 (持续更新)|2.9k|Python|09/15|
|61|[huangrt01/CS-Notes](https://github.com/huangrt01/CS-Notes)|我的自学笔记,终身更新,当前专注System基础、MLSys。|2.8k|Python|08/18|
|62|[FeeiCN/Cobra](https://github.com/FeeiCN/Cobra)|Source Code Security Audit (源代码安全审计)|2.8k|Python|06/30|
|63|[DA-southampton/NLP_ability](https://github.com/DA-southampton/NLP_ability)|总结梳理自然语言处理工程师(NLP)需要积累的各方面知识,包括面试题,各种基础知识,工程能力等等,提升核心竞争力|2.7k|Python|10/26|
|64|[shibing624/pycorrector](https://github.com/shibing624/pycorrector)|pycorrector is a toolkit for text error correction. 文本纠错,Kenlm,Seq2Seq_Attention,BERT,MacBERT,ELECTRA,ERNIE,Transformer等模型实现,开箱即用。|2.7k|Python|10/25|
|65|[0xHJK/music-dl](https://github.com/0xHJK/music-dl)|search and download music 从网易云音乐、QQ音乐、酷狗音乐、百度音乐、虾米音乐、咪咕音乐等搜索和下载歌曲|2.6k|Python|08/15|
|66|[momosecurity/aswan](https://github.com/momosecurity/aswan)|陌陌风控系统静态规则引擎,零基础简易便捷的配置多种复杂规则,实时高效管控用户异常行为。|2.6k|Python|06/15|
|67|[makelove/OpenCV-Python-Tutorial](https://github.com/makelove/OpenCV-Python-Tutorial)|OpenCV问答群不再维护。有问题,自己去搜索。Google能找到大部分答案。|2.5k|Python|10/13|
|68|[InsaneLife/ChineseNLPCorpus](https://github.com/InsaneLife/ChineseNLPCorpus)|中文自然语言处理数据集,平时做做实验的材料。欢迎补充提交合并。|2.5k|Python|08/01|
|69|[hankcs/pyhanlp](https://github.com/hankcs/pyhanlp)|中文分词 词性标注 命名实体识别 依存句法分析 新词发现 关键词短语提取 自动摘要 文本分类聚类 拼音简繁 自然语言处理|2.5k|Python|04/22|
|70|[letiantian/TextRank4ZH](https://github.com/letiantian/TextRank4ZH)|:deciduous_tree:从中文文本中自动提取关键词和摘要|2.5k|Python|09/04|
|71|[codemayq/chinese_chatbot_corpus](https://github.com/codemayq/chinese_chatbot_corpus)|中文公开聊天语料库|2.5k|Python|08/04|
|72|[7eu7d7/genshin_auto_fish](https://github.com/7eu7d7/genshin_auto_fish)|基于深度强化学习的原神自动钓鱼AI|2.4k|Python|10/15|
|73|[NewFuture/DDNS](https://github.com/NewFuture/DDNS)|:triangular_flag_on_post: 自动更新域名解析到本机IP(支持dnspod,阿里DNS,CloudFlare,华为云,DNSCOM...)|2.4k|Python|10/12|
|74|[newpanjing/simpleui](https://github.com/newpanjing/simpleui)|A modern theme based on vue+element-ui for django admin.一款基于vue+element-ui的django admin现代化主题。全球10000+网站都在使用!喜欢可以点个star✨|2.4k|Python|10/15|
|75|[airingursb/bilibili-user](https://github.com/airingursb/bilibili-user)|🍥 Bilibili 用户爬虫|2.3k|Python|05/02|
|76|[ownthink/Jiagu](https://github.com/ownthink/Jiagu)|Jiagu深度学习自然语言处理工具 知识图谱关系抽取 中文分词 词性标注 命名实体识别 情感分析 新词发现 关键词 文本摘要 文本聚类|2.3k|Python|06/02|
|77|[CLUEbenchmark/CLUE](https://github.com/CLUEbenchmark/CLUE)|中文语言理解测评基准 Chinese Language Understanding Evaluation Benchmark: datasets, baselines, pre-trained models, corpus and leaderboard |2.3k|Python|10/13|
|78|[GeneralNewsExtractor/GeneralNewsExtractor](https://github.com/GeneralNewsExtractor/GeneralNewsExtractor)| 新闻网页正文通用抽取器 Beta 版.|2.2k|Python|10/11|
|79|[nickliqian/cnn_captcha](https://github.com/nickliqian/cnn_captcha)|use cnn recognize captcha by tensorflow. 本项目针对字符型图片验证码,使用tensorflow实现卷积神经网络,进行验证码识别。|2.2k|Python|09/08|
|80|[kwai/DouZero](https://github.com/kwai/DouZero)|[ICML 2021] DouZero: Mastering DouDizhu with Self-Play Deep Reinforcement Learning 斗地主AI|2.2k|Python|10/13|
|81|[PyJun/Mooc_Downloader](https://github.com/PyJun/Mooc_Downloader)|学无止下载器,慕课下载器,Mooc下载,慕课网下载,中国大学下载,爱课程下载,网易云课堂下载,学堂在线下载,超星学习通下载;支持视频,课件同时下载|2.2k|Python|06/30|
|82|[iswbm/magic-python](https://github.com/iswbm/magic-python)|Python 黑魔法手册|2.2k|Python|10/22|
|83|[shinnytech/tqsdk-python](https://github.com/shinnytech/tqsdk-python)|天勤量化开发包, 期货量化, 实时行情/历史数据/实盘交易|2.2k|Python|10/28|
|84|[kerlomz/captcha_trainer](https://github.com/kerlomz/captcha_trainer)|[验证码识别-训练] This project is based on CNN/ResNet/DenseNet+GRU/LSTM+CTC/CrossEntropy to realize verification code identification. This project is only for training the model.|2.2k|Python|10/22|
|85|[LyleMi/Learn-Web-Hacking](https://github.com/LyleMi/Learn-Web-Hacking)|Study Notes For Web Hacking / Web安全学习笔记|2.1k|Python|10/25|
|86|[PegasusWang/python_data_structures_and_algorithms](https://github.com/PegasusWang/python_data_structures_and_algorithms)|Python 中文数据结构和算法教程|2.1k|Python|04/14|
|87|[china-testing/python-api-tesing](https://github.com/china-testing/python-api-tesing)|python中文库-python人工智能大数据自动化接口测试开发。 书籍下载及python库汇总https://china-testing.github.io/ |2.0k|Python|07/16|
|88|[Henryhaohao/Bilibili_video_download](https://github.com/Henryhaohao/Bilibili_video_download)|:rainbow:Bilibili_video_download-B站视频下载|2.0k|Python|04/28|
|89|[BlankerL/DXY-COVID-19-Data](https://github.com/BlankerL/DXY-COVID-19-Data)|2019新型冠状病毒疫情时间序列数据仓库 COVID-19/2019-nCoV Infection Time Series Data Warehouse|2.0k|Python|10/29|
|90|[hunshcn/gh-proxy](https://github.com/hunshcn/gh-proxy)|github release、archive以及项目文件的加速项目|2.0k|Python|10/26|
|91|[brightmart/roberta_zh](https://github.com/brightmart/roberta_zh)|RoBERTa中文预训练模型: RoBERTa for Chinese |1.9k|Python|07/08|
|92|[zhzyker/vulmap](https://github.com/zhzyker/vulmap)|Vulmap 是一款 web 漏洞扫描和验证工具, 可对 webapps 进行漏洞扫描, 并且具备漏洞验证功能|1.9k|Python|10/15|
|93|[crownpku/Information-Extraction-Chinese](https://github.com/crownpku/Information-Extraction-Chinese)|Chinese Named Entity Recognition with IDCNN/biLSTM+CRF, and Relation Extraction with biGRU+2ATT 中文实体识别与关系提取|1.9k|Python|08/31|
|94|[649453932/Bert-Chinese-Text-Classification-Pytorch](https://github.com/649453932/Bert-Chinese-Text-Classification-Pytorch)|使用Bert,ERNIE,进行中文文本分类|1.8k|Python|10/19|
|95|[zhanyong-wan/dongbei](https://github.com/zhanyong-wan/dongbei)|东北方言编程语言|1.8k|Python|10/08|
|96|[awolfly9/IPProxyTool](https://github.com/awolfly9/IPProxyTool)|python ip proxy tool scrapy crawl. 抓取大量免费代理 ip,提取有效 ip 使用|1.8k|Python|10/07|
|97|[zhaoolee/StarsAndClown](https://github.com/zhaoolee/StarsAndClown)|☀️Github星聚弃疗榜, 让吃瓜群众也能享受Github带来的乐趣~Github StarsAndClown, Let the people who eat me can enjoy the fun of Github~|1.8k|Python|08/12|
|98|[HuberTRoy/leetCode](https://github.com/HuberTRoy/leetCode)|:pencil2: 算法相关知识储备 LeetCode with Python and JavaScript :books:|1.7k|Python|07/26|
|99|[observerss/textfilter](https://github.com/observerss/textfilter)|敏感词过滤的几种实现+某1w词敏感词库|1.7k|Python|08/20|
|100|[seisman/how-to-write-makefile](https://github.com/seisman/how-to-write-makefile)|跟我一起写Makefile重制版|1.6k|Python|09/22|
|101|[coffeehb/Some-PoC-oR-ExP](https://github.com/coffeehb/Some-PoC-oR-ExP)|各种漏洞poc、Exp的收集或编写|1.6k|Python|07/27|
|102|[taojy123/KeymouseGo](https://github.com/taojy123/KeymouseGo)|类似按键精灵的鼠标键盘录制和自动化操作 模拟点击和键入 automate mouse clicks and keyboard input|1.6k|Python|08/10|
|103|[justinzm/gopup](https://github.com/justinzm/gopup)|数据接口:百度、谷歌、头条、微博指数,宏观数据,利率数据,货币汇率,千里马、独角兽公司,新闻联播文字稿,影视票房数据,高校名单,疫情数据…|1.6k|Python|09/16|
|104|[xianhu/PSpider](https://github.com/xianhu/PSpider)|简单易用的Python爬虫框架,QQ交流群:597510560|1.6k|Python|06/21|
|105|[youyuge34/PI-REC](https://github.com/youyuge34/PI-REC)|:fire: PI-REC: Progressive Image Reconstruction Network With Edge and Color Domain. :fire: 图像翻译,条件GAN,AI绘画|1.6k|Python|10/13|
|106|[yangjianxin1/GPT2-chitchat](https://github.com/yangjianxin1/GPT2-chitchat)|GPT2 for Chinese chitchat/用于中文闲聊的GPT2模型(实现了DialoGPT的MMI思想)|1.5k|Python|06/16|
|107|[abbeyokgo/PyOne](https://github.com/abbeyokgo/PyOne)|PyOne-一款给力的onedrive文件管理、分享程序|1.5k|Python|09/24|
|108|[nonebot/nonebot](https://github.com/nonebot/nonebot)|基于 OneBot 标准的 Python 异步 QQ 机器人框架 / Asynchronous QQ robot framework based on OneBot for Python|1.5k|Python|10/26|
|109|[Mr-xn/BurpSuite-collections](https://github.com/Mr-xn/BurpSuite-collections)|有关burpsuite的插件(非商店),文章以及使用技巧的收集(此项目不再提供burpsuite破解文件,如需要请在博客mrxn.net下载)---Collection of burpsuite plugins (non-stores), articles and tips for using Burpsuite, no crack version file|1.4k|Python|08/23|
|110|[dataabc/weibo-crawler](https://github.com/dataabc/weibo-crawler)|新浪微博爬虫,用python爬取新浪微博数据,并下载微博图片和微博视频|1.4k|Python|10/10|
|111|[songyouwei/ABSA-PyTorch](https://github.com/songyouwei/ABSA-PyTorch)|Aspect Based Sentiment Analysis, PyTorch Implementations. 基于方面的情感分析,使用PyTorch实现。|1.4k|Python|08/05|
|112|[sczhengyabin/Image-Downloader](https://github.com/sczhengyabin/Image-Downloader)|Download images from Google, Bing, Baidu. 谷歌、百度、必应图片下载.|1.4k|Python|06/02|
|113|[HatBoy/Struts2-Scan](https://github.com/HatBoy/Struts2-Scan)|Struts2全漏洞扫描利用工具|1.3k|Python|07/12|
|114|[ymcui/Chinese-XLNet](https://github.com/ymcui/Chinese-XLNet)|Pre-Trained Chinese XLNet(中文XLNet预训练模型)|1.3k|Python|10/23|
|115|[blackholll/loonflow](https://github.com/blackholll/loonflow)|基于django的工作流引擎,工单(a workflow engine base on django python)|1.3k|Python|10/21|
|116|[wnma3mz/wechat_articles_spider](https://github.com/wnma3mz/wechat_articles_spider)|微信公众号文章的爬虫|1.3k|Python|09/09|
|117|[dingdang-robot/dingdang-robot](https://github.com/dingdang-robot/dingdang-robot)|🤖 叮当是一款可以工作在 Raspberry Pi 上的中文语音对话机器人/智能音箱项目。|1.3k|Python|10/28|
|118|[0Chencc/CTFCrackTools](https://github.com/0Chencc/CTFCrackTools)|China's first CTFTools framework.中国国内首个CTF工具框架,旨在帮助CTFer快速攻克难关|1.3k|Python|06/24|
|119|[caj2pdf/caj2pdf](https://github.com/caj2pdf/caj2pdf)|Convert CAJ (China Academic Journals) files to PDF. 转换中国知网 CAJ 格式文献为 PDF。佛系转换,成功与否,皆是玄学。|1.3k|Python|10/12|
|120|[imcaspar/gpt2-ml](https://github.com/imcaspar/gpt2-ml)|GPT2 for Multiple Languages, including pretrained models. GPT2 多语言支持, 15亿参数中文预训练模型|1.3k|Python|08/25|
|121|[LoRexxar/Kunlun-M](https://github.com/LoRexxar/Kunlun-M)|KunLun-M是一个完全开源的静态白盒扫描工具,支持PHP、JavaScript的语义扫描,基础安全、组件安全扫描,Chrome Ext\Solidity的基础扫描。|1.3k|Python|10/27|
|122|[crownpku/Rasa_NLU_Chi](https://github.com/crownpku/Rasa_NLU_Chi)|Turn Chinese natural language into structured data 中文自然语言理解|1.3k|Python|08/31|
|123|[guofei9987/blind_watermark](https://github.com/guofei9987/blind_watermark)|Blind Watermark (图片盲水印,提取水印无须原图!)|1.2k|Python|07/21|
|124|[striver-ing/wechat-spider](https://github.com/striver-ing/wechat-spider)|开源微信爬虫:爬取公众号所有 文章、阅读量、点赞量和评论内容。易部署。持续维护!!!|1.2k|Python|09/22|
|125|[jimmy201602/webterminal](https://github.com/jimmy201602/webterminal)|ssh rdp vnc telnet sftp bastion/jump web putty xshell terminal jumpserver audit realtime monitor rz/sz 堡垒机 云桌面 linux devops sftp websocket file management rz/sz otp 自动化运维 审计 录像 文件管理 sftp上传 实时监控 录像回放 网页版rz/sz上传下载/动态口令 django|1.2k|Python|10/06|
|126|[bubbliiiing/yolov4-pytorch](https://github.com/bubbliiiing/yolov4-pytorch)|这是一个YoloV4-pytorch的源码,可以用于训练自己的模型。|1.2k|Python|10/18|
|127|[MoyuScript/bilibili-api](https://github.com/MoyuScript/bilibili-api)|哔哩哔哩的API调用模块|1.2k|Python|10/08|
|128|[librauee/Reptile](https://github.com/librauee/Reptile)|🏀 Python3 网络爬虫实战(部分含详细教程)猫眼 腾讯视频 豆瓣 研招网 微博 笔趣阁小说 百度热点 B站 CSDN 网易云阅读 阿里文学 百度股票 今日头条 微信公众号 网易云音乐 拉勾 有道 unsplash 实习僧 汽车之家 英雄联盟盒子 大众点评 链家 LPL赛程 台风 梦幻西游、阴阳师藏宝阁 天气 牛客网 百度文库 睡前故事 知乎 Wish|1.2k|Python|04/20|
|129|[conanhujinming/comments-for-awesome-courses](https://github.com/conanhujinming/comments-for-awesome-courses)|名校公开课程评价网|1.2k|Python|10/27|
|130|[githublitao/api_automation_test](https://github.com/githublitao/api_automation_test)|接口自动化测试平台,已停止维护,看心情改改|1.2k|Python|06/11|
|131|[0x727/ShuiZe_0x727](https://github.com/0x727/ShuiZe_0x727)|信息收集自动化工具|1.2k|Python|10/18|
|132|[yongzhuo/nlp_xiaojiang](https://github.com/yongzhuo/nlp_xiaojiang)|自然语言处理(nlp),小姜机器人(闲聊检索式chatbot),BERT句向量-相似度(Sentence Similarity),XLNET句向量-相似度(text xlnet embedding),文本分类(Text classification), 实体提取(ner,bert+bilstm+crf),数据增强(text augment, data enhance),同义句同义词生成,句子主干提取(mainpart),中文汉语短文本相似度,文本特征工程,keras-http-service调用|1.2k|Python|09/23|
|133|[dongweiming/web_develop](https://github.com/dongweiming/web_develop)|《Python Web开发实战》书中源码|1.2k|Python|09/08|
|134|[yongzhuo/Keras-TextClassification](https://github.com/yongzhuo/Keras-TextClassification)|中文长文本分类、短句子分类、多标签分类、两句子相似度(Chinese Text Classification of Keras NLP, multi-label classify, or sentence classify, long or short),字词句向量嵌入层(embeddings)和网络层(graph)构建基类,FastText,TextCNN,CharCNN,TextRNN, RCNN, DCNN, DPCNN, VDCNN, CRNN, Bert, Xlnet, Albert, Attention, DeepMoji, HAN, 胶囊网络-CapsuleNet, Tran ...|1.2k|Python|09/02|
|135|[fzlee/alipay](https://github.com/fzlee/alipay)|Python Alipay(支付宝) SDK with SHA1/SHA256 support|1.1k|Python|08/19|
|136|[CTF-MissFeng/bayonet](https://github.com/CTF-MissFeng/bayonet)|bayonet是一款src资产管理系统,从子域名、端口服务、漏洞、爬虫等一体化的资产管理系统|1.1k|Python|09/08|
|137|[twtrubiks/docker-tutorial](https://github.com/twtrubiks/docker-tutorial)|Docker 基本教學 - 從無到有 Docker-Beginners-Guide 教你用 Docker 建立 Django + PostgreSQL 📝|1.0k|Python|10/12|
|138|[plctlab/v8-internals](https://github.com/plctlab/v8-internals)|面向编译器开发人员的V8内部实现文档|1.0k|Python|09/10|
|139|[StepfenShawn/Cantonese](https://github.com/StepfenShawn/Cantonese)|粤语编程语言.The Cantonese programming language.|1.0k|Python|10/23|
|140|[refraction-ray/xalpha](https://github.com/refraction-ray/xalpha)|基金投资管理回测引擎|1.0k|Python|09/12|
|141|[ymcui/Chinese-ELECTRA](https://github.com/ymcui/Chinese-ELECTRA)|Pre-trained Chinese ELECTRA(中文ELECTRA预训练模型)|1.0k|Python|10/23|
|142|[phodal/iot](https://github.com/phodal/iot)|IoT, 这是一个最小Internet of Things ,一个Internet of Things相关的毕业设计产生的一个简化的物联网系统。 。|1.0k|Python|05/17|
|143|[gxcuizy/Python](https://github.com/gxcuizy/Python)|Python3编写的各种大小程序,包含从零学Python系列、12306抢票、省市区地址库以及系列网站爬虫等学习源码|943|Python|09/24|
|144|[drcoms/drcom-generic](https://github.com/drcoms/drcom-generic)|Dr.COM/DrCOM 现已覆盖 d p x三版。|936|Python|04/29|
|145|[coneypo/Dlib_face_recognition_from_camera](https://github.com/coneypo/Dlib_face_recognition_from_camera)|Detect and recognize the faces from camera / 调用摄像头进行人脸识别,支持多张人脸同时识别|917|Python|10/28|
|146|[rachpt/lanzou-gui](https://github.com/rachpt/lanzou-gui)|蓝奏云 蓝奏云客户端 蓝奏网盘 GUI版本|907|Python|05/16|
|147|[timwhitez/crawlergo_x_XRAY](https://github.com/timwhitez/crawlergo_x_XRAY)|360/0Kee-Team/crawlergo动态爬虫结合长亭XRAY扫描器的被动扫描功能|906|Python|07/23|
|148|[mlouielu/twstock](https://github.com/mlouielu/twstock)|台灣股市股票價格擷取 (含即時股票資訊) - Taiwan Stock Opendata with realtime|902|Python|10/11|
|149|[yqchilde/JDMemberCloseAccount](https://github.com/yqchilde/JDMemberCloseAccount)|学习python操作selenium的一个🌰 ,也是一种京东全自动退会方案|914|Python|10/26|
|150|[yangxudong/deeplearning](https://github.com/yangxudong/deeplearning)|深度学习相关的模型训练、评估和预测相关代码|887|Python|07/26|
|151|[Alic-yuan/nlp-beginner-finish](https://github.com/Alic-yuan/nlp-beginner-finish)|此项目完成了关于 NLP-Beginner:自然语言处理入门练习 的所有任务,所有代码都经过测试,可以正常运行。|872|Python|05/01|
|152|[SleepyBag/Statistical-Learning-Methods](https://github.com/SleepyBag/Statistical-Learning-Methods)|Implement Statistical Leanring Methods, Li Hang the hard way. 李航《统计学习方法》一书的硬核 Python 实现|862|Python|08/17|
|153|[baidu/CUP](https://github.com/baidu/CUP)|CUP, common useful python-lib. (Currently, Most popular python lib in baidu). Python 开发底层库, 涵盖util、service(threadpool/generator/executor/cache等等)、logging、monitoring、增强型配置 等等库支持|861|Python|08/31|
|154|[josonle/Coding-Now](https://github.com/josonle/Coding-Now)|学习记录的一些笔记,以及所看得一些电子书eBooks、视频资源和平常收纳的一些自己认为比较好的博客、网站、工具。涉及大数据几大组件、Python机器学习和数据分析、Linux、操作系统、算法、网络等|856|Python|09/08|
|155|[ZSAIm/iqiyi-parser](https://github.com/ZSAIm/iqiyi-parser)|解析下载爱奇艺、哔哩哔哩、腾讯视频|851|Python|09/08|
|156|[Hopetree/izone](https://github.com/Hopetree/izone)|django+bootstrap4 个人博客|845|Python|10/10|
|157|[ninthDevilHAUNSTER/ArknightsAutoHelper](https://github.com/ninthDevilHAUNSTER/ArknightsAutoHelper)|Arknights Auto Helper based on ADB and Python 基于python的明日方舟护肝助手|840|Python|10/28|
|158|[FunnyWolf/pystinger](https://github.com/FunnyWolf/pystinger)|Bypass firewall for traffic forwarding using webshell 一款使用webshell进行流量转发的出网工具|838|Python|09/29|
|159|[Hackxiaoya/CuteOne](https://github.com/Hackxiaoya/CuteOne)|这大概是最好的onedrive挂载程序了吧,我猜。|837|Python|06/02|
|160|[mtianyan/FunpySpiderSearchEngine](https://github.com/mtianyan/FunpySpiderSearchEngine)|Word2vec 千人千面 个性化搜索 + Scrapy2.3.0(爬取数据) + ElasticSearch7.9.1(存储数据并提供对外Restful API) + Django3.1.1 搜索|834|Python|10/07|
|161|[zhuifengshen/DingtalkChatbot](https://github.com/zhuifengshen/DingtalkChatbot)|钉钉群自定义机器人消息Python封装|824|Python|08/26|
|162|[nonebot/nonebot2](https://github.com/nonebot/nonebot2)|跨平台Python异步机器人框架|822|Python|10/28|
|163|[zaxlct/imooc-django](https://github.com/zaxlct/imooc-django)|高仿慕课网:py3.5 + Django1.10 + xadmin 搭建的在线课程教育平台|817|Python|09/08|
|164|[conwnet/wpa-dictionary](https://github.com/conwnet/wpa-dictionary)|WPA/WPA2 密码字典,用于 wifi 密码暴力破解|806|Python|07/21|
|165|[andyzys/jd_seckill](https://github.com/andyzys/jd_seckill)|京东秒杀商品抢购|805|-|07/07|
|166|[Meituan-Dianping/lyrebird](https://github.com/Meituan-Dianping/lyrebird)|移动应用插件化测试工作台|804|Python|10/28|
|167|[c0ny1/upload-fuzz-dic-builder](https://github.com/c0ny1/upload-fuzz-dic-builder)|上传漏洞fuzz字典生成脚本|803|Python|04/01|
|168|[tp4a/teleport](https://github.com/tp4a/teleport)|Teleport是一款简单易用的堡垒机系统。|800|Python|10/11|
|169|[FutunnOpen/py-futu-api](https://github.com/FutunnOpen/py-futu-api)|富途 OpenAPI Python SDK|796|Python|10/13|
|170|[DLLXW/data-science-competition](https://github.com/DLLXW/data-science-competition)|该仓库用于记录作者本人参加的各大数据科学竞赛的获奖方案源码以及一些新比赛的原创baseline. 主要涵盖:kaggle, 阿里天池,华为云大赛校园赛,百度aistudio,和鲸社区,datafountain等|790|Python|10/13|
|171|[HaoZhang95/Python24](https://github.com/HaoZhang95/Python24)|网上搜集的自学python语言的资料集合,包括整套代码和讲义集合,这是至今为止所开放网上能够查找到的最新视频教程,网上找不到其他最新的python整套视频了,. 具体的无加密的mp4视频教程和讲义集合可以在更新的Readme文件中找到,下载直接打开就能播放,项目从零基础的Python教程到深度学习,总共30章节,其中包含Python基础中的飞机大战项目,WSGI项目,Flask新经资讯项目, Django的电商项目(本应该的美多商城项目因为使用的是Vue技术,所以替换为Django天天生鲜项目)等等,希望能够帮助大家。资源搜集劳神费力,能帮到你的话是我的福分,望大家多多支持,喜欢本仓库的话,记 ...|781|Python|10/07|
|172|[sngyai/Sequoia](https://github.com/sngyai/Sequoia)|A股自动选股程序,实现了海龟交易法则、缠中说禅牛市买点,以及其他若干种技术形态|778|Python|08/11|
|173|[wylok/sparrow](https://github.com/wylok/sparrow)|运维管理平台(python3+flask+pycharts+apscheduler+gunicorn),模块化结构设计,底层依托mysql、influxdb、elasticsearch、zabbix、k8s等数据源数据|769|Python|09/08|
|174|[w5teams/w5](https://github.com/w5teams/w5)|Security Orchestration, Automation and Response (SOAR) Platform. 安全编排与自动化响应平台,无需编写代码的安全自动化,使用 SOAR 可以让团队工作更加高效|768|Python|10/09|
|175|[s045pd/DarkNet_ChineseTrading](https://github.com/s045pd/DarkNet_ChineseTrading)|🚇暗网中文网监控爬虫(DEEPMIX)|766|Python|08/25|
|176|[dongrixinyu/JioNLP](https://github.com/dongrixinyu/JioNLP)|中文 NLP 预处理、解析工具包,准确、高效、易用 A Chinese NLP Preprocessing and Parsing Package|762|Python|10/26|
|177|[Tencent/bk-sops](https://github.com/Tencent/bk-sops)|蓝鲸智云标准运维(SOPS)|756|Python|10/28|
|178|[Xovee/uestc-course](https://github.com/Xovee/uestc-course)|电子科技大学课程资料共享平台. Course review material sharing platform of UESTC.|754|Python|10/15|
|179|[CollegesChat/university-information](https://github.com/CollegesChat/university-information)|收集全国各高校招生时不会写明,却会实实在在影响大学生活质量的要求与细节|754|Python|08/25|
|180|[fkxxyz/rime-cloverpinyin](https://github.com/fkxxyz/rime-cloverpinyin)|🍀️四叶草拼音输入方案,做最好用的基于rime开源的简体拼音输入方案!|747|Python|06/30|
|181|[425776024/nlpcda](https://github.com/425776024/nlpcda)|一键中文数据增强包 ; NLP数据增强、bert数据增强、EDA:pip install nlpcda|739|Python|10/13|
|182|[fire-keeper/BlindWatermark](https://github.com/fire-keeper/BlindWatermark)|使用盲水印保护创作者的知识产权using invisible watermark to protect creator's intellectual property|725|Python|10/13|
|183|[SeanLee97/xmnlp](https://github.com/SeanLee97/xmnlp)|xmnlp:提供中文分词, 词性标注, 命名体识别,情感分析,文本纠错,文本转拼音,文本摘要,偏旁部首等功能|724|Python|10/17|
|184|[Lucifer1993/SatanSword](https://github.com/Lucifer1993/SatanSword)|红队综合渗透框架|721|Python|06/02|
|185|[out0fmemory/qqwry.dat](https://github.com/out0fmemory/qqwry.dat)|自动更新的纯真ip库,每天自动更新|718|Python|10/27|
|186|[yidao620c/core-algorithm](https://github.com/yidao620c/core-algorithm)|算法集锦的python实现|712|Python|09/12|
|187|[datawhalechina/fun-rec](https://github.com/datawhalechina/fun-rec)|推荐系统中文教程|709|Python|09/24|
|188|[twtrubiks/django-rest-framework-tutorial](https://github.com/twtrubiks/django-rest-framework-tutorial)|Django-REST-framework 基本教學 - 從無到有 DRF-Beginners-Guide 📝|689|Python|10/12|
|189|[WenmuZhou/PytorchOCR](https://github.com/WenmuZhou/PytorchOCR)|基于Pytorch的OCR工具库,支持常用的文字检测和识别算法|689|Python|10/10|
|190|[broken5/WebAliveScan](https://github.com/broken5/WebAliveScan)|对目标域名进行快速的存活扫描、简单的指纹识别、目录扫描|687|Python|09/08|
|191|[521xueweihan/hellogithub.com](https://github.com/521xueweihan/hellogithub.com)|HelloGitHub.com 网站源码|687|Python|06/03|
|192|[baidu/DDParser](https://github.com/baidu/DDParser)|百度开源的依存句法分析系统|679|Python|10/28|
|193|[tuna/blogroll](https://github.com/tuna/blogroll)|世界一流兼容并包TUNA协会收集的周围同学们的Blog|678|Python|10/21|
|194|[ausaki/subfinder](https://github.com/ausaki/subfinder)|字幕查找器|674|Python|07/17|
|195|[PaddlePaddle/PaddleRec](https://github.com/PaddlePaddle/PaddleRec)|大规模推荐模型训练工具|669|Python|10/27|
|196|[JasonLiTW/simple-railway-captcha-solver](https://github.com/JasonLiTW/simple-railway-captcha-solver)|實作基於CNN的台鐵訂票驗證碼辨識以及透過模仿及資料增強的訓練集產生器 (Simple captcha solver based on CNN and a training set generator by imitating the style of captcha and data augmentation)|669|Python|10/03|
|197|[coco369/knowledge](https://github.com/coco369/knowledge)|python学习之路,就是不断累积,不断学习的过程。该知识库讲解了Python Web框架内容,如Django、DjangoRestFramework、tornado、flask,redis,MySQL,MongoDB,docker,Vue等内容|668|Python|10/13|
|198|[yanyan-li/SLAM-BOOK](https://github.com/yanyan-li/SLAM-BOOK)|这是一本关于SLAM的书稿,希望能清楚的介绍SLAM系统中的使用的几何方法和深度学习方法。书稿最后应该会达到200页左右,书稿每章对应的代码也会被整理出来。|643|Python|06/12|
|199|[zengbin93/czsc](https://github.com/zengbin93/czsc)|缠中说禅技术分析工具;缠论;股票;期货|640|Python|10/26|
|200|[wgpsec/DBJ](https://github.com/wgpsec/DBJ)|大宝剑-边界资产梳理工具(红队、蓝队、企业组织架构、子域名、Web资产梳理、Web指纹识别、ICON_Hash资产匹配)|636|Python|10/23|
⬆ [回到目录](#目录)
<br/>
## Go
|#|Repository|Description|Stars|Language|Updated|
|:-|:-|:-|:-|:-|:-|
|1|[unknwon/the-way-to-go_ZH_CN](https://github.com/unknwon/the-way-to-go_ZH_CN)|《The Way to Go》中文译本,中文正式名《Go 入门指南》|27.8k|Go|10/25|
|2|[kataras/iris](https://github.com/kataras/iris)|The fastest HTTP/2 Go Web Framework. AWS Lambda, gRPC, MVC, Unique Router, Websockets, Sessions, Test suite, Dependency Injection and more. A true successor of expressjs and laravel 谢谢 https://github.com/kataras/iris/issues/1329 |21.3k|Go|10/13|
|3|[halfrost/LeetCode-Go](https://github.com/halfrost/LeetCode-Go)|✅ Solutions to LeetCode by Go, 100% test coverage, runtime beats 100% / LeetCode 题解|21.0k|Go|10/27|
|4|[ehang-io/nps](https://github.com/ehang-io/nps)|一款轻量级、高性能、功能强大的内网穿透代理服务器。支持tcp、udp、socks5、http等几乎所有流量转发,可用来访问内网网站、本地支付接口调试、ssh访问、远程桌面,内网dns解析、内网socks5代理等等……,并带有功能强大的web管理端。a lightweight, high-performance, powerful intranet penetration proxy server, with a powerful web management terminal.|18.8k|Go|10/15|
|5|[chai2010/advanced-go-programming-book](https://github.com/chai2010/advanced-go-programming-book)|:books: 《Go语言高级编程》开源图书,涵盖CGO、Go汇编语言、RPC实现、Protobuf插件实现、Web框架实现、分布式系统等高阶主题(完稿)|16.0k|Go|10/22|
|6|[greyireland/algorithm-pattern](https://github.com/greyireland/algorithm-pattern)|算法模板,最科学的刷题方式,最快速的刷题路径,你值得拥有~|12.8k|Go|05/14|
|7|[txthinking/brook](https://github.com/txthinking/brook)|Brook is a cross-platform strong encryption and not detectable proxy. Zero-Configuration. Brook 是一个跨平台的强加密无特征的代理软件. 零配置.|12.6k|Go|10/22|
|8|[peterq/pan-light](https://github.com/peterq/pan-light)|百度网盘不限速客户端, golang + qt5, 跨平台图形界面|11.7k|Go|10/06|
|9|[cloudreve/Cloudreve](https://github.com/cloudreve/Cloudreve)|🌩支持多家云存储的云盘系统 (Self-deployed file management and sharing system, supports multiple storage providers)|11.4k|Go|10/18|
|10|[snail007/goproxy](https://github.com/snail007/goproxy)|🔥 Proxy is a high performance HTTP(S) proxies, SOCKS5 proxies,WEBSOCKET, TCP, UDP proxy server implemented by golang. Now, it supports chain-style proxies,nat forwarding in different lan,TCP/UDP port forwarding, SSH forwarding.Proxy是golang实现的高性能http,https,websocket,tcp,socks5代理服务器,支持内网穿透,链式代理,通讯加密, ...|11.1k|Go|10/18|
|11|[flipped-aurora/gin-vue-admin](https://github.com/flipped-aurora/gin-vue-admin)|基于vite+vue3+gin搭建的开发基础平台,集成jwt鉴权,权限管理,动态路由,分页封装,多点登录拦截,资源权限,上传下载,代码生成器,表单生成器等开发必备功能,五分钟一套CURD前后端代码,欢迎issue和pr~|10.0k|Go|10/28|
|12|[talkgo/night](https://github.com/talkgo/night)|Weekly Go Online Meetup via Bilibili|Go 夜读|通过 bilibili 在线直播的方式分享 Go 相关的技术话题,每天大家在微信/telegram/Slack 上及时沟通交流编程技术话题。|9.8k|Go|10/28|
|13|[getlantern/lantern](https://github.com/getlantern/lantern)|Lantern官方版本下载 蓝灯 翻墙 代理 科学上网 外网 加速器 梯子 路由 lantern proxy vpn censorship-circumvention censorship gfw accelerator|9.8k|Go|09/23|
|14|[halfrost/Halfrost-Field](https://github.com/halfrost/Halfrost-Field)|✍🏻 这里是写博客的地方 —— Halfrost-Field 冰霜之地|9.6k|Go|06/11|
|15|[geektutu/7days-golang](https://github.com/geektutu/7days-golang)|7 days golang programs from scratch (web framework Gee, distributed cache GeeCache, object relational mapping ORM framework GeeORM, rpc framework GeeRPC etc) 7天用Go动手写/从零实现系列|8.7k|Go|08/26|
|16|[crawlab-team/crawlab](https://github.com/crawlab-team/crawlab)|Distributed web crawler admin platform for spiders management regardless of languages and frameworks. 分布式爬虫管理平台,支持任何语言和框架|8.3k|Go|10/24|
|17|[polaris1119/The-Golang-Standard-Library-by-Example](https://github.com/polaris1119/The-Golang-Standard-Library-by-Example)|Golang标准库。对于程序员而言,标准库与语言本身同样重要,它好比一个百宝箱,能为各种常见的任务提供完美的解决方案。以示例驱动的方式讲解Golang的标准库。|8.2k|Go|10/19|
|18|[unknwon/go-fundamental-programming](https://github.com/unknwon/go-fundamental-programming)|《Go 编程基础》是一套针对 Google 出品的 Go 语言的视频语音教程,主要面向新手级别的学习者。|7.9k|Go|10/25|
|19|[panjf2000/ants](https://github.com/panjf2000/ants)|🐜🐜🐜 ants is a high-performance and low-cost goroutine pool in Go, inspired by fasthttp./ ants 是一个高性能且低损耗的 goroutine 池。|6.8k|Go|10/23|
|20|[smallnest/rpcx](https://github.com/smallnest/rpcx)|Best microservices framework in Go, like alibaba Dubbo, but with more features, Scale easily. Try it. Test it. If you feel it's better, use it! 𝐉𝐚𝐯𝐚有𝐝𝐮𝐛𝐛𝐨, 𝐆𝐨𝐥𝐚𝐧𝐠有𝐫𝐩𝐜𝐱!|6.2k|Go|10/25|
|21|[senghoo/golang-design-pattern](https://github.com/senghoo/golang-design-pattern)|设计模式 Golang实现-《研磨设计模式》读书笔记|5.6k|Go|05/12|
|22|[panjf2000/gnet](https://github.com/panjf2000/gnet)|🚀 gnet is a high-performance, lightweight, non-blocking, event-driven networking framework written in pure Go./ gnet 是一个高性能、轻量级、非阻塞的事件驱动 Go 网络框架。|5.4k|Go|10/24|
|23|[mindoc-org/mindoc](https://github.com/mindoc-org/mindoc)|Golang实现的基于beego框架的接口在线文档管理系统|5.3k|Go|10/15|
|24|[go-admin-team/go-admin](https://github.com/go-admin-team/go-admin)|基于Gin + Vue + Element UI的前后端分离权限管理系统脚手架(包含了:多租户的支持,基础用户管理功能,jwt鉴权,代码生成器,RBAC资源控制,表单构建,定时任务等)3分钟构建自己的中后台项目;文档:https://doc.go-admin.dev Demo: https://www.go-admin.dev Antd beta版本:https://preview.go-admin.dev|5.1k|Go|10/22|
|25|[EasyDarwin/EasyDarwin](https://github.com/EasyDarwin/EasyDarwin)|open source、high performance、industrial rtsp streaming server,a lot of optimization on streaming relay,KeyFrame cache,RESTful,and web management,also EasyDarwin support distributed load balancing,a simple streaming media cloud platform architecture.高性能开源RTSP流媒体服务器,基于go语言研发,维护和优化:RTSP推模式转发、RTSP拉模式转发、 ...|5.1k|Go|10/26|
|26|[fanux/sealos](https://github.com/fanux/sealos)|一条命令离线安装高可用kubernetes,3min装完,700M,100年证书,生产环境稳如老狗|4.9k|Go|10/09|
|27|[tophubs/TopList](https://github.com/tophubs/TopList)|今日热榜,一个获取各大热门网站热门头条的聚合网站,使用Go语言编写,多协程异步快速抓取信息,预览:https://mo.fish|4.3k|Go|08/28|
|28|[chaosblade-io/chaosblade](https://github.com/chaosblade-io/chaosblade)|An easy to use and powerful chaos engineering experiment toolkit.(阿里巴巴开源的一款简单易用、功能强大的混沌实验注入工具)|4.2k|Go|10/23|
|29|[Tencent/bk-cmdb](https://github.com/Tencent/bk-cmdb)|蓝鲸智云配置平台(BlueKing CMDB)|4.2k|Go|10/28|
|30|[ouqiang/gocron](https://github.com/ouqiang/gocron)|定时任务管理系统|4.1k|Go|09/01|
|31|[huichen/wukong](https://github.com/huichen/wukong)|高度可定制的全文搜索引擎|4.0k|Go|08/24|
|32|[KubeOperator/KubeOperator](https://github.com/KubeOperator/KubeOperator)|KubeOperator 是一个开源的轻量级 Kubernetes 发行版,专注于帮助企业规划、部署和运营生产级别的 K8s 集群。|4.0k|Go|10/25|
|33|[aceld/zinx](https://github.com/aceld/zinx)|基于Golang轻量级TCP并发服务器框架|4.0k|Go|09/06|
|34|[lanyulei/ferry](https://github.com/lanyulei/ferry)|本系统是集工单统计、任务钩子、权限管理、灵活配置流程与模版等等于一身的开源工单系统,当然也可以称之为工作流引擎。 致力于减少跨部门之间的沟通,自动任务的执行,提升工作效率与工作质量,减少不必要的工作量与人为出错率。|4.0k|Go|09/18|
|35|[SmartKeyerror/Psyduck](https://github.com/SmartKeyerror/Psyduck)|Record CS knowlegement with XMind, version 2.0. 使用 XMind 记录 Linux 操作系统,网络,C++,Golang 以及数据库的一些设计|4.0k|Go|10/21|
|36|[p4gefau1t/trojan-go](https://github.com/p4gefau1t/trojan-go)|Go实现的Trojan代理,支持多路复用/路由功能/CDN中转/Shadowsocks混淆插件,多平台,无依赖。A Trojan proxy written in Go. An unidentifiable mechanism that helps you bypass GFW. https://p4gefau1t.github.io/trojan-go/|3.8k|Go|10/15|
|37|[chai2010/go-ast-book](https://github.com/chai2010/go-ast-book)|:books: 《Go语法树入门——开启自制编程语言和编译器之旅》(开源免费图书/Go语言进阶/掌握抽象语法树/Go语言AST/凹语言)|3.7k|Go|10/07|
|38|[moonD4rk/HackBrowserData](https://github.com/moonD4rk/HackBrowserData)|Decrypt passwords/cookies/history/bookmarks from the browser. 一款可全平台运行的浏览器数据导出解密工具。|3.7k|Go|10/14|
|39|[gwuhaolin/lightsocks](https://github.com/gwuhaolin/lightsocks)|⚡️一个轻巧的网络混淆代理🌏|3.7k|Go|05/18|
|40|[yedf/dtm](https://github.com/yedf/dtm)|🔥A cross-language distributed transaction manager. Support xa, tcc, saga, transactional messages. 跨语言分布式事务管理器|3.4k|Go|10/28|
|41|[overnote/over-golang](https://github.com/overnote/over-golang)|Golang相关:[审稿进度80%]Go语法、Go并发思想、Go与web开发、Go微服务设施等|3.4k|Go|10/28|
|42|[douyu/jupiter](https://github.com/douyu/jupiter)|Jupiter是斗鱼开源的面向服务治理的Golang微服务框架|3.3k|Go|10/18|
|43|[golang-design/Go-Questions](https://github.com/golang-design/Go-Questions)|📖 从问题切入,串连 Go 语言相关的所有知识,融会贯通。 https://golang.design/go-questions|3.3k|Go|08/16|
|44|[golang-design/under-the-hood](https://github.com/golang-design/under-the-hood)|📚 Go: Under The Hood Go 语言原本 https://golang.design/under-the-hood|3.3k|Go|07/30|
|45|[silenceper/wechat](https://github.com/silenceper/wechat)|WeChat SDK for Go (微信SDK:简单、易用)|3.0k|Go|10/24|
|46|[Mrs4s/go-cqhttp](https://github.com/Mrs4s/go-cqhttp)|cqhttp的golang实现,轻量、原生跨平台.|3.0k|Go|10/28|
|47|[qax-os/ElasticHD](https://github.com/qax-os/ElasticHD)|Elasticsearch 可视化DashBoard, 支持Es监控、实时搜索,Index template快捷替换修改,索引列表信息查看, SQL converts to DSL等 |2.9k|Go|09/28|
|48|[sjqzhang/go-fastdfs](https://github.com/sjqzhang/go-fastdfs)|go-fastdfs 是一个简单的分布式文件系统(私有云存储),具有无中心、高性能,高可靠,免维护等优点,支持断点续传,分块上传,小文件合并,自动同步,自动修复。Go-fastdfs is a simple distributed file system (private cloud storage), with no center, high performance, high reliability, maintenance free and other advantages, support breakpoint continuation, block upload, small fil ...|2.9k|Go|10/11|
|49|[goodrain/rainbond](https://github.com/goodrain/rainbond)|Cloud-native and easy-to-use application management platform 云原生且易用的应用管理平台|2.8k|Go|10/27|
|50|[eolinker/goku_lite](https://github.com/eolinker/goku_lite)|A Powerful HTTP API Gateway in pure golang!Goku API Gateway (中文名:悟空 API 网关)是一个基于 Golang开发的微服务网关,能够实现高性能 HTTP API 转发、服务编排、多租户管理、API 访问权限控制等目的,拥有强大的自定义插件系统可以自行扩展,并且提供友好的图形化配置界面,能够快速帮助企业进行 API 服务治理、提高 API 服务的稳定性和安全性。|2.7k|Go|09/28|
|51|[gopl-zh/gopl-zh.github.com](https://github.com/gopl-zh/gopl-zh.github.com)|Go语言圣经中文版(只接收PR, Issue请提交到golang-china/gopl-zh)|2.7k|Go|09/23|
|52|[Jrohy/trojan](https://github.com/Jrohy/trojan)|trojan多用户管理部署程序, 支持web页面管理|2.7k|Go|10/25|
|53|[shadow1ng/fscan](https://github.com/shadow1ng/fscan)|一款内网综合扫描工具,方便一键自动化、全方位漏扫扫描。|2.5k|Go|10/14|
|54|[geektutu/high-performance-go](https://github.com/geektutu/high-performance-go)|high performance coding with golang(Go 语言高性能编程,Go 语言陷阱,Gotchas,Traps)|2.5k|Go|06/05|
|55|[TruthHun/BookStack](https://github.com/TruthHun/BookStack)|BookStack,基于MinDoc,使用Beego开发的在线文档管理系统,功能类似Gitbook和看云。|2.4k|Go|04/28|
|56|[xinliangnote/go-gin-api](https://github.com/xinliangnote/go-gin-api)|基于 Gin 进行模块化设计的 API 框架,封装了常用功能,使用简单,致力于进行快速的业务研发。比如,支持 cors 跨域、jwt 签名验证、zap 日志收集、panic 异常捕获、trace 链路追踪、prometheus 监控指标、swagger 文档生成、viper 配置文件解析、gorm 数据库组件、gormgen 代码生成工具、graphql 查询语言、errno 统一定义错误码、gRPC 的使用、cron 定时任务 等等。|2.4k|Go|10/01|
|57|[eyebluecn/tank](https://github.com/eyebluecn/tank)|《蓝眼云盘》(Eyeblue Cloud Storage)|2.4k|Go|08/27|
|58|[lifei6671/interview-go](https://github.com/lifei6671/interview-go)|golang面试题集合|2.3k|Go|09/03|
|59|[chanxuehong/wechat](https://github.com/chanxuehong/wechat)|weixin/wechat/微信公众平台/微信企业号/微信商户平台/微信支付 go/golang sdk |2.3k|Go|10/09|
|60|[phachon/mm-wiki](https://github.com/phachon/mm-wiki)|MM-Wiki 一个轻量级的企业知识分享与团队协同软件,可用于快速构建企业 Wiki 和团队知识分享平台。部署方便,使用简单,帮助团队构建一个信息共享、文档管理的协作环境。|2.3k|Go|10/14|
|61|[wxbool/video-srt-windows](https://github.com/wxbool/video-srt-windows)|这是一个可以识别视频语音自动生成字幕SRT文件的开源 Windows-GUI 软件工具。|2.3k|Go|10/09|
|62|[liangdas/mqant](https://github.com/liangdas/mqant)|mqant是一款基于Golang语言的简洁,高效,高性能的分布式微服务框架|2.2k|Go|10/17|
|63|[studygolang/studygolang](https://github.com/studygolang/studygolang)|Go 语言中文网 Golang中文社区 Go语言学习园地 源码|2.2k|Go|08/19|
|64|[dreamans/syncd](https://github.com/dreamans/syncd)|syncd是一款开源的代码部署工具,它具有简单、高效、易用等特点,可以提高团队的工作效率.|2.0k|Go|10/06|
|65|[darjun/go-daily-lib](https://github.com/darjun/go-daily-lib)|Go 每日一库|2.0k|Go|08/12|
|66|[roseduan/rosedb](https://github.com/roseduan/rosedb)|🚀A fast, stable and embedded k-v storage in pure Golang, supports string, list, hash, set, sorted set. 一个 Go 语言实现的快速、稳定、内嵌的 k-v 存储引擎。|1.9k|Go|10/26|
|67|[alibaba/RedisShake](https://github.com/alibaba/RedisShake)|redis-shake is a tool for synchronizing data between two redis databases. Redis-shake 是一个用于在两个 redis之 间同步数据的工具,满足用户非常灵活的同步、迁移需求。|1.9k|Go|10/25|
|68|[esrrhs/pingtunnel](https://github.com/esrrhs/pingtunnel)|ICMP流量伪装转发工具 ping tunnel is a tool that advertises tcp/udp/socks5 traffic as icmp traffic for forwarding.|1.9k|Go|09/28|
|69|[bilibili/overlord](https://github.com/bilibili/overlord)|Overlord是哔哩哔哩基于Go语言编写的memcache和redis&cluster的代理及集群管理功能,致力于提供自动化高可用的缓存服务解决方案。|1.8k|Go|10/06|
|70|[8treenet/freedom](https://github.com/8treenet/freedom)|Freedom是一个基于六边形架构的框架,可以支撑充血的领域模型范式。|1.8k|Go|10/23|
|71|[xinliangnote/Go](https://github.com/xinliangnote/Go)|【Go 从入门到实战】学习笔记,从零开始学 Go、Gin 框架,基本语法包括 26 个Demo,Gin 框架包括:Gin 自定义路由配置、Gin 使用 Logrus 进行日志记录、Gin 数据绑定和验证、Gin 自定义错误处理、Go gRPC Hello World... 持续更新中... |1.8k|Go|04/10|
|72|[yanyiwu/gojieba](https://github.com/yanyiwu/gojieba)|"结巴"中文分词的Golang版本|1.7k|Go|06/05|
|73|[alberliu/gim](https://github.com/alberliu/gim)|golang写的IM服务器(服务组件形式)|1.7k|Go|10/26|
|74|[go-ego/gse](https://github.com/go-ego/gse)|Go efficient multilingual NLP and text segmentation; support english, chinese, japanese and other. Go 高性能多语言 NLP 和分词|1.7k|Go|10/29|
|75|[zu1k/proxypool](https://github.com/zu1k/proxypool)|自动抓取tg频道、订阅地址、公开互联网上的ss、ssr、vmess、trojan节点信息,聚合去重后提供节点列表。欢迎star|1.6k|Go|10/29|
|76|[link1st/go-stress-testing](https://github.com/link1st/go-stress-testing)|go 实现的压测工具,ab、locust、Jmeter压测工具介绍【单台机器100w连接压测实战】|1.6k|Go|09/28|
|77|[OpenIMSDK/Open-IM-Server](https://github.com/OpenIMSDK/Open-IM-Server)|OpenIM:由前微信技术专家打造的基于 Go 实现的即时通讯(IM)项目,从服务端到客户端SDK开源即时通讯(IM)整体解决方案,可以轻松替代第三方IM云服务,打造具备聊天、社交功能的app。|1.6k|Go|10/28|
|78|[openscrm/api-server](https://github.com/openscrm/api-server)|OpenSCRM是一套基于Go和React的超高质量企业微信私域流量管理系统 。遵守Apache2.0协议,全网唯一免费商用。企业微信、私域流量、SCRM。|1.6k|Go|10/27|
|79|[huichen/sego](https://github.com/huichen/sego)|Go中文分词|1.5k|Go|08/24|
|80|[go-pay/gopay](https://github.com/go-pay/gopay)|微信、支付宝、PayPal 的Go版本SDK。【极简、易用的聚合支付SDK】|1.5k|Go|10/28|
|81|[funny/link](https://github.com/funny/link)|Go语言网络层脚手架|1.5k|Go|10/09|
|82|[xormplus/xorm](https://github.com/xormplus/xorm)|xorm是一个简单而强大的Go语言ORM库,通过它可以使数据库操作非常简便。本库是基于原版xorm的定制增强版本,为xorm提供类似ibatis的配置文件及动态SQL支持,支持AcitveRecord操作|1.5k|Go|08/22|
|83|[naiba/nezha](https://github.com/naiba/nezha)|:trollface: 哪吒监控 一站式轻监控轻运维系统。支持系统状态、HTTP、TCP、Ping 监控报警,计划任务和在线终端。|1.5k|Go|10/12|
|84|[yangwenmai/learning-golang](https://github.com/yangwenmai/learning-golang)|Go 学习之路:Go 开发者博客、Go 微信公众号、Go 学习资料(文档、书籍、视频)|1.4k|Go|04/20|
|85|[davyxu/tabtoy](https://github.com/davyxu/tabtoy)|高性能表格数据导出器|1.4k|Go|06/20|
|86|[RainbowMango/GoExpertProgramming](https://github.com/RainbowMango/GoExpertProgramming)|《Go专家编程》Go语言快速入门,轻松进阶!|1.4k|Go|04/23|
|87|[pibigstar/go-demo](https://github.com/pibigstar/go-demo)|Go语言实例教程从入门到进阶,包括基础库使用、设计模式、面试易错点、工具类、对接第三方等|1.4k|Go|10/25|
|88|[xiaobaiTech/golangFamily](https://github.com/xiaobaiTech/golangFamily)|【超全golang面试题合集+golang学习指南+golang知识图谱+入门成长路线】 一份涵盖大部分golang程序员所需要掌握的核心知识。常用第三方库(mysql,mq,es,redis等)+机器学习库+算法库+游戏库+开源框架+自然语言处理nlp库+网络库+视频库+微服务框架+视频教程+音频音乐库+图形图片库+物联网库+地理位置信息+嵌入式脚本库+编译器库+数据库+金融库+电子邮件库+电子书籍+分词+数据结构+设计模式+去html tag标签等+go学习+go面试+计算机网络基础+图解网络+操作系统面试题+数据库面试题+面试题合集|1.4k|Go|10/17|
|89|[HDT3213/godis](https://github.com/HDT3213/godis)|A Golang implemented Redis Server and Cluster. Go 语言实现的 Redis 服务器和分布式集群|1.4k|Go|10/24|
|90|[hwholiday/learning_tools](https://github.com/hwholiday/learning_tools)|Go 学习、Go 进阶、Go 实用工具类、Go-kit ,Go-Micro 微服务实践、Go 推送|1.3k|Go|09/20|
|91|[knownsec/ksubdomain](https://github.com/knownsec/ksubdomain)|无状态子域名爆破工具|1.3k|Go|10/21|
|92|[link1st/gowebsocket](https://github.com/link1st/gowebsocket)|golang基于websocket单台机器支持百万连接分布式聊天(IM)系统|1.3k|Go|09/28|
|93|[feiyu563/PrometheusAlert](https://github.com/feiyu563/PrometheusAlert)|Prometheus Alert是开源的运维告警中心消息转发系统,支持主流的监控系统Prometheus,Zabbix,日志系统Graylog和数据可视化系统Grafana发出的预警消息,支持钉钉,微信,华为云短信,腾讯云短信,腾讯云电话,阿里云短信,阿里云电话等|1.2k|Go|10/12|
|94|[gobyexample-cn/gobyexample](https://github.com/gobyexample-cn/gobyexample)|Go by Example 通过例子学 Golang|1.2k|Go|05/19|
|95|[zxh0/jvmgo-book](https://github.com/zxh0/jvmgo-book)|《自己动手写Java虚拟机》随书源代码|1.2k|Go|07/31|
|96|[didi/sharingan](https://github.com/didi/sharingan)|Sharingan(写轮眼)是一个基于golang的流量录制回放工具,适合项目重构、回归测试等。|1.2k|Go|10/27|
|97|[inbug-team/InScan](https://github.com/inbug-team/InScan)|边界打点后的自动化渗透工具|1.2k|Go|07/19|
|98|[henson/proxypool](https://github.com/henson/proxypool)|Golang实现的IP代理池|1.2k|Go|04/08|
|99|[george518/PPGo_Job](https://github.com/george518/PPGo_Job)|PPGo_Job是一款可视化的、多人多权限的、一任务多机执行的定时任务管理系统,采用golang开发,安装方便,资源消耗少,支持大并发,可同时管理多台服务器上的定时任务。|1.2k|Go|05/19|
|100|[smartwalle/alipay](https://github.com/smartwalle/alipay)|支付宝 AliPay SDK for Go, 集成简单,功能完善,持续更新,支持公钥证书和普通公钥进行签名和验签。|1.2k|Go|09/13|
|101|[karldoenitz/Tigo](https://github.com/karldoenitz/Tigo)|Tigo is an HTTP web framework written in Go (Golang).It features a Tornado-like API with better performance. Tigo是一款用Go语言开发的web应用框架,API特性类似于Tornado并且拥有比Tornado更好的性能。|1.2k|Go|09/22|
|102|[xluohome/phonedata](https://github.com/xluohome/phonedata)|手机号码归属地信息库、手机号归属地查询 phone.dat 最后更新:2021年08月 |1.2k|Go|08/31|
|103|[alibaba/MongoShake](https://github.com/alibaba/MongoShake)|MongoShake is a universal data replication platform based on MongoDB's oplog. Redundant replication and active-active replication are two most important functions. 基于mongodb oplog的集群复制工具,可以满足迁移和同步的需求,进一步实现灾备和多活功能。|1.2k|Go|10/27|
|104|[smallnest/dive-to-gosync-workshop](https://github.com/smallnest/dive-to-gosync-workshop)|深入Go并发编程研讨课|1.2k|Go|08/03|
|105|[txthinking/mr2](https://github.com/txthinking/mr2)|mr2 can help you expose local server to external network. Support both TCP/UDP, of course support HTTP. Zero-Configuration. mr2 帮助你将本地端口暴露在外网.支持TCP/UDP, 当然也支持HTTP.|1.2k|Go|07/16|
|106|[gourouting/singo](https://github.com/gourouting/singo)|Gin+Gorm开发Golang API快速开发脚手架|1.2k|Go|05/31|
|107|[iwannay/jiacrontab](https://github.com/iwannay/jiacrontab)|简单可信赖的任务管理工具|1.1k|Go|08/18|
|108|[go-kiss/sniper](https://github.com/go-kiss/sniper)|轻量级 go 业务框架。|1.1k|Go|10/14|
|109|[Go-zh/tour](https://github.com/Go-zh/tour)|Go 语言官方教程中文版|1.1k|Go|06/01|
|110|[saltbo/zpan](https://github.com/saltbo/zpan)|A self-hosted cloud disk base on the cloud storage./ 一个基于云存储的网盘系统,用于自建私人网盘或企业网盘。|1.1k|Go|10/27|
|111|[hanchuanchuan/goInception](https://github.com/hanchuanchuan/goInception)|一个集审核、执行、备份及生成回滚语句于一身的MySQL运维工具|1.1k|Go|10/16|
|112|[3xxx/engineercms](https://github.com/3xxx/engineercms)|工程师知识管理系统:基于golang go语言(beego框架)。每个行业都有自己的知识管理系统,engineercms旨在为土木工程师们打造一款适用的基于web的知识管理系统。它既可以用于管理个人的项目资料,也可以用于管理项目团队资料;它既可以运行于个人电脑,也可以放到服务器上。支持提取码分享文件,onlyoffice实时文档协作,直接在线编辑dwg文件、office文档,在线利用mindoc创作你的书籍,阅览PDF文件。通用的业务流程设置。手机端配套小程序,微信搜索“珠三角设代”或“青少儿书画”即可呼出小程序。|1.0k|Go|10/16|
|113|[mozillazg/go-pinyin](https://github.com/mozillazg/go-pinyin)|汉字转拼音|1.0k|Go|05/13|
|114|[Xhofe/alist](https://github.com/Xhofe/alist)|一个阿里云盘列表程序|1.0k|Go|10/29|
|115|[royalrick/weapp](https://github.com/royalrick/weapp)|微信小程序服务端 SDK (for Golang)|962|Go|10/25|
|116|[go-spring/go-spring](https://github.com/go-spring/go-spring)|基于 IoC 的 Go 后端一站式开发框架 🚀|954|Go|10/23|
|117|[bobohume/gonet](https://github.com/bobohume/gonet)|go分布式服务器,基于内存mmo|946|Go|10/13|
|118|[gookit/color](https://github.com/gookit/color)|🎨 Terminal color rendering library, support 8/16 colors, 256 colors, RGB color rendering output, support Print/Sprintf methods, compatible with Windows. GO CLI 控制台颜色渲染工具库,支持16色,256色,RGB色彩渲染输出,使用类似于 Print/Sprintf,兼容并支持 Windows 环境的色彩渲染|942|Go|10/18|
|119|[indes/flowerss-bot](https://github.com/indes/flowerss-bot)|A telegram bot for rss reader. 一个支持应用内阅读的 Telegram RSS Bot。|932|Go|09/21|
|120|[master-coder-ll/v2ray-web-manager](https://github.com/master-coder-ll/v2ray-web-manager)|v2ray-web-manager 是一个v2ray的面板,也是一个集群的解决方案;同时增加了流量控制/账号管理/限速等功能。key: admin , panel ,web,cluster,集群,proxy|929|Go|05/20|
|121|[taoshihan1991/go-fly](https://github.com/taoshihan1991/go-fly)|开源客服系统GO语言开发GO-FLY,免费客服系统/open source live customer chat by golang|907|Go|07/26|
|122|[brokercap/Bifrost](https://github.com/brokercap/Bifrost)|Bifrost ---- 面向生产环境的 MySQL 同步到Redis,MongoDB,ClickHouse,MySQL等服务的异构中间件|893|Go|08/11|
|123|[tjfoc/gmsm](https://github.com/tjfoc/gmsm)|GM SM2/3/4 library based on Golang (基于Go语言的国密SM2/SM3/SM4算法库)|887|Go|09/18|
|124|[guonaihong/gout](https://github.com/guonaihong/gout)|gout to become the Swiss Army Knife of the http client @^^@---> gout 是http client领域的瑞士军刀,小巧,强大,犀利。具体用法可看文档,如使用迷惑或者API用得不爽都可提issues|881|Go|09/27|
|125|[sjlleo/netflix-verify](https://github.com/sjlleo/netflix-verify)|流媒体NetFlix解锁检测脚本 / A script used to determine whether your network can watch native Netflix movies or not|871|Go|10/08|
|126|[jeessy2/ddns-go](https://github.com/jeessy2/ddns-go)|简单好用的DDNS。自动更新域名解析到公网IP(支持阿里云、腾讯云dnspod、Cloudflare、华为云)|863|Go|10/25|
|127|[go-eagle/eagle](https://github.com/go-eagle/eagle)|🦅一款小巧的基于Go构建的开发框架,可以快速构建API服务或者Web网站进行业务开发,遵循SOLID设计原则|853|Go|10/28|
|128|[Janusec/janusec](https://github.com/Janusec/janusec)|Janusec Application Gateway, Provides Fast and Secure Application Delivery (Authentication, WAF/CC, HTTPS and ACME automatic certificates). JANUSEC应用网关,提供快速、安全的应用交付(身份认证, WAF/CC, HTTPS以及ACME自动证书)。|841|Go|10/09|
|129|[awake1t/linglong](https://github.com/awake1t/linglong)|一款甲方资产巡航扫描系统。系统定位是发现资产,进行端口爆破。帮助企业更快发现弱口令问题。主要功能包括: 资产探测、端口爆破、定时任务、管理后台识别、报表展示|827|Go|09/30|
|130|[qjfoidnh/BaiduPCS-Go](https://github.com/qjfoidnh/BaiduPCS-Go)|iikira/BaiduPCS-Go原版基础上集成了分享链接/秒传链接转存功能|823|Go|10/06|
|131|[sevenelevenlee/go-patterns](https://github.com/sevenelevenlee/go-patterns)|Golang 设计模式|816|Go|07/22|
|132|[wangsongyan/wblog](https://github.com/wangsongyan/wblog)|基于gin+gorm开发的个人博客项目|813|Go|06/18|
|133|[caixw/apidoc](https://github.com/caixw/apidoc)|RESTful API 文档生成工具,支持 Go、Java、Swift、JavaScript、Rust、PHP、Python、Typescript、Kotlin 和 Ruby 等大部分语言。|799|Go|08/27|
|134|[marmotedu/iam](https://github.com/marmotedu/iam)|企业级的 Go 语言实战项目(可作为Go项目开发脚手架)|791|Go|10/15|
|135|[EdgeSecurityTeam/EHole](https://github.com/EdgeSecurityTeam/EHole)|EHole(棱洞)3.0 重构版-红队重点攻击系统指纹探测工具|772|Go|08/23|
|136|[gopcp/example.v2](https://github.com/gopcp/example.v2)|An example project for book 'Go Programming & Concurrency in Practice, 2nd edition' (《Go并发编程实战》第2版).|769|Go|10/21|
|137|[jweny/pocassist](https://github.com/jweny/pocassist)|全新的开源漏洞测试框架,实现poc在线编辑、运行、批量测试。使用文档:|766|Go|10/22|
|138|[ixre/go2o](https://github.com/ixre/go2o)|基于DDD的o2o的业务模型及基础, 使用Golang+gRPC/Thrift实现|757|Go|10/19|
|139|[zu1k/nali](https://github.com/zu1k/nali)|An offline tool for querying IP geographic information and CDN provider.一个查询IP地理信息和CDN服务提供商的离线终端工具.|749|Go|10/26|
|140|[EndlessCheng/mahjong-helper](https://github.com/EndlessCheng/mahjong-helper)|日本麻将助手:牌效+防守+记牌(支持雀魂、天凤)|748|Go|10/22|
|141|[labulaka521/crocodile](https://github.com/labulaka521/crocodile)|Distributed Task Scheduling System 分布式定时任务调度平台|737|Go|10/06|
|142|[KubeOperator/KubePi](https://github.com/KubeOperator/KubePi)|KubePi 是一款简单易用的开源 Kubernetes 可视化管理面板|723|Go|10/28|
|143|[hr3lxphr6j/bililive-go](https://github.com/hr3lxphr6j/bililive-go)|一个直播录制工具|719|Go|10/07|
|144|[baiyutang/meetup](https://github.com/baiyutang/meetup)|【❤️ 互联网最全大厂技术分享PPT 👍🏻 持续更新中!】🍻各大技术交流会、活动资料汇总 ,如 👉QCon👉全球运维技术大会 👉 GDG 👉 全球技术领导力峰会👉大前端大会👉架构师峰会👉敏捷开发DevOps👉OpenResty👉Elastic,欢迎 PR / Issues|715|Go|10/26|
|145|[cnbattle/douyin](https://github.com/cnbattle/douyin)|抖音推荐/搜索页视频列表视频爬虫方案,基于app(虚拟机或真机) 相关技术 golang adb|714|Go|08/09|
|146|[opentrx/seata-golang](https://github.com/opentrx/seata-golang)|A Distributed Transaction Framework, like SEATA, support TCC mode and AT mode. DingTalk: seata-golang 社区|700|Go|10/09|
|147|[itcloudy/ERP](https://github.com/itcloudy/ERP)|基于beego的进销存系统|694|Go|08/11|
|148|[b1gcat/DarkEye](https://github.com/b1gcat/DarkEye)|渗透测试情报收集工具|689|Go|10/14|
|149|[yunionio/cloudpods](https://github.com/yunionio/cloudpods)|A cloud-native open-source unified multi-cloud and hybrid-cloud platform. 开源、云原生的多云管理及混合云融合平台|681|Go|10/28|
|150|[k8gege/LadonGo](https://github.com/k8gege/LadonGo)|Ladon Pentest Scanner framework 全平台Go开源内网渗透扫描器框架,Windows/Linux/Mac内网渗透,使用它可轻松一键批量探测C段、B段、A段存活主机、高危漏洞检测MS17010、SmbGhost,远程执行SSH/Winrm,密码爆破SMB/SSH/FTP/Mysql/Mssql/Oracle/Winrm/HttpBasic/Redis,端口扫描服务识别PortScan指纹识别/HttpBanner/HttpTitle/TcpBanner/Weblogic/Oxid多网卡主机,端口扫描服务识别PortScan。|674|Go|07/27|
|151|[tiger1103/gfast](https://github.com/tiger1103/gfast)|基于GF(Go Frame)的后台管理系统|662|Go|10/26|
|152|[hantmac/Mastering_Go_Second_Edition_Zh_CN](https://github.com/hantmac/Mastering_Go_Second_Edition_Zh_CN)|Mastering Go 第二版中文版来袭!|661|Go|04/28|
|153|[inherd/coca](https://github.com/inherd/coca)|Coca is a toolbox which is design for legacy system refactoring and analysis, includes call graph, concept analysis, api tree, design patterns suggest. Coca 是一个用于系统重构、系统迁移和系统分析的工具箱。它可以分析代码中的测试坏味道、模块化分析、行数统计、分析调用与依赖、Git 分析以及自动化重构等。|654|Go|07/09|
|154|[seccome/Ehoney](https://github.com/seccome/Ehoney)|安全、快捷、高交互、企业级的蜜罐管理系统,支持多种协议蜜罐、蜜签、诱饵等功能。A safe, fast, highly interactive and enterprise level honeypot management system, supports multiple protocol honeypots, honeytokens, baits and other functions.|651|Go|10/13|
|155|[DOUBLE-Baller/momo](https://github.com/DOUBLE-Baller/momo)|php直播go直播,短视频,直播带货,仿比心,猎游,tt语音聊天,美女约玩,陪玩系统源码开黑,约玩源码.|637|Go|10/22|
|156|[Mrs4s/MiraiGo](https://github.com/Mrs4s/MiraiGo)|qq协议的golang实现, 移植于mirai|614|Go|10/29|
|157|[33cn/chain33](https://github.com/33cn/chain33)|高度模块化, 遵循 KISS原则的区块链开发框架|605|Go|10/25|
|158|[childe/gohangout](https://github.com/childe/gohangout)|golang版本的hangout, 希望能省些内存. 使用了自己写的Kafka lib .. 虚. 不过我们在生产环境已经使用近1年, kafka 版本从0.9.0.1到2.0都在使用, 目前情况稳定. 吞吐量在每天2000亿条以上.|605|Go|10/09|
|159|[XrayR-project/XrayR](https://github.com/XrayR-project/XrayR)|A Xray backend framework that can easily support many panels. 一个基于Xray的后端框架,支持V2ay,Trojan,Shadowsocks协议,极易扩展,支持多面板对接|604|Go|10/16|
|160|[yonyoucloud/install_k8s](https://github.com/yonyoucloud/install_k8s)|一键安装kubernets(k8s)系统,采用RBAC模式运行(证书安全认证模式),既可以单台安装、也可以集群安装,并且完全是生产环境的安装标准。有疑问大家可以加我微信沟通:bsh888|602|Go|10/28|
|161|[zxh0/luago-book](https://github.com/zxh0/luago-book)|《自己动手实现Lua》随书源代码|600|Go|06/17|
|162|[xiecat/goblin](https://github.com/xiecat/goblin)|一款适用于红蓝对抗中的仿真钓鱼系统|587|Go|10/27|
|163|[admpub/nging](https://github.com/admpub/nging)|漂亮的Go语言通用后台管理系统,包含:计划任务 / MySQL管理 / Redis管理 / FTP管理 / SSH管理 / 服务器管理 / Caddy配置 / DDNS / FRP可视化配置 / 云存储管理 等功能。可运行于 Windows / Linux / MacOS 等主流系统平台和 树莓派 / 路由器 等ARM设备|583|Go|10/28|
|164|[kplcloud/kplcloud](https://github.com/kplcloud/kplcloud)|基于Kubernetes的PaaS平台|581|Go|10/24|
|165|[lcvvvv/kscan](https://github.com/lcvvvv/kscan)|Kscan是一款轻量级的资产发现工具,可针对IP/IP段或资产列表进行端口扫描以及TCP指纹识别和Banner抓取,在不发送更多的数据包的情况下尽可能的获取端口更多信息。 并且针对扫描结果进行自动化暴力破解,且是go平台首款开源的RDP暴力破解工具。|579|Go|10/13|
|166|[hidu/mysql-schema-sync](https://github.com/hidu/mysql-schema-sync)|mysql表结构自动同步工具(目前只支持字段、索引的同步,分区等高级功能暂不支持)|578|Go|09/03|
|167|[Golangltd/LollipopGo](https://github.com/Golangltd/LollipopGo)|稳定分支2.9.X 版本已更新,由【Golang语言游戏服务器】维护,全球服游戏服务器及区域服框架,目前协议支持websocket、http、KCP、TCP及RPC,采用状态同步(帧同步内测),愿景:打造MMO多人竞技游戏框架! 功能持续更新中... ...|573|Go|10/15|
|168|[awake1t/PortBrute](https://github.com/awake1t/PortBrute)|一款跨平台小巧的端口爆破工具,支持爆破FTP/SSH/SMB/MSSQL/MYSQL/POSTGRESQL/MONGOD / A cross-platform compact port blasting tool that supports blasting FTP/SSH/SMB/MSSQL/MYSQL/POSTGRESQL/MONGOD|558|Go|10/09|
|169|[jiajunhuang/blog](https://github.com/jiajunhuang/blog)|Jiajun的编程随想|554|Go|10/22|
|170|[withlin/canal-go](https://github.com/withlin/canal-go)| Alibaba mysql database binlog incremental subscription & consumer components Canal's golang client[阿里巴巴mysql数据库binlog的增量订阅&消费组件 Canal 的 go 客户端 ] https://github.com/alibaba/canal |529|Go|04/16|
|171|[vidar-team/Cardinal](https://github.com/vidar-team/Cardinal)|CTF🚩 AWD (Attack with Defense) 线下赛平台 / AWD platform - 欢迎 Star~ ✨|518|Go|10/06|
|172|[axiaoxin-com/x-stock](https://github.com/axiaoxin-com/x-stock)|Golang实现财报分析、股票检测、基本面选股、基金检测、基金筛选、4433法则、基金持仓相似度、股票选基|515|Go|10/29|
|173|[baidu/EasyFaaS](https://github.com/baidu/EasyFaaS)|EasyFaaS是一个依赖轻、适配性强、资源占用少、无状态且高性能的函数计算服务引擎|510|Go|10/18|
|174|[didi/falcon-log-agent](https://github.com/didi/falcon-log-agent)|用于监控系统的日志采集agent,可无缝对接open-falcon|506|Go|05/13|
|175|[micro-plat/hydra](https://github.com/micro-plat/hydra)|后端一站式微服务框架,提供API、web、websocket,RPC、任务调度、消息消费服务器|500|Go|10/19|
|176|[libsgh/PanIndex](https://github.com/libsgh/PanIndex)|网盘目录列表,目前支持天翼云、teambition盘、阿里云盘、OneDrive等|500|Go|10/25|
|177|[Tencent/bk-bcs](https://github.com/Tencent/bk-bcs)|蓝鲸智云容器管理平台(BlueKing Container Service)|496|Go|10/28|
|178|[zxysilent/blog](https://github.com/zxysilent/blog)|一个go、echo、xorm、vue 开发的快速、简洁、美观、前后端分离的个人博客系统(blog)、也可方便二次开发为CMS(内容管理系统)和各种企业门户网站。此仓库只提供单用户版本方便拿来即用,不考虑权限,正在积极开发,多用户版正在规划中...敬请期待|488|Go|10/21|
|179|[zhzyker/dismap](https://github.com/zhzyker/dismap)|Asset discovery and identification tools 快速识别 Web 指纹信息,定位资产类型。辅助红队快速定位目标资产信息,辅助蓝队发现疑似脆弱点|482|Go|10/15|
|180|[gookit/validate](https://github.com/gookit/validate)|⚔ Go package for data validation and filtering. support Map, Struct, Form data. Go通用的数据验证与过滤库,使用简单,内置大部分常用验证、过滤器,支持自定义验证器、自定义消息、字段翻译。|481|Go|10/20|
|181|[meshplus/bitxhub](https://github.com/meshplus/bitxhub)|Interchain protocol 跨链协议|477|Go|10/28|
|182|[sohaha/zlsgo](https://github.com/sohaha/zlsgo)|简单易用、足够轻量、性能好的 Golang 库 - Easy to use, light enough, good performance Golang library|470|Go|10/26|
|183|[mohuishou/go-design-pattern](https://github.com/mohuishou/go-design-pattern)|golang design pattern go 设计模式实现,包含 23 种常见的设计模式实现,同时这也是极客时间-设计模式之美 的笔记|469|Go|06/04|
|184|[yqchilde/Golang-Interview](https://github.com/yqchilde/Golang-Interview)|Golang面试题,收集自Golang中文网,收集是为了自己可以巩固复习,不必要每次去找|469|Go|07/09|
|185|[88250/lute](https://github.com/88250/lute)|🎼 一款结构化的 Markdown 引擎,支持 Go 和 JavaScript。A structured Markdown engine that supports Go and JavaScript. |463|Go|10/28|
|186|[easychen/wecomchan](https://github.com/easychen/wecomchan)|通过企业微信向微信推送消息的配置文档、直推函数和可自行搭建的在线服务代码。可以看成Server酱的开源替代方案之一。|462|Go|09/12|
|187|[CTF-MissFeng/GoScan](https://github.com/CTF-MissFeng/GoScan)|GoScan是采用Golang语言编写的一款分布式综合资产管理系统,适合红队、SRC等使用|461|Go|05/06|
|188|[Monibuca/engine](https://github.com/Monibuca/engine)|Monibuca 核心引擎,包含流媒体核心转发逻辑,需要配合功能插件一起组合运行|460|Go|10/28|
|189|[Mikubill/transfer](https://github.com/Mikubill/transfer)|🍭 集合多个API的大文件传输工具.|446|Go|10/17|
|190|[Echosong/beego_blog](https://github.com/Echosong/beego_blog)| beego+layui go入门开发 简洁美观的个人博客系统|443|Go|10/24|
|191|[mix-go/mix](https://github.com/mix-go/mix)|✨ Standard Toolkit for Go fast development / Go 快速开发标准工具包|438|Go|10/25|
|192|[shenghui0779/yiigo](https://github.com/shenghui0779/yiigo)|🔥 一个好用的 Go 轻量级开发通用库 🚀🚀🚀|413|Go|10/24|
|193|[gookit/goutil](https://github.com/gookit/goutil)|💪 Helper Utils For The Go: string, array/slice, map, format, cli, env, filesystem, test and more. Go 的一些工具函数,格式化,特殊处理,常用信息获取等等|406|Go|10/18|
|194|[ma6254/FictionDown](https://github.com/ma6254/FictionDown)|小说下载 小说爬取 起点 笔趣阁 导出Markdown 导出txt 转换epub 广告过滤 自动校对|405|Go|08/11|
|195|[allanpk716/ChineseSubFinder](https://github.com/allanpk716/ChineseSubFinder)|自动化中文字幕下载。字幕网站支持 zimuku、subhd、shooter、xunlei 。支持 Emby、Jellyfin、Plex、Sonarr、Radarr、TMM|405|Go|10/29|
|196|[iissy/goweb](https://github.com/iissy/goweb)|Golang写的程序员网址导航|404|Go|09/23|
|197|[nanmu42/orly](https://github.com/nanmu42/orly)|:football: Generate your own O'RLY animal book cover to troll your colleagues 生成你自己的O'RLY动物书封面,让你的同事惊掉下巴|392|Go|09/24|
|198|[sunshinev/go-sword](https://github.com/sunshinev/go-sword)|【Go-sword】可视化CRUD管理后台生成工具|392|Go|10/07|
|199|[hteen/apple-store-helper](https://github.com/hteen/apple-store-helper)|Apple Store iPhone预约助手|390|Go|10/12|
|200|[zc2638/go-standard](https://github.com/zc2638/go-standard)|Go常用规范定义,标准库方法使用示例,请注意这不是Go的中文版标准库(传送门)|388|Go|08/31|
⬆ [回到目录](#目录)
<br/>
## PHP
|#|Repository|Description|Stars|Language|Updated|
|:-|:-|:-|:-|:-|:-|
|1|[w7corp/easywechat](https://github.com/w7corp/easywechat)|:package: 一个 PHP 微信 SDK|9.6k|PHP|10/25|
|2|[guyueyingmu/avbook](https://github.com/guyueyingmu/avbook)|AV 电影管理系统, avmoo , javbus , javlibrary 爬虫,线上 AV 影片图书馆,AV 磁力链接数据库,Japanese Adult Video Library,Adult Video Magnet Links - Japanese Adult Video Database|8.1k|PHP|10/06|
|3|[top-think/think](https://github.com/top-think/think)|ThinkPHP Framework ——十年匠心的高性能PHP框架|7.7k|PHP|07/22|
|4|[fecshop/yii2_fecshop](https://github.com/fecshop/yii2_fecshop)|yii2 ( PHP ) fecmall(fecshop) core code used for ecommerce shop 多语言多货币多入口的开源电商 B2C 商城,支持移动端vue, app, html5,微信小程序微店,微信小程序商城等|4.8k|PHP|09/02|