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) · 424 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
![GitHub中文排行榜](https://i.v2ex.co/wF4Dx0vO.png)
#### 榜单设立目的
- :cn: GitHub中文排行榜,帮助你发现高分优秀中文项目;
- 各位开发者伙伴可以更高效地吸收国人的优秀经验、成果;
- 中文项目只能满足阶段性的需求,想要有进一步提升,还请多花时间学习高分神级英文项目;
#### 榜单设立范围
- 设立1个总榜(所有语言项目汇总排名)、18个分榜(单个语言项目排名);
#### 榜单入选规则
- 一个小小的要求:项目的 Description 和 README.md 都要包含中文说明;
- 更新越持续越好:最近半年内有更新过的项目才有机会入选(拥抱活跃,远离僵尸);
- Stars 越多越好:在满足持续更新的前提条件下,各榜根据 Stars 对项目进行排序;
#### 榜单更新频率
- 每周更新一次,最近更新时间为2021年5月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|[CyC2018/CS-Notes](https://github.com/CyC2018/CS-Notes)|:books: 技术面试必备基础知识、Leetcode、计算机操作系统、计算机网络、系统设计|129.6k|Java|05/23|
|2|[Snailclimb/JavaGuide](https://github.com/Snailclimb/JavaGuide)|「Java学习+面试指南」一份涵盖大部分 Java 程序员所需要掌握的核心知识。准备 Java 面试,首选 JavaGuide!|104.5k|Java|05/28|
|3|[jackfrued/Python-100-Days](https://github.com/jackfrued/Python-100-Days)|Python - 100天从新手到大师|104.1k|Python|05/21|
|4|[justjavac/free-programming-books-zh_CN](https://github.com/justjavac/free-programming-books-zh_CN)|:books: 免费的计算机编程类中文书籍,欢迎投稿|80.1k|-|05/25|
|5|[MisterBooo/LeetCodeAnimation](https://github.com/MisterBooo/LeetCodeAnimation)|Demonstrate all the questions on LeetCode in the form of animation.(用动画的形式呈现解LeetCode题目的思路)|64.7k|Java|09/30|
|6|[doocs/advanced-java](https://github.com/doocs/advanced-java)|😮 Core Interview Questions & Answers For Experienced Java(Backend) Developers 互联网 Java 工程师进阶知识完全扫盲:涵盖高并发、分布式、高可用、微服务、海量数据处理等领域知识|54.3k|Java|05/26|
|7|[xingshaocheng/architect-awesome](https://github.com/xingshaocheng/architect-awesome)|后端架构师技术图谱|53.0k|-|03/09|
|8|[macrozheng/mall](https://github.com/macrozheng/mall)|mall项目是一套电商系统,包括前台商城系统及后台管理系统,基于SpringBoot+MyBatis实现,采用Docker容器化部署。 前台商城系统包含首页门户、商品推荐、商品搜索、商品展示、购物车、订单流程、会员中心、客户服务、帮助中心等模块。 后台管理系统包含商品管理、订单管理、会员管理、促销管理、运营管理、内容管理、统计报表、财务管理、权限管理、设置等模块。|49.6k|Java|05/28|
|9|[scutan90/DeepLearning-500-questions](https://github.com/scutan90/DeepLearning-500-questions)|深度学习500问,以问答形式对常用的概率知识、线性代数、机器学习、深度学习、计算机视觉等热点问题进行阐述,以帮助自己及有需要的读者。 全书分为18个章节,50余万字。由于水平有限,书中不妥之处恳请广大读者批评指正。 未完待续............ 如有意合作,联系[email protected] 版权所有,违权必究 Tan 2018.06|44.6k|JavaScript|05/21|
|10|[521xueweihan/HelloGitHub](https://github.com/521xueweihan/HelloGitHub)|:octocat: 分享 GitHub 上有趣、入门级的开源项目|42.2k|Python|05/28|
|11|[azl397985856/leetcode](https://github.com/azl397985856/leetcode)| LeetCode Solutions: A Record of My Problem Solving Journey.( leetcode题解,记录自己的leetcode解题之路。)|42.2k|JavaScript|05/28|
|12|[bailicangdu/vue2-elm](https://github.com/bailicangdu/vue2-elm)|基于 vue2 + vuex 构建一个具有 45 个页面的大型单页面应用|36.2k|Vue|05/12|
|13|[dcloudio/uni-app](https://github.com/dcloudio/uni-app)|uni-app 是使用 Vue 语法开发小程序、H5、App的统一框架|31.5k|JavaScript|05/28|
|14|[0voice/interview_internal_reference](https://github.com/0voice/interview_internal_reference)|2021年最新总结,阿里,腾讯,百度,美团,头条等技术面试题目,以及答案,专家出题人分析汇总。|31.4k|Python|03/03|
|15|[fighting41love/funNLP](https://github.com/fighting41love/funNLP)|中英文敏感词、语言检测、中外手机/电话归属地/运营商查询、名字推断性别、手机号抽取、身份证抽取、邮箱抽取、中日文人名库、中文缩写库、拆字词典、词汇情感值、停用词、反动词表、暴恐词表、繁简体转换、英文模拟中文发音、汪峰歌词生成器、职业名称词库、同义词库、反义词库、否定词库、汽车品牌词库、汽车零件词库、连续英文切割、各种中文词向量、公司名字大全、古诗词库、IT词库、财经词库、成语词库、地名词库、历史名人词库、诗词词库、医学词库、饮食词库、法律词库、汽车词库、动物词库、中文聊天语料、中文谣言数据、百度中文问答数据集、句子相似度匹配算法集合、bert资源、文本生成&摘要相关工具、cocoNLP信息抽取 ...|31.2k|Python|12/23|
|16|[testerSunshine/12306](https://github.com/testerSunshine/12306)|12306智能刷票,订票|30.0k|Python|05/21|
|17|[apachecn/AiLearning](https://github.com/apachecn/AiLearning)|AiLearning: 机器学习 - MachineLearning - ML、深度学习 - DeepLearning - DL、自然语言处理 NLP|29.8k|Python|05/09|
|18|[Alvin9999/new-pac](https://github.com/Alvin9999/new-pac)|科学上网/自由上网/翻墙/软件/方法,一键翻墙浏览器,免费shadowsocks/ss/ssr/v2ray/goflyway账号/节点分享,vps一键搭建脚本/教程|29.7k|-|09/27|
|19|[xitu/gold-miner](https://github.com/xitu/gold-miner)|🥇掘金翻译计划,可能是世界最大最好的英译中技术社区,最懂读者和译者的翻译平台:|28.9k|-|05/28|
|20|[NervJS/taro](https://github.com/NervJS/taro)|开放式跨端跨框架解决方案,支持使用 React/Vue/Nerv 等框架来开发微信/京东/百度/支付宝/字节跳动/ QQ 小程序/H5/React Native 等应用。 https://taro.zone/|28.9k|TypeScript|05/29|
|21|[shengxinjing/programmer-job-blacklist](https://github.com/shengxinjing/programmer-job-blacklist)|:see_no_evil:程序员找工作黑名单,换工作和当技术合伙人需谨慎啊 更新有赞|26.9k|Shell|12/23|
|22|[geekxh/hello-algorithm](https://github.com/geekxh/hello-algorithm)|🌍「算法面试+算法知识」针对小白的算法训练 还包括:1、阿里、字节、滴滴 百篇大厂面经汇总 2、千本开源电子书 3、百张思维导图 (右侧来个 star 吧 🌹,English version supported)|26.4k|Java|04/07|
|23|[alibaba/arthas](https://github.com/alibaba/arthas)|Alibaba Java Diagnostic Tool Arthas/Alibaba Java诊断利器Arthas|26.0k|Java|05/27|
|24|[formulahendry/955.WLB](https://github.com/formulahendry/955.WLB)|955 不加班的公司名单 - 工作 955,work–life balance (工作与生活的平衡)|26.0k|-|04/14|
|25|[fxsjy/jieba](https://github.com/fxsjy/jieba)|结巴中文分词|26.4k|Python|12/06|
|26|[unknwon/the-way-to-go_ZH_CN](https://github.com/unknwon/the-way-to-go_ZH_CN)|《The Way to Go》中文译本,中文正式名《Go 入门指南》|25.9k|Go|05/22|
|27|[houshanren/hangzhou_house_knowledge](https://github.com/houshanren/hangzhou_house_knowledge)|2017年买房经历总结出来的买房购房知识分享给大家,希望对大家有所帮助。买房不易,且买且珍惜。Sharing the knowledge of buy an own house that according to the experience at hangzhou in 2017 to all the people. It's not easy to buy a own house, so I hope that it would be useful to everyone.|25.6k|CSS|10/18|
|28|[ityouknow/spring-boot-examples](https://github.com/ityouknow/spring-boot-examples)|about learning Spring Boot via examples. Spring Boot 教程、技术栈示例代码,快速简单上手教程。 |25.6k|Java|04/23|
|29|[proxyee-down-org/proxyee-down](https://github.com/proxyee-down-org/proxyee-down)|http下载工具,基于http代理,支持多连接分块下载|25.4k|Java|08/11|
|30|[AobingJava/JavaFamily](https://github.com/AobingJava/JavaFamily)|【Java面试+Java学习指南】 一份涵盖大部分Java程序员所需要掌握的核心知识。|25.2k|-|04/06|
|31|[d2l-ai/d2l-zh](https://github.com/d2l-ai/d2l-zh)|《动手学深度学习》:面向中文读者、能运行、可讨论。中英文版被全球175所大学采用教学。|24.1k|Python|05/28|
|32|[alibaba/druid](https://github.com/alibaba/druid)|阿里云计算平台DataWorks(https://help.aliyun.com/document_detail/137663.html) 团队出品,为监控而生的数据库连接池|23.9k|Java|05/14|
|33|[geekcompany/ResumeSample](https://github.com/geekcompany/ResumeSample)|Resume template for Chinese programmers . 程序员简历模板系列。包括PHP程序员简历模板、iOS程序员简历模板、Android程序员简历模板、Web前端程序员简历模板、Java程序员简历模板、C/C++程序员简历模板、NodeJS程序员简历模板、架构师简历模板以及通用程序员简历模板|23.8k|-|11/26|
|34|[sentsin/layui](https://github.com/sentsin/layui)|采用自身模块规范编写的前端 UI 框架,遵循原生 HTML/CSS/JS 的书写形式,极低门槛,拿来即用。|23.7k|JavaScript|05/26|
|35|[lib-pku/libpku](https://github.com/lib-pku/libpku)|贵校课程资料民间整理|23.6k|TeX|11/22|
|36|[Advanced-Frontend/Daily-Interview-Question](https://github.com/Advanced-Frontend/Daily-Interview-Question)|我是依扬(木易杨),公众号「高级前端进阶」作者,每天搞定一道前端大厂面试题,祝大家天天进步,一年后会看到不一样的自己。|23.2k|JavaScript|11/09|
|37|[mqyqingfeng/Blog](https://github.com/mqyqingfeng/Blog)|冴羽写博客的地方,预计写四个系列:JavaScript深入系列、JavaScript专题系列、ES6系列、React系列。|23.0k|-|03/05|
|38|[hankcs/HanLP](https://github.com/hankcs/HanLP)|中文分词 词性标注 命名实体识别 依存句法分析 语义依存分析 新词发现 关键词短语提取 自动摘要 文本分类聚类 拼音简繁转换 自然语言处理|22.9k|Python|05/27|
|39|[zhangdaiscott/jeecg-boot](https://github.com/zhangdaiscott/jeecg-boot)|「企业级低代码平台」前后端分离架构SpringBoot 2.x,SpringCloud,Ant Design&Vue,Mybatis-plus,Shiro,JWT。强大的代码生成器让前后端代码一键生成,无需写任何代码! 引领新的开发模式OnlineCoding->代码生成->手工MERGE,帮助Java项目解决70%重复工作,让开发更关注业务,既能快速提高效率,帮助公司节省成本,同时又不失灵活性。|22.8k|Java|05/29|
|40|[alibaba/flutter-go](https://github.com/alibaba/flutter-go)|flutter 开发者帮助 APP,包含 flutter 常用 140+ 组件的demo 演示与中文文档|22.7k|Dart|05/20|
|41|[scwang90/SmartRefreshLayout](https://github.com/scwang90/SmartRefreshLayout)|🔥下拉刷新、上拉加载、二级刷新、淘宝二楼、RefreshLayout、OverScroll,Android智能下拉刷新框架,支持越界回弹、越界拖动,具有极强的扩展性,集成了几十种炫酷的Header和 Footer。|22.6k|Java|05/24|
|42|[qiurunze123/miaosha](https://github.com/qiurunze123/miaosha)|⭐⭐⭐⭐秒杀系统设计与实现.互联网工程师进阶与分析🙋🐓|20.7k|Java|05/27|
|43|[byoungd/English-level-up-tips-for-Chinese](https://github.com/byoungd/English-level-up-tips-for-Chinese)|可能是让你受益匪浅的英语进阶指南|20.6k|-|08/10|
|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 |20.6k|Go|05/29|
|45|[hollischuang/toBeTopJavaer](https://github.com/hollischuang/toBeTopJavaer)|To Be Top Javaer - Java工程师成神之路|20.5k|Java|05/25|
|46|[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|20.3k|Java|04/23|
|47|[Meituan-Dianping/mpvue](https://github.com/Meituan-Dianping/mpvue)|基于 Vue.js 的小程序开发框架,从底层支持 Vue.js 语法和构建工具体系。|20.3k|JavaScript|05/10|
|48|[SwiftGGTeam/the-swift-programming-language-in-chinese](https://github.com/SwiftGGTeam/the-swift-programming-language-in-chinese)|中文版 Apple 官方 Swift 教程《The Swift Programming Language》|20.1k|CSS|05/05|
|49|[Binaryify/NeteaseCloudMusicApi](https://github.com/Binaryify/NeteaseCloudMusicApi)|网易云音乐 Node.js API service|20.1k|JavaScript|05/28|
|50|[alibaba/easyexcel](https://github.com/alibaba/easyexcel)|快速、简单避免OOM的java处理Excel工具|20.0k|Java|05/22|
|51|[komeiji-satori/Dress](https://github.com/komeiji-satori/Dress)|好耶 是女装|19.6k|Standard ML|05/24|
|52|[ruanyf/es6tutorial](https://github.com/ruanyf/es6tutorial)|《ECMAScript 6入门》是一本开源的 JavaScript 语言教程,全面介绍 ECMAScript 6 新增的语法特性。|19.3k|JavaScript|05/24|
|53|[alibaba/canal](https://github.com/alibaba/canal)|阿里巴巴 MySQL binlog 增量订阅&消费组件 |19.2k|Java|05/28|
|54|[halo-dev/halo](https://github.com/halo-dev/halo)|✍ An excellent open source blog publishing application. 一个优秀的开源博客发布应用。|19.0k|Java|05/28|
|55|[wangzheng0822/algo](https://github.com/wangzheng0822/algo)|数据结构和算法必知必会的50个代码实现|18.8k|Python|05/28|
|56|[FallibleInc/security-guide-for-developers](https://github.com/FallibleInc/security-guide-for-developers)|Security Guide for Developers (实用性开发人员安全须知)|19.7k|-|12/02|
|57|[huihut/interview](https://github.com/huihut/interview)|📚 C/C++ 技术面试基础知识总结,包括语言、程序库、数据结构、算法、系统、网络、链接装载库等知识及面试经验、招聘、内推等信息。This repository is a summary of the basic knowledge of recruiting job seekers and beginners in the direction of C/C++ technology, including language, program library, data structure, algorithm, system, network, link loading library, in ...|18.7k|C++|04/14|
|58|[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.|17.0k|Go|05/23|
|59|[PKUanonym/REKCARC-TSC-UHT](https://github.com/PKUanonym/REKCARC-TSC-UHT)|清华大学计算机系课程攻略 Guidance for courses in Department of Computer Science and Technology, Tsinghua University|16.9k|HTML|04/16|
|60|[LingCoder/OnJava8](https://github.com/LingCoder/OnJava8)|《On Java 8》中文版 |16.6k|-|03/01|
|61|[MustangYM/WeChatExtension-ForMac](https://github.com/MustangYM/WeChatExtension-ForMac)|Mac微信功能拓展/微信插件/微信小助手(A plugin for Mac WeChat)|16.6k|Objective-C|05/23|
|62|[reactnativecn/react-native-guide](https://github.com/reactnativecn/react-native-guide)|React Native指南汇集了各类react-native学习资源、开源App和组件|16.5k|-|07/27|
|63|[MLEveryday/100-Days-Of-ML-Code](https://github.com/MLEveryday/100-Days-Of-ML-Code)|100-Days-Of-ML-Code中文版|16.4k|Jupyter Notebook|03/30|
|64|[Awesome-HarmonyOS/HarmonyOS](https://github.com/Awesome-HarmonyOS/HarmonyOS)|A curated list of awesome things related to HarmonyOS. 华为鸿蒙操作系统。|16.3k|C|02/03|
|65|[alibaba/Sentinel](https://github.com/alibaba/Sentinel)|A powerful flow control component enabling reliability, resilience and monitoring for microservices. (面向云原生微服务的高可用流控防护组件)|16.3k|Java|05/25|
|66|[alibaba/ice](https://github.com/alibaba/ice)|🚀 The Progressive Framework Based On React(基于 React 的渐进式研发框架)https://ice.work|16.3k|TypeScript|05/28|
|67|[CarGuo/GSYVideoPlayer](https://github.com/CarGuo/GSYVideoPlayer)|视频播放器(IJKplayer、ExoPlayer、MediaPlayer),HTTPS,支持弹幕,外挂字幕,支持滤镜、水印、gif截图,片头广告、中间广告,多个同时播放,支持基本的拖动,声音、亮度调节,支持边播边缓存,支持视频自带rotation的旋转(90,270之类),重力旋转与手动旋转的同步支持,支持列表播放 ,列表全屏动画,视频加载速度,列表小窗口支持拖动,动画效果,调整比例,多分辨率切换,支持切换播放器,进度条小窗口预览,列表切换详情页面无缝播放,rtsp、concat、mpeg。 |16.2k|Java|05/21|
|68|[alsotang/node-lessons](https://github.com/alsotang/node-lessons)|:closed_book:《Node.js 包教不包会》 by alsotang|16.2k|JavaScript|11/04|
|69|[ryanhanwu/How-To-Ask-Questions-The-Smart-Way](https://github.com/ryanhanwu/How-To-Ask-Questions-The-Smart-Way)|本文原文由知名 Hacker Eric S. Raymond 所撰寫,教你如何正確的提出技術問題並獲得你滿意的答案。|16.2k|JavaScript|02/28|
|70|[jumpserver/jumpserver](https://github.com/jumpserver/jumpserver)|JumpServer 是全球首款开源的堡垒机,是符合 4A 的专业运维安全审计系统。|16.0k|Python|05/28|
|71|[jaywcjlove/linux-command](https://github.com/jaywcjlove/linux-command)|Linux命令大全搜索工具,内容包含Linux命令手册、详解、学习、搜集。https://git.io/linux|16.0k|HTML|05/28|
|72|[shuzheng/zheng](https://github.com/shuzheng/zheng)|基于Spring+SpringMVC+Mybatis分布式敏捷开发系统架构,提供整套公共微服务服务模块:集中权限管理(单点登录)、内容管理、支付中心、用户管理(支持第三方登录)、微信平台、存储系统、配置中心、日志分析、任务和通知等,支持服务治理、监控和追踪,努力为中小型企业打造全方位J2EE企业级开发解决方案。|16.0k|Java|05/12|
|73|[linlinjava/litemall](https://github.com/linlinjava/litemall)|又一个小商城。litemall = Spring Boot后端 + Vue管理员前端 + 微信小程序用户前端 + Vue用户移动端|15.9k|Java|05/19|
|74|[qianguyihao/Web](https://github.com/qianguyihao/Web)|前端入门到进阶图文教程,超详细的Web前端学习笔记。从零开始学前端,做一名精致优雅的前端工程师。公众号「千古壹号」作者。|15.9k|JavaScript|05/28|
|75|[1c7/chinese-independent-developer](https://github.com/1c7/chinese-independent-developer)|👩🏿💻👨🏾💻👩🏼💻👨🏽💻👩🏻💻中国独立开发者项目列表 -- 分享大家都在做什么|16.8k|-|05/20|
|76|[ruanyf/weekly](https://github.com/ruanyf/weekly)|科技爱好者周刊,每周五发布|16.5k|-|05/28|
|77|[youzan/vant-weapp](https://github.com/youzan/vant-weapp)|轻量、可靠的小程序 UI 组件库|14.8k|JavaScript|05/28|
|78|[easychen/howto-make-more-money](https://github.com/easychen/howto-make-more-money)|程序员如何优雅的挣零花钱,2.0版,升级为小书了。Most of this not work outside China , so no English translate|14.6k|PHP|10/17|
|79|[zergtant/pytorch-handbook](https://github.com/zergtant/pytorch-handbook)|pytorch handbook是一本开源的书籍,目标是帮助那些希望和使用PyTorch进行深度学习开发和研究的朋友快速入门,其中包含的Pytorch教程全部通过测试保证可以成功运行|14.5k|Jupyter Notebook|05/25|
|80|[nndl/nndl.github.io](https://github.com/nndl/nndl.github.io)|《神经网络与深度学习》 邱锡鹏著 Neural Network and Deep Learning |14.4k|HTML|05/18|
|81|[JeffLi1993/springboot-learning-example](https://github.com/JeffLi1993/springboot-learning-example)|spring boot 实践学习案例,是 spring boot 初学者及核心技术巩固的最佳实践。另外写博客,用 OpenWrite。|14.3k|Java|03/02|
|82|[233boy/v2ray](https://github.com/233boy/v2ray)|最好用的 V2Ray 一键安装脚本 & 管理脚本|14.1k|Shell|05/14|
|83|[shimohq/chinese-programmer-wrong-pronunciation](https://github.com/shimohq/chinese-programmer-wrong-pronunciation)|中国程序员容易发音错误的单词|14.1k|Python|04/24|
|84|[taizilongxu/interview_python](https://github.com/taizilongxu/interview_python)|关于Python的面试题|14.0k|Shell|03/03|
|85|[fengdu78/lihang-code](https://github.com/fengdu78/lihang-code)|《统计学习方法》的代码实现|14.0k|Jupyter Notebook|03/30|
|86|[wangshub/wechat_jump_game](https://github.com/wangshub/wechat_jump_game)|微信《跳一跳》Python 辅助|13.9k|Python|05/21|
|87|[Kr1s77/awesome-python-login-model](https://github.com/Kr1s77/awesome-python-login-model)|😮python模拟登陆一些大型网站,还有一些简单的爬虫,希望对你们有所帮助❤️,如果喜欢记得给个star哦🌟|13.4k|Python|10/02|
|88|[dcloudio/mui](https://github.com/dcloudio/mui)|最接近原生APP体验的高性能框架|13.2k|JavaScript|07/30|
|89|[fengdu78/deeplearning_ai_books](https://github.com/fengdu78/deeplearning_ai_books)|deeplearning.ai(吴恩达老师的深度学习课程笔记及资源)|13.2k|HTML|12/24|
|90|[dyc87112/SpringBoot-Learning](https://github.com/dyc87112/SpringBoot-Learning)|Spring Boot基础教程,Spring Boot 2.x版本连载中!!!|13.2k|Java|05/23|
|91|[alibaba/ARouter](https://github.com/alibaba/ARouter)|💪 A framework for assisting in the renovation of Android componentization (帮助 Android App 进行组件化改造的路由框架)|13.2k|Java|05/01|
|92|[521xueweihan/git-tips](https://github.com/521xueweihan/git-tips)|:trollface:Git的奇技淫巧|13.1k|-|11/11|
|93|[Jack-Cherish/python-spider](https://github.com/Jack-Cherish/python-spider)|:rainbow:Python3网络爬虫实战:淘宝、京东、网易云、B站、12306、抖音、笔趣阁、漫画小说下载、音乐电影下载等|13.1k|Python|04/01|
|94|[Tencent/QMUI_Android](https://github.com/Tencent/QMUI_Android)|提高 Android UI 开发效率的 UI 库|12.9k|Java|05/18|
|95|[lin-xin/vue-manage-system](https://github.com/lin-xin/vue-manage-system)|基于Vue3 + Element Plus 的后台管理系统解决方案|12.9k|Vue|05/24|
|96|[ShusenTang/Dive-into-DL-PyTorch](https://github.com/ShusenTang/Dive-into-DL-PyTorch)|本项目将《动手学深度学习》(Dive into Deep Learning)原书中的MXNet实现改为PyTorch实现。|12.8k|Jupyter Notebook|04/10|
|97|[Bigkoo/Android-PickerView](https://github.com/Bigkoo/Android-PickerView)|This is a picker view for android , support linkage effect, timepicker and optionspicker.(时间选择器、省市区三级联动)|12.8k|Java|01/25|
|98|[ascoders/weekly](https://github.com/ascoders/weekly)|前端精读周刊。帮你理解最前沿、实用的技术。|12.8k|JavaScript|05/24|
|99|[Light-City/CPlusPlusThings](https://github.com/Light-City/CPlusPlusThings)|C++那些事|12.8k|C++|05/17|
|100|[Curzibn/Luban](https://github.com/Curzibn/Luban)|Luban(鲁班)—Image compression with efficiency very close to WeChat Moments/可能是最接近微信朋友圈的图片压缩算法|12.5k|Java|03/12|
|101|[CarGuo/gsy_github_app_flutter](https://github.com/CarGuo/gsy_github_app_flutter)|Flutter 超完整的开源项目,功能丰富,适合学习和日常使用。GSYGithubApp系列的优势:我们目前已经拥有Flutter、Weex、ReactNative、kotlin 四个版本。 功能齐全,项目框架内技术涉及面广,完成度高,持续维护,配套文章,适合全面学习,对比参考。跨平台的开源Github客户端App,更好的体验,更丰富的功能,旨在更好的日常管理和维护个人Github,提供更好更方便的驾车体验Σ( ̄。 ̄ノ)ノ。同款Weex版本 : https://github.com/CarGuo/GSYGithubAppWeex 、同款React Native版本 : https://g ...|12.4k|Dart|05/29|
|102|[txthinking/brook](https://github.com/txthinking/brook)|Brook is a cross-platform strong encryption and not detectable proxy. Zero-Configuration. Brook 是一个跨平台的强加密无特征的代理软件. 零配置.|12.3k|Go|05/28|
|103|[yanue/V2rayU](https://github.com/yanue/V2rayU)|V2rayU,基于v2ray核心的mac版客户端,用于科学上网,使用swift编写,支持vmess,shadowsocks,socks5等服务协议,支持订阅, 支持二维码,剪贴板导入,手动配置,二维码分享等|12.1k|-|04/05|
|104|[jobbole/awesome-programming-books](https://github.com/jobbole/awesome-programming-books)|经典编程书籍大全,涵盖:计算机系统与网络、系统架构、算法与数据结构、前端开发、后端开发、移动开发、数据库、测试、项目与团队、程序员职业修炼、求职面试等|12.1k|-|10/10|
|105|[zhongyang219/TrafficMonitor](https://github.com/zhongyang219/TrafficMonitor)|这是一个用于显示当前网速、CPU及内存利用率的桌面悬浮窗软件,并支持任务栏显示,支持更换皮肤。|12.0k|C++|05/23|
|106|[greyireland/algorithm-pattern](https://github.com/greyireland/algorithm-pattern)|算法模板,最科学的刷题方式,最快速的刷题路径,你值得拥有~|11.9k|Go|05/14|
|107|[lyswhut/lx-music-desktop](https://github.com/lyswhut/lx-music-desktop)|一个基于 electron 的音乐软件|11.9k|JavaScript|05/28|
|108|[Tencent/omi](https://github.com/Tencent/omi)| Front End Cross-Frameworks Framework - 前端跨框架跨平台框架|11.9k|JavaScript|05/17|
|109|[phobal/ivideo](https://github.com/phobal/ivideo)|一个可以观看国内主流视频平台所有视频的客户端(Mac、Windows、Linux) A client that can watch video of domestic(China) mainstream video platform|11.8k|JavaScript|01/29|
|110|[wangeditor-team/wangEditor](https://github.com/wangeditor-team/wangEditor)|wangEditor —— 轻量级web富文本框|11.8k|TypeScript|05/27|
|111|[stephentian/33-js-concepts](https://github.com/stephentian/33-js-concepts)|:scroll: 每个 JavaScript 工程师都应懂的33个概念 @leonardomso|11.8k|JavaScript|01/22|
|112|[leisurelicht/wtfpython-cn](https://github.com/leisurelicht/wtfpython-cn)|wtfpython的中文翻译/施工结束/ 能力有限,欢迎帮我改进翻译|11.7k|Python|03/23|
|113|[aalansehaiyang/technology-talk](https://github.com/aalansehaiyang/technology-talk)|汇总java生态圈常用技术框架、开源中间件,系统架构、数据库、大公司架构案例、常用三方类库、项目管理、线上问题排查、个人成长、思考等知识|11.6k|-|05/20|
|114|[qyuhen/book](https://github.com/qyuhen/book)|学习笔记|11.6k|-|04/07|
|115|[ruanyf/free-books](https://github.com/ruanyf/free-books)|互联网上的免费书籍|11.6k|-|04/11|
|116|[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.|11.6k|Jupyter Notebook|05/16|
|117|[peterq/pan-light](https://github.com/peterq/pan-light)|百度网盘不限速客户端, golang + qt5, 跨平台图形界面|11.6k|Go|05/28|
|118|[h2y/Shadowrocket-ADBlock-Rules](https://github.com/h2y/Shadowrocket-ADBlock-Rules)|提供多款 Shadowrocket 规则,带广告过滤功能。用于 iOS 未越狱设备选择性地自动翻墙。|11.4k|Python|04/13|
|119|[youth5201314/banner](https://github.com/youth5201314/banner)|🔥🔥🔥Banner 2.0 来了!Android广告图片轮播控件,内部基于ViewPager2实现,Indicator和UI都可以自定义。|11.2k|Java|05/28|
|120|[Tencent/APIJSON](https://github.com/Tencent/APIJSON)|🚀 零代码、热更新、自动化 ORM 库,后端接口和文档零代码,前端(客户端) 定制返回 JSON 的数据和结构。 🚀 A JSON Transmission Protocol and an ORM Library for automatically providing APIs and Docs.|10.9k|Java|05/27|
|121|[meolu/walle-web](https://github.com/meolu/walle-web)|walle - 瓦力 Devops开源项目代码部署平台|10.9k|Python|05/09|
|122|[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代理服务器,支持内网穿透,链式代理,通讯加密,智能H ...|10.3k|Go|05/21|
|123|[jeasonlzy/okhttp-OkGo](https://github.com/jeasonlzy/okhttp-OkGo)|OkGo - 3.0 震撼来袭,该库是基于 Http 协议,封装了 OkHttp 的网络请求框架,比 Retrofit 更简单易用,支持 RxJava,RxJava2,支持自定义缓存,支持批量断点下载管理和批量上传管理功能|10.3k|Java|05/09|
|124|[hehonghui/android-tech-frontier](https://github.com/hehonghui/android-tech-frontier)|【停止维护】一个定期翻译国外Android优质的技术、开源库、软件架构设计、测试等文章的开源项目|10.3k|-|02/05|
|125|[opendigg/awesome-github-vue](https://github.com/opendigg/awesome-github-vue)|Vue相关开源项目库汇总|10.2k|-|05/07|
|126|[shengqiangzhang/examples-of-web-crawlers](https://github.com/shengqiangzhang/examples-of-web-crawlers)|一些非常有趣的python爬虫例子,对新手比较友好,主要爬取淘宝、天猫、微信、豆瓣、QQ等网站。(Some interesting examples of python crawlers that are friendly to beginners. )|10.2k|Python|05/15|
|127|[0voice/from_coder_to_expert](https://github.com/0voice/from_coder_to_expert)|2021年最新总结,从程序员到CTO,从专业走向卓越,分享大牛企业内部pdf与PPT|10.1k|-|02/24|
|128|[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 实战与性能优化》|10.0k|Java|05/04|
|129|[seaswalker/spring-analysis](https://github.com/seaswalker/spring-analysis)|Spring源码阅读|9.9k|Java|02/23|
|130|[eip-work/kuboard-press](https://github.com/eip-work/kuboard-press)|Kuboard 是基于 Kubernetes 的微服务管理界面。同时提供 Kubernetes 免费中文教程,入门教程,最新版本的 Kubernetes v1.20 安装手册,(k8s install) 在线答疑,持续更新。|9.9k|JavaScript|05/28|
|131|[programthink/books](https://github.com/programthink/books)|【编程随想】收藏的电子书清单(多个学科,含下载链接)|9.9k|-|04/28|
|132|[answershuto/learnVue](https://github.com/answershuto/learnVue)|:octocat:Vue.js 源码解析|10.8k|JavaScript|10/19|
|133|[bailicangdu/vue2-manage](https://github.com/bailicangdu/vue2-manage)|基于 vue + element-ui 的后台管理系统|10.8k|Vue|04/29|
|134|[xiandanin/magnetW](https://github.com/xiandanin/magnetW)|磁力链接聚合搜索|10.8k|JavaScript|07/23|
|135|[Tim9Liu9/TimLiu-iOS](https://github.com/Tim9Liu9/TimLiu-iOS)|iOS开发常用三方库、插件、知名博客等等|10.7k|-|05/18|
|136|[Qv2ray/Qv2ray](https://github.com/Qv2ray/Qv2ray)|:star: Linux / Windows / macOS 跨平台 V2Ray 客户端 支持 VMess / VLESS / SSR / Trojan / Trojan-Go / NaiveProxy / HTTP / HTTPS / SOCKS5 使用 C++ / Qt 开发 可拓展插件式设计 :star:|10.6k|C++|05/29|
|137|[modood/Administrative-divisions-of-China](https://github.com/modood/Administrative-divisions-of-China)|中华人民共和国行政区划:省级(省份直辖市自治区)、 地级(城市)、 县级(区县)、 乡级(乡镇街道)、 村级(村委会居委会) ,中国省市区镇村二级三级四级五级联动地址数据。|10.5k|JavaScript|11/09|
|138|[thx/RAP](https://github.com/thx/RAP)|Web接口管理工具,开源免费,接口自动化,MOCK数据自动生成,自动化测试,企业级管理。阿里妈妈MUX团队出品!阿里巴巴都在用!1000+公司的选择!RAP2已发布请移步至https://github.com/thx/rap2-delos|10.5k|JavaScript|03/12|
|139|[weilanwl/ColorUI](https://github.com/weilanwl/ColorUI)|鲜亮的高饱和色彩,专注视觉的小程序组件库|10.5k|Vue|05/16|
|140|[youngyangyang04/leetcode-master](https://github.com/youngyangyang04/leetcode-master)|LeetCode 刷题攻略:200道经典题目刷题顺序,共60w字的详细图解,视频难点剖析,50余张思维导图,从此算法学习不再迷茫!🔥🔥 来看看,你会发现相见恨晚!🚀 |10.5k|-|05/28|
|141|[LuckSiege/PictureSelector](https://github.com/LuckSiege/PictureSelector)|Picture Selector Library for Android or 图片选择器|10.4k|Java|05/28|
|142|[pagehelper/Mybatis-PageHelper](https://github.com/pagehelper/Mybatis-PageHelper)|Mybatis通用分页插件|10.4k|Java|05/28|
|143|[apachecn/apachecn-algo-zh](https://github.com/apachecn/apachecn-algo-zh)|ApacheCN 数据结构与算法译文集|10.3k|JavaScript|05/09|
|144|[USTC-Resource/USTC-Course](https://github.com/USTC-Resource/USTC-Course)|:heart:中国科学技术大学课程资源|10.2k|C++|01/18|
|145|[hyb1996/Auto.js](https://github.com/hyb1996/Auto.js)|A UiAutomator on android, does not need root access(安卓平台上的JavaScript自动化工具)|10.1k|Java|04/11|
|146|[chokcoco/iCSS](https://github.com/chokcoco/iCSS)|不止于 CSS|10.0k|-|05/27|
|147|[JessYanCoding/MVPArms](https://github.com/JessYanCoding/MVPArms)|⚔️ A common architecture for Android applications developing based on MVP, integrates many open source projects, to make your developing quicker and easier (一个整合了大量主流开源项目高度可配置化的 Android MVP 快速集成框架). |10.0k|Java|10/20|
|148|[frank-lam/fullstack-tutorial](https://github.com/frank-lam/fullstack-tutorial)|🚀 fullstack tutorial 2021,后台技术栈/架构师之路/全栈开发社区,春招/秋招/校招/面试|9.7k|Java|05/20|
|149|[heibaiying/BigData-Notes](https://github.com/heibaiying/BigData-Notes)|大数据入门指南 :star:|9.7k|Java|05/12|
|150|[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.6k|Java|11/30|
|151|[sparanoid/chinese-copywriting-guidelines](https://github.com/sparanoid/chinese-copywriting-guidelines)|Chinese copywriting guidelines for better written communication/中文文案排版指北|9.5k|CoffeeScript|01/30|
|152|[cuiocean/ZY-Player](https://github.com/cuiocean/ZY-Player)|▶️ 跨平台桌面端视频资源播放器.简洁无广告.免费高颜值. 🎞|9.2k|Vue|05/25|
|153|[GitHubDaily/GitHubDaily](https://github.com/GitHubDaily/GitHubDaily)|GitHubDaily 分享内容定期整理与分类。欢迎推荐、自荐项目,让更多人知道你的项目。|9.2k|-|12/31|
|154|[talkgo/night](https://github.com/talkgo/night)|Weekly Go Online Meetup via Bilibili|Go 夜读|由 SIG 成员维护|通过 bilibili 在线直播的方式分享 Go 相关的技术话题,每天大家在微信/telegram/Slack 上及时沟通交流编程技术话题。|9.2k|Go|05/28|
|155|[MorvanZhou/tutorials](https://github.com/MorvanZhou/tutorials)|机器学习相关教程|9.1k|Python|12/23|
|156|[chuzhixin/vue-admin-beautiful](https://github.com/chuzhixin/vue-admin-beautiful)|🚀🚀🚀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)程序无国界,但程序员有国界,中国国家尊严不容挑衅,如果您在特殊时期 ...|9.1k|Vue|05/28|
|157|[cnodejs/nodeclub](https://github.com/cnodejs/nodeclub)|:baby_chick:Nodeclub 是使用 Node.js 和 MongoDB 开发的社区系统|9.1k|JavaScript|04/30|
|158|[NLP-LOVE/ML-NLP](https://github.com/NLP-LOVE/ML-NLP)|此项目是机器学习(Machine Learning)、深度学习(Deep Learning)、NLP面试中常考到的知识点和代码实现,也是作为一个算法工程师必会的理论基础知识。|9.1k|Jupyter Notebook|05/16|
|159|[star7th/showdoc](https://github.com/star7th/showdoc)|ShowDoc is a tool greatly applicable for an IT team to share documents online一个非常适合IT团队的在线API文档、技术文档工具|9.0k|JavaScript|05/26|
|160|[halfrost/Halfrost-Field](https://github.com/halfrost/Halfrost-Field)|✍🏻 这里是写博客的地方 —— Halfrost-Field 冰霜之地|9.0k|Rust|05/27|
|161|[bilibili/DanmakuFlameMaster](https://github.com/bilibili/DanmakuFlameMaster)|Android开源弹幕引擎·烈焰弹幕使 ~|9.0k|Java|02/27|
|162|[alibaba/DataX](https://github.com/alibaba/DataX)|DataX是阿里云DataWorks数据集成的开源版本。|8.9k|Java|05/28|
|163|[paascloud/paascloud-master](https://github.com/paascloud/paascloud-master)|spring cloud + vue + oAuth2.0全家桶实战,前后端分离模拟商城,完整的购物流程、后端运营平台,可以实现快速搭建企业级微服务项目。支持微信登录等三方登录。|8.9k|Java|04/23|
|164|[darknessomi/musicbox](https://github.com/darknessomi/musicbox)|网易云音乐命令行版本|8.9k|Python|04/07|
|165|[chenyuntc/pytorch-book](https://github.com/chenyuntc/pytorch-book)|PyTorch tutorials and fun projects including neural talk, neural style, poem writing, anime generation (《深度学习框架PyTorch:入门与实战》)|8.9k|Jupyter Notebook|03/14|
|166|[Embedding/Chinese-Word-Vectors](https://github.com/Embedding/Chinese-Word-Vectors)|100+ Chinese Word Vectors 上百种预训练中文词向量 |8.9k|Python|03/20|
|167|[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容器化部署。|8.8k|Java|05/28|
|168|[PanDownloadServer/Server](https://github.com/PanDownloadServer/Server)|PanDownload的个人维护版本|8.8k|HTML|09/25|
|169|[vipstone/faceai](https://github.com/vipstone/faceai)|一款入门级的人脸、视频、文字检测以及识别的项目.|8.7k|Python|04/16|
|170|[lihengming/spring-boot-api-project-seed](https://github.com/lihengming/spring-boot-api-project-seed)|:seedling::rocket:一个基于Spring Boot & MyBatis的种子项目,用于快速构建中小型API、RESTful API项目~|8.7k|Java|05/19|
|171|[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.7k|Java|09/29|
|172|[stanzhai/be-a-professional-programmer](https://github.com/stanzhai/be-a-professional-programmer)|成为专业程序员路上用到的各种优秀资料、神器及框架|8.6k|-|02/10|
|173|[CodeTips/BaiduNetdiskPlugin-macOS](https://github.com/CodeTips/BaiduNetdiskPlugin-macOS)|For macOS.百度网盘 破解SVIP、下载速度限制~|8.6k|Objective-C|10/17|
|174|[cloudreve/Cloudreve](https://github.com/cloudreve/Cloudreve)|🌩支持多家云存储的云盘系统 (A project helps you build your own cloud in minutes)|8.6k|Go|05/28|
|175|[nusr/hacker-laws-zh](https://github.com/nusr/hacker-laws-zh)|💻📖对开发人员有用的定律、理论、原则和模式。(Laws, Theories, Principles and Patterns that developers will find useful.)|8.6k|-|03/19|
|176|[trazyn/ieaseMusic](https://github.com/trazyn/ieaseMusic)|网易云音乐第三方|8.5k|JavaScript|07/07|
|177|[getlantern/lantern](https://github.com/getlantern/lantern)|Lantern官方版本下载 蓝灯 翻墙 代理 科学上网 外网 加速器 梯子 路由 lantern proxy vpn censorship-circumvention censorship gfw accelerator|8.5k|Go|05/13|
|178|[fangzesheng/free-api](https://github.com/fangzesheng/free-api)|收集免费的接口服务,做一个api的搬运工|8.4k|-|05/06|
|179|[didi/chameleon](https://github.com/didi/chameleon)|🦎 一套代码运行多端,一端所见即多端所见|8.4k|JavaScript|05/27|
|180|[afatcoder/LeetcodeTop](https://github.com/afatcoder/LeetcodeTop)|汇总各大互联网公司容易考察的高频leetcode题🔥|8.4k|-|05/12|
|181|[keithnull/TeachYourselfCS-CN](https://github.com/keithnull/TeachYourselfCS-CN)|TeachYourselfCS 的中文翻译 A Chinese translation of TeachYourselfCS|8.4k|-|03/11|
|182|[DeathKing/Learning-SICP](https://github.com/DeathKing/Learning-SICP)|MIT视频公开课《计算机程序的构造和解释》中文化项目及课程学习资料搜集。|8.4k|Ruby|02/25|
|183|[flutterchina/flutter-in-action](https://github.com/flutterchina/flutter-in-action)|《Flutter实战》电子书|8.4k|JavaScript|05/27|
|184|[EtherDream/jsproxy](https://github.com/EtherDream/jsproxy)|一个基于浏览器端 JS 实现的在线代理|8.4k|Shell|03/24|
|185|[macrozheng/mall-admin-web](https://github.com/macrozheng/mall-admin-web)|mall-admin-web是一个电商后台管理系统的前端项目,基于Vue+Element实现。 主要包括商品管理、订单管理、会员管理、促销管理、运营管理、内容管理、统计报表、财务管理、权限管理、设置等功能。|8.3k|Vue|02/27|
|186|[ruanyf/document-style-guide](https://github.com/ruanyf/document-style-guide)|中文技术文档的写作规范|8.3k|-|05/14|
|187|[sfyc23/EverydayWechat](https://github.com/sfyc23/EverydayWechat)|微信助手:1.每日定时给好友(女友)发送定制消息。2.机器人自动回复好友。3.群助手功能(例如:查询垃圾分类、天气、日历、电影实时票房、快递物流、PM2.5等)|8.3k|Python|03/22|
|188|[DuGuQiuBai/Java](https://github.com/DuGuQiuBai/Java)|27天成为Java大神|8.2k|Java|05/20|
|189|[GcsSloop/AndroidNote](https://github.com/GcsSloop/AndroidNote)|安卓学习笔记|8.2k|Java|05/25|
|190|[iamshuaidi/CS-Book](https://github.com/iamshuaidi/CS-Book)|计算机类常用电子书整理,并且附带下载链接,包括Java,Python,Linux,Go,C,C++,数据结构与算法,人工智能,计算机基础,面试,设计模式,数据库,前端等书籍|8.2k|-|05/23|
|191|[mzlogin/awesome-adb](https://github.com/mzlogin/awesome-adb)|ADB Usage Complete / ADB 用法大全|8.2k|-|04/25|
|192|[sentsin/layer](https://github.com/sentsin/layer)|丰富多样的 Web 弹出层组件,可轻松实现 Alert/Confirm/Prompt/ 普通提示/页面区块/iframe/tips等等几乎所有的弹出交互。目前已成为最多人使用的弹层解决方案|8.0k|JavaScript|05/22|
|193|[litten/hexo-theme-yilia](https://github.com/litten/hexo-theme-yilia)|一个简洁优雅的hexo主题 A simple and elegant theme for hexo.|8.0k|JavaScript|05/22|
|194|[wsdjeg/vim-galore-zh_cn](https://github.com/wsdjeg/vim-galore-zh_cn)|Vim 从入门到精通|8.0k|Vim script|12/19|
|195|[flipped-aurora/gin-vue-admin](https://github.com/flipped-aurora/gin-vue-admin)|基于gin+vue搭建的后台管理系统框架,集成jwt鉴权,权限管理,动态路由,分页封装,多点登录拦截,资源权限,上传下载,代码生成器,表单生成器,通用工作流等基础功能,五分钟一套CURD前后端代码,目前已支持VUE3,欢迎issue和pr~|8.0k|Go|05/28|
|196|[bbfamily/abu](https://github.com/bbfamily/abu)|阿布量化交易系统(股票,期权,期货,比特币,机器学习) 基于python的开源量化交易,量化投资架构|8.0k|Python|12/23|
|197|[pwxcoo/chinese-xinhua](https://github.com/pwxcoo/chinese-xinhua)|:orange_book: 中华新华字典数据库。包括歇后语,成语,词语,汉字。|7.9k|Python|11/09|
|198|[crawlab-team/crawlab](https://github.com/crawlab-team/crawlab)|Distributed web crawler admin platform for spiders management regardless of languages and frameworks. 分布式爬虫管理平台,支持任何语言和框架|7.8k|Go|05/27|
|199|[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|7.8k|PHP|05/27|
|200|[xcatliu/typescript-tutorial](https://github.com/xcatliu/typescript-tutorial)|TypeScript 入门教程|7.8k|TypeScript|05/12|
|201|[polaris1119/The-Golang-Standard-Library-by-Example](https://github.com/polaris1119/The-Golang-Standard-Library-by-Example)|Golang标准库。对于程序员而言,标准库与语言本身同样重要,它好比一个百宝箱,能为各种常见的任务提供完美的解决方案。以示例驱动的方式讲解Golang的标准库。|7.8k|Go|03/16|
|202|[hoochanlon/w3-goto-world](https://github.com/hoochanlon/w3-goto-world)|🍅 Git/AWS/Google 镜像 ,SS/SSR/VMESS节点,WireGuard,IPFS, DeepWeb,Capitalism 、行业研究报告的知识储备库|7.8k|Python|05/20|
|203|[unlock-music/unlock-music](https://github.com/unlock-music/unlock-music)|Unlock encrypted music file in browser. 在浏览器中解锁加密的音乐文件。|7.8k|TypeScript|05/27|
|204|[opendigg/awesome-github-wechat-weapp](https://github.com/opendigg/awesome-github-wechat-weapp)|微信小程序开源项目库汇总|7.7k|-|08/16|
|205|[crossoverJie/cim](https://github.com/crossoverJie/cim)|📲cim(cross IM) 适用于开发者的分布式即时通讯系统|7.7k|Java|03/22|
|206|[OI-wiki/OI-wiki](https://github.com/OI-wiki/OI-wiki)|:star2: Wiki of OI / ICPC for everyone. (某大型游戏线上攻略,内含炫酷算术魔法)|7.7k|-|05/29|
|207|[dxcweb/high-speed-downloader](https://github.com/dxcweb/high-speed-downloader)|已不再维护|7.7k|-|04/16|
|208|[zh-google-styleguide/zh-google-styleguide](https://github.com/zh-google-styleguide/zh-google-styleguide)|Google 开源项目风格指南 (中文版)|7.7k|Makefile|01/01|
|209|[top-think/think](https://github.com/top-think/think)|ThinkPHP Framework ——十年匠心的高性能PHP框架|7.7k|PHP|01/25|
|210|[thinkgem/jeesite](https://github.com/thinkgem/jeesite)|JeeSite 是一个企业信息化开发基础平台,Java企业应用开源框架,Java EE(J2EE)快速开发框架,使用经典技术组合(Spring、Spring MVC、Apache Shiro、MyBatis、Bootstrap UI),包括核心模块如:组织机构、角色用户、权限授权、数据权限、内容管理、工作流等。|7.6k|JavaScript|04/28|
|211|[evil-huawei/evil-huawei](https://github.com/evil-huawei/evil-huawei)|Evil Huawei - 华为作过的恶|7.6k|JavaScript|01/12|
|212|[huanghaibin-dev/CalendarView](https://github.com/huanghaibin-dev/CalendarView)|Android上一个优雅、万能自定义UI、支持周视图、自定义周起始、性能高效的日历控件,支持热插拔实现的UI定制!支持标记、自定义颜色、农历、自定义月视图各种显示模式等。Canvas绘制,速度快、占用内存低,你真的想不到日历居然还可以如此优雅!An elegant, highly customized and high-performance Calendar Widget on Android.|7.6k|Java|05/24|
|213|[icindy/wxParse](https://github.com/icindy/wxParse)|wxParse-微信小程序富文本解析自定义组件,支持HTML及markdown解析|7.6k|JavaScript|03/19|
|214|[banchichen/TZImagePickerController](https://github.com/banchichen/TZImagePickerController)|一个支持多选、选原图和视频的图片选择器,同时有预览、裁剪功能,支持iOS6+。 A clone of UIImagePickerController, support picking multiple photos、original photo、video, also allow preview photo and video, support iOS6+|7.6k|Objective-C|05/26|
|215|[judasn/Linux-Tutorial](https://github.com/judasn/Linux-Tutorial)|《Java 程序员眼中的 Linux》|7.6k|Shell|10/27|
|216|[hs-web/hsweb-framework](https://github.com/hs-web/hsweb-framework)|hsweb (haʊs wɛb) 是一个基于spring-boot 2.x开发 ,首个使用全响应式编程的企业级后台管理系统基础项目。|7.6k|Java|05/28|
|217|[fuck-xuexiqiangguo/Fuck-XueXiQiangGuo](https://github.com/fuck-xuexiqiangguo/Fuck-XueXiQiangGuo)|学习强国 懒人刷分工具 自动学习|7.5k|-|03/23|
|218|[hq450/fancyss_history_package](https://github.com/hq450/fancyss_history_package)|科学上网插件的离线安装包储存在这里|7.5k|-|05/25|
|219|[huangz1990/redis-3.0-annotated](https://github.com/huangz1990/redis-3.0-annotated)|带有详细注释的 Redis 3.0 代码(annotated Redis 3.0 source code)。|7.5k|C|04/23|
|220|[helloqingfeng/Awsome-Front-End-learning-resource](https://github.com/helloqingfeng/Awsome-Front-End-learning-resource)|:octocat:GitHub最全的前端资源汇总仓库(包括前端学习、开发资源、求职面试等)|7.5k|PHP|08/28|
|221|[wangshub/Douyin-Bot](https://github.com/wangshub/Douyin-Bot)|😍 Python 抖音机器人,论如何在抖音上找到漂亮小姐姐? |7.5k|Python|03/19|
|222|[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动手写/从零实现系列|7.4k|Go|05/26|
|223|[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,人工智能,大数据类,并发编程,数据库类,数据挖掘,新面试题,架构设计,算法系列,计算机类,设计模式,软件测试,重构优化,等更多分类|7.4k|-|05/24|
|224|[Dod-o/Statistical-Learning-Method_Code](https://github.com/Dod-o/Statistical-Learning-Method_Code)|手写实现李航《统计学习方法》书中全部算法|7.4k|Python|03/03|
|225|[getgridea/gridea](https://github.com/getgridea/gridea)|✍️A static blog writing client (一个静态博客写作客户端)|7.3k|CSS|05/27|
|226|[the1812/Bilibili-Evolved](https://github.com/the1812/Bilibili-Evolved)|强大的哔哩哔哩增强脚本: 下载视频, 音乐, 封面, 弹幕 / 简化直播间, 评论区, 首页 / 自定义顶栏, 删除广告, 夜间模式 / 触屏设备支持|7.3k|TypeScript|05/28|
|227|[skywind3000/awesome-cheatsheets](https://github.com/skywind3000/awesome-cheatsheets)|超级速查表 - 编程语言、框架和开发工具的速查表,单个文件包含一切你需要知道的东西 :zap:|7.2k|Shell|05/12|
|228|[freefq/free](https://github.com/freefq/free)|翻墙、免费翻墙、免费科学上网、免费节点、免费梯子、免费ss/ssr/v2ray/trojan节点、蓝灯、谷歌商店、翻墙梯子|7.2k|-|05/29|
|229|[inferjay/AndroidDevTools](https://github.com/inferjay/AndroidDevTools)|收集整理Android开发所需的Android SDK、开发中用到的工具、Android开发教程、Android设计规范,免费的设计素材等。|7.1k|-|05/28|
|230|[jindongwang/transferlearning](https://github.com/jindongwang/transferlearning)|Everything about Transfer Learning and Domain Adaptation--迁移学习|7.1k|Python|05/27|
|231|[1c7/Crash-Course-Computer-Science-Chinese](https://github.com/1c7/Crash-Course-Computer-Science-Chinese)|:computer: 计算机速成课 Crash Course 字幕组 (全40集 2018-5-1 精校完成)|7.1k|JavaScript|07/02|
|232|[bailicangdu/react-pxq](https://github.com/bailicangdu/react-pxq)|一个 react + redux 的完整项目 和 个人总结|7.1k|JavaScript|08/11|
|233|[timqian/chinese-independent-blogs](https://github.com/timqian/chinese-independent-blogs)|中文独立博客列表|6.7k|JavaScript|05/27|
|234|[alibaba/otter](https://github.com/alibaba/otter)|阿里巴巴分布式数据库同步系统(解决中美异地机房)|6.6k|Java|04/27|
|235|[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.6k|Rich Text Format|12/24|
|236|[qinjx/30min_guides](https://github.com/qinjx/30min_guides)|覃健祥的学习笔记,各种几十分钟入门的文档|6.6k|-|02/09|
|237|[renzifeng/ZFPlayer](https://github.com/renzifeng/ZFPlayer)|Support customization of any player SDK and control layer(支持定制任何播放器SDK和控制层)|6.6k|Objective-C|03/05|
|238|[OpenFlutter/Flutter-Notebook](https://github.com/OpenFlutter/Flutter-Notebook)|FlutterDemo合集,今天你fu了吗|6.5k|Dart|04/14|
|239|[chokcoco/CSS-Inspiration](https://github.com/chokcoco/CSS-Inspiration)|CSS Inspiration,在这里找到写 CSS 的灵感!|6.5k|JavaScript|03/10|
|240|[thx/rap2-delos](https://github.com/thx/rap2-delos)|阿里妈妈前端团队出品的开源接口管理工具RAP第二代|6.9k|TypeScript|03/12|
|241|[JeffreySu/WeiXinMPSDK](https://github.com/JeffreySu/WeiXinMPSDK)|微信全平台 SDK Senparc.Weixin for C#,支持 .NET Framework 及 .NET Core、.NET 6.0。已支持微信公众号、小程序、小游戏、企业号、企业微信、开放平台、微信支付、JSSDK、微信周边等全平台。 WeChat SDK for C#.|6.8k|C#|05/28|
|242|[yifeikong/reverse-interview-zh](https://github.com/yifeikong/reverse-interview-zh)|技术面试最后反问面试官的话|6.8k|-|03/01|
|243|[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 |6.8k|C++|05/27|
|244|[deeplearning-ai/machine-learning-yearning-cn](https://github.com/deeplearning-ai/machine-learning-yearning-cn)|Machine Learning Yearning 中文版 - 《机器学习训练秘籍》 - Andrew Ng 著|6.8k|CSS|04/05|
|245|[luyishisi/Anti-Anti-Spider](https://github.com/luyishisi/Anti-Anti-Spider)|越来越多的网站具有反爬虫特性,有的用图片隐藏关键数据,有的使用反人类的验证码,建立反反爬虫的代码仓库,通过与不同特性的网站做斗争(无恶意)提高技术。(欢迎提交难以采集的网站)(因工作原因,项目暂停) |6.7k|Python|06/29|
|246|[dyc87112/SpringCloud-Learning](https://github.com/dyc87112/SpringCloud-Learning)|Spring Cloud基础教程,持续连载更新中|6.6k|Java|10/30|
|247|[open-power-workgroup/Hospital](https://github.com/open-power-workgroup/Hospital)|OpenPower工作组收集汇总的医院开放数据|6.6k|HTML|10/27|
|248|[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|6.5k|Swift|05/24|
|249|[ChenYilong/CYLTabBarController](https://github.com/ChenYilong/CYLTabBarController)|[EN]It is an iOS UI module library for adding animation to iOS tabbar items and icons with Lottie, and adding a bigger center UITabBar Item. [CN]【中国特色 TabBar】一行代码实现 Lottie 动画TabBar,支持中间带+号的TabBar样式,自带红点角标,支持动态刷新。【iOS13 & Dark Mode & iPhone XS MAX supported】|6.5k|Objective-C|11/03|
|250|[ljianshu/Blog](https://github.com/ljianshu/Blog)|关注基础知识,打造优质前端博客,公众号[前端工匠]的作者|6.5k|JavaScript|05/28|
|251|[mamoe/mirai](https://github.com/mamoe/mirai)|高效率 QQ 机器人支持库|6.4k|Kotlin|05/28|
|252|[goldze/MVVMHabit](https://github.com/goldze/MVVMHabit)|👕基于谷歌最新AAC架构,MVVM设计模式的一套快速开发库,整合Okhttp+RxJava+Retrofit+Glide等主流模块,满足日常开发需求。使用该框架可以快速开发一个高质量、易维护的Android应用。|6.4k|Java|01/27|
|253|[wulabing/Xray_onekey](https://github.com/wulabing/Xray_onekey)|Xray 基于 Nginx 的 VLESS + XTLS 一键安装脚本 |6.4k|Shell|05/02|
|254|[MorvanZhou/Reinforcement-learning-with-tensorflow](https://github.com/MorvanZhou/Reinforcement-learning-with-tensorflow)|Simple Reinforcement learning tutorials, 莫烦Python 中文AI教学|6.4k|Python|11/01|
|255|[kaina404/FlutterDouBan](https://github.com/kaina404/FlutterDouBan)|🔥🔥🔥Flutter豆瓣客户端,Awesome Flutter Project,全网最100%还原豆瓣客户端。首页、书影音、小组、市集及个人中心,一个不拉。( https://img.xuvip.top/douyademo.mp4)|6.4k|Dart|12/25|
|256|[c-hj/SJTU-Courses](https://github.com/c-hj/SJTU-Courses)|上海交通大学课程资料分享|6.3k|-|04/17|
|257|[opsnull/follow-me-install-kubernetes-cluster](https://github.com/opsnull/follow-me-install-kubernetes-cluster)|和我一步步部署 kubernetes 集群|6.3k|Shell|05/18|
|258|[Exrick/xmall](https://github.com/Exrick/xmall)|基于SOA架构的分布式电商购物商城 前后端分离 前台商城:Vue全家桶 后台管理系统:Dubbo/SSM/Elasticsearch/Redis/MySQL/ActiveMQ/Shiro/Zookeeper等|6.3k|Java|04/23|
|259|[zhoutaoo/SpringCloud](https://github.com/zhoutaoo/SpringCloud)|基于SpringCloud2.1的微服务开发脚手架,整合了spring-security-oauth2、nacos、feign、sentinel、springcloud-gateway等。服务治理方面引入elasticsearch、skywalking、springboot-admin、zipkin等,让项目开发快速进入业务开发,而不需过多时间花费在架构搭建上。持续更新中|6.3k|Java|04/23|
|260|[crownpku/Awesome-Chinese-NLP](https://github.com/crownpku/Awesome-Chinese-NLP)|A curated list of resources for Chinese NLP 中文自然语言处理相关资料|6.3k|-|09/07|
|261|[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.3k|-|07/07|
|262|[wuhan2020/wuhan2020](https://github.com/wuhan2020/wuhan2020)|新型冠状病毒防疫信息收集平台|6.2k|-|10/30|
|263|[Tencent/QMUI_iOS](https://github.com/Tencent/QMUI_iOS)|QMUI iOS——致力于提高项目 UI 开发效率的解决方案|6.2k|Objective-C|05/26|
|264|[xtyxtyx/sorry](https://github.com/xtyxtyx/sorry)|在线制作`sorry 为所欲为`的gif|6.2k|CSS|04/03|
|265|[brightmart/nlp_chinese_corpus](https://github.com/brightmart/nlp_chinese_corpus)|大规模中文自然语言处理语料 Large Scale Chinese Corpus for NLP|6.2k|-|10/22|
|266|[chyingp/nodejs-learning-guide](https://github.com/chyingp/nodejs-learning-guide)|Nodejs学习笔记以及经验总结,公众号"程序猿小卡"|6.1k|Ruby|07/08|
|267|[KunMinX/Jetpack-MVVM-Best-Practice](https://github.com/KunMinX/Jetpack-MVVM-Best-Practice)|是 难得一见 的 Jetpack MVVM 最佳实践!在 以简驭繁 的代码中,对 视图控制器 乃至 标准化开发模式 形成正确、深入的理解!|6.1k|Java|05/29|
|268|[jackzhenguo/python-small-examples](https://github.com/jackzhenguo/python-small-examples)|告别枯燥,致力于打造 Python 实用小例子|6.1k|Python|05/20|
|269|[Hackl0us/SS-Rule-Snippet](https://github.com/Hackl0us/SS-Rule-Snippet)|搜集、整理、维护 Surge / Quantumult (X) / Shadowrocket / Surfboard / clash (Premium) 实用规则。|6.1k|JavaScript|05/20|
|270|[ustbhuangyi/vue-analysis](https://github.com/ustbhuangyi/vue-analysis)|:thumbsup: Vue.js 源码分析|6.1k|JavaScript|05/28|
|271|[datawhalechina/leeml-notes](https://github.com/datawhalechina/leeml-notes)|李宏毅《机器学习》笔记,在线阅读地址:https://datawhalechina.github.io/leeml-notes|6.1k|-|05/28|
|272|[Meituan-Dianping/walle](https://github.com/Meituan-Dianping/walle)|Android Signature V2 Scheme签名下的新一代渠道包打包神器|6.0k|Java|12/11|
|273|[gsdios/SDCycleScrollView](https://github.com/gsdios/SDCycleScrollView)|Autoscroll Banner. 无限循环图片、文字轮播器。|6.0k|Objective-C|05/28|
|274|[TalkingData/iview-weapp](https://github.com/TalkingData/iview-weapp)|一套高质量的微信小程序 UI 组件库|6.0k|Less|09/27|
|275|[wildfirechat/server](https://github.com/wildfirechat/server)|即时通讯(IM)系统|6.0k|Java|05/24|
|276|[MorvanZhou/PyTorch-Tutorial](https://github.com/MorvanZhou/PyTorch-Tutorial)|Build your neural network easy and fast, 莫烦Python中文教学|6.0k|Jupyter Notebook|04/01|
|277|[lijin-THU/notes-python](https://github.com/lijin-THU/notes-python)|中文 Python 笔记|5.9k|Jupyter Notebook|10/01|
|278|[dragen1860/TensorFlow-2.x-Tutorials](https://github.com/dragen1860/TensorFlow-2.x-Tutorials)|TensorFlow 2.x version's Tutorials and Examples, including CNN, RNN, GAN, Auto-Encoders, FasterRCNN, GPT, BERT examples, etc. TF 2.0版入门实例代码,实战教程。|5.9k|Jupyter Notebook|09/23|
|279|[smuyyh/BookReader](https://github.com/smuyyh/BookReader)|:closed_book: "任阅" 网络小说阅读器,3D翻页效果、txt/pdf/epub书籍阅读、Wifi传书~|5.9k|Java|09/02|
|280|[NLPchina/ansj_seg](https://github.com/NLPchina/ansj_seg)|ansj分词.ict的真正java实现.分词效果速度都超过开源版的ict. 中文分词,人名识别,词性标注,用户自定义词典|5.9k|Java|05/05|
|281|[gsdios/SDAutoLayout](https://github.com/gsdios/SDAutoLayout)|One line of code to implement automatic layout. 一行代码搞定自动布局!支持Cell和Tableview高度自适应,Label和ScrollView内容自适应,致力于做最简单易用的AutoLayout库。The most easy way for autoLayout. Based on runtime.|5.9k|Objective-C|03/19|
|282|[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轻量级人脸检测模型)|5.9k|Python|04/26|
|283|[XiangLinPro/IT_book](https://github.com/XiangLinPro/IT_book)|本项目收藏这些年来看过或者听过的一些不错的常用的上千本书籍,没准你想找的书就在这里呢,包含了互联网行业大多数书籍和面试经验题目等等。有人工智能系列(常用深度学习框架TensorFlow、pytorch、keras。NLP、机器学习,深度学习等等),大数据系列(Spark,Hadoop,Scala,kafka等),程序员必修系列(C、C++、java、数据结构、linux,设计模式、数据库等等)|5.9k|-|11/28|
|284|[Anankke/SSPanel-Uim](https://github.com/Anankke/SSPanel-Uim)|SSPanel V3 魔改再次修改版|5.7k|Smarty|05/26|
|285|[shidenggui/easytrader](https://github.com/shidenggui/easytrader)|提供同花顺客户端/国金/华泰客户端/雪球的基金、股票自动程序化交易以及自动打新,支持跟踪 joinquant /ricequant 模拟交易 和 实盘雪球组合, 量化交易组件|5.7k|Python|04/01|
|286|[panjf2000/ants](https://github.com/panjf2000/ants)|🐜🐜🐜 ants is a high-performance and low-cost goroutine pool in Go, inspired by fasthttp./ ants 是一个高性能且低损耗的 goroutine 池。|5.7k|Go|05/28|
|287|[ityouknow/spring-cloud-examples](https://github.com/ityouknow/spring-cloud-examples)|Spring Cloud 学习案例,服务发现、服务治理、链路追踪、服务监控等|5.6k|Java|05/25|
|288|[yezihaohao/react-admin](https://github.com/yezihaohao/react-admin)|:sparkles: react-admin system solution : react 后台管理系统解决方案|5.6k|TypeScript|05/06|
|289|[chefyuan/algorithm-base](https://github.com/chefyuan/algorithm-base)|专门为刚开始刷题的同学准备的算法基地,没有最细只有更细,立志用动画将晦涩难懂的算法说的通俗易懂!|5.6k|Java|05/24|
|290|[sparklemotion/nokogiri](https://github.com/sparklemotion/nokogiri)|Nokogiri (鋸) makes it easy and painless to work with XML and HTML from Ruby.|5.6k|C|05/28|
|291|[Ewenwan/MVision](https://github.com/Ewenwan/MVision)|机器人视觉 移动机器人 VS-SLAM ORB-SLAM2 深度学习目标检测 yolov3 行为检测 opencv PCL 机器学习 无人驾驶|5.6k|C++|12/13|
|292|[sxei/chrome-plugin-demo](https://github.com/sxei/chrome-plugin-demo)|《Chrome插件开发全攻略》配套完整Demo,欢迎clone体验|5.6k|JavaScript|12/23|
|293|[wuchangming/spy-debugger](https://github.com/wuchangming/spy-debugger)|微信调试,各种WebView样式调试、手机浏览器的页面真机调试。便捷的远程调试手机页面、抓包工具,支持:HTTP/HTTPS,无需USB连接设备。|5.6k|JavaScript|05/08|
|294|[li-xiaojun/XPopup](https://github.com/li-xiaojun/XPopup)|🔥XPopup2.0版本重磅来袭,2倍以上性能提升,带来可观的动画性能优化和交互细节的提升!!!功能强大,交互优雅,动画丝滑的通用弹窗!可以替代Dialog,PopupWindow,PopupMenu,BottomSheet,DrawerLayout,Spinner等组件,自带十几种效果良好的动画, 支持完全的UI和动画自定义!(Powerful and Beautiful Popup,can absolutely replace Dialog,PopupWindow,PopupMenu,BottomSheet,DrawerLayout,Spinner. With built-in anima ...|5.6k|Java|05/28|
|295|[wowchemy/wowchemy-hugo-modules](https://github.com/wowchemy/wowchemy-hugo-modules)|🔥 The website builder for Hugo. No code, build with widgets! 创建在线课程,学术简历或初创网站。|5.6k|HTML|05/27|
|296|[guodongxiaren/README](https://github.com/guodongxiaren/README)|README文件语法解读,即Github Flavored Markdown语法介绍|5.6k|-|10/20|
|297|[kangvcar/InfoSpider](https://github.com/kangvcar/InfoSpider)|INFO-SPIDER 是一个集众多数据源于一身的爬虫工具箱🧰,旨在安全快捷的帮助用户拿回自己的数据,工具代码开源,流程透明。支持数据源包括GitHub、QQ邮箱、网易邮箱、阿里邮箱、新浪邮箱、Hotmail邮箱、Outlook邮箱、京东、淘宝、支付宝、中国移动、中国联通、中国电信、知乎、哔哩哔哩、网易云音乐、QQ好友、QQ群、生成朋友圈相册、浏览器浏览历史、12306、博客园、CSDN博客、开源中国博客、简书。|5.6k|Python|05/08|
|298|[HcySunYang/vue-design](https://github.com/HcySunYang/vue-design)|📖 master分支:《渲染器》|5.5k|JavaScript|05/26|
|299|[QUANTAXIS/QUANTAXIS](https://github.com/QUANTAXIS/QUANTAXIS)|QUANTAXIS 支持任务调度 分布式部署的 股票/期货/期权/港股/虚拟货币 数据/回测/模拟/交易/可视化/多账户 纯本地量化解决方案|5.5k|Python|05/15|
|300|[sohutv/cachecloud](https://github.com/sohutv/cachecloud)|搜狐视频(sohu tv)Redis私有云平台|5.5k|Java|04/26|
⬆ [回到目录](#目录)
<br/>
## Java
|#|Repository|Description|Stars|Language|Updated|
|:-|:-|:-|:-|:-|:-|
|1|[CyC2018/CS-Notes](https://github.com/CyC2018/CS-Notes)|:books: 技术面试必备基础知识、Leetcode、计算机操作系统、计算机网络、系统设计|129.6k|Java|05/23|
|2|[Snailclimb/JavaGuide](https://github.com/Snailclimb/JavaGuide)|「Java学习+面试指南」一份涵盖大部分 Java 程序员所需要掌握的核心知识。准备 Java 面试,首选 JavaGuide!|104.5k|Java|05/28|
|3|[MisterBooo/LeetCodeAnimation](https://github.com/MisterBooo/LeetCodeAnimation)|Demonstrate all the questions on LeetCode in the form of animation.(用动画的形式呈现解LeetCode题目的思路)|64.7k|Java|09/30|
|4|[doocs/advanced-java](https://github.com/doocs/advanced-java)|😮 Core Interview Questions & Answers For Experienced Java(Backend) Developers 互联网 Java 工程师进阶知识完全扫盲:涵盖高并发、分布式、高可用、微服务、海量数据处理等领域知识|54.3k|Java|05/26|
|5|[macrozheng/mall](https://github.com/macrozheng/mall)|mall项目是一套电商系统,包括前台商城系统及后台管理系统,基于SpringBoot+MyBatis实现,采用Docker容器化部署。 前台商城系统包含首页门户、商品推荐、商品搜索、商品展示、购物车、订单流程、会员中心、客户服务、帮助中心等模块。 后台管理系统包含商品管理、订单管理、会员管理、促销管理、运营管理、内容管理、统计报表、财务管理、权限管理、设置等模块。|49.6k|Java|05/28|
|6|[kon9chunkit/GitHub-Chinese-Top-Charts](https://github.com/kon9chunkit/GitHub-Chinese-Top-Charts)|:cn: GitHub中文排行榜,帮助你发现高分优秀中文项目、更高效地吸收国人的优秀经验成果;榜单每周更新一次,敬请关注!|34.2k|Java|05/24|
|7|[geekxh/hello-algorithm](https://github.com/geekxh/hello-algorithm)|🌍「算法面试+算法知识」针对小白的算法训练 还包括:1、阿里、字节、滴滴 百篇大厂面经汇总 2、千本开源电子书 3、百张思维导图 (右侧来个 star 吧 🌹,English version supported)|26.4k|Java|04/07|
|8|[alibaba/arthas](https://github.com/alibaba/arthas)|Alibaba Java Diagnostic Tool Arthas/Alibaba Java诊断利器Arthas|26.0k|Java|05/27|
|9|[ityouknow/spring-boot-examples](https://github.com/ityouknow/spring-boot-examples)|about learning Spring Boot via examples. Spring Boot 教程、技术栈示例代码,快速简单上手教程。 |25.6k|Java|04/23|
|10|[proxyee-down-org/proxyee-down](https://github.com/proxyee-down-org/proxyee-down)|http下载工具,基于http代理,支持多连接分块下载|25.4k|Java|08/11|
|11|[alibaba/druid](https://github.com/alibaba/druid)|阿里云计算平台DataWorks(https://help.aliyun.com/document_detail/137663.html) 团队出品,为监控而生的数据库连接池|23.9k|Java|05/14|
|12|[zhangdaiscott/jeecg-boot](https://github.com/zhangdaiscott/jeecg-boot)|「企业级低代码平台」前后端分离架构SpringBoot 2.x,SpringCloud,Ant Design&Vue,Mybatis-plus,Shiro,JWT。强大的代码生成器让前后端代码一键生成,无需写任何代码! 引领新的开发模式OnlineCoding->代码生成->手工MERGE,帮助Java项目解决70%重复工作,让开发更关注业务,既能快速提高效率,帮助公司节省成本,同时又不失灵活性。|22.8k|Java|05/29|
|13|[scwang90/SmartRefreshLayout](https://github.com/scwang90/SmartRefreshLayout)|🔥下拉刷新、上拉加载、二级刷新、淘宝二楼、RefreshLayout、OverScroll,Android智能下拉刷新框架,支持越界回弹、越界拖动,具有极强的扩展性,集成了几十种炫酷的Header和 Footer。|22.6k|Java|05/24|
|14|[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 ...|22.0k|Java|04/10|
|15|[lenve/vhr](https://github.com/lenve/vhr)|微人事是一个前后端分离的人力资源管理系统,项目采用SpringBoot+Vue开发。|21.4k|Java|05/27|
|16|[qiurunze123/miaosha](https://github.com/qiurunze123/miaosha)|⭐⭐⭐⭐秒杀系统设计与实现.互联网工程师进阶与分析🙋🐓|20.7k|Java|05/27|
|17|[hollischuang/toBeTopJavaer](https://github.com/hollischuang/toBeTopJavaer)|To Be Top Javaer - Java工程师成神之路|20.5k|Java|05/25|
|18|[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|20.3k|Java|04/23|
|19|[alibaba/easyexcel](https://github.com/alibaba/easyexcel)|快速、简单避免OOM的java处理Excel工具|20.0k|Java|05/22|
|20|[alibaba/canal](https://github.com/alibaba/canal)|阿里巴巴 MySQL binlog 增量订阅&消费组件 |19.2k|Java|05/28|
|21|[halo-dev/halo](https://github.com/halo-dev/halo)|✍ An excellent open source blog publishing application. 一个优秀的开源博客发布应用。|19.0k|Java|05/28|
|22|[xuxueli/xxl-job](https://github.com/xuxueli/xxl-job)|A distributed task scheduling framework.(分布式任务调度平台XXL-JOB)|18.3k|Java|05/24|
|23|[didi/DoraemonKit](https://github.com/didi/DoraemonKit)|一款面向泛前端产品研发全生命周期的效率平台。|17.3k|Java|05/28|
|24|[alibaba/Sentinel](https://github.com/alibaba/Sentinel)|A powerful flow control component enabling reliability, resilience and monitoring for microservices. (面向云原生微服务的高可用流控防护组件)|16.3k|Java|05/25|
|25|[CarGuo/GSYVideoPlayer](https://github.com/CarGuo/GSYVideoPlayer)|视频播放器(IJKplayer、ExoPlayer、MediaPlayer),HTTPS,支持弹幕,外挂字幕,支持滤镜、水印、gif截图,片头广告、中间广告,多个同时播放,支持基本的拖动,声音、亮度调节,支持边播边缓存,支持视频自带rotation的旋转(90,270之类),重力旋转与手动旋转的同步支持,支持列表播放 ,列表全屏动画,视频加载速度,列表小窗口支持拖动,动画效果,调整比例,多分辨率切换,支持切换播放器,进度条小窗口预览,列表切换详情页面无缝播放,rtsp、concat、mpeg。 |16.2k|Java|05/21|
|26|[shuzheng/zheng](https://github.com/shuzheng/zheng)|基于Spring+SpringMVC+Mybatis分布式敏捷开发系统架构,提供整套公共微服务服务模块:集中权限管理(单点登录)、内容管理、支付中心、用户管理(支持第三方登录)、微信平台、存储系统、配置中心、日志分析、任务和通知等,支持服务治理、监控和追踪,努力为中小型企业打造全方位J2EE企业级开发解决方案。|16.0k|Java|05/12|
|27|[linlinjava/litemall](https://github.com/linlinjava/litemall)|又一个小商城。litemall = Spring Boot后端 + Vue管理员前端 + 微信小程序用户前端 + Vue用户移动端|15.9k|Java|05/19|
|28|[elunez/eladmin](https://github.com/elunez/eladmin)|项目基于 Spring Boot 2.1.0 、 Jpa、 Spring Security、redis、Vue的前后端分离的后台管理系统,项目采用分模块开发方式, 权限控制采用 RBAC,支持数据字典与数据权限管理,支持一键生成前后端代码,支持动态路由|15.6k|Java|05/08|
|29|[forezp/SpringCloudLearning](https://github.com/forezp/SpringCloudLearning)|《史上最简单的Spring Cloud教程源码》|15.5k|Java|04/12|
|30|[dianping/cat](https://github.com/dianping/cat)|CAT 作为服务端项目基础组件,提供了 Java, C/C++, Node.js, Python, Go 等多语言客户端,已经在美团点评的基础架构中间件框架(MVC框架,RPC框架,数据库框架,缓存框架等,消息队列,配置系统等)深度集成,为美团点评各业务线提供系统丰富的性能指标、健康状况、实时告警等。|15.4k|Java|03/19|
|31|[JeffLi1993/springboot-learning-example](https://github.com/JeffLi1993/springboot-learning-example)|spring boot 实践学习案例,是 spring boot 初学者及核心技术巩固的最佳实践。另外写博客,用 OpenWrite。|14.3k|Java|03/02|
|32|[dyc87112/SpringBoot-Learning](https://github.com/dyc87112/SpringBoot-Learning)|Spring Boot基础教程,Spring Boot 2.x版本连载中!!!|13.2k|Java|05/23|
|33|[alibaba/ARouter](https://github.com/alibaba/ARouter)|💪 A framework for assisting in the renovation of Android componentization (帮助 Android App 进行组件化改造的路由框架)|13.2k|Java|05/01|
|34|[Tencent/QMUI_Android](https://github.com/Tencent/QMUI_Android)|提高 Android UI 开发效率的 UI 库|12.9k|Java|05/18|
|35|[Bigkoo/Android-PickerView](https://github.com/Bigkoo/Android-PickerView)|This is a picker view for android , support linkage effect, timepicker and optionspicker.(时间选择器、省市区三级联动)|12.8k|Java|01/25|
|36|[Curzibn/Luban](https://github.com/Curzibn/Luban)|Luban(鲁班)—Image compression with efficiency very close to WeChat Moments/可能是最接近微信朋友圈的图片压缩算法|12.5k|Java|03/12|
|37|[JessYanCoding/AndroidAutoSize](https://github.com/JessYanCoding/AndroidAutoSize)|🔥 A low-cost Android screen adaptation solution (今日头条屏幕适配方案终极版,一个极低成本的 Android 屏幕适配方案).|11.5k|Java|07/15|
|38|[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!|11.3k|Java|05/14|
|39|[youth5201314/banner](https://github.com/youth5201314/banner)|🔥🔥🔥Banner 2.0 来了!Android广告图片轮播控件,内部基于ViewPager2实现,Indicator和UI都可以自定义。|11.2k|Java|05/28|
|40|[Tencent/APIJSON](https://github.com/Tencent/APIJSON)|🚀 零代码、热更新、自动化 ORM 库,后端接口和文档零代码,前端(客户端) 定制返回 JSON 的数据和结构。 🚀 A JSON Transmission Protocol and an ORM Library for automatically providing APIs and Docs.|10.9k|Java|05/27|
|41|[YunaiV/SpringBoot-Labs](https://github.com/YunaiV/SpringBoot-Labs)|一个涵盖六个专栏:Spring Boot 2.X、Spring Cloud、Spring Cloud Alibaba、Dubbo、分布式消息队列、分布式事务的仓库。希望胖友小手一抖,右上角来个 Star,感恩 1024|10.8k|Java|04/07|
|42|[LuckSiege/PictureSelector](https://github.com/LuckSiege/PictureSelector)|Picture Selector Library for Android or 图片选择器|10.4k|Java|05/28|
|43|[pagehelper/Mybatis-PageHelper](https://github.com/pagehelper/Mybatis-PageHelper)|Mybatis通用分页插件|10.4k|Java|05/28|
|44|[jeasonlzy/okhttp-OkGo](https://github.com/jeasonlzy/okhttp-OkGo)|OkGo - 3.0 震撼来袭,该库是基于 Http 协议,封装了 OkHttp 的网络请求框架,比 Retrofit 更简单易用,支持 RxJava,RxJava2,支持自定义缓存,支持批量断点下载管理和批量上传管理功能|10.3k|Java|05/09|
|45|[hyb1996/Auto.js](https://github.com/hyb1996/Auto.js)|A UiAutomator on android, does not need root access(安卓平台上的JavaScript自动化工具)|10.1k|Java|04/11|
|46|[JessYanCoding/MVPArms](https://github.com/JessYanCoding/MVPArms)|⚔️ A common architecture for Android applications developing based on MVP, integrates many open source projects, to make your developing quicker and easier (一个整合了大量主流开源项目高度可配置化的 Android MVP 快速集成框架). |10.0k|Java|10/20|
|47|[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 实战与性能优化》|10.0k|Java|05/04|
|48|[seaswalker/spring-analysis](https://github.com/seaswalker/spring-analysis)|Spring源码阅读|9.9k|Java|02/23|
|49|[frank-lam/fullstack-tutorial](https://github.com/frank-lam/fullstack-tutorial)|🚀 fullstack tutorial 2021,后台技术栈/架构师之路/全栈开发社区,春招/秋招/校招/面试|9.7k|Java|05/20|
|50|[heibaiying/BigData-Notes](https://github.com/heibaiying/BigData-Notes)|大数据入门指南 :star:|9.7k|Java|05/12|
|51|[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.6k|Java|11/30|
|52|[daniulive/SmarterStreaming](https://github.com/daniulive/SmarterStreaming)|业内为数不多致力于极致体验的超强全自研跨平台(windows/android/iOS)流媒体内核,通过模块化自由组合,支持实时RTMP推流、RTSP推流、RTMP播放器、RTSP播放器、录像、多路流媒体转发、音视频导播、动态视频合成、音频混音、直播互动、内置轻量级RTSP服务等,比快更快,业界真正靠谱的超低延迟直播SDK(1秒内,低延迟模式下200~400ms)。|9.5k|Java|04/14|
|53|[bilibili/DanmakuFlameMaster](https://github.com/bilibili/DanmakuFlameMaster)|Android开源弹幕引擎·烈焰弹幕使 ~|9.0k|Java|02/27|
|54|[alibaba/DataX](https://github.com/alibaba/DataX)|DataX是阿里云DataWorks数据集成的开源版本。|8.9k|Java|05/28|
|55|[paascloud/paascloud-master](https://github.com/paascloud/paascloud-master)|spring cloud + vue + oAuth2.0全家桶实战,前后端分离模拟商城,完整的购物流程、后端运营平台,可以实现快速搭建企业级微服务项目。支持微信登录等三方登录。|8.9k|Java|04/23|
|56|[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容器化部署。|8.8k|Java|05/28|
|57|[lihengming/spring-boot-api-project-seed](https://github.com/lihengming/spring-boot-api-project-seed)|:seedling::rocket:一个基于Spring Boot & MyBatis的种子项目,用于快速构建中小型API、RESTful API项目~|8.7k|Java|05/19|
|58|[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.7k|Java|09/29|
|59|[DuGuQiuBai/Java](https://github.com/DuGuQiuBai/Java)|27天成为Java大神|8.2k|Java|05/20|
|60|[GcsSloop/AndroidNote](https://github.com/GcsSloop/AndroidNote)|安卓学习笔记|8.2k|Java|05/25|
|61|[crossoverJie/cim](https://github.com/crossoverJie/cim)|📲cim(cross IM) 适用于开发者的分布式即时通讯系统|7.7k|Java|03/22|
|62|[huanghaibin-dev/CalendarView](https://github.com/huanghaibin-dev/CalendarView)|Android上一个优雅、万能自定义UI、支持周视图、自定义周起始、性能高效的日历控件,支持热插拔实现的UI定制!支持标记、自定义颜色、农历、自定义月视图各种显示模式等。Canvas绘制,速度快、占用内存低,你真的想不到日历居然还可以如此优雅!An elegant, highly customized and high-performance Calendar Widget on Android.|7.6k|Java|05/24|
|63|[hs-web/hsweb-framework](https://github.com/hs-web/hsweb-framework)|hsweb (haʊs wɛb) 是一个基于spring-boot 2.x开发 ,首个使用全响应式编程的企业级后台管理系统基础项目。|7.6k|Java|05/28|
|64|[newbee-ltd/newbee-mall](https://github.com/newbee-ltd/newbee-mall)|🔥 🎉newbee-mall 项目(新蜂商城)是一套电商系统,包括 newbee-mall 商城系统及 newbee-mall-admin 商城后台管理系统,基于 Spring Boot 2.X 及相关技术栈开发。 前台商城系统包含首页门户、商品分类、新品上线、首页轮播、商品推荐、商品搜索、商品展示、购物车、订单结算、订单流程、个人订单管理、会员中心、帮助中心等模块。 后台管理系统包含数据面板、轮播图管理、商品管理、订单管理、会员管理、分类管理、设置等模块。|7.0k|Java|05/23|
|65|[gedoor/MyBookshelf](https://github.com/gedoor/MyBookshelf)|阅读是一款可以自定义来源阅读网络内容的工具,为广大网络文学爱好者提供一种方便、快捷舒适的试读体验。|6.9k|Java|02/16|
|66|[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教程。|6.7k|Java|04/23|
|67|[alibaba/otter](https://github.com/alibaba/otter)|阿里巴巴分布式数据库同步系统(解决中美异地机房)|6.6k|Java|04/27|
|68|[dyc87112/SpringCloud-Learning](https://github.com/dyc87112/SpringCloud-Learning)|Spring Cloud基础教程,持续连载更新中|6.6k|Java|10/30|
|69|[goldze/MVVMHabit](https://github.com/goldze/MVVMHabit)|👕基于谷歌最新AAC架构,MVVM设计模式的一套快速开发库,整合Okhttp+RxJava+Retrofit+Glide等主流模块,满足日常开发需求。使用该框架可以快速开发一个高质量、易维护的Android应用。|6.4k|Java|01/27|
|70|[Exrick/xmall](https://github.com/Exrick/xmall)|基于SOA架构的分布式电商购物商城 前后端分离 前台商城:Vue全家桶 后台管理系统:Dubbo/SSM/Elasticsearch/Redis/MySQL/ActiveMQ/Shiro/Zookeeper等|6.3k|Java|04/23|
|71|[zhoutaoo/SpringCloud](https://github.com/zhoutaoo/SpringCloud)|基于SpringCloud2.1的微服务开发脚手架,整合了spring-security-oauth2、nacos、feign、sentinel、springcloud-gateway等。服务治理方面引入elasticsearch、skywalking、springboot-admin、zipkin等,让项目开发快速进入业务开发,而不需过多时间花费在架构搭建上。持续更新中|6.3k|Java|04/23|
|72|[KunMinX/Jetpack-MVVM-Best-Practice](https://github.com/KunMinX/Jetpack-MVVM-Best-Practice)|是 难得一见 的 Jetpack MVVM 最佳实践!在 以简驭繁 的代码中,对 视图控制器 乃至 标准化开发模式 形成正确、深入的理解!|6.1k|Java|05/29|
|73|[Meituan-Dianping/walle](https://github.com/Meituan-Dianping/walle)|Android Signature V2 Scheme签名下的新一代渠道包打包神器|6.0k|Java|12/11|
|74|[lenve/VBlog](https://github.com/lenve/VBlog)|V部落,Vue+SpringBoot实现的多用户博客管理平台!|6.0k|Java|04/27|
|75|[wildfirechat/server](https://github.com/wildfirechat/server)|即时通讯(IM)系统|6.0k|Java|05/24|
|76|[smuyyh/BookReader](https://github.com/smuyyh/BookReader)|:closed_book: "任阅" 网络小说阅读器,3D翻页效果、txt/pdf/epub书籍阅读、Wifi传书~|5.9k|Java|09/02|
|77|[NLPchina/ansj_seg](https://github.com/NLPchina/ansj_seg)|ansj分词.ict的真正java实现.分词效果速度都超过开源版的ict. 中文分词,人名识别,词性标注,用户自定义词典|5.9k|Java|05/05|
|78|[zouzg/mybatis-generator-gui](https://github.com/zouzg/mybatis-generator-gui)|mybatis-generator界面工具,让你生成代码更简单更快捷|5.8k|Java|05/22|
|79|[yuanguangxin/LeetCode](https://github.com/yuanguangxin/LeetCode)|LeetCode刷题记录与面试整理|5.8k|Java|03/23|
|80|[ityouknow/spring-cloud-examples](https://github.com/ityouknow/spring-cloud-examples)|Spring Cloud 学习案例,服务发现、服务治理、链路追踪、服务监控等|5.6k|Java|05/25|
|81|[chefyuan/algorithm-base](https://github.com/chefyuan/algorithm-base)|专门为刚开始刷题的同学准备的算法基地,没有最细只有更细,立志用动画将晦涩难懂的算法说的通俗易懂!|5.6k|Java|05/24|
|82|[li-xiaojun/XPopup](https://github.com/li-xiaojun/XPopup)|🔥XPopup2.0版本重磅来袭,2倍以上性能提升,带来可观的动画性能优化和交互细节的提升!!!功能强大,交互优雅,动画丝滑的通用弹窗!可以替代Dialog,PopupWindow,PopupMenu,BottomSheet,DrawerLayout,Spinner等组件,自带十几种效果良好的动画, 支持完全的UI和动画自定义!(Powerful and Beautiful Popup,can absolutely replace Dialog,PopupWindow,PopupMenu,BottomSheet,DrawerLayout,Spinner. With built-in anima ...|5.6k|Java|05/28|
|83|[sohutv/cachecloud](https://github.com/sohutv/cachecloud)|搜狐视频(sohu tv)Redis私有云平台|5.5k|Java|04/26|
|84|[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.4k|Java|02/26|
|85|[knightliao/disconf](https://github.com/knightliao/disconf)|Distributed Configuration Management Platform(分布式配置管理平台)|5.4k|Java|04/07|
|86|[jpush/aurora-imui](https://github.com/jpush/aurora-imui)|General IM UI components. Android/iOS/RectNative ready. 通用 IM 聊天 UI 组件,已经同时支持 Android/iOS/RN。|5.4k|Java|05/10|
|87|[liyifeng1994/ssm](https://github.com/liyifeng1994/ssm)|手把手教你整合最优雅SSM框架:SpringMVC + Spring + MyBatis|5.4k|Java|04/23|
|88|[ximsfei/Android-skin-support](https://github.com/ximsfei/Android-skin-support)|Android-skin-support is an easy dynamic skin framework to use for Android, Only one line of code to integrate it. Android 换肤框架, 极低的学习成本, 极好的用户体验. "一行"代码就可以实现换肤, 你值得拥有!!!|5.4k|Java|09/03|
|89|[Tencent/Shadow](https://github.com/Tencent/Shadow)|零反射全动态Android插件框架|5.3k|Java|04/20|
|90|[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.1k|Java|04/23|
|91|[kekingcn/kkFileView](https://github.com/kekingcn/kkFileView)|spring-boot打造文件文档在线预览项目|5.1k|Java|05/28|
|92|[changmingxie/tcc-transaction](https://github.com/changmingxie/tcc-transaction)|tcc-transaction是TCC型事务java实现|5.1k|Java|05/28|
|93|[wuhaoyu1990/MagicCamera](https://github.com/wuhaoyu1990/MagicCamera)|Real-time Filter Camera&VideoRecorder And ImageEditor With Face Beauty For Android---包含美颜等40余种实时滤镜相机,可拍照、录像、图片修改|5.0k|Java|10/22|
|94|[yanzhenjie/SwipeRecyclerView](https://github.com/yanzhenjie/SwipeRecyclerView)|:melon: RecyclerView侧滑菜单,Item拖拽,滑动删除Item,自动加载更多,HeaderView,FooterView,Item分组黏贴。|5.0k|Java|05/31|
|95|[doocs/leetcode](https://github.com/doocs/leetcode)|😏 LeetCode solutions in any programming language 多种编程语言实现 LeetCode、《剑指 Offer(第 2 版)》、《程序员面试金典(第 6 版)》题解|5.0k|Java|05/28|
|96|[gzu-liyujiang/AndroidPicker](https://github.com/gzu-liyujiang/AndroidPicker)| 【抱歉,暂停维护,替代品:https://github.com/Bigkoo/Android-PickerView】 安卓选择器类库,包括日期选择器、时间选择器、单项选择器、双项选择器、城市地址选择器、车牌号选择器、数字选择器、星座选择器、生肖选择器、颜色选择器、文件选择器、目录选择器等……WheelPicker/DateTimePicker/DatePicker/TimePicker/SinglePicker/NumberPicker/DoublePicker/LinkagePicker/AddressPicker/CalendarPicker/ColorPicker/FilePicker ...|5.0k|Java|12/05|
|97|[527515025/springBoot](https://github.com/527515025/springBoot)|springboot 框架与其它组件结合如 jpa、mybatis、websocket、security、shiro、cache等|5.0k|Java|04/23|
|98|[h2pl/Java-Tutorial](https://github.com/h2pl/Java-Tutorial)|【Java工程师面试复习指南】本仓库涵盖大部分Java程序员所需要掌握的核心知识,整合了互联网上的很多优质Java技术文章,力求打造为最完整最实用的Java开发者学习指南,如果对你有帮助,给个star告诉我吧,谢谢!|4.9k|Java|05/14|
|99|[TommyLemon/Android-ZBLibrary](https://github.com/TommyLemon/Android-ZBLibrary)|🔥Android MVP 快速开发框架,做国内 「示例最全面」「注释最详细」「使用最简单」「代码最严谨」的 Android 开源 UI 框架。 🔥An Android MVP Framework with many demos, detailed documents, simple usages and strict codes.|4.9k|Java|09/13|
|100|[yipianfengye/android-zxingLibrary](https://github.com/yipianfengye/android-zxingLibrary)|几行代码快速集成二维码扫描功能|4.8k|Java|01/20|
|101|[doocs/jvm](https://github.com/doocs/jvm)|🤗 JVM 底层原理最全知识总结|4.7k|Java|04/23|
|102|[mcxiaoke/packer-ng-plugin](https://github.com/mcxiaoke/packer-ng-plugin)|下一代Android打包工具,100个渠道包只需要10秒钟|4.7k|Java|02/09|
|103|[ZXZxin/ZXBlog](https://github.com/ZXZxin/ZXBlog)|记录各种学习笔记(算法、Java、数据库、并发......)|4.7k|Java|03/26|
|104|[hongyangAndroid/baseAdapter](https://github.com/hongyangAndroid/baseAdapter)|Android 万能的Adapter for ListView,RecyclerView,GridView等,支持多种Item类型的情况。|4.6k|Java|02/13|
|105|[metersphere/metersphere](https://github.com/metersphere/metersphere)|MeterSphere 是一站式开源持续测试平台,涵盖测试跟踪、接口测试、性能测试、团队协作等功能,全面兼容 JMeter、Postman、Swagger 等开源、主流标准。|4.6k|Java|05/28|
|106|[SplashCodes/JAViewer](https://github.com/SplashCodes/JAViewer)|更优雅的驾车体验|4.5k|Java|08/29|
|107|[ffay/lanproxy](https://github.com/ffay/lanproxy)|lanproxy是一个将局域网个人电脑、服务器代理到公网的内网穿透工具,支持tcp流量转发,可支持任何tcp上层协议(访问内网网站、本地支付接口调试、ssh访问、远程桌面...)。目前市面上提供类似服务的有花生壳、TeamView、GoToMyCloud等等,但要使用第三方的公网服务器就必须为第三方付费,并且这些服务都有各种各样的限制,此外,由于数据包会流经第三方,因此对数据安全也是一大隐患。技术交流QQ群 1067424330|4.5k|Java|05/22|
|108|[YunaiV/onemall](https://github.com/YunaiV/onemall)|芋道 mall 商城,基于微服务的思想,构建在 B2C 电商场景下的项目实战。核心技术栈,是 Spring Boot + Dubbo 。未来,会重构成 Spring Cloud Alibaba 。|4.5k|Java|04/23|
|109|[youlookwhat/CloudReader](https://github.com/youlookwhat/CloudReader)|🗡️ 云阅:一款基于网易云音乐UI,使用玩Android、Gank.Io Api,MVVM-DataBinding架构开发的符合Google Material Design的Android客户端|4.5k|Java|01/23|
|110|[zhanghai/Douya](https://github.com/zhanghai/Douya)|开源的 Material Design 豆瓣客户端(A Material Design app for douban.com)|4.5k|Java|04/13|
|111|[AriaLyy/Aria](https://github.com/AriaLyy/Aria)|下载可以很简单|4.4k|Java|04/20|
|112|[HotBitmapGG/bilibili-android-client](https://github.com/HotBitmapGG/bilibili-android-client)|An unofficial bilibili client for android http://www.jianshu.com/p/f69a55b94c05 -- 该项目已停止维护!|4.4k|Java|03/17|
|113|[pili-engineering/PLDroidPlayer](https://github.com/pili-engineering/PLDroidPlayer)|PLDroidPlayer 是七牛推出的一款免费的适用于 Android 平台的播放器 SDK,采用全自研的跨平台播放内核,拥有丰富的功能和优异的性能,可高度定制化和二次开发。|4.4k|Java|05/10|
|114|[razerdp/BasePopup](https://github.com/razerdp/BasePopup)|一款针对系统PopupWindow优化的Popup库,功能强大,支持背景模糊,使用简单,你会爱上他的~|4.4k|Java|05/28|
|115|[techGay/v9porn](https://github.com/techGay/v9porn)|9*Porn Android 客户端,突破游客每天观看10次视频的限制,还可以下载视频|4.3k|Java|04/23|
|116|[Nepxion/Discovery](https://github.com/Nepxion/Discovery)|☀️ Nepxion Discovery is a solution for Spring Cloud with blue green, gray, weight, limitation, circuit breaker, degrade, isolation, tracing, dye, failover 蓝绿、灰度、权重、限流、熔断、降级、隔离、追踪、流量染色、故障转移|4.3k|Java|05/28|
|117|[hustcc/JS-Sorting-Algorithm](https://github.com/hustcc/JS-Sorting-Algorithm)|一本关于排序算法的 GitBook 在线书籍 《十大经典排序算法》,多语言实现。|4.3k|Java|04/13|
|118|[bingoogolapple/BGARefreshLayout-Android](https://github.com/bingoogolapple/BGARefreshLayout-Android)|多种下拉刷新效果、上拉加载更多、可配置自定义头部广告位|4.2k|Java|04/05|
|119|[jeasonlzy/ImagePicker](https://github.com/jeasonlzy/ImagePicker)|完全仿微信的图片选择,并且提供了多种图片加载接口,选择图片后可以旋转,可以裁剪成矩形或圆形,可以配置各种其他的参数|4.2k|Java|10/27|
|120|[alipay/SoloPi](https://github.com/alipay/SoloPi)|SoloPi 自动化测试工具|4.1k|Java|11/03|
|121|[roncoo/roncoo-pay](https://github.com/roncoo/roncoo-pay)|龙果支付系统(roncoo-pay)是国内首款开源的互联网支付系统,拥有独立的账户体系、用户体系、支付接入体系、支付交易体系、对账清结算体系。目标是打造一款集成主流支付方式且轻量易用的支付收款系统,满足互联网业务系统打通支付通道实现支付收款和业务资金管理等功能。|4.1k|Java|05/21|
|122|[Jacksgong/JKeyboardPanelSwitch](https://github.com/Jacksgong/JKeyboardPanelSwitch)|For resolve the layout conflict when keybord & panel are switching (Android键盘面板冲突 布局闪动处理方案)|4.1k|Java|08/18|
|123|[2227324689/gpmall](https://github.com/2227324689/gpmall)|【咕泡学院实战项目】-基于SpringBoot+Dubbo构建的电商平台-微服务架构、商城、电商、微服务、高并发、kafka、Elasticsearch|4.0k|Java|05/11|
|124|[bingoogolapple/BGABanner-Android](https://github.com/bingoogolapple/BGABanner-Android)|引导界面滑动导航 + 大于等于1页时无限轮播 + 各种切换动画轮播效果|4.0k|Java|04/05|
|125|[javagrowing/JGrowing](https://github.com/javagrowing/JGrowing)|Java is Growing up but not only Java。Java成长路线,但学到不仅仅是Java。|4.0k|Java|10/13|
|126|[hansonwang99/Spring-Boot-In-Action](https://github.com/hansonwang99/Spring-Boot-In-Action)|Spring Boot 系列实战合集|4.0k|Java|04/27|
|127|[brianway/java-learning](https://github.com/brianway/java-learning)|旨在打造在线最佳的 Java 学习笔记,含博客讲解和源码实例,包括 Java SE 和 Java Web|3.7k|Java|10/13|
|128|[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,涵盖大部分应用场景。|3.7k|Java|04/05|
|129|[zzhoujay/RichText](https://github.com/zzhoujay/RichText)|Android平台下的富文本解析器,支持Html和Markdown|3.6k|Java|12/25|
|130|[JZ-Darkal/AndroidHttpCapture](https://github.com/JZ-Darkal/AndroidHttpCapture)|AndroidHttpCapture网络诊断工具 是一款Android手机抓包软件 主要功能包括:手机端抓包、PING/DNS/TraceRoute诊断、抓包HAR数据上传分享。你也可以看成是Android版的"Fiddler" \(^o^)/~|3.6k|Java|03/23|
|131|[CodingDocs/springboot-guide](https://github.com/CodingDocs/springboot-guide)|SpringBoot2.0+从入门到实战!|3.6k|Java|05/19|
|132|[Heeexy/SpringBoot-Shiro-Vue](https://github.com/Heeexy/SpringBoot-Shiro-Vue)|提供一套基于Spring Boot-Shiro-Vue的权限管理思路.前后端都加以控制,做到按钮/接口级别的权限。(当前新版本已移除shiro依赖,简化了配置)|3.6k|Java|05/27|
|133|[pqpo/SmartCropper](https://github.com/pqpo/SmartCropper)|🔥 A library for cropping image in a smart way that can identify the border and correct the cropped image. 智能图片裁剪框架。自动识别边框,手动调节选区,使用透视变换裁剪并矫正选区;适用于身份证,名片,文档等照片的裁剪。|3.6k|Java|11/25|
|134|[sunfusheng/MarqueeView](https://github.com/sunfusheng/MarqueeView)|俗名:可垂直跑、可水平跑的跑马灯;学名:可垂直翻、可水平翻的翻页公告|3.5k|Java|11/11|
|135|[mercyblitz/tech-weekly](https://github.com/mercyblitz/tech-weekly)|「小马哥技术周报」|3.5k|Java|03/29|
|136|[binIoter/GuideView](https://github.com/binIoter/GuideView)|东半球最好用的新手引导库,能够快速为任何一个View创建一个遮罩层,支持单个页面,多个引导串联展示,支持为高亮区域设置不同的图形,支持引导动画,方便扩展,良好支持fragment|3.5k|Java|03/13|
|137|[guolindev/giffun](https://github.com/guolindev/giffun)|一款开源的GIF在线分享App,乐趣就要和世界分享。|3.4k|Java|01/29|
|138|[Doikki/DKVideoPlayer](https://github.com/Doikki/DKVideoPlayer)|Android Video Player. 安卓视频播放器,封装MediaPlayer、ExoPlayer、IjkPlayer。模仿抖音并实现预加载,列表播放,悬浮播放,广告播放,弹幕|3.4k|Java|05/16|
|139|[tuguangquan/mybatis](https://github.com/tuguangquan/mybatis)|mybatis源码中文注释|3.4k|Java|12/23|
|140|[mpusher/mpush](https://github.com/mpusher/mpush)|MPush开源实时消息推送系统|3.4k|Java|02/09|
|141|[dromara/sa-token](https://github.com/dromara/sa-token)|这可能是史上功能最全的Java权限认证框架!目前已集成——登录认证、权限认证、分布式Session会话、微服务网关鉴权、单点登录、OAuth2.0、踢人下线、Redis集成、前后台分离、记住我模式、模拟他人账号、临时身份切换、账号封禁、多账号认证体系、注解式鉴权、路由拦截式鉴权、花式token生成、自动续签、同端互斥登录、会话治理、密码加密、jwt集成、Spring集成、WebFlux集成...|3.3k|Java|05/25|
|142|[fuzhengwei/itstack-demo-design](https://github.com/fuzhengwei/itstack-demo-design)|:art: 《重学Java设计模式》是一本互联网真实案例实践书籍。以落地解决方案为核心,从实际业务中抽离出,交易、营销、秒杀、中间件、源码等22个真实场景,来学习设计模式的运用。欢迎关注小傅哥,微信(fustack),公众号:bugstack虫洞栈,博客:https://bugstack.cn|3.3k|Java|05/19|
|143|[WVector/AppUpdate](https://github.com/WVector/AppUpdate)|🚀 Android 版本更新 🚀 a library for android version update 🚀 |3.3k|Java|01/19|
|144|[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.3k|Java|03/05|
|145|[luojilab/DDComponentForAndroid](https://github.com/luojilab/DDComponentForAndroid)|一套完整有效的android组件化方案,支持组件的组件完全隔离、单独调试、集成调试、组件交互、UI跳转、动态加载卸载等功能|3.2k|Java|08/05|
|146|[stylefeng/Guns](https://github.com/stylefeng/Guns)|Guns基于SpringBoot 2,致力于做更简洁的后台管理系统,完美整合springmvc + shiro + mybatis-plus + beetl!Guns项目代码简洁,注释丰富,上手容易,同时Guns包含许多基础模块(用户管理,角色管理,部门管理,字典管理等10个模块),可以直接作为一个后台管理系统的脚手架!|3.2k|Java|07/02|
|147|[hope-for/hope-boot](https://github.com/hope-for/hope-boot)|🌱 Hope-Boot 一款现代化的脚手架项目|3.2k|Java|04/23|
|148|[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.2k|Java|04/14|
|149|[promeG/TinyPinyin](https://github.com/promeG/TinyPinyin)|适用于Java和Android的快速、低内存占用的汉字转拼音库。|3.2k|Java|10/18|
|150|[xuexiangjys/XUI](https://github.com/xuexiangjys/XUI)|💍A simple and elegant Android native UI framework, free your hands! (一个简洁而优雅的Android原生UI框架,解放你的双手!)|3.2k|Java|05/27|
|151|[zzz40500/GsonFormat](https://github.com/zzz40500/GsonFormat)|根据Gson库使用的要求,将JSONObject格式的String 解析成实体|3.2k|Java|01/28|
|152|[zhaojun1998/zfile](https://github.com/zhaojun1998/zfile)|在线云盘、网盘、OneDrive、云存储、私有云、对象存储、h5ai|3.2k|Java|05/14|
|153|[saysky/ForestBlog](https://github.com/saysky/ForestBlog)|一个简单漂亮的SSM(Spring+SpringMVC+Mybatis)博客系统|3.1k|Java|05/13|
|154|[zwwill/yanxuan-weex-demo](https://github.com/zwwill/yanxuan-weex-demo)|:art: High quality pure Weex demo / 网易严选 App 感受 Weex 开发|3.1k|Java|04/26|
|155|[981011512/--](https://github.com/981011512/--)|停车场系统源码,停车场小程序,智能停车,Parking system,【功能介绍】:①兼容市面上主流的多家相机,理论上兼容所有硬件,可灵活扩展,②相机识别后数据自动上传到云端并记录,校验相机唯一id和硬件序列号,防止非法数据录入,③用户手机查询停车记录详情可自主缴费(支持微信,支付宝,银行接口支付,支持每个停车场指定不同的商户进行收款),支付后出场在免费时间内会自动抬杆。④支持app上查询附近停车场(导航,可用车位数,停车场费用,优惠券,评分,评论等),可预约车位。⑤断电断网支持岗亭人员使用app可接管硬件进行停车记录的录入。 【技术架构】:后端开发语言java,框架oauth2+spring ...|3.0k|Java|05/18|
|156|[Javen205/IJPay](https://github.com/Javen205/IJPay)|IJPay 让支付触手可及,封装了微信支付、QQ支付、支付宝支付、京东支付、银联支付、PayPal 支付等常用的支付方式以及各种常用的接口。不依赖任何第三方 mvc 框架,仅仅作为工具使用简单快速完成支付模块的开发,可轻松嵌入到任何系统里。右上角点下小星星✨ |3.0k|Java|05/05|
|157|[huburt-Hu/NewbieGuide](https://github.com/huburt-Hu/NewbieGuide)|Android 快速实现新手引导层的库,通过简洁链式调用,一行代码实现引导层的显示|3.0k|Java|07/01|
|158|[zhou-you/RxEasyHttp](https://github.com/zhou-you/RxEasyHttp)|本库是一款基于RxJava2+Retrofit2实现简单易用的网络请求框架,结合android平台特性的网络封装库,采用api链式调用一点到底,集成cookie管理,多种缓存模式,极简https配置,上传下载进度显示,请求错误自动重试,请求携带token、时间戳、签名sign动态配置,自动登录成功后请求重发功能,3种层次的参数设置默认全局局部,默认标准ApiResult同时可以支持自定义的数据结构,已经能满足现在的大部分网络请求。|3.0k|Java|09/22|
|159|[crazyandcoder/citypicker](https://github.com/crazyandcoder/citypicker)|citypicker城市选择器,详细的省市区地址信息,支持仿iOS滚轮实现,仿京东样式,一级或者三级列表展示方式。|3.0k|Java|12/15|
|160|[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.0k|Java|05/28|
|161|[qunarcorp/bistoury](https://github.com/qunarcorp/bistoury)|Bistoury是去哪儿网的java应用生产问题诊断工具,提供了一站式的问题诊断方案|2.9k|Java|03/20|
|162|[lenve/JavaEETest](https://github.com/lenve/JavaEETest)|Spring、SpringMVC、MyBatis、Spring Boot案例|2.9k|Java|04/27|
|163|[zaaach/CityPicker](https://github.com/zaaach/CityPicker)|:fire::fire::fire:城市选择、定位、搜索及右侧字母导航,类似美团 百度糯米 饿了么等APP选择城市功能|2.9k|Java|02/13|
|164|[android-notes/Cockroach](https://github.com/android-notes/Cockroach)|降低Android非必要crash|2.9k|Java|03/11|
|165|[JunzhouLiu/BILIBILI-HELPER](https://github.com/JunzhouLiu/BILIBILI-HELPER)|B站,哔哩哔哩(Bilibili)自动签到投币工具,每天轻松获取65经验值,支持每日自动投币,银瓜子兑换硬币,领取大会员福利,大会员月底给自己充电等功能。呐!赶快和我一起成为Lv6吧!|2.9k|Java|05/28|
|166|[KingJA/LoadSir](https://github.com/KingJA/LoadSir)|A lightweight, good expandability Android library used for displaying different pages like loading, error, empty, timeout or even your custom page when you load a page.(优雅地处理加载中,重试,无数据等)|2.9k|Java|12/26|
|167|[mxdldev/android-mvp-mvvm-flytour](https://github.com/mxdldev/android-mvp-mvvm-flytour)|🔥🔥🔥 FlyTour是Android MVVM+MVP+Dagger2+Retrofit+RxJava+组件化+插件组成的双编码架构+双工程架构+双语言Android应用开发框架,通过不断的升级迭代该框架已经有了十个不同的版本,5.0之前工程架构采用gradle配置实现组件化,5.0之后的工程架构采用VirtualAPK实现了插件化,5.0之前采用Java编码实现,5.0之后采用Kotlin编码实现,编码架构由MVVM和MVP组成,工程架构和编码架构及编码语言开发者可根据自己具体的项目实际需求去决定选择使用,该框架是Android组件化、Android插件化、Android MVP架构、An ...|2.8k|Java|04/14|
|168|[JeremyLiao/LiveEventBus](https://github.com/JeremyLiao/LiveEventBus)|:mailbox_with_mail:EventBus for Android,消息总线,基于LiveData,具有生命周期感知能力,支持Sticky,支持AndroidX,支持跨进程,支持跨APP|2.8k|Java|05/08|
|169|[dingjikerbo/Android-BluetoothKit](https://github.com/dingjikerbo/Android-BluetoothKit)|Android BLE蓝牙通信库|2.8k|Java|02/12|
|170|[jiajunhui/PlayerBase](https://github.com/jiajunhui/PlayerBase)|The basic library of Android player will process complex business components. The access is simple。Android播放器基础库,专注于播放视图组件的高复用性和组件间的低耦合,轻松处理复杂业务。|2.8k|Java|03/06|
|171|[FinalTeam/RxGalleryFinal](https://github.com/FinalTeam/RxGalleryFinal)|图片选择库,单选/多选、拍照、裁剪、压缩,自定义。包括视频选择和录制。|2.8k|Java|12/21|
|172|[zlt2000/microservices-platform](https://github.com/zlt2000/microservices-platform)|基于SpringBoot2.x、SpringCloud和SpringCloudAlibaba并采用前后端分离的企业级微服务多租户系统架构。并引入组件化的思想实现高内聚低耦合,项目代码简洁注释丰富上手容易,适合学习和企业中使用。真正实现了基于RBAC、jwt和oauth2的无状态统一权限认证的解决方案,面向互联网设计同时适合B端和C端用户,支持CI/CD多环境部署,并提供应用管理方便第三方系统接入;同时还集合各种微服务治理功能和监控功能。模块包括:企业级的认证系统、开发平台、应用监控、慢sql监控、统一日志、单点登录、Redis分布式高速缓存、配置中心、分布式任务调度、接口文档、代码生成等等。|2.7k|Java|05/25|
|173|[KunMinX/Linkage-RecyclerView](https://github.com/KunMinX/Linkage-RecyclerView)|即使不用饿了么订餐,也请务必收藏好该库!🔥 一行代码即可接入,二级联动订餐列表 - Even if you don't order food by PrubHub, be sure to collect this library, please! 🔥 This secondary linkage list widget can be accessed by only one line of code. Supporting by RecyclerView & AndroidX.|2.7k|Java|01/23|
|174|[MagicMashRoom/SuperCalendar](https://github.com/MagicMashRoom/SuperCalendar)|@Deprecated android 自定义日历控件 支持左右无限滑动 周月切换 标记日期显示 自定义显示效果跳转到指定日期|2.7k|Java|05/31|
|175|[AbrahamCaiJin/CommonUtilLibrary](https://github.com/AbrahamCaiJin/CommonUtilLibrary)|快速开发工具类收集,史上最全的开发工具类,欢迎Follow、Fork、Star|2.7k|Java|05/11|
|176|[fengjundev/Android-Skin-Loader](https://github.com/fengjundev/Android-Skin-Loader)|一个通过动态加载本地皮肤包进行换肤的皮肤框架|2.7k|Java|02/20|
|177|[CheckChe0803/flink-recommandSystem-demo](https://github.com/CheckChe0803/flink-recommandSystem-demo)|:helicopter::rocket:基于Flink实现的商品实时推荐系统。flink统计商品热度,放入redis缓存,分析日志信息,将画像标签和实时记录放入Hbase。在用户发起推荐请求后,根据用户画像重排序热度榜,并结合协同过滤和标签两个推荐模块为新生成的榜单的每一个产品添加关联产品,最后返回新的用户列表。|2.6k|Java|07/02|
|178|[WeiYe-Jing/datax-web](https://github.com/WeiYe-Jing/datax-web)|DataX集成可视化页面,选择数据源即可一键生成数据同步任务,支持RDBMS、Hive、HBase、ClickHouse、MongoDB等数据源,批量创建RDBMS数据同步任务,集成开源调度系统,支持分布式、增量同步数据、实时查看运行日志、监控执行器资源、KILL运行进程、数据源信息加密等。|2.6k|Java|05/15|
|179|[baomidou/dynamic-datasource-spring-boot-starter](https://github.com/baomidou/dynamic-datasource-spring-boot-starter)|dynamic datasource for springboot 多数据源 动态数据源 主从分离 读写分离 分布式事务 |2.6k|Java|05/27|
|180|[Hitomis/transferee](https://github.com/Hitomis/transferee)|一个帮助您完成从缩略视图到原视图无缝过渡转变的神奇框架|2.6k|Java|12/09|
|181|[RedSpider1/concurrent](https://github.com/RedSpider1/concurrent)|这是RedSpider社区成员原创与维护的Java多线程系列文章。|2.6k|Java|04/10|
|182|[simple-android-framework/android_design_patterns_analysis](https://github.com/simple-android-framework/android_design_patterns_analysis)|Android源码设计模式分析项目|2.6k|Java|12/11|
|183|[yangchong211/LifeHelper](https://github.com/yangchong211/LifeHelper)|【停止维护】组件化综合案例,包含微信新闻,头条视频,美女图片,百度音乐,干活集中营,玩Android,豆瓣读书电影,知乎日报等等模块。架构模式:组件化+MVP+Rx+Retrofit+Desgin+Dagger2+阿里VLayout+腾讯X5+腾讯bugly。融合开发中需要的各种小案例!|2.6k|Java|10/28|
|184|[Pay-Group/best-pay-sdk](https://github.com/Pay-Group/best-pay-sdk)|可能是最好的支付SDK|2.6k|Java|03/20|
|185|[prontera/spring-cloud-rest-tcc](https://github.com/prontera/spring-cloud-rest-tcc)|以Spring Cloud Netflix作为服务治理基础, 展示基于tcc思想所实现的分布式事务解决方案|2.5k|Java|02/09|
|186|[AlexLiuSheng/CheckVersionLib](https://github.com/AlexLiuSheng/CheckVersionLib)|版本检测升级(更新)库。an auto check version library(app update) on Android|2.5k|Java|12/19|
|187|[o2oa/o2oa](https://github.com/o2oa/o2oa)|开源OA系统 - 码云GVP Java开源oa 企业OA办公平台 企业OA 协同办公OA 流程平台OA O2OA OA,支持国产麒麟操作系统和国产数据库(达梦、人大金仓),政务OA,军工信息化OA|2.5k|Java|05/28|
|188|[svga/SVGAPlayer-Android](https://github.com/svga/SVGAPlayer-Android)|Similar to Lottie. Render After Effects / Animate CC (Flash) animations natively on Android and iOS, Web. 使用 SVGAPlayer 在 Android、iOS、Web中播放 After Effects / Animate CC (Flash) 动画。|2.5k|Java|04/30|
|189|[NotFound9/interviewGuide](https://github.com/NotFound9/interviewGuide)|后端技术总结——包括Java基础、JVM、数据库、mysql、redis、计算机网络、算法、数据结构、操作系统、设计模式、系统设计、框架原理。最佳阅读地址:http://notfound9.github.io/interviewGuide/|2.5k|Java|05/22|
|190|[bingoogolapple/BGABadgeView-Android](https://github.com/bingoogolapple/BGABadgeView-Android)|Android 徽章控件|2.5k|Java|04/05|
|191|[JsonChao/Awesome-WanAndroid](https://github.com/JsonChao/Awesome-WanAndroid)|:zap:致力于打造一款极致体验的 http://www.wanandroid.com/ 客户端,知识和美是可以并存的哦QAQn(*≧▽≦*)n|2.4k|Java|11/30|
|192|[201206030/fiction_house](https://github.com/201206030/fiction_house)|小说精品屋是一个多平台(web、安卓app、微信小程序)、功能完善的屏幕自适应小说漫画连载系统,包含精品小说专区、轻小说专区和漫画专区。包括小说/漫画分类、小说/漫画搜索、小说/漫画排行、完本小说/漫画、小说/漫画评分、小说/漫画在线阅读、小说/漫画书架、小说/漫画阅读记录、小说下载、小说弹幕、小说/漫画自动采集/更新/纠错、小说内容自动分享到微博、邮件自动推广、链接自动推送到百度搜索引擎等功能。|2.4k|Java|01/24|
|193|[LaiFeng-Android/SopCastComponent](https://github.com/LaiFeng-Android/SopCastComponent)|该项目不再维护,仅供学习参考|2.4k|Java|06/04|
|194|[phodal/migration](https://github.com/phodal/migration)|《系统重构与迁移指南》手把手教你分析、评估现有系统、制定重构策略、探索可行重构方案、搭建测试防护网、进行系统架构重构、服务架构重构、模块重构、代码重构、数据库重构、重构后的架构守护|2.4k|Java|03/17|
|195|[BaronZ88/MinimalistWeather](https://github.com/BaronZ88/MinimalistWeather)|Android 平台开源天气 App,采用 MVP、RxJava、Retrofit2、OKHttp3、Dagger2、RetroLambda 等开源库来实现。|2.4k|Java|10/09|
|196|[didi/Logi-KafkaManager](https://github.com/didi/Logi-KafkaManager)|一站式Apache Kafka集群指标监控与运维管控平台|2.4k|Java|05/28|
|197|[ngbdf/redis-manager](https://github.com/ngbdf/redis-manager)|Redis 一站式管理平台,支持集群的监控、安装、管理、告警以及基本的数据操作|2.4k|Java|04/01|
|198|[rememberber/WePush](https://github.com/rememberber/WePush)|专注批量推送的小而美的工具,目前支持:模板消息-公众号、模板消息-小程序、微信客服消息、微信企业号/企业微信消息、阿里云短信、阿里大于模板短信 、腾讯云短信、云片网短信、E-Mail、HTTP请求、钉钉、华为云短信、百度云短信、又拍云短信、七牛云短信|2.4k|Java|05/25|
|199|[liyiorg/weixin-popular](https://github.com/liyiorg/weixin-popular)|微信SDK JAVA (公众平台、开放平台、 商户平台、 服务商平台)|2.3k|Java|05/14|
|200|[qunarcorp/qmq](https://github.com/qunarcorp/qmq)| QMQ是去哪儿网内部广泛使用的消息中间件,自2012年诞生以来在去哪儿网所有业务场景中广泛的应用,包括跟交易息息相关的订单场景; 也包括报价搜索等高吞吐量场景。|2.3k|Java|04/29|
⬆ [回到目录](#目录)
<br/>
## Python
|#|Repository|Description|Stars|Language|Updated|
|:-|:-|:-|:-|:-|:-|
|1|[jackfrued/Python-100-Days](https://github.com/jackfrued/Python-100-Days)|Python - 100天从新手到大师|104.1k|Python|05/21|
|2|[521xueweihan/HelloGitHub](https://github.com/521xueweihan/HelloGitHub)|:octocat: 分享 GitHub 上有趣、入门级的开源项目|42.2k|Python|05/28|
|3|[0voice/interview_internal_reference](https://github.com/0voice/interview_internal_reference)|2021年最新总结,阿里,腾讯,百度,美团,头条等技术面试题目,以及答案,专家出题人分析汇总。|31.4k|Python|03/03|
|4|[fighting41love/funNLP](https://github.com/fighting41love/funNLP)|中英文敏感词、语言检测、中外手机/电话归属地/运营商查询、名字推断性别、手机号抽取、身份证抽取、邮箱抽取、中日文人名库、中文缩写库、拆字词典、词汇情感值、停用词、反动词表、暴恐词表、繁简体转换、英文模拟中文发音、汪峰歌词生成器、职业名称词库、同义词库、反义词库、否定词库、汽车品牌词库、汽车零件词库、连续英文切割、各种中文词向量、公司名字大全、古诗词库、IT词库、财经词库、成语词库、地名词库、历史名人词库、诗词词库、医学词库、饮食词库、法律词库、汽车词库、动物词库、中文聊天语料、中文谣言数据、百度中文问答数据集、句子相似度匹配算法集合、bert资源、文本生成&摘要相关工具、cocoNLP信息抽取 ...|31.2k|Python|12/23|
|5|[testerSunshine/12306](https://github.com/testerSunshine/12306)|12306智能刷票,订票|30.0k|Python|05/21|
|6|[apachecn/AiLearning](https://github.com/apachecn/AiLearning)|AiLearning: 机器学习 - MachineLearning - ML、深度学习 - DeepLearning - DL、自然语言处理 NLP|29.8k|Python|05/09|
|7|[fxsjy/jieba](https://github.com/fxsjy/jieba)|结巴中文分词|26.4k|Python|12/06|
|8|[d2l-ai/d2l-zh](https://github.com/d2l-ai/d2l-zh)|《动手学深度学习》:面向中文读者、能运行、可讨论。中英文版被全球175所大学采用教学。|24.1k|Python|05/28|
|9|[hankcs/HanLP](https://github.com/hankcs/HanLP)|中文分词 词性标注 命名实体识别 依存句法分析 语义依存分析 新词发现 关键词短语提取 自动摘要 文本分类聚类 拼音简繁转换 自然语言处理|22.9k|Python|05/27|
|10|[littlecodersh/ItChat](https://github.com/littlecodersh/ItChat)|A complete and graceful API for Wechat. 微信个人号接口、微信机器人及命令行微信,三十行即可自定义个人号机器人。|21.5k|Python|03/31|
|11|[wangzheng0822/algo](https://github.com/wangzheng0822/algo)|数据结构和算法必知必会的50个代码实现|18.8k|Python|05/28|
|12|[jumpserver/jumpserver](https://github.com/jumpserver/jumpserver)|JumpServer 是全球首款开源的堡垒机,是符合 4A 的专业运维安全审计系统。|16.0k|Python|05/28|
|13|[PaddlePaddle/Paddle](https://github.com/PaddlePaddle/Paddle)|PArallel Distributed Deep LEarning: Machine Learning Framework from Industrial Practice (『飞桨』核心框架,深度学习&机器学习高性能单机、分布式训练和跨平台部署)|15.5k|Python|05/29|
|14|[shimohq/chinese-programmer-wrong-pronunciation](https://github.com/shimohq/chinese-programmer-wrong-pronunciation)|中国程序员容易发音错误的单词|14.1k|Python|04/24|
|15|[wangshub/wechat_jump_game](https://github.com/wangshub/wechat_jump_game)|微信《跳一跳》Python 辅助|13.9k|Python|05/21|
|16|[Kr1s77/awesome-python-login-model](https://github.com/Kr1s77/awesome-python-login-model)|😮python模拟登陆一些大型网站,还有一些简单的爬虫,希望对你们有所帮助❤️,如果喜欢记得给个star哦🌟|13.4k|Python|10/02|
|17|[Jack-Cherish/python-spider](https://github.com/Jack-Cherish/python-spider)|:rainbow:Python3网络爬虫实战:淘宝、京东、网易云、B站、12306、抖音、笔趣阁、漫画小说下载、音乐电影下载等|13.1k|Python|04/01|
|18|[jhao104/proxy_pool](https://github.com/jhao104/proxy_pool)|Python爬虫代理IP池(proxy pool)|12.5k|Python|05/28|
|19|[leisurelicht/wtfpython-cn](https://github.com/leisurelicht/wtfpython-cn)|wtfpython的中文翻译/施工结束/ 能力有限,欢迎帮我改进翻译|11.7k|Python|03/23|
|20|[pjialin/py12306](https://github.com/pjialin/py12306)|🚂 12306 购票助手,支持集群,多账号,多任务购票以及 Web 页面管理 |11.4k|Python|04/01|
|21|[h2y/Shadowrocket-ADBlock-Rules](https://github.com/h2y/Shadowrocket-ADBlock-Rules)|提供多款 Shadowrocket 规则,带广告过滤功能。用于 iOS 未越狱设备选择性地自动翻墙。|11.4k|Python|04/13|
|22|[meolu/walle-web](https://github.com/meolu/walle-web)|walle - 瓦力 Devops开源项目代码部署平台|10.9k|Python|05/09|
|23|[shengqiangzhang/examples-of-web-crawlers](https://github.com/shengqiangzhang/examples-of-web-crawlers)|一些非常有趣的python爬虫例子,对新手比较友好,主要爬取淘宝、天猫、微信、豆瓣、QQ等网站。(Some interesting examples of python crawlers that are friendly to beginners. )|10.2k|Python|05/15|
|24|[MorvanZhou/tutorials](https://github.com/MorvanZhou/tutorials)|机器学习相关教程|9.1k|Python|12/23|
|25|[darknessomi/musicbox](https://github.com/darknessomi/musicbox)|网易云音乐命令行版本|8.9k|Python|04/07|
|26|[Embedding/Chinese-Word-Vectors](https://github.com/Embedding/Chinese-Word-Vectors)|100+ Chinese Word Vectors 上百种预训练中文词向量 |8.9k|Python|03/20|
|27|[vipstone/faceai](https://github.com/vipstone/faceai)|一款入门级的人脸、视频、文字检测以及识别的项目.|8.7k|Python|04/16|
|28|[sfyc23/EverydayWechat](https://github.com/sfyc23/EverydayWechat)|微信助手:1.每日定时给好友(女友)发送定制消息。2.机器人自动回复好友。3.群助手功能(例如:查询垃圾分类、天气、日历、电影实时票房、快递物流、PM2.5等)|8.3k|Python|03/22|
|29|[x-hw/amazing-qr](https://github.com/x-hw/amazing-qr)|💮 amazing QRCode generator in Python (supporting animated gif) - Python amazing 二维码生成器(支持 gif 动态图片二维码)|8.2k|Python|05/12|
|30|[bbfamily/abu](https://github.com/bbfamily/abu)|阿布量化交易系统(股票,期权,期货,比特币,机器学习) 基于python的开源量化交易,量化投资架构|8.0k|Python|12/23|
|31|[pwxcoo/chinese-xinhua](https://github.com/pwxcoo/chinese-xinhua)|:orange_book: 中华新华字典数据库。包括歇后语,成语,词语,汉字。|7.9k|Python|11/09|
|32|[hoochanlon/w3-goto-world](https://github.com/hoochanlon/w3-goto-world)|🍅 Git/AWS/Google 镜像 ,SS/SSR/VMESS节点,WireGuard,IPFS, DeepWeb,Capitalism 、行业研究报告的知识储备库|7.8k|Python|05/20|
|33|[wangshub/Douyin-Bot](https://github.com/wangshub/Douyin-Bot)|😍 Python 抖音机器人,论如何在抖音上找到漂亮小姐姐? |7.5k|Python|03/19|
|34|[Dod-o/Statistical-Learning-Method_Code](https://github.com/Dod-o/Statistical-Learning-Method_Code)|手写实现李航《统计学习方法》书中全部算法|7.4k|Python|03/03|
|35|[Vonng/ddia](https://github.com/Vonng/ddia)|《Designing Data-Intensive Application》DDIA中文翻译|7.1k|Python|05/17|
|36|[jindongwang/transferlearning](https://github.com/jindongwang/transferlearning)|Everything about Transfer Learning and Domain Adaptation--迁移学习|7.1k|Python|05/27|
|37|[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爬虫逆向,分布式爬虫,爬虫项目实战实例等|7.0k|Python|02/17|
|38|[injetlee/Python](https://github.com/injetlee/Python)|Python脚本。模拟登录知乎, 爬虫,操作excel,微信公众号,远程开机|6.8k|Python|03/19|
|39|[luyishisi/Anti-Anti-Spider](https://github.com/luyishisi/Anti-Anti-Spider)|越来越多的网站具有反爬虫特性,有的用图片隐藏关键数据,有的使用反人类的验证码,建立反反爬虫的代码仓库,通过与不同特性的网站做斗争(无恶意)提高技术。(欢迎提交难以采集的网站)(因工作原因,项目暂停) |6.7k|Python|06/29|
|40|[MorvanZhou/Reinforcement-learning-with-tensorflow](https://github.com/MorvanZhou/Reinforcement-learning-with-tensorflow)|Simple Reinforcement learning tutorials, 莫烦Python 中文AI教学|6.4k|Python|11/01|
|41|[PaddlePaddle/models](https://github.com/PaddlePaddle/models)|Pre-trained and Reproduced Deep Learning Models (『飞桨』官方模型库,包含多种学术前沿和工业场景验证的深度学习模型)|5.9k|Python|05/28|
|42|[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轻量级人脸检测模型)|5.9k|Python|04/26|
|43|[houtianze/bypy](https://github.com/houtianze/bypy)|Python client for Baidu Yun (Personal Cloud Storage) 百度云/百度网盘Python客户端|5.8k|Python|05/24|
|44|[eastlakeside/interpy-zh](https://github.com/eastlakeside/interpy-zh)|📘《Python进阶》(Intermediate Python 中文版)|5.8k|Python|12/23|
|45|[shidenggui/easytrader](https://github.com/shidenggui/easytrader)|提供同花顺客户端/国金/华泰客户端/雪球的基金、股票自动程序化交易以及自动打新,支持跟踪 joinquant /ricequant 模拟交易 和 实盘雪球组合, 量化交易组件|5.7k|Python|04/01|
|46|[kangvcar/InfoSpider](https://github.com/kangvcar/InfoSpider)|INFO-SPIDER 是一个集众多数据源于一身的爬虫工具箱🧰,旨在安全快捷的帮助用户拿回自己的数据,工具代码开源,流程透明。支持数据源包括GitHub、QQ邮箱、网易邮箱、阿里邮箱、新浪邮箱、Hotmail邮箱、Outlook邮箱、京东、淘宝、支付宝、中国移动、中国联通、中国电信、知乎、哔哩哔哩、网易云音乐、QQ好友、QQ群、生成朋友圈相册、浏览器浏览历史、12306、博客园、CSDN博客、开源中国博客、简书。|5.6k|Python|05/08|
|47|[QUANTAXIS/QUANTAXIS](https://github.com/QUANTAXIS/QUANTAXIS)|QUANTAXIS 支持任务调度 分布式部署的 股票/期货/期权/港股/虚拟货币 数据/回测/模拟/交易/可视化/多账户 纯本地量化解决方案|5.5k|Python|05/15|
|48|[lancopku/pkuseg-python](https://github.com/lancopku/pkuseg-python)|pkuseg多领域中文分词工具; The pkuseg toolkit for multi-domain Chinese word segmentation|5.4k|Python|01/10|
|49|[ymcui/Chinese-BERT-wwm](https://github.com/ymcui/Chinese-BERT-wwm)|Pre-Training with Whole Word Masking for Chinese BERT(中文BERT-wwm系列模型)|5.4k|Python|01/27|
|50|[lining0806/PythonSpiderNotes](https://github.com/lining0806/PythonSpiderNotes)|Python入门网络爬虫之精华版|5.4k|Python|10/02|
|51|[tangqiaoboy/iOSBlogCN](https://github.com/tangqiaoboy/iOSBlogCN)|中文 iOS/Mac 开发博客列表|5.3k|Python|12/26|
|52|[liuwons/wxBot](https://github.com/liuwons/wxBot)|Python网页微信API|5.2k|Python|04/07|
|53|[lcdevelop/ChatBotCourse](https://github.com/lcdevelop/ChatBotCourse)|自己动手做聊天机器人教程|5.1k|Python|12/24|
|54|[chyroc/WechatSogou](https://github.com/chyroc/WechatSogou)|基于搜狗微信搜索的微信公众号爬虫接口|5.0k|Python|05/07|
|55|[Jrohy/multi-v2ray](https://github.com/Jrohy/multi-v2ray)|v2ray/xray多用户管理部署程序|4.9k|Python|05/28|
|56|[PeterDing/iScript](https://github.com/PeterDing/iScript)|各种脚本 -- 关于 虾米 xiami.com, 百度网盘 pan.baidu.com, 115网盘 115.com, 网易音乐 music.163.com, 百度音乐 music.baidu.com, 360网盘/云盘 yunpan.cn, 视频解析 flvxz.com, bt torrent ↔ magnet, ed2k 搜索, tumblr 图片下载, unzip|4.9k|Python|01/21|
|57|[0x5e/wechat-deleted-friends](https://github.com/0x5e/wechat-deleted-friends)|查看被删的微信好友|4.9k|Python|10/01|
|58|[tgbot-collection/YYeTsBot](https://github.com/tgbot-collection/YYeTsBot)|🎬 人人影视bot,完全对接人人影视全部无删减资源|4.8k|Python|05/04|
|59|[xiaolai/regular-investing-in-box](https://github.com/xiaolai/regular-investing-in-box)|定投改变命运 —— 让时间陪你慢慢变富 https://onregularinvesting.com|4.5k|Python|05/28|
|60|[SmirkCao/Lihang](https://github.com/SmirkCao/Lihang)|Statistical learning methods, 统计学习方法(第2版)[李航] [笔记, 代码, notebook, 参考文献, Errata, lihang]|4.3k|Python|12/27|
|61|[pythonstock/stock](https://github.com/pythonstock/stock)|stock,股票系统。使用python进行开发。|4.3k|Python|03/14|
|62|[nl8590687/ASRT_SpeechRecognition](https://github.com/nl8590687/ASRT_SpeechRecognition)|A Deep-Learning-Based Chinese Speech Recognition System 基于深度学习的中文语音识别系统|4.2k|Python|05/16|
|63|[chatopera/Synonyms](https://github.com/chatopera/Synonyms)|:herb: 中文近义词:聊天机器人,智能问答工具包|3.7k|Python|02/10|
|64|[ownthink/KnowledgeGraphData](https://github.com/ownthink/KnowledgeGraphData)|史上最大规模1.4亿中文知识图谱开源下载|3.6k|Python|02/01|
|65|[jindaxiang/akshare](https://github.com/jindaxiang/akshare)|AKShare is an elegant and simple financial data interface library for Python, built for human beings! 开源财经数据接口库|3.6k|Python|05/28|
|66|[Kr1s77/Python-crawler-tutorial-starts-from-zero](https://github.com/Kr1s77/Python-crawler-tutorial-starts-from-zero)|python爬虫教程,带你从零到一,包含js逆向,selenium, tesseract OCR识别,mongodb的使用,以及scrapy框架|3.6k|Python|12/02|
|67|[shmilylty/OneForAll](https://github.com/shmilylty/OneForAll)|OneForAll是一款功能强大的子域收集工具|3.5k|Python|05/21|
|68|[MingchaoZhu/DeepLearning](https://github.com/MingchaoZhu/DeepLearning)|Python for《Deep Learning》,该书为《深度学习》(花书) 数学推导、原理剖析与源码级别代码实现|3.4k|Python|06/23|
|69|[zhaipro/easy12306](https://github.com/zhaipro/easy12306)|使用机器学习算法完成对12306验证码的自动识别|2.6k|Python|03/04|
|70|[hhyo/Archery](https://github.com/hhyo/Archery)|SQL 审核查询平台|2.6k|Python|05/29|
|71|[YongHaoWu/NeteaseCloudMusicFlac](https://github.com/YongHaoWu/NeteaseCloudMusicFlac)|根据网易云音乐的歌单, 下载flac无损音乐到本地. Download the FLAC music from Internet according to your NeteaseCloudMusic playlist.|2.6k|Python|07/06|
|72|[huangrt01/CS-Notes](https://github.com/huangrt01/CS-Notes)|我的自学笔记,终身更新,当前专注System基础、MLSys。|2.6k|Python|05/27|
|73|[Tencent/FaceDetection-DSFD](https://github.com/Tencent/FaceDetection-DSFD)|腾讯优图高精度双分支人脸检测器|2.5k|Python|07/09|
|74|[jiangxufeng/v2rayL](https://github.com/jiangxufeng/v2rayL)|v2ray linux GUI客户端,支持订阅、vemss、ss等协议,自动更新订阅、检查版本更新|2.5k|Python|05/01|
|75|[0xHJK/music-dl](https://github.com/0xHJK/music-dl)|search and download music 从网易云音乐、QQ音乐、酷狗音乐、百度音乐、虾米音乐、咪咕音乐等搜索和下载歌曲|2.5k|Python|03/25|
|76|[momosecurity/aswan](https://github.com/momosecurity/aswan)|陌陌风控系统静态规则引擎,零基础简易便捷的配置多种复杂规则,实时高效管控用户异常行为。|2.4k|Python|05/11|
|77|[minivision-ai/photo2cartoon](https://github.com/minivision-ai/photo2cartoon)|人像卡通化探索项目 (photo-to-cartoon translation project)|2.4k|Python|02/24|
|78|[makelove/OpenCV-Python-Tutorial](https://github.com/makelove/OpenCV-Python-Tutorial)|OpenCV问答群,QQ群号:187436093|2.4k|Python|01/24|
|79|[toolgood/ToolGood.Words](https://github.com/toolgood/ToolGood.Words)|一款高性能敏感词(非法词/脏字)检测过滤组件,附带繁体简体互换,支持全角半角互换,汉字转拼音,模糊搜索等功能。|2.4k|Python|05/11|
|80|[Rockyzsu/stock](https://github.com/Rockyzsu/stock)|30天掌握量化交易 (持续更新)|2.4k|Python|05/11|
|81|[Jack-Cherish/PythonPark](https://github.com/Jack-Cherish/PythonPark)|Python 开源项目之「自学编程之路」,保姆级教程:AI实验室、宝藏视频、数据结构、学习指南、机器学习实战、深度学习实战、网络爬虫、大厂面经、程序人生、资源分享。|2.3k|Python|05/20|
|82|[hankcs/pyhanlp](https://github.com/hankcs/pyhanlp)|中文分词 词性标注 命名实体识别 依存句法分析 新词发现 关键词短语提取 自动摘要 文本分类聚类 拼音简繁 自然语言处理|2.3k|Python|04/22|
|83|[Ehco1996/django-sspanel](https://github.com/Ehco1996/django-sspanel)|用diango开发的shadowsocks/V2ray面板|2.3k|Python|05/25|
|84|[shibing624/pycorrector](https://github.com/shibing624/pycorrector)|pycorrector is a toolkit for text error correction. 文本纠错,Kenlm,Seq2Seq_Attention,BERT,MacBERT,ELECTRA,ERNIE,Transformer等模型实现,开箱即用。|2.3k|Python|05/27|
|85|[lanbing510/DouBanSpider](https://github.com/lanbing510/DouBanSpider)|豆瓣读书的爬虫|2.3k|Python|04/08|
|86|[codemayq/chinese_chatbot_corpus](https://github.com/codemayq/chinese_chatbot_corpus)|中文公开聊天语料库|2.2k|Python|03/12|
|87|[nghuyong/WeiboSpider](https://github.com/nghuyong/WeiboSpider)|This is a sina weibo spider built by scrapy [微博爬虫/持续维护]|2.2k|Python|04/27|
|88|[shidenggui/easyquant](https://github.com/shidenggui/easyquant)|股票量化框架,支持行情获取以及交易|2.2k|Python|03/14|
|89|[zhaoyingjun/chatbot](https://github.com/zhaoyingjun/chatbot)|一个可以自己进行训练的中文聊天机器人, 根据自己的语料训练出自己想要的聊天机器人,可以用于智能客服、在线问答、智能聊天等场景。目前包含seq2seq、seqGAN版本、tf2.0版本、pytorch版本。|2.2k|Python|12/04|
|90|[airingursb/bilibili-user](https://github.com/airingursb/bilibili-user)|🍥 Bilibili 用户爬虫|2.2k|Python|05/02|
|91|[InsaneLife/ChineseNLPCorpus](https://github.com/InsaneLife/ChineseNLPCorpus)|中文自然语言处理数据集,平时做做实验的材料。欢迎补充提交合并。|2.2k|Python|12/17|
|92|[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.2k|Python|05/24|
|93|[DA-southampton/NLP_ability](https://github.com/DA-southampton/NLP_ability)|总结梳理自然语言处理工程师(NLP)需要积累的各方面知识,包括面试题,各种基础知识,工程能力等等,提升核心竞争力|2.1k|Python|05/24|
|94|[ownthink/Jiagu](https://github.com/ownthink/Jiagu)|Jiagu深度学习自然语言处理工具 知识图谱关系抽取 中文分词 词性标注 命名实体识别 情感分析 新词发现 关键词 文本摘要 文本聚类|2.1k|Python|10/21|
|95|[kingname/GeneralNewsExtractor](https://github.com/kingname/GeneralNewsExtractor)| 新闻网页正文通用抽取器 Beta 版.|2.1k|Python|04/01|
|96|[howie6879/owllook](https://github.com/howie6879/owllook)|owllook-小说搜索引擎|2.1k|Python|03/20|
|97|[nickliqian/cnn_captcha](https://github.com/nickliqian/cnn_captcha)|use cnn recognize captcha by tensorflow. 本项目针对字符型图片验证码,使用tensorflow实现卷积神经网络,进行验证码识别。|2.1k|Python|05/21|
|98|[NewFuture/DDNS](https://github.com/NewFuture/DDNS)|:triangular_flag_on_post: 自动更新域名解析到本机IP(支持dnspod,阿里DNS,CloudFlare,华为云,DNSCOM...)|2.0k|Python|04/16|
|99|[Determined22/zh-NER-TF](https://github.com/Determined22/zh-NER-TF)|A very simple BiLSTM-CRF model for Chinese Named Entity Recognition 中文命名实体识别 (TensorFlow)|2.0k|Python|11/12|
|100|[PegasusWang/python_data_structures_and_algorithms](https://github.com/PegasusWang/python_data_structures_and_algorithms)|Python 中文数据结构和算法教程|2.0k|Python|04/14|
|101|[zq1997/deepin-wine](https://github.com/zq1997/deepin-wine)|【deepin源移植】Debian/Ubuntu上最快的QQ/微信安装方式|2.0k|Python|05/18|
|102|[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.|1.9k|Python|05/11|
|103|[BlankerL/DXY-COVID-19-Data](https://github.com/BlankerL/DXY-COVID-19-Data)|2019新型冠状病毒疫情时间序列数据仓库 COVID-19/2019-nCoV Infection Time Series Data Warehouse|1.9k|Python|01/23|
|104|[CLUEbenchmark/CLUE](https://github.com/CLUEbenchmark/CLUE)|中文语言理解测评基准 Chinese Language Understanding Evaluation Benchmark: datasets, baselines, pre-trained models, corpus and leaderboard |1.9k|Python|05/21|
|105|[wkunzhi/Python3-Spider](https://github.com/wkunzhi/Python3-Spider)|Python爬虫实战 - 模拟登陆各大网站 包含但不限于:滑块验证、拼多多、美团、百度、bilibili、大众点评、淘宝,如果喜欢请start ❤️|1.9k|Python|07/24|
|106|[china-testing/python-api-tesing](https://github.com/china-testing/python-api-tesing)|python中文库-python人工智能大数据自动化接口测试开发。 书籍下载及python库汇总https://china-testing.github.io/ |1.9k|Python|05/20|
|107|[EssayKillerBrain/EssayKiller_V2](https://github.com/EssayKillerBrain/EssayKiller_V2)|基于开源GPT2.0的初代创作型人工智能 可扩展、可进化|1.9k|Python|11/10|
|108|[Roujack/mathAI](https://github.com/Roujack/mathAI)|一个拍照做题程序。输入一张包含数学计算题的图片,输出识别出的数学计算式以及计算结果。This is a mathematic expression recognition project.|1.9k|Python|12/13|
|109|[Tencent/ObjectDetection-OneStageDet](https://github.com/Tencent/ObjectDetection-OneStageDet)|单阶段通用目标检测器|1.9k|Python|06/03|
|110|[PyJun/Mooc_Downloader](https://github.com/PyJun/Mooc_Downloader)|学无止下载器,慕课下载器,Mooc下载,慕课网下载,中国大学下载,爱课程下载,网易云课堂下载,学堂在线下载,超星学习通下载;支持视频,课件同时下载|1.9k|Python|04/18|
|111|[H4ckForJob/dirmap](https://github.com/H4ckForJob/dirmap)|An advanced web directory & file scanning tool that will be more powerful than DirBuster, Dirsearch, cansina, and Yu Jian.一个高级web目录、文件扫描工具,功能将会强于DirBuster、Dirsearch、cansina、御剑。|1.9k|Python|12/03|
|112|[iswbm/magic-python](https://github.com/iswbm/magic-python)|Python 黑魔法手册|1.9k|Python|05/24|
|113|[shinnytech/tqsdk-python](https://github.com/shinnytech/tqsdk-python)|天勤量化开发包, 期货量化, 实时行情/历史数据/实盘交易|1.9k|Python|05/28|
|114|[BlankerL/DXY-COVID-19-Crawler](https://github.com/BlankerL/DXY-COVID-19-Crawler)|2019新型冠状病毒疫情实时爬虫及API COVID-19/2019-nCoV Realtime Infection Crawler and API|1.8k|Python|03/27|
|115|[PaddlePaddle/PaddleX](https://github.com/PaddlePaddle/PaddleX)|PaddlePaddle End-to-End Development Toolkit(『飞桨』深度学习全流程开发工具)|1.8k|Python|05/28|
|116|[Henryhaohao/Bilibili_video_download](https://github.com/Henryhaohao/Bilibili_video_download)|:rainbow:Bilibili_video_download-B站视频下载|1.8k|Python|04/28|
|117|[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.8k|Python|05/25|
|118|[awolfly9/IPProxyTool](https://github.com/awolfly9/IPProxyTool)|python ip proxy tool scrapy crawl. 抓取大量免费代理 ip,提取有效 ip 使用|1.8k|Python|04/07|
|119|[biancangming/wtv](https://github.com/biancangming/wtv)|解决电脑、手机看电视直播的苦恼,收集各种直播源,电视直播网站|1.7k|Python|05/07|
|120|[zhaoolee/StarsAndClown](https://github.com/zhaoolee/StarsAndClown)|☀️Github星聚弃疗榜, 让吃瓜群众也能享受Github带来的乐趣~Github StarsAndClown, Let the people who eat me can enjoy the fun of Github~|1.7k|Python|05/07|
|121|[CLUEbenchmark/CLUEDatasetSearch](https://github.com/CLUEbenchmark/CLUEDatasetSearch)|搜索所有中文NLP数据集,附常用英文NLP数据集|1.7k|Python|03/01|
|122|[hunshcn/gh-proxy](https://github.com/hunshcn/gh-proxy)|github release、archive以及项目文件的加速项目|1.7k|Python|04/24|
|123|[brightmart/roberta_zh](https://github.com/brightmart/roberta_zh)|RoBERTa中文预训练模型: RoBERTa for Chinese |1.7k|Python|06/29|
|124|[LyleMi/Learn-Web-Hacking](https://github.com/LyleMi/Learn-Web-Hacking)|Study Notes For Web Hacking / Web安全学习笔记|1.7k|Python|04/24|
|125|[r0ysue/AndroidSecurityStudy](https://github.com/r0ysue/AndroidSecurityStudy)|安卓应用安全学习|1.7k|Python|08/23|
|126|[zhanyong-wan/dongbei](https://github.com/zhanyong-wan/dongbei)|东北方言编程语言|1.7k|Python|05/15|
|127|[FeeiCN/GSIL](https://github.com/FeeiCN/GSIL)|GitHub Sensitive Information Leakage(GitHub敏感信息泄露监控)|1.7k|Python|05/27|
|128|[guanguans/favorite-link](https://github.com/guanguans/favorite-link)|❤️ 每日收集喜欢的开源项目 RSS 订阅 快知 app 订阅|1.6k|Python|05/28|
|129|[Xyntax/POC-T](https://github.com/Xyntax/POC-T)|渗透测试插件化并发框架 / Open-sourced remote vulnerability PoC/EXP framework|1.6k|Python|01/14|
|130|[xianhu/PSpider](https://github.com/xianhu/PSpider)|简单易用的Python爬虫框架,QQ交流群:597510560|1.6k|Python|05/08|
|131|[observerss/textfilter](https://github.com/observerss/textfilter)|敏感词过滤的几种实现+某1w词敏感词库|1.6k|Python|01/31|
|132|[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.5k|Python|04/05|
|133|[EugeneLiu/translationCSAPP](https://github.com/EugeneLiu/translationCSAPP)|为 CSAPP 视频课程提供字幕,翻译 PPT,Lab。|1.5k|Python|03/30|
|134|[duoergun0729/nlp](https://github.com/duoergun0729/nlp)|兜哥出品 <一本开源的NLP入门书籍>|1.5k|Python|02/11|
|135|[fendouai/PyTorchDocs](https://github.com/fendouai/PyTorchDocs)|PyTorch 官方中文教程包含 60 分钟快速入门教程,强化教程,计算机视觉,自然语言处理,生成对抗网络,强化学习。欢迎 Star,Fork!|1.5k|Python|10/27|
|136|[649453932/Bert-Chinese-Text-Classification-Pytorch](https://github.com/649453932/Bert-Chinese-Text-Classification-Pytorch)|使用Bert,ERNIE,进行中文文本分类|1.5k|Python|02/11|
|137|[coffeehb/Some-PoC-oR-ExP](https://github.com/coffeehb/Some-PoC-oR-ExP)|各种漏洞poc、Exp的收集或编写|1.5k|Python|05/06|
|138|[abbeyokgo/PyOne](https://github.com/abbeyokgo/PyOne)|PyOne-一款给力的onedrive文件管理、分享程序|1.4k|Python|03/14|
|139|[FinMind/FinMind](https://github.com/FinMind/FinMind)|Open Data, more than 50 financial data. 提供超過 50 個金融資料(台股為主),每天更新 https://finmind.github.io/|1.4k|Python|05/28|
|140|[FengQuanLi/ResnetGPT](https://github.com/FengQuanLi/ResnetGPT)|用Resnet101+GPT搭建一个玩王者荣耀的AI|1.4k|Python|01/24|
|141|[doraemonext/wechat-python-sdk](https://github.com/doraemonext/wechat-python-sdk)|微信公众平台 Python 开发包 [DEPRECATED]|1.4k|Python|10/01|
|142|[zhzyker/vulmap](https://github.com/zhzyker/vulmap)|Vulmap 是一款 web 漏洞扫描和验证工具, 可对 webapps 进行漏洞扫描, 并且具备漏洞验证功能|1.4k|Python|04/16|
|143|[littlecodersh/itchatmp](https://github.com/littlecodersh/itchatmp)|A complete and graceful API for wechat mp. 完备优雅的微信公众号接口,原生支持同步、协程使用。 |1.4k|Python|04/24|
|144|[rabbitmask/WeblogicScan](https://github.com/rabbitmask/WeblogicScan)|Weblogic一键漏洞检测工具,V1.5,更新时间:20200730|1.3k|Python|12/07|
|145|[QuantFans/quantdigger](https://github.com/QuantFans/quantdigger)|基于python的量化交易平台|1.3k|Python|05/02|
|146|[iswbm/pycharm-guide](https://github.com/iswbm/pycharm-guide)|PyCharm 中文指南:安装 破解 效率 技巧|1.3k|Python|04/20|
|147|[seisman/how-to-write-makefile](https://github.com/seisman/how-to-write-makefile)|跟我一起写Makefile重制版|1.3k|Python|05/06|
|148|[yangjianxin1/GPT2-chitchat](https://github.com/yangjianxin1/GPT2-chitchat)|GPT2 for Chinese chitchat/用于中文闲聊的GPT2模型(实现了DialoGPT的MMI思想)|1.3k|Python|05/28|
|149|[nonebot/nonebot](https://github.com/nonebot/nonebot)|基于 OneBot 标准的 Python 异步 QQ 机器人框架 / Asynchronous QQ robot framework based on OneBot for Python|1.3k|Python|05/28|
|150|[nobody132/masr](https://github.com/nobody132/masr)|中文语音识别; Mandarin Automatic Speech Recognition;|1.3k|Python|05/18|
|151|[grayddq/GScan](https://github.com/grayddq/GScan)|本程序旨在为安全应急响应人员对Linux主机排查时提供便利,实现主机侧Checklist的自动全面化检测,根据检测结果自动数据聚合,进行黑客攻击路径溯源。|1.3k|Python|04/10|
|152|[X-zhangyang/Real-World-Masked-Face-Dataset](https://github.com/X-zhangyang/Real-World-Masked-Face-Dataset)|Real-World Masked Face Dataset,口罩人脸数据集|1.3k|Python|01/12|
|153|[TechXueXi/TechXueXi](https://github.com/TechXueXi/TechXueXi)|学习强国 xuexiqiangguo 全网最好用学习强国助手:TechXueXi (懒人刷分工具 自动学习)技术强国,支持答题,下载地址:https://github.com/TechXueXi/TechXueXi/releases|1.3k|Python|05/27|
|154|[taojy123/KeymouseGo](https://github.com/taojy123/KeymouseGo)|类似按键精灵的鼠标键盘录制和自动化操作 模拟点击和键入 automate mouse clicks and keyboard input|1.3k|Python|03/11|
|155|[frombeijingwithlove/dlcv_for_beginners](https://github.com/frombeijingwithlove/dlcv_for_beginners)|《深度学习与计算机视觉》配套代码|1.3k|Python|11/30|
|156|[fendouai/Awesome-TensorFlow-Chinese](https://github.com/fendouai/Awesome-TensorFlow-Chinese)|Awesome-TensorFlow-Chinese,TensorFlow 中文资源精选,官方网站,安装教程,入门教程,视频教程,实战项目,学习路径。QQ群:167122861,公众号:磐创AI,微信群二维码:http://www.tensorflownews.com/|1.3k|Python|01/30|
|157|[michaelliao/sinaweibopy](https://github.com/michaelliao/sinaweibopy)|新浪微博Python SDK|1.3k|Python|11/07|
|158|[songyouwei/ABSA-PyTorch](https://github.com/songyouwei/ABSA-PyTorch)|Aspect Based Sentiment Analysis, PyTorch Implementations. 基于方面的情感分析,使用PyTorch实现。|1.3k|Python|03/15|
|159|[ymcui/Chinese-XLNet](https://github.com/ymcui/Chinese-XLNet)|Pre-Trained Chinese XLNet(中文XLNet预训练模型)|1.2k|Python|01/27|
|160|[sczhengyabin/Image-Downloader](https://github.com/sczhengyabin/Image-Downloader)|Download images from Google, Bing, Baidu. 谷歌、百度、必应图片下载.|1.2k|Python|04/28|
|161|[lemonhu/stock-knowledge-graph](https://github.com/lemonhu/stock-knowledge-graph)|利用网络上公开的数据构建一个小型的证券知识图谱/知识库|1.2k|Python|07/23|
|162|[hanbinglengyue/FART](https://github.com/hanbinglengyue/FART)|ART环境下自动化脱壳方案|1.2k|Python|07/31|
|163|[crownpku/Rasa_NLU_Chi](https://github.com/crownpku/Rasa_NLU_Chi)|Turn Chinese natural language into structured data 中文自然语言理解|1.2k|Python|05/25|
|164|[Acmesec/CTFCrackTools](https://github.com/Acmesec/CTFCrackTools)|China's first CTFTools framework.中国国内首个CTF工具框架,旨在帮助CTFer快速攻克难关|1.2k|Python|05/09|
|165|[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|05/27|
|166|[fofapro/vulfocus](https://github.com/fofapro/vulfocus)|🚀Vulfocus 是一个漏洞集成平台,将漏洞环境 docker 镜像,放入即可使用,开箱即用。|1.2k|Python|05/29|
|167|[HatBoy/Struts2-Scan](https://github.com/HatBoy/Struts2-Scan)|Struts2全漏洞扫描利用工具|1.2k|Python|03/23|
|168|[dongweiming/web_develop](https://github.com/dongweiming/web_develop)|《Python Web开发实战》书中源码|1.2k|Python|03/19|
|169|[caj2pdf/caj2pdf](https://github.com/caj2pdf/caj2pdf)|Convert CAJ (China Academic Journals) files to PDF. 转换中国知网 CAJ 格式文献为 PDF。佛系转换,成功与否,皆是玄学。|1.1k|Python|04/16|
|170|[out0fmemory/GoAgent-Always-Available](https://github.com/out0fmemory/GoAgent-Always-Available)|一直可用的GoAgent,会定时扫描可用的google gae ip,提供可自动化获取ip运行的版本|1.1k|Python|05/29|
|171|[githublitao/api_automation_test](https://github.com/githublitao/api_automation_test)|接口自动化测试平台,已停止维护,看心情改改|1.1k|Python|03/20|
|172|[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.1k|Python|05/27|
|173|[dataabc/weibo-crawler](https://github.com/dataabc/weibo-crawler)|新浪微博爬虫,用python爬取新浪微博数据,并下载微博图片和微博视频|1.1k|Python|04/01|
|174|[librauee/Reptile](https://github.com/librauee/Reptile)|🏀 Python3 网络爬虫实战(部分含详细教程)猫眼 腾讯视频 豆瓣 研招网 微博 笔趣阁小说 百度热点 B站 CSDN 网易云阅读 阿里文学 百度股票 今日头条 微信公众号 网易云音乐 拉勾 有道 unsplash 实习僧 汽车之家 英雄联盟盒子 大众点评 链家 LPL赛程 台风 梦幻西游、阴阳师藏宝阁 天气 牛客网 百度文库 睡前故事 知乎 Wish|1.1k|Python|04/20|
|175|[imcaspar/gpt2-ml](https://github.com/imcaspar/gpt2-ml)|GPT2 for Multiple Languages, including pretrained models. GPT2 多语言支持, 15亿参数中文预训练模型|1.1k|Python|05/21|
|176|[wnma3mz/wechat_articles_spider](https://github.com/wnma3mz/wechat_articles_spider)|微信公众号文章的爬虫|1.1k|Python|05/18|
|177|[dixudx/tumblr-crawler](https://github.com/dixudx/tumblr-crawler)|Easily download all the photos/videos from tumblr blogs. 下载指定的 Tumblr 博客中的图片,视频|1.1k|Python|12/31|
|178|[TheThreeDog/Auto-Lianliankan](https://github.com/TheThreeDog/Auto-Lianliankan)|基于python图像识别实现的连连看外挂,可实现QQ连连看秒破|1.1k|Python|10/14|
|179|[NLP-LOVE/Introduction-NLP](https://github.com/NLP-LOVE/Introduction-NLP)|HanLP作者的新书《自然语言处理入门》详细笔记!业界良心之作,书中不是枯燥无味的公式罗列,而是用白话阐述的通俗易懂的算法模型。从基本概念出发,逐步介绍中文分词、词性标注、命名实体识别、信息抽取、文本聚类、文本分类、句法分析这几个热门问题的算法原理与工程实现。|1.1k|Python|02/19|
|180|[luopeixiang/named_entity_recognition](https://github.com/luopeixiang/named_entity_recognition)|中文命名实体识别(包括多种模型:HMM,CRF,BiLSTM,BiLSTM+CRF的具体实现)|1.1k|Python|08/11|
|181|[apachecn/python_data_analysis_and_mining_action](https://github.com/apachecn/python_data_analysis_and_mining_action)|《python数据分析与挖掘实战》的代码笔记|1.1k|Python|08/02|
|182|[fzlee/alipay](https://github.com/fzlee/alipay)|Python Alipay(支付宝) SDK with SHA1/SHA256 support|1.1k|Python|05/24|
|183|[blmoistawinde/HarvestText](https://github.com/blmoistawinde/HarvestText)|文本挖掘和预处理工具(文本清洗、新词发现、情感分析、实体识别链接、关键词抽取、知识抽取、句法分析等),无监督或弱监督方法|1.1k|Python|05/10|
|184|[DasyDong/interview](https://github.com/DasyDong/interview)|python, golang, devops 基础知识、 系统设计、后端开发路线图 |1.1k|Python|05/07|
|185|[jachinlin/geektime_dl](https://github.com/jachinlin/geektime_dl)|把极客时间装进 Kindle,内含快手内推等福利|1.1k|Python|06/02|
|186|[0xn0ne/weblogicScanner](https://github.com/0xn0ne/weblogicScanner)|weblogic 漏洞扫描工具。目前包含对以下漏洞的检测能力:CVE-2014-4210、CVE-2016-0638、CVE-2016-3510、CVE-2017-3248、CVE-2017-3506、CVE-2017-10271、CVE-2018-2628、CVE-2018-2893、CVE-2018-2894、CVE-2018-3191、CVE-2018-3245、CVE-2018-3252、CVE-2019-2618、CVE-2019-2725、CVE-2019-2729、CVE-2019-2890、CVE-2020-2551、CVE-2020-14882、CVE-2020-14883|1.0k|Python|11/27|
|187|[laixintao/python-parallel-programming-cookbook-cn](https://github.com/laixintao/python-parallel-programming-cookbook-cn)|📖《Python Parallel Programming Cookbook》中文版|1.0k|Python|11/03|
|188|[benitoro/stockholm](https://github.com/benitoro/stockholm)|一个股票数据(沪深)爬虫和选股策略测试框架|1.0k|Python|08/14|
|189|[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.0k|Python|04/16|
|190|[striver-ing/wechat-spider](https://github.com/striver-ing/wechat-spider)|开源微信爬虫:爬取公众号所有 文章、阅读量、点赞量和评论内容。易部署。持续维护!!!|1.0k|Python|04/15|
|191|[rainx/pytdx](https://github.com/rainx/pytdx)|Python tdx数据接口|1.0k|Python|04/15|
|192|[rogerzhu/MNWeeklyCategory](https://github.com/rogerzhu/MNWeeklyCategory)|码农周刊一周精选分类|1.0k|Python|12/30|
|193|[bubbliiiing/yolov4-pytorch](https://github.com/bubbliiiing/yolov4-pytorch)|这是一个YoloV4-pytorch的源码,可以用于训练自己的模型。|963|Python|05/21|
|194|[zhuinfo/Django-ERP](https://github.com/zhuinfo/Django-ERP)|Django-ERP是一款基于Django开发的ERP管理软件,包含常用的销售管理、采购管理、库存管理、组织管理等,支持按项目归集费用,支持工作流审批,支持采购单、报价单的批量导入。|951|Python|03/12|
|195|[JimmyHHua/opencv_tutorials](https://github.com/JimmyHHua/opencv_tutorials)|Opencv4.0 with python (English&中文), and will keep the update ! 👊|949|Python|11/20|
|196|[muguruzawang/jd_maotai_seckill](https://github.com/muguruzawang/jd_maotai_seckill)|优化版本的京东茅台抢购神器|949|-|03/30|
|197|[mobier/shadowsocksr-speed](https://github.com/mobier/shadowsocksr-speed)|SSR 批量测试节点有效带宽|949|Python|04/09|
|198|[DQinYuan/chinese_province_city_area_mapper](https://github.com/DQinYuan/chinese_province_city_area_mapper)|一个用于提取简体中文字符串中省,市和区并能够进行映射,检验和简单绘图的python模块|948|Python|03/07|
|199|[twtrubiks/docker-tutorial](https://github.com/twtrubiks/docker-tutorial)|Docker 基本教學 - 從無到有 Docker-Beginners-Guide 教你用 Docker 建立 Django + PostgreSQL 📝|946|Python|05/09|
|200|[HaddyYang/django2.0-course](https://github.com/HaddyYang/django2.0-course)|Django2.0视频教程相关代码(杨仕航)|921|Python|03/19|
⬆ [回到目录](#目录)
<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 入门指南》|25.9k|Go|05/22|
|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 |20.6k|Go|05/29|
|3|[halfrost/LeetCode-Go](https://github.com/halfrost/LeetCode-Go)|✅ Solutions to LeetCode by Go, 100% test coverage, runtime beats 100% / LeetCode 题解|18.0k|Go|05/29|
|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.|17.0k|Go|05/23|
|5|[chai2010/advanced-go-programming-book](https://github.com/chai2010/advanced-go-programming-book)|:books: 《Go语言高级编程》开源图书,涵盖CGO、Go汇编语言、RPC实现、Protobuf插件实现、Web框架实现、分布式系统等高阶主题(完稿)|15.1k|Go|05/19|
|6|[txthinking/brook](https://github.com/txthinking/brook)|Brook is a cross-platform strong encryption and not detectable proxy. Zero-Configuration. Brook 是一个跨平台的强加密无特征的代理软件. 零配置.|12.3k|Go|05/28|
|7|[greyireland/algorithm-pattern](https://github.com/greyireland/algorithm-pattern)|算法模板,最科学的刷题方式,最快速的刷题路径,你值得拥有~|11.9k|Go|05/14|
|8|[peterq/pan-light](https://github.com/peterq/pan-light)|百度网盘不限速客户端, golang + qt5, 跨平台图形界面|11.6k|Go|05/28|
|9|[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代理服务器,支持内网穿透,链式代理,通讯加密,智能H ...|10.3k|Go|05/21|
|10|[talkgo/night](https://github.com/talkgo/night)|Weekly Go Online Meetup via Bilibili|Go 夜读|由 SIG 成员维护|通过 bilibili 在线直播的方式分享 Go 相关的技术话题,每天大家在微信/telegram/Slack 上及时沟通交流编程技术话题。|9.2k|Go|05/28|
|11|[cloudreve/Cloudreve](https://github.com/cloudreve/Cloudreve)|🌩支持多家云存储的云盘系统 (A project helps you build your own cloud in minutes)|8.6k|Go|05/28|
|12|[getlantern/lantern](https://github.com/getlantern/lantern)|Lantern官方版本下载 蓝灯 翻墙 代理 科学上网 外网 加速器 梯子 路由 lantern proxy vpn censorship-circumvention censorship gfw accelerator|8.5k|Go|05/13|
|13|[flipped-aurora/gin-vue-admin](https://github.com/flipped-aurora/gin-vue-admin)|基于gin+vue搭建的后台管理系统框架,集成jwt鉴权,权限管理,动态路由,分页封装,多点登录拦截,资源权限,上传下载,代码生成器,表单生成器,通用工作流等基础功能,五分钟一套CURD前后端代码,目前已支持VUE3,欢迎issue和pr~|8.0k|Go|05/28|
|14|[crawlab-team/crawlab](https://github.com/crawlab-team/crawlab)|Distributed web crawler admin platform for spiders management regardless of languages and frameworks. 分布式爬虫管理平台,支持任何语言和框架|7.8k|Go|05/27|
|15|[polaris1119/The-Golang-Standard-Library-by-Example](https://github.com/polaris1119/The-Golang-Standard-Library-by-Example)|Golang标准库。对于程序员而言,标准库与语言本身同样重要,它好比一个百宝箱,能为各种常见的任务提供完美的解决方案。以示例驱动的方式讲解Golang的标准库。|7.8k|Go|03/16|
|16|[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动手写/从零实现系列|7.4k|Go|05/26|
|17|[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! 𝐉𝐚𝐯𝐚有𝐝𝐮𝐛𝐛𝐨, 𝐆𝐨𝐥𝐚𝐧𝐠有𝐫𝐩𝐜𝐱!|5.7k|Go|05/25|
|18|[panjf2000/ants](https://github.com/panjf2000/ants)|🐜🐜🐜 ants is a high-performance and low-cost goroutine pool in Go, inspired by fasthttp./ ants 是一个高性能且低损耗的 goroutine 池。|5.7k|Go|05/28|
|19|[senghoo/golang-design-pattern](https://github.com/senghoo/golang-design-pattern)|设计模式 Golang实现-《研磨设计模式》读书笔记|5.0k|Go|05/12|
|20|[mindoc-org/mindoc](https://github.com/mindoc-org/mindoc)|Golang实现的基于beego框架的接口在线文档管理系统|4.9k|Go|04/30|
|21|[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拉模式转发、 ...|4.8k|Go|05/27|
|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 网络框架。|4.6k|Go|05/28|
|23|[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|4.0k|Go|05/28|
|24|[Tencent/bk-cmdb](https://github.com/Tencent/bk-cmdb)|蓝鲸智云配置平台(BlueKing CMDB)|4.0k|Go|05/28|
|25|[tophubs/TopList](https://github.com/tophubs/TopList)|今日热榜,一个获取各大热门网站热门头条的聚合网站,使用Go语言编写,多协程异步快速抓取信息,预览:https://mo.fish|4.0k|Go|05/06|
|26|[ffhelicopter/Go42](https://github.com/ffhelicopter/Go42)|《Go语言四十二章经》详细讲述Go语言规范与语法细节及开发中常见的误区,通过研读标准库等经典代码设计模式,启发读者深刻理解Go语言的核心思维,进入Go语言开发的更高阶段。|3.8k|Go|09/03|
|27|[fanux/sealos](https://github.com/fanux/sealos)|一条命令离线安装高可用kubernetes,快:3min, 轻:700M ,稳:生产级可用,99年证书0依赖|3.8k|Go|05/25|
|28|[chaosblade-io/chaosblade](https://github.com/chaosblade-io/chaosblade)|An easy to use and powerful chaos engineering experiment toolkit.(阿里巴巴开源的一款简单易用、功能强大的混沌实验注入工具)|3.8k|Go|05/25|
|29|[gwuhaolin/lightsocks](https://github.com/gwuhaolin/lightsocks)|⚡️一个轻巧的网络混淆代理🌏|3.6k|Go|05/18|
|30|[aceld/zinx](https://github.com/aceld/zinx)|基于Golang轻量级TCP并发服务器框架|3.5k|Go|05/28|
|31|[ouqiang/gocron](https://github.com/ouqiang/gocron)|定时任务管理系统|3.5k|Go|05/27|
|32|[KubeOperator/KubeOperator](https://github.com/KubeOperator/KubeOperator)|KubeOperator 是一个开源的轻量级 Kubernetes 发行版,专注于帮助企业规划、部署和运营生产级别的 K8s 集群。|3.5k|Go|05/28|
|33|[lanyulei/ferry](https://github.com/lanyulei/ferry)|本系统是集工单统计、任务钩子、权限管理、灵活配置流程与模版等等于一身的开源工单系统,当然也可以称之为工作流引擎。 致力于减少跨部门之间的沟通,自动任务的执行,提升工作效率与工作质量,减少不必要的工作量与人为出错率。|3.4k|Go|05/20|
|34|[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.3k|Go|05/28|
|35|[chai2010/go-ast-book](https://github.com/chai2010/go-ast-book)|:books: 《Go语法树入门——开启自制编程语言和编译器之旅》(开源免费图书/Go语言进阶/掌握抽象语法树/Go语言AST/凹语言)|3.3k|Go|05/19|
|36|[moonD4rk/HackBrowserData](https://github.com/moonD4rk/HackBrowserData)|Decrypt passwords/cookies/history/bookmarks from the browser. 一款可全平台运行的浏览器数据导出解密工具。|3.1k|Go|05/18|
|37|[overnote/over-golang](https://github.com/overnote/over-golang)|Golang相关:[审稿进度80%]Go语法、Go并发思想、Go与web开发、Go微服务设施等|3.0k|Go|05/07|
|38|[douyu/jupiter](https://github.com/douyu/jupiter)|Jupiter是斗鱼开源的面向服务治理的Golang微服务框架|2.9k|Go|05/06|
|39|[360EntSecGroup-Skylar/ElasticHD](https://github.com/360EntSecGroup-Skylar/ElasticHD)|Elasticsearch 可视化DashBoard, 支持Es监控、实时搜索,Index template快捷替换修改,索引列表信息查看, SQL converts to DSL等 |2.8k|Go|03/08|
|40|[golang-design/Go-Questions](https://github.com/golang-design/Go-Questions)|📖 从问题切入,串连 Go 语言相关的所有知识,融会贯通。 https://golang.design/go-questions|2.7k|Go|04/15|
|41|[silenceper/wechat](https://github.com/silenceper/wechat)|WeChat SDK for Go (微信SDK:简单、易用)|2.7k|Go|05/28|
|42|[goodrain/rainbond](https://github.com/goodrain/rainbond)|Cloud-native and easy-to-use application management platform 云原生且易用的应用管理平台|2.7k|Go|05/28|
|43|[hantmac/Mastering_Go_ZH_CN](https://github.com/hantmac/Mastering_Go_ZH_CN)|《Mastering GO》中文译本,《玩转 GO》。|2.7k|Go|01/29|
|44|[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.6k|Go|05/28|
|45|[unknwon/go-web-foundation](https://github.com/unknwon/go-web-foundation)|《Go Web 基础》是一套针对 Google 出品的 Go 语言的视频语音教程,主要面向完成《Go 编程基础》教程后希望进一步了解有关 Go Web 开发的学习者。|2.6k|Go|10/17|
|46|[0xDkd/auxpi](https://github.com/0xDkd/auxpi)|🍭 集合多家 API 的新一代图床|2.5k|Go|02/19|
|47|[eolinker/goku](https://github.com/eolinker/goku)|A Powerful HTTP API Gateway in pure golang!Goku API Gateway (中文名:悟空 API 网关)是一个基于 Golang开发的微服务网关,能够实现高性能 HTTP API 转发、服务编排、多租户管理、API 访问权限控制等目的,拥有强大的自定义插件系统可以自行扩展,并且提供友好的图形化配置界面,能够快速帮助企业进行 API 服务治理、提高 API 服务的稳定性和安全性。|2.5k|Go|05/20|
|48|[feixiao/Distributed-Systems](https://github.com/feixiao/Distributed-Systems)|MIT课程《Distributed Systems 》学习和翻译|2.5k|Go|02/08|
|49|[gopl-zh/gopl-zh.github.com](https://github.com/gopl-zh/gopl-zh.github.com)|Go语言圣经中文版(只接收PR, Issue请提交到golang-china/gopl-zh)|2.3k|Go|05/05|
|50|[Jrohy/trojan](https://github.com/Jrohy/trojan)|trojan多用户管理部署程序, 支持web页面管理|2.3k|Go|05/28|
|51|[TruthHun/BookStack](https://github.com/TruthHun/BookStack)|BookStack,基于MinDoc,使用Beego开发的在线文档管理系统,功能类似Gitbook和看云。|2.3k|Go|04/28|
|52|[chanxuehong/wechat](https://github.com/chanxuehong/wechat)|weixin/wechat/微信公众平台/微信企业号/微信商户平台/微信支付 go/golang sdk |2.3k|Go|01/28|
|53|[eyebluecn/tank](https://github.com/eyebluecn/tank)|《蓝眼云盘》(Eyeblue Cloud Storage)|2.2k|Go|01/02|
|54|[geektutu/high-performance-go](https://github.com/geektutu/high-performance-go)|high performance coding with golang(Go 语言高性能编程,Go 语言陷阱,Gotchas,Traps)|2.2k|Go|04/19|
|55|[liangdas/mqant](https://github.com/liangdas/mqant)|mqant是一款基于Golang语言的简洁,高效,高性能的分布式微服务框架|2.1k|Go|05/28|
|56|[shen100/wemall](https://github.com/shen100/wemall)|基于react, node.js, go开发的微商城(含微信小程序)|2.1k|Go|04/21|
|57|[studygolang/studygolang](https://github.com/studygolang/studygolang)|Go 语言中文网 Golang中文社区 Go语言学习园地 源码|2.0k|Go|04/22|
|58|[phachon/mm-wiki](https://github.com/phachon/mm-wiki)|MM-Wiki 一个轻量级的企业知识分享与团队协同软件,可用于快速构建企业 Wiki 和团队知识分享平台。部署方便,使用简单,帮助团队构建一个信息共享、文档管理的协作环境。|2.0k|Go|04/19|
|59|[Mrs4s/go-cqhttp](https://github.com/Mrs4s/go-cqhttp)|cqhttp的golang实现,轻量、原生跨平台.|2.0k|Go|05/29|
|60|[dreamans/syncd](https://github.com/dreamans/syncd)|syncd是一款开源的代码部署工具,它具有简单、高效、易用等特点,可以提高团队的工作效率.|1.9k|Go|05/27|
|61|[ysrc/yulong-hids-archived](https://github.com/ysrc/yulong-hids-archived)|一款由 YSRC 开源的主机入侵检测系统|1.9k|Go|06/29|
|62|[wxbool/video-srt-windows](https://github.com/wxbool/video-srt-windows)|这是一个可以识别视频语音自动生成字幕SRT文件的开源 Windows-GUI 软件工具。|1.8k|Go|03/01|
|63|[printfcoder/stack-rpc-tutorials](https://github.com/printfcoder/stack-rpc-tutorials)|Stack-RPC 中文示例、教程、资料,源码解读|1.7k|Go|02/02|
|64|[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 的使用 等等。|1.7k|Go|05/22|
|65|[bilibili/overlord](https://github.com/bilibili/overlord)|Overlord是哔哩哔哩基于Go语言编写的memcache和redis&cluster的代理及集群管理功能,致力于提供自动化高可用的缓存服务解决方案。|1.7k|Go|05/27|
|66|[alibaba/RedisShake](https://github.com/alibaba/RedisShake)|Redis-shake is a tool for synchronizing data between two redis databases. Redis-shake是一个用于在两个redis之间同步数据的工具,满足用户非常灵活的同步、迁移需求。|1.7k|Go|12/25|
|67|[lifei6671/interview-go](https://github.com/lifei6671/interview-go)|golang面试题集合|1.7k|Go|05/23|
|68|[shadow1ng/fscan](https://github.com/shadow1ng/fscan)|一款内网综合扫描工具,方便一键自动化、全方位漏扫扫描。|1.6k|Go|05/28|
|69|[chai2010/go2-book](https://github.com/chai2010/go2-book)|:books: 《Go2编程指南》开源图书,重点讲解Go2新特性,以及Go1教程中较少涉及的特性|1.6k|Go|11/09|
|70|[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.6k|Go|05/07|
|71|[go-ego/gse](https://github.com/go-ego/gse)|Go efficient text segmentation and NLP; support english, chinese, japanese and other. Go 语言高性能分词|1.6k|Go|05/07|
|72|[yanyiwu/gojieba](https://github.com/yanyiwu/gojieba)|"结巴"中文分词的Golang版本|1.5k|Go|12/28|
|73|[alberliu/gim](https://github.com/alberliu/gim)|golang写的IM服务器(服务组件形式)|1.5k|Go|05/16|
|74|[xormplus/xorm](https://github.com/xormplus/xorm)|xorm是一个简单而强大的Go语言ORM库,通过它可以使数据库操作非常简便。本库是基于原版xorm的定制增强版本,为xorm提供类似ibatis的配置文件及动态SQL支持,支持AcitveRecord操作|1.4k|Go|05/12|
|75|[davyxu/tabtoy](https://github.com/davyxu/tabtoy)|高性能表格数据导出器|1.3k|Go|04/02|
|76|[40t/go-sniffer](https://github.com/40t/go-sniffer)|🔎Sniffing and parsing mysql,redis,http,mongodb etc protocol. 抓包截取项目中的数据库请求并解析成相应的语句。|1.3k|Go|02/03|
|77|[yoki123/ncmdump](https://github.com/yoki123/ncmdump)|netease cloud music copyright protection file dump(golang版本网易云音乐ncm文件格式转换)|1.3k|Go|12/28|
|78|[mlogclub/bbs-go](https://github.com/mlogclub/bbs-go)|基于Golang的开源社区系统。|1.3k|Go|05/09|
|79|[linclin/gopub](https://github.com/linclin/gopub)|vue.js(element框架)+golang(beego框架)开发的运维发布系统,支持git,jenkins版本发布,go ssh,BT两种文件传输方式选择,支持部署前准备任务和部署后任务钩子函数|1.3k|Go|03/26|
|80|[opensec-cn/kunpeng](https://github.com/opensec-cn/kunpeng)|kunpeng是一个Golang编写的开源POC框架/库,以动态链接库的形式提供各种语言调用,通过此项目可快速开发漏洞检测类的系统。|1.3k|Go|11/20|
|81|[xianlubird/mydocker](https://github.com/xianlubird/mydocker)|<<自己动手写docker>> 源码|1.3k|Go|12/02|
|82|[RainbowMango/GoExpertProgramming](https://github.com/RainbowMango/GoExpertProgramming)|《Go专家编程》Go语言快速入门,轻松进阶!|1.3k|Go|04/23|
|83|[8treenet/freedom](https://github.com/8treenet/freedom)|Freedom是一个基于六边形架构的框架,可以支撑充血的领域模型范式。|1.2k|Go|05/28|
|84|[yangwenmai/learning-golang](https://github.com/yangwenmai/learning-golang)|Go 学习之路:Go 开发者博客、Go 微信公众号、Go 学习资料(文档、书籍、视频)|1.2k|Go|04/20|
|85|[link1st/go-stress-testing](https://github.com/link1st/go-stress-testing)|go 实现的压测工具,ab、locust、Jmeter压测工具介绍【单台机器100w连接压测实战】|1.2k|Go|04/28|
|86|[george518/PPGo_Job](https://github.com/george518/PPGo_Job)|PPGo_Job是一款可视化的、多人多权限的、一任务多机执行的定时任务管理系统,采用golang开发,安装方便,资源消耗少,支持大并发,可同时管理多台服务器上的定时任务。|1.2k|Go|05/19|
|87|[henson/proxypool](https://github.com/henson/proxypool)|Golang实现的IP代理池|1.2k|Go|04/08|
|88|[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|04/14|
|89|[zxh0/jvmgo-book](https://github.com/zxh0/jvmgo-book)|《自己动手写Java虚拟机》随书源代码|1.2k|Go|04/07|
|90|[geph-official/geph2](https://github.com/geph-official/geph2)|(ARCHIVED) Geph (迷霧通) is a modular Internet censorship circumvention system designed specifically to deal with national filtering.|1.2k|Go|02/20|
|91|[iGoogle-ink/gopay](https://github.com/iGoogle-ink/gopay)|QQ、微信(WeChat)、支付宝(AliPay)的Go版本SDK。【微信支付V3已支持,推荐使用微信V3接口】|1.2k|Go|05/25|
|92|[gobyexample-cn/gobyexample](https://github.com/gobyexample-cn/gobyexample)|Go by Example 通过例子学 Golang|1.1k|Go|05/19|
|93|[smartwalle/alipay](https://github.com/smartwalle/alipay)|支付宝 AliPay SDK for Go, 集成简单,功能完善,持续更新,支持公钥证书和普通公钥进行签名和验签。|1.1k|Go|05/24|
|94|[xinliangnote/Go](https://github.com/xinliangnote/Go)|【Go 从入门到实战】学习笔记,从零开始学 Go、Gin 框架,基本语法包括 26 个Demo,Gin 框架包括:Gin 自定义路由配置、Gin 使用 Logrus 进行日志记录、Gin 数据绑定和验证、Gin 自定义错误处理、Go gRPC Hello World... 持续更新中... |1.1k|Go|04/10|
|95|[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.1k|Go|05/04|
|96|[smallnest/dive-to-gosync-workshop](https://github.com/smallnest/dive-to-gosync-workshop)|深入Go并发编程研讨课|1.1k|Go|04/22|
|97|[knownsec/ksubdomain](https://github.com/knownsec/ksubdomain)|无状态子域名爆破工具|1.1k|Go|04/09|
|98|[iwannay/jiacrontab](https://github.com/iwannay/jiacrontab)|简单可信赖的任务管理工具|1.1k|Go|04/24|
|99|[xluohome/phonedata](https://github.com/xluohome/phonedata)|手机号码归属地信息库、手机号归属地查询 phone.dat 最后更新:2020年04月 |1.1k|Go|04/23|
|100|[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.1k|Go|05/27|
|101|[jeansfish/RFC6749.zh-cn](https://github.com/jeansfish/RFC6749.zh-cn)|A translation of simplified chinese for RFC 6749-The OAuth 2.0 Authorization Framework. RFC 6749 - OAuth 2.0授权框架简体中文翻译。|1.1k|Go|10/20|
|102|[link1st/gowebsocket](https://github.com/link1st/gowebsocket)|golang基于websocket单台机器支持百万连接分布式聊天(IM)系统|1.1k|Go|04/20|
|103|[gourouting/singo](https://github.com/gourouting/singo)|Gin+Gorm开发Golang API快速开发脚手架|1.0k|Go|05/20|
|104|[go-kiss/sniper](https://github.com/go-kiss/sniper)|轻量级 go 业务框架。|1.0k|Go|01/08|
|105|[darjun/go-daily-lib](https://github.com/darjun/go-daily-lib)|Go 每日一库|1.0k|Go|05/25|
|106|[pibigstar/go-demo](https://github.com/pibigstar/go-demo)|Go语言实例教程从入门到进阶,包括基础库使用、设计模式、面试易错点、工具类、对接第三方等|995|Go|05/03|
|107|[3xxx/engineercms](https://github.com/3xxx/engineercms)|工程师知识管理系统:基于golang go语言(beego框架)。每个行业都有自己的知识管理系统,engineercms旨在为土木工程师们打造一款适用的基于web的知识管理系统。它既可以用于管理个人的项目资料,也可以用于管理项目团队资料;它既可以运行于个人电脑,也可以放到服务器上。支持提取码分享文件,onlyoffice实时文档协作,直接在线编辑dwg文件、office文档,在线利用mindoc创作你的书籍,阅览PDF文件。通用的业务流程设置。手机端配套小程序,微信搜索“珠三角设代”或“青少儿书画”即可呼出小程序。|994|Go|04/09|
|108|[Go-zh/tour](https://github.com/Go-zh/tour)|Go 语言官方教程中文版|990|Go|01/10|
|109|[mozillazg/go-pinyin](https://github.com/mozillazg/go-pinyin)|汉字转拼音|953|Go|05/13|
|110|[hanchuanchuan/goInception](https://github.com/hanchuanchuan/goInception)|一个集审核、执行、备份及生成回滚语句于一身的MySQL运维工具|948|Go|05/24|
|111|[inbug-team/InScan](https://github.com/inbug-team/InScan)|边界打点后的自动化渗透工具|925|Go|05/12|
|112|[chai2010/awesome-go-zh](https://github.com/chai2010/awesome-go-zh)|:books: Go资源精选中文版(含中文图书大全)|904|Go|08/15|
|113|[thinkeridea/go-extend](https://github.com/thinkeridea/go-extend)|go语言扩展包,收集一些常用的操作函数,辅助更快的完成开发工作,并减少重复代码|885|Go|02/23|
|114|[bitepeng/b0pass](https://github.com/bitepeng/b0pass)|百灵快传:基于Go语言的高性能 "手机电脑超大文件传输神器"、"局域网共享文件服务器"。LAN large file transfer tool。|882|Go|01/07|
|115|[wuYin/blog](https://github.com/wuYin/blog)|个人博客|882|Go|12/18|
|116|[naiba/nezha](https://github.com/naiba/nezha)|:trollface: 哪吒监控 一站式轻监控轻运维系统。支持系统状态、HTTP、TCP、Ping 监控报警,命令批量执行和计划任务。|874|Go|05/28|
|117|[bobohume/gonet](https://github.com/bobohume/gonet)|go分布式服务器,基于内存mmo|863|Go|05/25|
|118|[saltbo/zpan](https://github.com/saltbo/zpan)|A self-hosted cloud disk base on the cloud storage./ 一个基于云存储的网盘系统,用于自建私人网盘或企业网盘。|855|Go|02/24|
|119|[medivhzhan/miniapp](https://github.com/medivhzhan/miniapp)|微信小程序服务端 SDK (for Golang)|850|Go|03/12|
|120|[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 环境的色彩渲染|840|Go|04/10|
|121|[go-spring/go-spring](https://github.com/go-spring/go-spring)|基于 IoC 的 Go 后端一站式开发框架 🚀|827|Go|05/25|
|122|[GameXG/TcpRoute2](https://github.com/GameXG/TcpRoute2)|TcpRoute , TCP 层的路由器。对于 TCP 连接自动从多个线路(电信、联通、移动)、多个域名解析结果中选择最优线路。|819|Go|05/23|
|123|[Adminisme/ServerScan](https://github.com/Adminisme/ServerScan)|ServerScan一款使用Golang开发的高并发网络扫描、服务探测工具。|811|Go|02/23|
|124|[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|801|Go|05/20|
|125|[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自动证书)。|799|Go|05/17|
|126|[guonaihong/gout](https://github.com/guonaihong/gout)|gout to become the Swiss Army Knife of the http client @^^@---> gout 是http client领域的瑞士军刀,小巧,强大,犀利。具体用法可看文档,如使用迷惑或者API用得不爽都可提issues|796|Go|05/24|
|127|[caixw/apidoc](https://github.com/caixw/apidoc)|RESTful API 文档生成工具,支持 Go、Java、Swift、JavaScript、Rust、PHP、Python、Typescript、Kotlin 和 Ruby 等大部分语言。|790|Go|05/01|
|128|[sevenelevenlee/go-patterns](https://github.com/sevenelevenlee/go-patterns)|Golang 设计模式|770|Go|06/18|
|129|[brokercap/Bifrost](https://github.com/brokercap/Bifrost)|Bifrost ---- 面向生产环境的 MySQL 同步到Redis,MongoDB,ClickHouse,MySQL等服务的异构中间件|766|Go|05/07|
|130|[indes/flowerss-bot](https://github.com/indes/flowerss-bot)|A telegram bot for rss reader. 一个支持应用内阅读的 Telegram RSS Bot。|749|Go|05/27|
|131|[tjfoc/gmsm](https://github.com/tjfoc/gmsm)|GM SM2/3/4 library based on Golang (基于Go语言的国密SM2/SM3/SM4算法库)|740|Go|05/18|
|132|[gopcp/example.v2](https://github.com/gopcp/example.v2)|An example project for book 'Go Programming & Concurrency in Practice, 2nd edition' (《Go并发编程实战》第2版).|738|Go|10/11|
|133|[zu1k/proxypool](https://github.com/zu1k/proxypool)|自动抓取tg频道、订阅地址、公开互联网上的ss、ssr、vmess、trojan节点信息,聚合去重后提供节点列表,每15分钟更新|735|Go|05/27|
|134|[xiaobaiTech/golangFamily](https://github.com/xiaobaiTech/golangFamily)|【超全golang面试题合集+golang学习指南+golang知识图谱+入门成长路线】 一份涵盖大部分golang程序员所需要掌握的核心知识。常用第三方库(mysql,mq,es,redis等)+机器学习库+算法库+游戏库+开源框架+自然语言处理nlp库+网络库+视频库+微服务框架+视频教程+音频音乐库+图形图片库+物联网库+地理位置信息+嵌入式脚本库+编译器库+数据库+金融库+电子邮件库+电子书籍+分词+数据结构+设计模式+去html tag标签等+go学习+go面试|730|Go|05/14|
|135|[gudegg/yunSpider](https://github.com/gudegg/yunSpider)|百度云网盘爬虫|729|Go|04/05|
|136|[ixre/go2o](https://github.com/ixre/go2o)|基于DDD的o2o的业务模型及基础, 使用Golang+gRPC/Thrift实现|720|Go|05/15|
|137|[1024casts/snake](https://github.com/1024casts/snake)|🐍 一款小巧的基于Go构建的开发框架,可以快速构建API服务或者Web网站进行业务开发,遵循SOLID设计原则|695|Go|05/28|
|138|[hwholiday/learning_tools](https://github.com/hwholiday/learning_tools)|Go 学习、Go 进阶、Go 实用工具类、Go-kit ,Go-Micro 微服务实践、Go 推送|693|Go|05/10|
|139|[itcloudy/ERP](https://github.com/itcloudy/ERP)|基于beego的进销存系统|676|Go|05/09|
|140|[didi/sharingan](https://github.com/didi/sharingan)|Sharingan(写轮眼)是一个基于golang的流量录制回放工具,适合项目重构、回归测试等。|674|Go|01/25|
|141|[TeaWeb/build](https://github.com/TeaWeb/build)| TeaWeb-可视化的Web代理服务。DEMO: http://teaos.cn:7777|671|Go|12/11|
|142|[Xhofe/alist](https://github.com/Xhofe/alist)|一个阿里云盘列表程序|660|Go|05/26|
|143|[netxfly/sec-dev-in-action-src](https://github.com/netxfly/sec-dev-in-action-src)|《白帽子安全开发实战》配套代码|638|Go|03/15|
|144|[liushuchun/wechatcmd](https://github.com/liushuchun/wechatcmd)|提供微信终端版本、微信命令行版本聊天功能、微信机器人|632|Go|05/09|
|145|[cnbattle/douyin](https://github.com/cnbattle/douyin)|抖音推荐列表视频爬虫方案,基于app(虚拟机或真机) 相关技术 golang adb|629|Go|04/17|
|146|[EndlessCheng/mahjong-helper](https://github.com/EndlessCheng/mahjong-helper)|日本麻将助手:牌效+防守+记牌(支持雀魂、天凤)|609|Go|03/17|
|147|[baiyutang/meetup](https://github.com/baiyutang/meetup)|【❤️ 互联网最全大厂技术分享PPT 👍🏻 持续更新中!】🍻各大技术交流会、活动资料汇总 ,如 👉QCon👉全球运维技术大会 👉 GDG 👉 全球技术领导力峰会👉大前端大会👉架构师峰会👉敏捷开发DevOps👉OpenResty👉Elastic,欢迎 PR / Issues|602|Go|05/23|
|148|[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 分析以及自动化重构等。|599|Go|05/11|
|149|[zu1k/nali](https://github.com/zu1k/nali)|An offline tool for querying IP geographic information and CDN provider.一个查询IP地理信息和CDN服务提供商的离线终端工具.|582|Go|05/28|
|150|[awake1t/linglong](https://github.com/awake1t/linglong)|一款甲方资产巡航扫描系统。系统定位是发现资产,进行端口爆破。帮助企业更快发现弱口令问题。主要功能包括: 资产探测、端口爆破、定时任务、管理后台识别、报表展示|574|Go|04/23|
|151|[hantmac/Mastering_Go_Second_Edition_Zh_CN](https://github.com/hantmac/Mastering_Go_Second_Edition_Zh_CN)|Mastering Go 第二版中文版来袭!|574|Go|04/28|
|152|[hr3lxphr6j/bililive-go](https://github.com/hr3lxphr6j/bililive-go)|一个直播录制工具|569|Go|05/28|
|153|[unknwon/building-web-applications-in-go](https://github.com/unknwon/building-web-applications-in-go)|Go 语言 Web 应用开发系列教程,从新手到双手残废|568|Go|08/16|
|154|[33cn/chain33](https://github.com/33cn/chain33)|高度模块化, 遵循 KISS原则的区块链开发框架|567|Go|05/27|
|155|[zsdevX/DarkEye](https://github.com/zsdevX/DarkEye)|渗透测试情报收集工具|565|Go|05/27|
|156|[snowlyg/IrisAdminApi](https://github.com/snowlyg/IrisAdminApi)|iris 框架的后台api项目|562|Go|05/14|
|157|[taoshihan1991/go-fly](https://github.com/taoshihan1991/go-fly)|开源客服系统GO语言开发GO-FLY,免费客服系统/open source live customer chat by golang|555|Go|05/18|
|158|[labulaka521/crocodile](https://github.com/labulaka521/crocodile)|Distributed Task Scheduling System 分布式定时任务调度平台|553|Go|05/28|
|159|[childe/gohangout](https://github.com/childe/gohangout)|golang版本的hangout, 希望能省些内存. 使用了自己写的Kafka lib .. 虚. 不过我们在生产环境已经使用近1年, kafka 版本从0.9.0.1到2.0都在使用, 目前情况稳定. 吞吐量在每天2000亿条以上.|553|Go|04/29|
|160|[Golangltd/codeclass](https://github.com/Golangltd/codeclass)|Golang语言社区--腾讯课堂、网易云课堂、字节教育课程PPT及代码|547|Go|06/24|
|161|[zxh0/luago-book](https://github.com/zxh0/luago-book)|《自己动手实现Lua》随书源代码|546|Go|05/23|
|162|[go-crawler/go_jobs](https://github.com/go-crawler/go_jobs)|带你了解一下Golang的市场行情|536|Go|05/17|
|163|[meloalright/guora](https://github.com/meloalright/guora)|🖖🏻 A self-hosted Quora like web application written in Go 基于 Golang 类似知乎的私有部署问答应用 包含问答、评论、点赞、管理后台等功能|533|Go|11/28|
|164|[jiajunhuang/blog](https://github.com/jiajunhuang/blog)|Jiajun的编程随想|533|Go|05/28|
|165|[kplcloud/kplcloud](https://github.com/kplcloud/kplcloud)|基于Kubernetes的PaaS平台|533|Go|03/26|
|166|[DOUBLE-Baller/momo](https://github.com/DOUBLE-Baller/momo)|php直播go直播,短视频,直播带货,仿比心,猎游,tt语音聊天,美女约玩,陪玩系统源码开黑,约玩源码.|529|Go|04/25|
|167|[hidu/mysql-schema-sync](https://github.com/hidu/mysql-schema-sync)|mysql表结构自动同步工具(目前只支持字段、索引的同步,分区等高级功能暂不支持)|528|Go|05/25|
|168|[duolatech/xapimanager](https://github.com/duolatech/xapimanager)|XAPI MANAGER -专业实用的开源接口管理平台,为程序开发者提供一个灵活,方便,快捷的API管理工具,让API管理变的更加清晰、明朗。如果你觉得xApi对你有用的话,别忘了给我们点个赞哦^_^ !|528|Go|04/20|
|169|[Golangltd/LollipopGo](https://github.com/Golangltd/LollipopGo)|稳定分支2.9.X 版本已更新,由【Golang语言游戏服务器】维护,全球服游戏服务器及区域服框架,目前协议支持websocket、http、KCP、TCP及RPC,采用状态同步(帧同步内测),愿景:打造MMO多人竞技游戏框架! 功能持续更新中... ...|524|Go|02/08|
|170|[objcoding/wxpay](https://github.com/objcoding/wxpay)|🔥微信支付(WeChat Pay) SDK for Golang|498|Go|08/11|
|171|[tiger1103/gfast](https://github.com/tiger1103/gfast)|基于GF(Go Frame)的后台管理系统|495|Go|05/07|
|172|[opentrx/seata-golang](https://github.com/opentrx/seata-golang)|A Distributed Transaction Framework, like SEATA, support TCC mode and AT mode. DingTalk: seata-golang 社区|493|Go|05/28|
|173|[jeessy2/ddns-go](https://github.com/jeessy2/ddns-go)|简单好用的DDNS。自动更新域名解析到公网IP(支持阿里云、腾讯云dnspod、Cloudflare、华为云)|493|Go|04/22|
|174|[go-workflow/go-workflow](https://github.com/go-workflow/go-workflow)|go版本极简工作流引擎|489|Go|04/12|
|175|[didi/falcon-log-agent](https://github.com/didi/falcon-log-agent)|用于监控系统的日志采集agent,可无缝对接open-falcon|487|Go|05/13|
|176|[Mrs4s/MiraiGo](https://github.com/Mrs4s/MiraiGo)|qq协议的golang实现, 移植于mirai|483|Go|05/25|
|177|[admpub/nging](https://github.com/admpub/nging)|漂亮的Go语言通用后台管理框架,包含计划任务、MySQL管理、Redis管理、FTP管理、SSH管理、服务器管理、Caddy配置、云存储管理等功能。|482|Go|05/28|
|178|[alibaba/RedisFullCheck](https://github.com/alibaba/RedisFullCheck)|redis-full-check is used to compare whether two redis have the same data. redis-full-check用于比较2个redis数据是否一致,支持单节点、主从、集群版、以及多种proxy,支持同构以及异构对比,redis的版本支持2.x-5.x。|479|Go|06/15|
|179|[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 |475|Go|04/16|
|180|[wiatingpub/MTBSystem](https://github.com/wiatingpub/MTBSystem)|使用go-micro微服务实现的在线电影院订票系统|469|Go|06/14|
|181|[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。|455|Go|03/27|
|182|[micro-plat/hydra](https://github.com/micro-plat/hydra)|后端一站式微服务框架,提供API、web、websocket,RPC、任务调度、消息消费服务器|452|Go|05/27|
|183|[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|442|Go|05/26|
|184|[hzwy23/hauth](https://github.com/hzwy23/hauth)|hauth项目,不是一个前端or后台框架! 而是一个集成权限管理,菜单资源管理,域管理,角色管理,用户管理,组织架构管理,操作日志管理等等的快速开发平台. hauth是一个基础产品,在这个基础产品上,根据业务需求,快速的开发应用服务.账号:admin,密码:123456|439|Go|12/30|
|185|[whitehatnote/BlueShell](https://github.com/whitehatnote/BlueShell)|红蓝对抗跨平台远控工具|431|Go|01/19|
|186|[sohaha/zlsgo](https://github.com/sohaha/zlsgo)|简单易用、足够轻量、性能好的 Golang 库 - Easy to use, light enough, good performance Golang library|427|Go|05/06|
|187|[zxysilent/blog](https://github.com/zxysilent/blog)|一个go、echo、vue 开发的快速、简洁、美观、前后端分离的个人博客系统(blog)、也可方便二次开发为CMS(内容管理系统)和各种企业门户网站(正在更新权限管理)|426|Go|05/19|
|188|[Echosong/beego_blog](https://github.com/Echosong/beego_blog)| beego+layui go入门开发 简洁美观的个人博客系统|416|Go|05/05|
|189|[vidar-team/Cardinal](https://github.com/vidar-team/Cardinal)|CTF🚩 AWD (Attack with Defense) 线下赛平台 / AWD platform - 欢迎 Star~ ✨|414|Go|05/26|
|190|[qjfoidnh/BaiduPCS-Go](https://github.com/qjfoidnh/BaiduPCS-Go)|iikira/BaiduPCS-Go原版基础上集成了分享链接/秒传链接转存功能|407|Go|05/21|
|191|[Tencent/bk-bcs](https://github.com/Tencent/bk-bcs)|蓝鲸智云容器管理平台(BlueKing Container Service)|407|Go|05/28|
|192|[wumansgy/GoAndBlockChainStudy](https://github.com/wumansgy/GoAndBlockChainStudy)|go and blockchain study note,欢迎各位志同道合的朋友一起完善,让更多的go或者区块链开发者能够有一份不错的学习资料|406|Go|06/10|
|193|[gookit/validate](https://github.com/gookit/validate)|⚔ Go package for data validation and filtering. support Map, Struct, Form data. Go通用的数据验证与过滤库,使用简单,内置大部分常用验证、过滤器,支持自定义验证器、自定义消息、字段翻译。|406|Go|05/27|
|194|[zboya/golang_runtime_reading](https://github.com/zboya/golang_runtime_reading)|golang 1.10.2 runtime code reading - golang runtime源码分析。只有思考过,你才会印象深刻。|406|Go|06/07|
|195|[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|403|Go|09/26|
|196|[Mikubill/transfer](https://github.com/Mikubill/transfer)|🍭 集合多个API的大文件传输工具.|396|Go|05/28|
|197|[Monibuca/engine](https://github.com/Monibuca/engine)|Monibuca 核心引擎,包含流媒体核心转发逻辑,需要配合功能插件一起组合运行|389|Go|05/17|
|198|[stack-labs/starter-kit](https://github.com/stack-labs/starter-kit)|stack-rpc 快速开发包|384|Go|02/20|
|199|[baidu/EasyFaaS](https://github.com/baidu/EasyFaaS)|EasyFaaS是一个依赖轻、适配性强、资源占用少、无状态且高性能的函数计算服务引擎|383|Go|04/26|
|200|[iissy/goweb](https://github.com/iissy/goweb)|Golang写的程序员网址导航|378|Go|05/06|
⬆ [回到目录](#目录)
<br/>
## PHP
|#|Repository|Description|Stars|Language|Updated|
|:-|:-|:-|:-|:-|:-|
|1|[easychen/howto-make-more-money](https://github.com/easychen/howto-make-more-money)|程序员如何优雅的挣零花钱,2.0版,升级为小书了。Most of this not work outside China , so no English translate|14.6k|PHP|10/17|
|2|[w7corp/easywechat](https://github.com/w7corp/easywechat)|:package: 一个 PHP 微信 SDK|9.5k|PHP|05/26|
|3|[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|7.8k|PHP|05/27|
|4|[top-think/think](https://github.com/top-think/think)|ThinkPHP Framework ——十年匠心的高性能PHP框架|7.7k|PHP|01/25|