forked from GrowingGit/GitHub-Chinese-Top-Charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.md
2201 lines (2138 loc) · 494 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 对项目进行排序;
#### 榜单更新频率
- 每周更新一次,最近更新时间为7月8日;
#### 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、计算机操作系统、计算机网络、系统设计、Java、Python、C++ | 105.6k | Java | 05/29 |
| 2 | [jackfrued/Python-100-Days](https://github.com/jackfrued/Python-100-Days) | Python - 100天从新手到大师 | 89.2k | Jupyter Notebook | 07/07 |
| 3 | [Snailclimb/JavaGuide](https://github.com/Snailclimb/JavaGuide) | 「Java学习+面试指南」一份涵盖大部分Java程序员所需要掌握的核心知识。 | 83.5k | Java | 07/08 |
| 4 | [justjavac/free-programming-books-zh_CN](https://github.com/justjavac/free-programming-books-zh_CN) | :books: 免费的计算机编程类中文书籍,欢迎投稿 | 68.1k | - | 05/19 |
| 5 | [MisterBooo/LeetCodeAnimation](https://github.com/MisterBooo/LeetCodeAnimation) | Demonstrate all the questions on LeetCode in the form of animation.(用动画的形式呈现解LeetCode题目的思路) | 56.5k | Java | 06/28 |
| 6 | [labuladong/fucking-algorithm](https://github.com/labuladong/fucking-algorithm) | 刷算法全靠套路,认准 labuladong 就够了!English version supported! Crack LeetCode, not only how, but also why. | 48.0k | - | 07/07 |
| 7 | [xingshaocheng/architect-awesome](https://github.com/xingshaocheng/architect-awesome) | 后端架构师技术图谱 | 46.1k | - | 06/28 |
| 8 | [doocs/advanced-java](https://github.com/doocs/advanced-java) | 😮 互联网 Java 工程师进阶知识完全扫盲:涵盖高并发、分布式、高可用、微服务、海量数据处理等领域知识,后端同学必看,前端同学也可学习 | 45.4k | Java | 07/05 |
| 9 | [scutan90/DeepLearning-500-questions](https://github.com/scutan90/DeepLearning-500-questions) | 深度学习500问,以问答形式对常用的概率知识、线性代数、机器学习、深度学习、计算机视觉等热点问题进行阐述,以帮助自己及有需要的读者。 全书分为18个章节,50余万字。由于水平有限,书中不妥之处恳请广大读者批评指正。 未完待续............ 如有意合作,联系[email protected] 版权所有,违权必究 Tan 2018.06 | 38.9k | - | 06/26 |
| 10 | [macrozheng/mall](https://github.com/macrozheng/mall) | mall项目是一套电商系统,包括前台商城系统及后台管理系统,基于SpringBoot+MyBatis实现,采用Docker容器化部署。 前台商城系统包含首页门户、商品推荐、商品搜索、商品展示、购物车、订单流程、会员中心、客户服务、帮助中心等模块。 后台管理系统包含商品管理、订单管理、会员管理、促销管理、运营管理、内容管理、统计报表、财务管理、权限管理、设置等模块。 | 37.8k | Java | 07/08 |
| 11 | [azl397985856/leetcode](https://github.com/azl397985856/leetcode) | LeetCode Solutions: A Record of My Problem Solving Journey.( leetcode题解,记录自己的leetcode解题之路。) | 34.3k | JavaScript | 07/08 |
| 12 | [bailicangdu/vue2-elm](https://github.com/bailicangdu/vue2-elm) | 基于 vue2 + vuex 构建一个具有 45 个页面的大型单页面应用 | 33.8k | Vue | 04/29 |
| 13 | [justjavac/awesome-wechat-weapp](https://github.com/justjavac/awesome-wechat-weapp) | 微信小程序开发资源汇总 :100: | 32.0k | - | 06/22 |
| 14 | [521xueweihan/HelloGitHub](https://github.com/521xueweihan/HelloGitHub) | :octocat: Find pearls on open-source seashore 分享 GitHub 上有趣、入门级的开源项目 | 31.9k | Python | 06/27 |
| 15 | [chinese-poetry/chinese-poetry](https://github.com/chinese-poetry/chinese-poetry) | The most comprehensive database of Chinese poetry 🧶最全中华古诗词数据库, 唐宋两朝近一万四千古诗人, 接近5.5万首唐诗加26万宋诗. 两宋时期1564位词人,21050首词。 | 29.4k | JavaScript | 06/08 |
| 16 | [testerSunshine/12306](https://github.com/testerSunshine/12306) | 12306智能刷票,订票 | 28.4k | Python | 03/23 |
| 17 | [0voice/interview_internal_reference](https://github.com/0voice/interview_internal_reference) | 2019年最新总结,阿里,腾讯,百度,美团,头条等技术面试题目,以及答案,专家出题人分析汇总。 | 27.8k | Python | 06/03 |
| 18 | [xitu/gold-miner](https://github.com/xitu/gold-miner) | 🥇掘金翻译计划,可能是世界最大最好的英译中技术社区,最懂读者和译者的翻译平台: | 26.6k | - | 07/06 |
| 19 | [NervJS/taro](https://github.com/NervJS/taro) | 开放式跨端跨框架解决方案,支持使用 React/Vue/Nerv 等框架来开发微信/京东/百度/支付宝/字节跳动/ QQ 小程序/H5 等应用。 https://taro.jd.com/ | 26.2k | JavaScript | 07/08 |
| 20 | [apachecn/AiLearning](https://github.com/apachecn/AiLearning) | AiLearning: 机器学习 - MachineLearning - ML、深度学习 - DeepLearning - DL、自然语言处理 NLP | 25.9k | Python | 07/03 |
| 21 | [shengxinjing/programmer-job-blacklist](https://github.com/shengxinjing/programmer-job-blacklist) | :see_no_evil:程序员找工作黑名单,换工作和当技术合伙人需谨慎啊 更新有赞 | 25.4k | Shell | 07/03 |
| 22 | [Alvin9999/new-pac](https://github.com/Alvin9999/new-pac) | 科学上网/自由上网/翻墙/软件/方法,一键翻墙浏览器,免费shadowsocks/ss/ssr/v2ray/goflyway账号,vps一键搭建脚本/教程 | 24.6k | - | 07/07 |
| 23 | [fxsjy/jieba](https://github.com/fxsjy/jieba) | 结巴中文分词 | 23.5k | Python | 06/19 |
| 24 | [dcloudio/uni-app](https://github.com/dcloudio/uni-app) | uni-app 是使用 Vue 语法开发小程序、H5、App的统一框架 | 23.3k | JavaScript | 07/08 |
| 25 | [ityouknow/spring-boot-examples](https://github.com/ityouknow/spring-boot-examples) | about learning Spring Boot via examples. Spring Boot 教程、技术栈示例代码,快速简单上手教程。 | 22.8k | Java | 05/05 |
| 26 | [lib-pku/libpku](https://github.com/lib-pku/libpku) | 贵校课程资料民间整理 | 22.6k | TeX | 06/28 |
| 27 | [kon9chunkit/GitHub-Chinese-Top-Charts](https://github.com/kon9chunkit/GitHub-Chinese-Top-Charts) | :cn: GitHub中文排行榜,帮助你发现高分优秀中文项目、更高效地吸收国人的优秀经验成果;榜单每周更新一次,敬请关注! | 22.4k | Java | 07/08 |
| 28 | [unknwon/the-way-to-go_ZH_CN](https://github.com/unknwon/the-way-to-go_ZH_CN) | 《The Way to Go》中文译本,中文正式名《Go 入门指南》 | 22.2k | Go | 07/07 |
| 29 | [fighting41love/funNLP](https://github.com/fighting41love/funNLP) | 中英文敏感词、语言检测、中外手机/电话归属地/运营商查询、名字推断性别、手机号抽取、身份证抽取、邮箱抽取、中日文人名库、中文缩写库、拆字词典、词汇情感值、停用词、反动词表、暴恐词表、繁简体转换、英文模拟中文发音、汪峰歌词生成器、职业名称词库、同义词库、反义词库、否定词库、汽车品牌词库、汽车零件词库、连续英文切割、各种中文词向量、公司名字大全、古诗词库、IT词库、财经词库、成语词库、地名词库、历史名人词库、诗词词库、医学词库、饮食词库、法律词库、汽车词库、动物词库、中文聊天语料、中文谣言数据、百度中文问答数据集、句子相似度匹配算法集合、bert资源、文本生成&摘要相关工具、cocoNLP信息抽取 ... | 22.1k | Python | 06/23 |
| 30 | [sentsin/layui](https://github.com/sentsin/layui) | 采用自身模块规范编写的前端 UI 框架,遵循原生 HTML/CSS/JS 的书写形式,极低门槛,拿来即用。 | 22.0k | JavaScript | 06/29 |
| 31 | [alibaba/arthas](https://github.com/alibaba/arthas) | Alibaba Java Diagnostic Tool Arthas/Alibaba Java诊断利器Arthas | 22.0k | Java | 07/08 |
| 32 | [alibaba/druid](https://github.com/alibaba/druid) | 阿里巴巴计算平台事业部出品,为监控而生的数据库连接池 | 21.7k | Java | 07/07 |
| 33 | [alibaba/flutter-go](https://github.com/alibaba/flutter-go) | flutter 开发者帮助 APP,包含 flutter 常用 140+ 组件的demo 演示与中文文档 | 21.6k | Dart | 04/13 |
| 34 | [ctripcorp/apollo](https://github.com/ctripcorp/apollo) | Apollo(阿波罗)是携程框架部门研发的分布式配置中心,能够集中化管理应用不同环境、不同集群的配置,配置修改后能够实时推送到应用端,并且具备规范的权限、流程治理等特性,适用于微服务配置管理场景。 | 21.4k | Java | 07/05 |
| 35 | [littlecodersh/ItChat](https://github.com/littlecodersh/ItChat) | A complete and graceful API for Wechat. 微信个人号接口、微信机器人及命令行微信,三十行即可自定义个人号机器人。 | 20.6k | Python | 03/19 |
| 36 | [Tencent/wepy](https://github.com/Tencent/wepy) | 小程序组件化开发框架 | 20.4k | JavaScript | 07/08 |
| 37 | [Advanced-Frontend/Daily-Interview-Question](https://github.com/Advanced-Frontend/Daily-Interview-Question) | 我是木易杨,公众号「高级前端进阶」作者,每天搞定一道前端大厂面试题,祝大家天天进步,一年后会看到不一样的自己。 | 19.7k | JavaScript | 05/27 |
| 38 | [byoungd/English-level-up-tips-for-Chinese](https://github.com/byoungd/English-level-up-tips-for-Chinese) | 可能是让你受益匪浅的英语进阶指南 | 19.4k | - | 06/28 |
| 39 | [googlehosts/hosts](https://github.com/googlehosts/hosts) | 镜像:https://scaffrey.coding.net/p/hosts/git / https://git.qvq.network/googlehosts/hosts | 19.4k | - | 06/19 |
| 40 | [mqyqingfeng/Blog](https://github.com/mqyqingfeng/Blog) | 冴羽写博客的地方,预计写四个系列:JavaScript深入系列、JavaScript专题系列、ES6系列、React系列。 | 19.2k | - | 05/07 |
| 41 | [FallibleInc/security-guide-for-developers](https://github.com/FallibleInc/security-guide-for-developers) | Security Guide for Developers (实用性开发人员安全须知) | 19.1k | - | 04/17 |
| 42 | [kataras/iris](https://github.com/kataras/iris) | 感谢中国开发者 - https://bit.ly/謝謝 \| The fastest community-driven web framework for Go. Socket-Sharding, gRPC, Automatic HTTPS with Public Domain, MVC, Sessions, Caching, Versioning API, Problem API, Websocket, Dependency Injection and more. Fully compatible with the standard library and 3rd-party middlewa ... | 18.5k | Go | 07/07 |
| 43 | [QSCTech/zju-icicles](https://github.com/QSCTech/zju-icicles) | 浙江大学课程攻略共享计划 | 18.3k | C | 07/07 |
| 44 | [ruanyf/es6tutorial](https://github.com/ruanyf/es6tutorial) | 《ECMAScript 6入门》是一本开源的 JavaScript 语言教程,全面介绍 ECMAScript 6 新增的语法特性。 | 18.3k | JavaScript | 07/08 |
| 45 | [d2l-ai/d2l-zh](https://github.com/d2l-ai/d2l-zh) | 《动手学深度学习》:面向中文读者、能运行、可讨论。英文版即伯克利“深度学习导论”教材。 | 17.9k | Python | 07/05 |
| 46 | [bannedbook/fanqiang](https://github.com/bannedbook/fanqiang) | 翻墙-科学上网 | 17.8k | Rich Text Format | 07/08 |
| 47 | [fengdu78/Coursera-ML-AndrewNg-Notes](https://github.com/fengdu78/Coursera-ML-AndrewNg-Notes) | 吴恩达老师的机器学习课程个人笔记 | 17.7k | HTML | 04/24 |
| 48 | [komeiji-satori/Dress](https://github.com/komeiji-satori/Dress) | 好耶 是女装 | 17.4k | Standard ML | 07/08 |
| 49 | [lenve/vhr](https://github.com/lenve/vhr) | 微人事是一个前后端分离的人力资源管理系统,项目采用SpringBoot+Vue开发。 | 17.4k | Java | 07/07 |
| 50 | [YMFE/yapi](https://github.com/YMFE/yapi) | YApi 是一个可本地部署的、打通前后端及QA的、可视化的接口管理平台 | 16.5k | JavaScript | 06/29 |
| 51 | [zhaoolee/ChromeAppHeroes](https://github.com/zhaoolee/ChromeAppHeroes) | 🌈谷粒-Chrome插件英雄榜, 为优秀的Chrome插件写一本中文说明书, 让Chrome插件英雄们造福人类~ ChromePluginHeroes, Write a Chinese manual for the excellent Chrome plugin, let the Chrome plugin heroes benefit the human~ 公众号「0加1」同步更新 | 16.4k | JavaScript | 06/28 |
| 52 | [qiurunze123/miaosha](https://github.com/qiurunze123/miaosha) | ⭐⭐⭐⭐秒杀系统设计与实现.互联网工程师进阶与分析🙋🐓 | 16.3k | Java | 07/02 |
| 53 | [xkcoding/spring-boot-demo](https://github.com/xkcoding/spring-boot-demo) | spring boot demo 是一个用来深度学习并实战 spring boot 的项目,目前总共包含 65 个集成demo,已经完成 53 个。 该项目已成功集成 actuator(监控)、admin(可视化监控)、logback(日志)、aopLog(通过AOP记录web请求日志)、统一异常处理(json级别和页面级别)、freemarker(模板引擎)、thymeleaf(模板引擎)、Beetl(模板引擎)、Enjoy(模板引擎)、JdbcTemplate(通用JDBC操作数据库)、JPA(强大的ORM框架)、mybatis(强大的ORM框架)、通用Mapper(快速操作Mybati ... | 16.1k | Java | 07/02 |
| 54 | [wenyan-lang/wenyan](https://github.com/wenyan-lang/wenyan) | 文言文編程語言 A programming language for the ancient Chinese. | 16.1k | TypeScript | 05/16 |
| 55 | [judasn/IntelliJ-IDEA-Tutorial](https://github.com/judasn/IntelliJ-IDEA-Tutorial) | IntelliJ IDEA 简体中文专题教程 | 16.0k | - | 06/27 |
| 56 | [reactnativecn/react-native-guide](https://github.com/reactnativecn/react-native-guide) | React Native指南汇集了各类react-native学习资源、开源App和组件 | 16.0k | - | 05/16 |
| 57 | [Binaryify/NeteaseCloudMusicApi](https://github.com/Binaryify/NeteaseCloudMusicApi) | 网易云音乐 Node.js API service | 15.8k | JavaScript | 07/08 |
| 58 | [hollischuang/toBeTopJavaer](https://github.com/hollischuang/toBeTopJavaer) | To Be Top Javaer - Java工程师成神之路 | 15.8k | Java | 06/19 |
| 59 | [alsotang/node-lessons](https://github.com/alsotang/node-lessons) | :closed_book:《Node.js 包教不包会》 by alsotang | 15.8k | JavaScript | 06/10 |
| 60 | [halo-dev/halo](https://github.com/halo-dev/halo) | ✍ An excellent open source blog publishing application. \| 一个优秀的开源博客发布应用。 | 15.8k | Java | 07/08 |
| 61 | [wangzheng0822/algo](https://github.com/wangzheng0822/algo) | 数据结构和算法必知必会的50个代码实现 | 15.7k | Python | 07/05 |
| 62 | [alibaba/easyexcel](https://github.com/alibaba/easyexcel) | 快速、简单避免OOM的java处理Excel工具 | 15.7k | Java | 06/24 |
| 63 | [1c7/chinese-independent-developer](https://github.com/1c7/chinese-independent-developer) | 👩🏿💻👨🏾💻👩🏼💻👨🏽💻👩🏻💻中国独立开发者项目列表 -- 分享大家都在做什么 | 15.6k | - | 07/06 |
| 64 | [MLEveryday/100-Days-Of-ML-Code](https://github.com/MLEveryday/100-Days-Of-ML-Code) | 100-Days-Of-ML-Code中文版 | 15.6k | Jupyter Notebook | 02/18 |
| 65 | [shuzheng/zheng](https://github.com/shuzheng/zheng) | 基于Spring+SpringMVC+Mybatis分布式敏捷开发系统架构,提供整套公共微服务服务模块:集中权限管理(单点登录)、内容管理、支付中心、用户管理(支持第三方登录)、微信平台、存储系统、配置中心、日志分析、任务和通知等,支持服务治理、监控和追踪,努力为中小型企业打造全方位J2EE企业级开发解决方案。 | 15.5k | Java | 07/02 |
| 66 | [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 | 15.4k | Java | 05/13 |
| 67 | [alibaba/ice](https://github.com/alibaba/ice) | 🚀 Simple and friendly front-end development system(飞冰,简单而友好的前端研发体系 )https://ice.work/ | 15.3k | TypeScript | 07/08 |
| 68 | [AobingJava/JavaFamily](https://github.com/AobingJava/JavaFamily) | 【Java面试+Java学习指南】 一份涵盖大部分Java程序员所需要掌握的核心知识。 | 15.1k | - | 06/17 |
| 69 | [didi/DoraemonKit](https://github.com/didi/DoraemonKit) | A full-featured App (iOS & Android) development assistant. You deserve it. 简称 "DoKit" 。一款功能齐全的客户端( iOS 、Android、微信小程序 )研发助手,你值得拥有。https://www.dokit.cn/ | 15.0k | Java | 07/08 |
| 70 | [chaozh/awesome-blockchain-cn](https://github.com/chaozh/awesome-blockchain-cn) | 收集所有区块链(BlockChain)技术开发相关资料,包括Fabric和Ethereum开发资料 | 14.9k | JavaScript | 05/29 |
| 71 | [alibaba/canal](https://github.com/alibaba/canal) | 阿里巴巴 MySQL binlog 增量订阅&消费组件 | 14.7k | Java | 06/29 |
| 72 | [xuxueli/xxl-job](https://github.com/xuxueli/xxl-job) | A distributed task scheduling framework.(分布式任务调度平台XXL-JOB) | 14.6k | Java | 07/02 |
| 73 | [PKUanonym/REKCARC-TSC-UHT](https://github.com/PKUanonym/REKCARC-TSC-UHT) | 清华大学计算机系课程攻略 Guidance for courses in Department of Computer Science and Technology, Tsinghua University | 14.6k | HTML | 07/02 |
| 74 | [CarGuo/GSYVideoPlayer](https://github.com/CarGuo/GSYVideoPlayer) | 视频播放器(IJKplayer、ExoPlayer、MediaPlayer),HTTPS,支持弹幕,外挂字幕,支持滤镜、水印、gif截图,片头广告、中间广告,多个同时播放,支持基本的拖动,声音、亮度调节,支持边播边缓存,支持视频自带rotation的旋转(90,270之类),重力旋转与手动旋转的同步支持,支持列表播放 ,列表全屏动画,视频加载速度,列表小窗口支持拖动,动画效果,调整比例,多分辨率切换,支持切换播放器,进度条小窗口预览,列表切换详情页面无缝播放,rtsp、concat、mpeg。 | 14.4k | Java | 07/07 |
| 75 | [hzlzh/Best-App](https://github.com/hzlzh/Best-App) | 收集&推荐优秀的 Apps/硬件/技巧/周边等 | 14.3k | - | 05/15 |
| 76 | [datawhalechina/pumpkin-book](https://github.com/datawhalechina/pumpkin-book) | 《机器学习》(西瓜书)公式推导解析,在线阅读地址:https://datawhalechina.github.io/pumpkin-book | 14.0k | - | 07/03 |
| 77 | [wangshub/wechat_jump_game](https://github.com/wangshub/wechat_jump_game) | 微信《跳一跳》Python 辅助 | 13.9k | Python | 01/29 |
| 78 | [zhangdaiscott/jeecg-boot](https://github.com/zhangdaiscott/jeecg-boot) | 基于代码生成器的低代码平台,无代码开发、超越传统商业平台!前后端分离架构:SpringBoot 2.x,Ant Design&Vue,Mybatis-plus,Shiro,JWT。强大的代码生成器让前后端代码一键生成,无需写任何代码! 引领新开发模式(OnlineCoding-> 代码生成-> 手工MERGE),帮助Java项目解决70%重复工作,让开发更关注业务逻辑,既能快速提高开发效率,帮助公司节省成本,同时又不失灵活性。 | 13.9k | Java | 07/03 |
| 79 | [getlantern/download](https://github.com/getlantern/download) | Lantern官方版本下载 蓝灯 翻墙 代理 科学上网 外网 加速器 梯子 路由 proxy vpn circumvention gfw | 13.9k | - | 05/22 |
| 80 | [Awesome-HarmonyOS/HarmonyOS](https://github.com/Awesome-HarmonyOS/HarmonyOS) | A curated list of awesome things related to HarmonyOS. 华为鸿蒙操作系统。 | 13.7k | C | 01/26 |
| 81 | [dianping/cat](https://github.com/dianping/cat) | CAT 作为服务端项目基础组件,提供了 Java, C/C++, Node.js, Python, Go 等多语言客户端,已经在美团点评的基础架构中间件框架(MVC框架,RPC框架,数据库框架,缓存框架等,消息队列,配置系统等)深度集成,为美团点评各业务线提供系统丰富的性能指标、健康状况、实时告警等。 | 13.7k | Java | 07/07 |
| 82 | [linlinjava/litemall](https://github.com/linlinjava/litemall) | 又一个小商城。litemall = Spring Boot后端 + Vue管理员前端 + 微信小程序用户前端 + Vue用户移动端 | 13.6k | Java | 07/05 |
| 83 | [forezp/SpringCloudLearning](https://github.com/forezp/SpringCloudLearning) | 《史上最简单的Spring Cloud教程源码》 | 13.5k | Java | 06/10 |
| 84 | [jumpserver/jumpserver](https://github.com/jumpserver/jumpserver) | JumpServer 是全球首款开源的堡垒机,是符合 4A 的专业运维安全审计系统。 | 13.4k | JavaScript | 07/08 |
| 85 | [facert/awesome-spider](https://github.com/facert/awesome-spider) | 爬虫集合 | 13.4k | - | 07/01 |
| 86 | [chai2010/advanced-go-programming-book](https://github.com/chai2010/advanced-go-programming-book) | :books: 《Go语言高级编程》开源图书,涵盖CGO、Go汇编语言、RPC实现、Protobuf插件实现、Web框架实现、分布式系统等高阶主题(完稿) | 13.2k | Go | 06/21 |
| 87 | [jobbole/awesome-java-cn](https://github.com/jobbole/awesome-java-cn) | Java资源大全中文版,包括开发库、开发工具、网站、博客、微信、微博等,由伯乐在线持续更新。 | 13.1k | - | 01/02 |
| 88 | [JeffLi1993/springboot-learning-example](https://github.com/JeffLi1993/springboot-learning-example) | spring boot 实践学习案例,是 spring boot 初学者及核心技术巩固的最佳实践。另外写博客,用 OpenWrite。 | 13.1k | Java | 07/02 |
| 89 | [ruanyf/weekly](https://github.com/ruanyf/weekly) | 科技爱好者周刊,每周五发布 | 13.1k | - | 07/05 |
| 90 | [youzan/vant-weapp](https://github.com/youzan/vant-weapp) | 轻量、可靠的小程序 UI 组件库 | 13.0k | JavaScript | 07/08 |
| 91 | [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 ... | 13.0k | C++ | 04/19 |
| 92 | [alibaba/Sentinel](https://github.com/alibaba/Sentinel) | A powerful flow control component enabling reliability, resilience and monitoring for microservices. (面向云原生微服务的高可用流控防护组件) | 12.9k | Java | 07/07 |
| 93 | [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. | 12.8k | Go | 07/01 |
| 94 | [dcloudio/mui](https://github.com/dcloudio/mui) | 最接近原生APP体验的高性能框架 | 12.8k | JavaScript | 03/14 |
| 95 | [taizilongxu/interview_python](https://github.com/taizilongxu/interview_python) | 关于Python的面试题 | 12.7k | Shell | 05/31 |
| 96 | [nndl/nndl.github.io](https://github.com/nndl/nndl.github.io) | 《神经网络与深度学习》 邱锡鹏著 Neural Network and Deep Learning | 12.7k | HTML | 06/22 |
| 97 | [jaywcjlove/linux-command](https://github.com/jaywcjlove/linux-command) | Linux命令大全搜索工具,内容包含Linux命令手册、详解、学习、搜集。https://git.io/linux | 12.7k | HTML | 06/18 |
| 98 | [EastWorld/wechat-app-mall](https://github.com/EastWorld/wechat-app-mall) | 微信小程序商城,微信小程序微店 | 12.6k | JavaScript | 07/06 |
| 99 | [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 | 12.3k | PHP | 06/01 |
| 100 | [233boy/v2ray](https://github.com/233boy/v2ray) | 最好用的 V2Ray 一键安装脚本 & 管理脚本 | 12.3k | Shell | 06/20 |
| 101 | [vnpy/vnpy](https://github.com/vnpy/vnpy) | 基于Python的开源量化交易平台开发框架 | 12.2k | C++ | 07/08 |
| 102 | [alibaba/ARouter](https://github.com/alibaba/ARouter) | 💪 A framework for assisting in the renovation of Android componentization (帮助 Android App 进行组件化改造的路由框架) | 12.1k | Java | 07/02 |
| 103 | [521xueweihan/git-tips](https://github.com/521xueweihan/git-tips) | :trollface:Git的奇技淫巧 | 11.9k | - | 04/14 |
| 104 | [zergtant/pytorch-handbook](https://github.com/zergtant/pytorch-handbook) | pytorch handbook是一本开源的书籍,目标是帮助那些希望和使用PyTorch进行深度学习开发和研究的朋友快速入门,其中包含的Pytorch教程全部通过测试保证可以成功运行 | 11.9k | Jupyter Notebook | 07/08 |
| 105 | [Bigkoo/Android-PickerView](https://github.com/Bigkoo/Android-PickerView) | This is a picker view for android , support linkage effect, timepicker and optionspicker.(时间选择器、省市区三级联动) | 11.9k | Java | 06/12 |
| 106 | [Kr1s77/awesome-python-login-model](https://github.com/Kr1s77/awesome-python-login-model) | 😮python模拟登陆一些大型网站,还有一些简单的爬虫,希望对你们有所帮助❤️,如果喜欢记得给个star哦🌟 | 11.9k | Python | 05/14 |
| 107 | [haizlin/fe-interview](https://github.com/haizlin/fe-interview) | 前端面试每日 3+1,以面试题来驱动学习,提倡每日学习与思考,每天进步一点!每天早上5点纯手工发布面试题(死磕自己,愉悦大家) | 11.8k | JavaScript | 07/08 |
| 108 | [PaddlePaddle/Paddle](https://github.com/PaddlePaddle/Paddle) | PArallel Distributed Deep LEarning: Machine Learning Framework from Industrial Practice (『飞桨』核心框架,深度学习&机器学习高性能单机、分布式训练和跨平台部署) | 11.8k | C++ | 07/08 |
| 109 | [ryanhanwu/How-To-Ask-Questions-The-Smart-Way](https://github.com/ryanhanwu/How-To-Ask-Questions-The-Smart-Way) | 本文原文由知名 Hacker Eric S. Raymond 所撰寫,教你如何正確的提出技術問題並獲得你滿意的答案。 | 11.8k | JavaScript | 06/01 |
| 110 | [Tencent/QMUI_Android](https://github.com/Tencent/QMUI_Android) | 提高 Android UI 开发效率的 UI 库 | 11.8k | Java | 07/08 |
| 111 | [dyc87112/SpringBoot-Learning](https://github.com/dyc87112/SpringBoot-Learning) | Spring Boot基础教程,Spring Boot 2.x版本连载中!!! | 11.7k | Java | 07/02 |
| 112 | [phobal/ivideo](https://github.com/phobal/ivideo) | 一个可以观看国内主流视频平台所有视频的客户端(Mac、Windows、Linux) A client that can watch video of domestic(China) mainstream video platform | 11.6k | JavaScript | 07/07 |
| 113 | [fengdu78/lihang-code](https://github.com/fengdu78/lihang-code) | 《统计学习方法》的代码实现 | 11.5k | Jupyter Notebook | 06/07 |
| 114 | [LingCoder/OnJava8](https://github.com/LingCoder/OnJava8) | 《On Java 8》中文版,又名《Java编程思想》 第5版 | 11.4k | - | 07/08 |
| 115 | [fengdu78/deeplearning_ai_books](https://github.com/fengdu78/deeplearning_ai_books) | deeplearning.ai(吴恩达老师的深度学习课程笔记及资源) | 11.3k | HTML | 04/24 |
| 116 | [qianguyihao/Web](https://github.com/qianguyihao/Web) | 前端入门到进阶,超详细的Web前端学习图文教程。从零开始学前端,做一名精致优雅的前端工程师。持续更新... | 11.3k | JavaScript | 07/06 |
| 117 | [Tencent/omi](https://github.com/Tencent/omi) | Front End Cross-Frameworks Framework - 前端跨框架跨平台框架 | 11.2k | JavaScript | 06/24 |
| 118 | [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 ... | 11.2k | Dart | 07/03 |
| 119 | [pjialin/py12306](https://github.com/pjialin/py12306) | 🚂 12306 购票助手,支持集群,多账号,多任务购票以及 Web 页面管理 | 11.1k | Python | 04/08 |
| 120 | [qyuhen/book](https://github.com/qyuhen/book) | 学习笔记 | 11.0k | - | 04/02 |
| 121 | [Tamsiree/RxTool](https://github.com/Tamsiree/RxTool) | Android开发人员不得不收集的工具类集合 \| 支付宝支付 \| 微信支付(统一下单) \| 微信分享 \| Zip4j压缩(支持分卷压缩与加密) \| 一键集成UCrop选择圆形头像 \| 一键集成二维码和条形码的扫描与生成 \| 常用Dialog \| WebView的封装可播放视频 \| 仿斗鱼滑动验证码 \| Toast封装 \| 震动 \| GPS \| Location定位 \| 图片缩放 \| Exif 图片添加地理位置信息(经纬度) \| 蛛网等级 \| 颜色选择器 \| ArcGis \| VTPK \| 编译运行一下说不定会找到惊喜 | 10.9k | Kotlin | 06/04 |
| 122 | [Jack-Cherish/python-spider](https://github.com/Jack-Cherish/python-spider) | :rainbow:Python3网络爬虫实战:淘宝、京东、网易云、B站、12306、抖音、笔趣阁、漫画小说下载、音乐电影下载等 | 10.9k | Python | 06/23 |
| 123 | [shimohq/chinese-programmer-wrong-pronunciation](https://github.com/shimohq/chinese-programmer-wrong-pronunciation) | 中国程序员容易发音错误的单词 | 10.8k | - | 05/01 |
| 124 | [amfe/lib-flexible](https://github.com/amfe/lib-flexible) | 可伸缩布局方案 | 10.8k | JavaScript | 06/19 |
| 125 | [peterq/pan-light](https://github.com/peterq/pan-light) | 百度网盘不限速客户端, golang + qt5, 跨平台图形界面 | 10.6k | Go | 06/07 |
| 126 | [lin-xin/vue-manage-system](https://github.com/lin-xin/vue-manage-system) | 基于vue + element的后台管理系统解决方案 | 10.6k | Vue | 07/06 |
| 127 | [aalansehaiyang/technology-talk](https://github.com/aalansehaiyang/technology-talk) | 汇总java生态圈常用技术框架、开源中间件,系统架构、数据库、大公司架构案例、常用三方类库、项目管理、线上问题排查、个人成长、思考等知识 | 10.5k | - | 06/29 |
| 128 | [leisurelicht/wtfpython-cn](https://github.com/leisurelicht/wtfpython-cn) | wtfpython的中文翻译/施工结束/ 能力有限,欢迎帮我改进翻译 | 10.5k | Python | 06/13 |
| 129 | [Tim9Liu9/TimLiu-iOS](https://github.com/Tim9Liu9/TimLiu-iOS) | iOS开发常用三方库、插件、知名博客等等 | 10.2k | - | 06/19 |
| 130 | [JessYanCoding/AndroidAutoSize](https://github.com/JessYanCoding/AndroidAutoSize) | 🔥 A low-cost Android screen adaptation solution (今日头条屏幕适配方案终极版,一个极低成本的 Android 屏幕适配方案). | 10.2k | Java | 06/24 |
| 131 | [jhao104/proxy_pool](https://github.com/jhao104/proxy_pool) | Python爬虫代理IP池(proxy pool) | 10.1k | Python | 07/08 |
| 132 | [meolu/walle-web](https://github.com/meolu/walle-web) | walle - 瓦力 Devops开源项目代码部署平台 | 10.1k | Python | 07/01 |
| 133 | [go-kratos/kratos](https://github.com/go-kratos/kratos) | Kratos是bilibili开源的一套Go微服务框架,包含大量微服务相关框架及工具。 | 10.1k | Go | 06/30 |
| 134 | [ruanyf/free-books](https://github.com/ruanyf/free-books) | 互联网上的免费书籍 | 10.1k | - | 07/01 |
| 135 | [youth5201314/banner](https://github.com/youth5201314/banner) | 🔥🔥🔥Banner 2.0 来了!Android广告图片轮播控件,内部基于ViewPager2实现,Indicator和UI都可以自定义。 | 10.1k | Java | 06/30 |
| 136 | [jeasonlzy/okhttp-OkGo](https://github.com/jeasonlzy/okhttp-OkGo) | OkGo - 3.0 震撼来袭,该库是基于 Http 协议,封装了 OkHttp 的网络请求框架,比 Retrofit 更简单易用,支持 RxJava,RxJava2,支持自定义缓存,支持批量断点下载管理和批量上传管理功能 | 10.0k | Java | 05/09 |
| 137 | [open-android/Android](https://github.com/open-android/Android) | GitHub上最火的Android开源项目,所有开源项目都有详细资料和配套视频 | 10.0k | - | 06/02 |
| 138 | [wangfupeng1988/wangEditor](https://github.com/wangfupeng1988/wangEditor) | wangEditor —— 轻量级web富文本框 | 9.9k | JavaScript | 05/07 |
| 139 | [elunez/eladmin](https://github.com/elunez/eladmin) | 项目基于 Spring Boot 2.1.0 、 Jpa、 Spring Security、redis、Vue的前后端分离的后台管理系统,项目采用分模块开发方式, 权限控制采用 RBAC,支持数据字典与数据权限管理,支持一键生成前后端代码,支持动态路由 | 9.7k | Java | 07/06 |
| 140 | [yanue/V2rayU](https://github.com/yanue/V2rayU) | V2rayU,基于v2ray核心的mac版客户端,用于科学上网,使用swift编写,支持vmess,shadowsocks,socks5等服务协议,支持订阅, 支持二维码,剪贴板导入,手动配置,二维码分享等 | 9.7k | Swift | 06/10 |
| 141 | [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 快速集成框架). | 9.6k | Java | 06/24 |
| 142 | [dt-fe/weekly](https://github.com/dt-fe/weekly) | 前端精读周刊 | 9.6k | - | 07/06 |
| 143 | [ZhongFuCheng3y/3y](https://github.com/ZhongFuCheng3y/3y) | :notebook:从Java基础、JavaWeb基础到常用的框架再到面试题都有完整的教程,几乎涵盖了Java后端必备的知识点 | 9.6k | - | 06/14 |
| 144 | [ShusenTang/Dive-into-DL-PyTorch](https://github.com/ShusenTang/Dive-into-DL-PyTorch) | 本项目将《动手学深度学习》(Dive into Deep Learning)原书中的MXNet实现改为PyTorch实现。 | 9.6k | Jupyter Notebook | 06/26 |
| 145 | [bailicangdu/vue2-manage](https://github.com/bailicangdu/vue2-manage) | 基于 vue + element-ui 的后台管理系统 | 9.5k | Vue | 05/27 |
| 146 | [answershuto/learnVue](https://github.com/answershuto/learnVue) | :octocat:Vue.js 源码解析 | 9.5k | JavaScript | 04/29 |
| 147 | [pagehelper/Mybatis-PageHelper](https://github.com/pagehelper/Mybatis-PageHelper) | Mybatis通用分页插件 | 9.4k | Java | 05/18 |
| 148 | [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. | 9.4k | Jupyter Notebook | 06/09 |
| 149 | [xiandanin/magnetW](https://github.com/xiandanin/magnetW) | 磁力链接聚合搜索 | 8.9k | JavaScript | 03/06 |
| 150 | [seaswalker/spring-analysis](https://github.com/seaswalker/spring-analysis) | Spring源码阅读 | 8.9k | Java | 07/02 |
| 151 | [cnodejs/nodeclub](https://github.com/cnodejs/nodeclub) | :baby_chick:Nodeclub 是使用 Node.js 和 MongoDB 开发的社区系统 | 8.8k | JavaScript | 05/03 |
| 152 | [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. ) | 8.7k | Python | 05/15 |
| 153 | [daniulive/SmarterStreaming](https://github.com/daniulive/SmarterStreaming) | 国内外为数不多致力于极致体验的超强全自研跨平台(windows/android/iOS)流媒体内核,通过模块化自由组合,支持实时RTMP推流、RTSP推流、RTMP播放器、RTSP播放器、录像、多路流媒体转发、音视频导播、动态视频合成、音频混音、直播互动、内置轻量级RTSP服务等,比快更快,业界真正靠谱的超低延迟直播SDK(1秒内,低延迟模式下200~400ms)。 | 8.7k | Java | 07/07 |
| 154 | [frank-lam/fullstack-tutorial](https://github.com/frank-lam/fullstack-tutorial) | 🚀 fullstack tutorial 2020,后台技术栈/架构师之路/全栈开发社区,春招/秋招/校招/面试 | 8.6k | Java | 05/30 |
| 155 | [MustangYM/WeChatExtension-ForMac](https://github.com/MustangYM/WeChatExtension-ForMac) | Mac版微信的功能拓展(A plugin for Mac WeChat) | 8.6k | Objective-C | 07/07 |
| 156 | [bilibili/DanmakuFlameMaster](https://github.com/bilibili/DanmakuFlameMaster) | Android开源弹幕引擎·烈焰弹幕使 ~ | 8.6k | Java | 02/27 |
| 157 | [modood/Administrative-divisions-of-China](https://github.com/modood/Administrative-divisions-of-China) | 中华人民共和国行政区划:省级(省份直辖市自治区)、 地级(城市)、 县级(区县)、 乡级(乡镇街道)、 村级(村委会居委会) ,中国省市区镇村二级三级四级五级联动地址数据。 | 8.5k | JavaScript | 06/01 |
| 158 | [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 | 8.4k | Java | 05/22 |
| 159 | [ChenYilong/iOSInterviewQuestions](https://github.com/ChenYilong/iOSInterviewQuestions) | iOS interview questions;iOS面试题集锦(附答案)--学习qq群或 Telegram 群交流 https://github.com/ChenYilong/iOSBlog/issues/21 | 8.4k | C++ | 06/08 |
| 160 | [darknessomi/musicbox](https://github.com/darknessomi/musicbox) | 网易云音乐命令行版本 | 8.4k | Python | 07/06 |
| 161 | [yygmind/blog](https://github.com/yygmind/blog) | 我是木易杨,公众号「高级前端进阶」作者,跟着我每周重点攻克一个前端面试重难点。接下来让我带你走进高级前端的世界,在进阶的路上,共勉! | 8.4k | - | 01/25 |
| 162 | [stanzhai/be-a-professional-programmer](https://github.com/stanzhai/be-a-professional-programmer) | 成为专业程序员路上用到的各种优秀资料、神器及框架 | 8.3k | - | 06/28 |
| 163 | [skywind3000/kcp](https://github.com/skywind3000/kcp) | KCP - A Fast and Reliable ARQ Protocol (快速可靠传输协议) | 8.3k | C | 04/24 |
| 164 | [programthink/books](https://github.com/programthink/books) | 【编程随想】收藏的电子书清单(多个学科,含下载链接) | 8.3k | - | 05/31 |
| 165 | [zhongyang219/TrafficMonitor](https://github.com/zhongyang219/TrafficMonitor) | 这是一个用于显示当前网速、CPU及内存利用率的桌面悬浮窗软件,并支持任务栏显示,支持更换皮肤。 | 8.3k | C++ | 07/07 |
| 166 | [MorvanZhou/tutorials](https://github.com/MorvanZhou/tutorials) | 机器学习相关教程 | 8.2k | Python | 07/08 |
| 167 | [trazyn/ieaseMusic](https://github.com/trazyn/ieaseMusic) | 网易云音乐第三方 | 8.1k | JavaScript | 07/07 |
| 168 | [chokcoco/iCSS](https://github.com/chokcoco/iCSS) | 不止于 CSS | 8.1k | - | 07/08 |
| 169 | [sparanoid/chinese-copywriting-guidelines](https://github.com/sparanoid/chinese-copywriting-guidelines) | Chinese copywriting guidelines for better written communication/中文文案排版指北 | 8.0k | CoffeeScript | 05/07 |
| 170 | [paascloud/paascloud-master](https://github.com/paascloud/paascloud-master) | spring cloud + vue + oAuth2.0全家桶实战,前后端分离模拟商城,完整的购物流程、后端运营平台,可以实现快速搭建企业级微服务项目。支持微信登录等三方登录。 | 8.0k | Java | 07/02 |
| 171 | [dxcweb/high-speed-downloader](https://github.com/dxcweb/high-speed-downloader) | 已不再维护 | 8.0k | - | 04/16 |
| 172 | [lihengming/spring-boot-api-project-seed](https://github.com/lihengming/spring-boot-api-project-seed) | :seedling::rocket:一个基于Spring Boot & MyBatis的种子项目,用于快速构建中小型API、RESTful API项目~ | 8.0k | Java | 04/21 |
| 173 | [toutiaoio/awesome-architecture](https://github.com/toutiaoio/awesome-architecture) | 架构师技术图谱,助你早日成为架构师 | 7.9k | - | 07/08 |
| 174 | [APIJSON/APIJSON](https://github.com/APIJSON/APIJSON) | 🏆码云最有价值开源项目 🚀后端接口和文档自动化,前端(客户端) 定制返回 JSON 的数据和结构!🏆Gitee Most Valuable Project 🚀A JSON Transmission Protocol and an ORM Library for automatically providing APIs and Docs. | 7.9k | TSQL | 07/02 |
| 175 | [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 ... | 7.8k | Java | 06/14 |
| 176 | [GitHubDaily/GitHubDaily](https://github.com/GitHubDaily/GitHubDaily) | GitHubDaily 分享内容定期整理与分类。欢迎推荐、自荐项目,让更多人知道你的项目。 | 7.8k | - | 05/20 |
| 177 | [EtherDream/jsproxy](https://github.com/EtherDream/jsproxy) | 一个基于浏览器端 JS 实现的在线代理 | 7.8k | Shell | 05/08 |
| 178 | [haotian-wang/google-access-helper](https://github.com/haotian-wang/google-access-helper) | 谷歌访问助手破解版 | 7.7k | JavaScript | 04/04 |
| 179 | [fangzesheng/free-api](https://github.com/fangzesheng/free-api) | 收集免费的接口服务,做一个api的搬运工 | 7.7k | - | 07/05 |
| 180 | [talkgo/night](https://github.com/talkgo/night) | Weekly Go Online Meetup via Zoom and Bilibili|Go 夜读|由 SIG 成员维护|通过 zoom 在线直播的方式分享 Go 相关的技术话题,每天大家在微信/telegram/Slack 上及时沟通交流编程技术话题。 | 7.6k | Go | 07/02 |
| 181 | [didi/chameleon](https://github.com/didi/chameleon) | 🦎 一套代码运行多端,一端所见即多端所见 | 7.6k | JavaScript | 06/30 |
| 182 | [chenyuntc/pytorch-book](https://github.com/chenyuntc/pytorch-book) | PyTorch tutorials and fun projects including neural talk, neural style, poem writing, anime generation (《深度学习框架PyTorch:入门与实战》) | 7.6k | Jupyter Notebook | 01/06 |
| 183 | [evil-huawei/evil-huawei](https://github.com/evil-huawei/evil-huawei) | Evil Huawei - 华为作过的恶 | 7.5k | JavaScript | 04/06 |
| 184 | [star7th/showdoc](https://github.com/star7th/showdoc) | ShowDoc is a tool greatly applicable for an IT team to share documents online一个非常适合IT团队的在线API文档、技术文档工具 | 7.5k | JavaScript | 07/08 |
| 185 | [flutterchina/flutter-in-action](https://github.com/flutterchina/flutter-in-action) | 《Flutter实战》电子书 | 7.5k | HTML | 07/07 |
| 186 | [sfyc23/EverydayWechat](https://github.com/sfyc23/EverydayWechat) | 微信助手:1.每日定时给好友(女友)发送定制消息。2.机器人自动回复好友。3.群助手功能(例如:查询垃圾分类、天气、日历、电影实时票房、快递物流、PM2.5等) | 7.5k | Python | 01/10 |
| 187 | [rootsongjc/kubernetes-handbook](https://github.com/rootsongjc/kubernetes-handbook) | Kubernetes中文指南/云原生应用架构实践手册 - https://jimmysong.io/kubernetes-handbook | 7.3k | Shell | 07/03 |
| 188 | [hs-web/hsweb-framework](https://github.com/hs-web/hsweb-framework) | hsweb (haʊs wɛb) 是一个用于快速搭建企业后台管理系统的基础项目,集成一揽子便捷功能如:便捷的通用增删改查,强大的权限管理,动态多数据源,动态表单,在线数据库维护等. 基于 spring-boot,mybaits. | 7.3k | Java | 07/03 |
| 189 | [mzlogin/awesome-adb](https://github.com/mzlogin/awesome-adb) | ADB Usage Complete / ADB 用法大全 | 7.2k | - | 05/05 |
| 190 | [DeathKing/Learning-SICP](https://github.com/DeathKing/Learning-SICP) | MIT视频公开课《计算机程序的构造和解释》中文化项目及课程学习资料搜集。 | 7.2k | Ruby | 02/25 |
| 191 | [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.2k | Objective-C | 07/06 |
| 192 | [hackstoic/golang-open-source-projects](https://github.com/hackstoic/golang-open-source-projects) | 为互联网IT人打造的中文版awesome-go | 7.1k | - | 05/18 |
| 193 | [wangshub/Douyin-Bot](https://github.com/wangshub/Douyin-Bot) | 😍 Python 抖音机器人,论如何在抖音上找到漂亮小姐姐? | 7.0k | Python | 05/07 |
| 194 | [judasn/Linux-Tutorial](https://github.com/judasn/Linux-Tutorial) | 《Java 程序员眼中的 Linux》 | 7.2k | Shell | 06/05 |
| 195 | [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.0k | PHP | 06/06 |
| 196 | [vipstone/faceai](https://github.com/vipstone/faceai) | 一款入门级的人脸、视频、文字检测以及识别的项目. | 7.0k | Python | 04/16 |
| 197 | [hyb1996/Auto.js](https://github.com/hyb1996/Auto.js) | A UiAutomator on android, does not need root access(安卓平台上的JavaScript自动化工具) | 7.0k | Java | 06/24 |
| 198 | [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 实战与性能优化》 | 6.9k | Java | 07/04 |
| 199 | [polaris1119/The-Golang-Standard-Library-by-Example](https://github.com/polaris1119/The-Golang-Standard-Library-by-Example) | Golang标准库。对于程序员而言,标准库与语言本身同样重要,它好比一个百宝箱,能为各种常见的任务提供完美的解决方案。以示例驱动的方式讲解Golang的标准库。 | 6.9k | Go | 02/01 |
| 200 | [inferjay/AndroidDevTools](https://github.com/inferjay/AndroidDevTools) | 收集整理Android开发所需的Android SDK、开发中用到的工具、Android开发教程、Android设计规范,免费的设计素材等。 | 6.8k | - | 07/02 |
| 201 | [DuGuQiuBai/Java](https://github.com/DuGuQiuBai/Java) | 27天成为Java大神 | 6.7k | Java | 02/16 |
| 202 | [xcatliu/typescript-tutorial](https://github.com/xcatliu/typescript-tutorial) | TypeScript 入门教程 | 6.7k | TypeScript | 07/03 |
| 203 | [xirong/my-git](https://github.com/xirong/my-git) | Individual collecting material of learning git(有关 git 的学习资料) | 6.7k | - | 03/28 |
| 204 | [bingoogolapple/BGAQRCode-Android](https://github.com/bingoogolapple/BGAQRCode-Android) | QRCode 扫描二维码、扫描条形码、相册获取图片后识别、生成带 Logo 二维码、支持微博微信 QQ 二维码扫描样式 | 6.7k | C | 07/03 |
| 205 | [huanghaibin-dev/CalendarView](https://github.com/huanghaibin-dev/CalendarView) | Android上一个优雅、万能自定义UI、支持周视图、自定义周起始、性能高效的日历控件,支持热插拔实现的UI定制!支持标记、自定义颜色、农历、自定义月视图各种显示模式等。Canvas绘制,速度快、占用内存低,你真的想不到日历居然还可以如此优雅!An elegant, highly customized and high-performance Calendar Widget on Android. | 6.6k | Java | 04/21 |
| 206 | [TwoWater/Python](https://github.com/TwoWater/Python) | 最良心的 Python 教程: | 6.6k | - | 03/09 |
| 207 | [zh-google-styleguide/zh-google-styleguide](https://github.com/zh-google-styleguide/zh-google-styleguide) | Google 开源项目风格指南 (中文版) | 6.5k | Makefile | 06/19 |
| 208 | [greatghoul/remote-working](https://github.com/greatghoul/remote-working) | 收集整理远程工作相关的资料 | 6.5k | Ruby | 06/12 |
| 209 | [XXApple/AndroidLibs](https://github.com/XXApple/AndroidLibs) | :fire:正在成为史上最全分类 Android 开源大全~~~~(长期更新 Star 一下吧) | 6.5k | - | 04/20 |
| 210 | [jobbole/awesome-javascript-cn](https://github.com/jobbole/awesome-javascript-cn) | JavaScript 资源大全中文版,内容包括:包管理器、加载器、测试框架、运行器、QA、MVC框架和库、模板引擎等 | 6.5k | - | 06/28 |
| 211 | [fuck-xuexiqiangguo/Fuck-XueXiQiangGuo](https://github.com/fuck-xuexiqiangguo/Fuck-XueXiQiangGuo) | 学习强国 懒人刷分工具 自动学习 | 6.5k | - | 05/17 |
| 212 | [crawlab-team/crawlab](https://github.com/crawlab-team/crawlab) | Distributed web crawler admin platform for spiders management regardless of languages and frameworks. 分布式爬虫管理平台,支持任何语言和框架 | 6.4k | Go | 07/08 |
| 213 | [huangz1990/redis-3.0-annotated](https://github.com/huangz1990/redis-3.0-annotated) | 带有详细注释的 Redis 3.0 代码(annotated Redis 3.0 source code)。 | 6.4k | C | 04/23 |
| 214 | [tumobi/nideshop-mini-program](https://github.com/tumobi/nideshop-mini-program) | NideShop:基于Node.js+MySQL开发的开源微信小程序商城(微信小程序) | 6.4k | JavaScript | 01/20 |
| 215 | [lyswhut/lx-music-desktop](https://github.com/lyswhut/lx-music-desktop) | 一个基于 electron 的音乐软件 | 6.4k | JavaScript | 07/08 |
| 216 | [qinjx/30min_guides](https://github.com/qinjx/30min_guides) | 覃健祥的学习笔记,各种几十分钟入门的文档 | 6.4k | - | 02/09 |
| 217 | [greyireland/algorithm-pattern](https://github.com/greyireland/algorithm-pattern) | 算法模板,最科学的刷题方式,最快速的刷题路径,你值得拥有~ | 6.4k | Go | 07/07 |
| 218 | [luyishisi/Anti-Anti-Spider](https://github.com/luyishisi/Anti-Anti-Spider) | 越来越多的网站具有反爬虫特性,有的用图片隐藏关键数据,有的使用反人类的验证码,建立反反爬虫的代码仓库,通过与不同特性的网站做斗争(无恶意)提高技术。(欢迎提交难以采集的网站)(因工作原因,项目暂停) | 6.3k | Python | 06/29 |
| 219 | [macrozheng/mall-admin-web](https://github.com/macrozheng/mall-admin-web) | mall-admin-web是一个电商后台管理系统的前端项目,基于Vue+Element实现。 主要包括商品管理、订单管理、会员管理、促销管理、运营管理、内容管理、统计报表、财务管理、权限管理、设置等功能。 | 6.3k | Vue | 07/04 |
| 220 | [wuhan2020/wuhan2020](https://github.com/wuhan2020/wuhan2020) | 新型冠状病毒防疫信息收集平台 | 6.3k | - | 05/19 |
| 221 | [JeffreySu/WeiXinMPSDK](https://github.com/JeffreySu/WeiXinMPSDK) | 微信公众平台SDK Senparc.Weixin for C#,支持.NET Framework及.NET Core。已支持微信公众号、小程序、小游戏、企业号、企业微信、开放平台、微信支付、JSSDK、微信周边等全平台。 WeChat SDK for C#. | 6.3k | C# | 06/29 |
| 222 | [nusr/hacker-laws-zh](https://github.com/nusr/hacker-laws-zh) | 💻📖对开发人员有用的定律、理论、原则和模式。(Laws, Theories, Principles and Patterns that developers will find useful.) | 5.9k | - | 02/26 |
| 223 | [1c7/Crash-Course-Computer-Science-Chinese](https://github.com/1c7/Crash-Course-Computer-Science-Chinese) | :computer: 计算机速成课 \| Crash Course 字幕组 (全40集 2018-5-1 精校完成) | 5.9k | JavaScript | 07/02 |
| 224 | [CoolPhilChen/SJTU-Courses](https://github.com/CoolPhilChen/SJTU-Courses) | 上海交通大学课程资料分享 | 5.9k | - | 04/17 |
| 225 | [dyc87112/SpringCloud-Learning](https://github.com/dyc87112/SpringCloud-Learning) | Spring Cloud基础教程,持续连载更新中 | 5.9k | Java | 07/02 |
| 226 | [crossoverJie/cim](https://github.com/crossoverJie/cim) | 📲cim(cross IM) 适用于开发者的分布式即时通讯系统 | 5.9k | Java | 07/04 |
| 227 | [czy36mengfei/tensorflow2_tutorials_chinese](https://github.com/czy36mengfei/tensorflow2_tutorials_chinese) | tensorflow2中文教程,持续更新(当前版本:tensorflow2.0),tag: tensorflow 2.0 tutorials | 5.9k | Jupyter Notebook | 06/11 |
| 228 | [gsdios/SDCycleScrollView](https://github.com/gsdios/SDCycleScrollView) | Autoscroll Banner. 无限循环图片、文字轮播器。 | 5.8k | Objective-C | 06/15 |
| 229 | [OpenFlutter/Flutter-Notebook](https://github.com/OpenFlutter/Flutter-Notebook) | FlutterDemo合集,今天你fu了吗 | 5.8k | Dart | 05/27 |
| 230 | [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.8k | Objective-C | 01/31 |
| 231 | [chyingp/nodejs-learning-guide](https://github.com/chyingp/nodejs-learning-guide) | Nodejs学习笔记以及经验总结,公众号"程序猿小卡" | 5.8k | Ruby | 07/08 |
| 232 | [macrozheng/mall-learning](https://github.com/macrozheng/mall-learning) | mall学习教程,架构、业务、技术要点全方位解析。mall项目(25k+star)是一套电商系统,使用现阶段主流技术实现。 涵盖了SpringBoot2.1.3、MyBatis3.4.6、Elasticsearch6.2.2、RabbitMQ3.7.15、Redis5.0、Mongodb4.2.5、Mysql5.7等技术,采用Docker容器化部署。 | 5.7k | Java | 07/06 |
| 233 | [Light-City/CPlusPlusThings](https://github.com/Light-City/CPlusPlusThings) | C++那些事 | 5.7k | C++ | 07/06 |
| 234 | [Tencent/QMUI_iOS](https://github.com/Tencent/QMUI_iOS) | QMUI iOS——致力于提高项目 UI 开发效率的解决方案 | 5.7k | Objective-C | 07/08 |
| 235 | [TalkingData/iview-weapp](https://github.com/TalkingData/iview-weapp) | 一套高质量的微信小程序 UI 组件库 | 5.7k | CSS | 04/29 |
| 236 | [lijin-THU/notes-python](https://github.com/lijin-THU/notes-python) | 中文 Python 笔记 | 5.6k | Jupyter Notebook | 05/15 |
| 237 | [opsnull/follow-me-install-kubernetes-cluster](https://github.com/opsnull/follow-me-install-kubernetes-cluster) | 和我一步步部署 kubernetes 集群 | 5.6k | Shell | 02/07 |
| 238 | [chokcoco/CSS-Inspiration](https://github.com/chokcoco/CSS-Inspiration) | CSS Inspiration,在这里找到写 CSS 的灵感! | 5.6k | JavaScript | 02/08 |
| 239 | [crownpku/Awesome-Chinese-NLP](https://github.com/crownpku/Awesome-Chinese-NLP) | A curated list of resources for Chinese NLP 中文自然语言处理相关资料 | 5.6k | - | 06/08 |
| 240 | [easzlab/kubeasz](https://github.com/easzlab/kubeasz) | 使用Ansible脚本安装K8S集群,介绍组件交互原理,方便直接,不受国内网络环境影响 | 5.6k | Shell | 06/20 |
| 241 | [Exrick/xmall](https://github.com/Exrick/xmall) | 基于SOA架构的分布式电商购物商城 前后端分离 前台商城:Vue全家桶 后台管理系统:Dubbo/SSM/Elasticsearch/Redis/MySQL/ActiveMQ/Shiro/Zookeeper等 | 5.6k | Java | 07/02 |
| 242 | [NLPchina/ansj_seg](https://github.com/NLPchina/ansj_seg) | ansj分词.ict的真正java实现.分词效果速度都超过开源版的ict. 中文分词,人名识别,词性标注,用户自定义词典 | 5.5k | Java | 01/31 |
| 243 | [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 | 5.5k | - | 07/07 |
| 244 | [NLP-LOVE/ML-NLP](https://github.com/NLP-LOVE/ML-NLP) | 此项目是机器学习(Machine Learning)、深度学习(Deep Learning)、NLP面试中常考到的知识点和代码实现,也是作为一个算法工程师必会的理论基础知识。 | 5.5k | Jupyter Notebook | 04/20 |
| 245 | [injetlee/Python](https://github.com/injetlee/Python) | Python脚本。模拟登录知乎, 爬虫,操作excel,微信公众号,远程开机 | 5.5k | Python | 02/10 |
| 246 | [goldze/MVVMHabit](https://github.com/goldze/MVVMHabit) | 👕基于谷歌最新AAC架构,MVVM设计模式的一套快速开发库,整合Okhttp+RxJava+Retrofit+Glide等主流模块,满足日常开发需求。使用该框架可以快速开发一个高质量、易维护的Android应用。 | 5.5k | Java | 06/05 |
| 247 | [jindongwang/transferlearning](https://github.com/jindongwang/transferlearning) | Everything about Transfer Learning and Domain Adaptation--迁移学习 | 5.5k | Python | 07/06 |
| 248 | [EZLippi/Tinyhttpd](https://github.com/EZLippi/Tinyhttpd) | Tinyhttpd 是J. David Blackstone在1999年写的一个不到 500 行的超轻量型 Http Server,用来学习非常不错,可以帮助我们真正理解服务器程序的本质。官网:http://tinyhttpd.sourceforge.net | 5.5k | C | 06/16 |
| 249 | [sparklemotion/nokogiri](https://github.com/sparklemotion/nokogiri) | Nokogiri (鋸) is a Rubygem providing HTML, XML, SAX, and Reader parsers with XPath and CSS selector support. | 5.5k | Java | 07/06 |
| 250 | [gedoor/MyBookshelf](https://github.com/gedoor/MyBookshelf) | 阅读是一款可以自定义来源阅读网络内容的工具,为广大网络文学爱好者提供一种方便、快捷舒适的试读体验。 | 5.4k | Java | 07/04 |
| 251 | [houtianze/bypy](https://github.com/houtianze/bypy) | Python client for Baidu Yun (Personal Cloud Storage) 百度云/百度网盘Python客户端 | 5.4k | Python | 06/30 |
| 252 | [ljianshu/Blog](https://github.com/ljianshu/Blog) | 关注基础知识,打造优质前端博客,公众号[前端工匠]的作者 | 5.3k | JavaScript | 06/08 |
| 253 | [eip-work/kuboard-press](https://github.com/eip-work/kuboard-press) | Kuboard 是基于 Kubernetes 的微服务管理界面。同时提供 Kubernetes 免费中文教程,入门教程,最新版本的 Kubernetes v1.18 安装手册,(k8s install) 在线答疑,持续更新。 | 5.3k | JavaScript | 07/06 |
| 254 | [knightliao/disconf](https://github.com/knightliao/disconf) | Distributed Configuration Management Platform(分布式配置管理平台) | 5.3k | Java | 04/07 |
| 255 | [cloudreve/Cloudreve](https://github.com/cloudreve/Cloudreve) | 🌩支持多家云存储的云盘系统 (A project helps you build your own cloud in minutes) | 5.3k | Go | 06/20 |
| 256 | [zouzg/mybatis-generator-gui](https://github.com/zouzg/mybatis-generator-gui) | mybatis-generator界面工具,让你生成代码更简单更快捷 | 5.3k | Java | 05/17 |
| 257 | [kaina404/FlutterDouBan](https://github.com/kaina404/FlutterDouBan) | 🔥🔥🔥Flutter豆瓣客户端,Awesome Flutter Project,全网最100%还原豆瓣客户端。首页、书影音、小组、市集及个人中心,一个不拉。( https://img.xuvip.top/douyademo.mp4) | 5.3k | Dart | 04/18 |
| 258 | [YunaiV/SpringBoot-Labs](https://github.com/YunaiV/SpringBoot-Labs) | 一个涵盖六个专栏:Spring Boot 2.X、Spring Cloud、Spring Cloud Alibaba、Dubbo、分布式消息队列、分布式事务的仓库。希望胖友小手一抖,右上角来个 Star,感恩 1024 | 5.3k | Java | 07/02 |
| 259 | [OI-wiki/OI-wiki](https://github.com/OI-wiki/OI-wiki) | :star2: Wiki of OI / ICPC for everyone. (某大型游戏线上攻略,内含炫酷算术魔法) | 5.2k | - | 07/08 |
| 260 | [ityouknow/spring-cloud-examples](https://github.com/ityouknow/spring-cloud-examples) | Spring Cloud 学习案例,服务发现、服务治理、链路追踪、服务监控等 | 5.2k | Java | 04/18 |
| 261 | [extreme-assistant/CVPR2020-Paper-Code-Interpretation](https://github.com/extreme-assistant/CVPR2020-Paper-Code-Interpretation) | cvpr2020/cvpr2019/cvpr2018/cvpr2017 papers,极市团队整理 | 5.2k | - | 07/06 |
| 262 | [jpush/aurora-imui](https://github.com/jpush/aurora-imui) | General IM UI components. Android/iOS/RectNative ready. 通用 IM 聊天 UI 组件,已经同时支持 Android/iOS/RN。 | 5.2k | Java | 04/05 |
| 263 | [hotoo/pinyin](https://github.com/hotoo/pinyin) | :cn: 汉字拼音 ➜ hàn zì pīn yīn | 5.2k | JavaScript | 06/07 |
| 264 | [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.2k | Jupyter Notebook | 06/09 |
| 265 | [datawhalechina/leeml-notes](https://github.com/datawhalechina/leeml-notes) | 李宏毅《机器学习》笔记,在线阅读地址:https://datawhalechina.github.io/leeml-notes | 5.2k | - | 05/10 |
| 266 | [ACL4SSR/ACL4SSR](https://github.com/ACL4SSR/ACL4SSR) | SSR 去广告ACL规则/SS完整GFWList规则/Clash规则碎片,Telegram频道订阅地址 | 5.2k | HTML | 07/08 |
| 267 | [wildfirechat/server](https://github.com/wildfirechat/server) | 即时通讯(IM)系统 | 5.2k | Java | 07/06 |
| 268 | [lenve/VBlog](https://github.com/lenve/VBlog) | V部落,Vue+SpringBoot实现的多用户博客管理平台! | 5.2k | Java | 05/15 |
| 269 | [fex-team/ueditor](https://github.com/fex-team/ueditor) | rich text 富文本编辑器 | 5.1k | JavaScript | 06/16 |
| 270 | [sohutv/cachecloud](https://github.com/sohutv/cachecloud) | 搜狐视频(sohu tv)Redis私有云平台 | 5.1k | Java | 07/02 |
| 271 | [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.1k | Python | 06/20 |
| 272 | [wuchangming/spy-debugger](https://github.com/wuchangming/spy-debugger) | 微信调试,各种WebView样式调试、手机浏览器的页面真机调试。便捷的远程调试手机页面、抓包工具,支持:HTTP/HTTPS,无需USB连接设备。 | 5.1k | JavaScript | 03/18 |
| 273 | [liyifeng1994/ssm](https://github.com/liyifeng1994/ssm) | 手把手教你整合最优雅SSM框架:SpringMVC + Spring + MyBatis | 5.1k | Java | 07/02 |
| 274 | [ouyanghuiyu/chineseocr_lite](https://github.com/ouyanghuiyu/chineseocr_lite) | 超轻量级中文ocr,支持竖排文字识别, 支持ncnn推理 , dbnet(1.7M) + crnn(6.3M) + anglenet(1.5M) 总模型仅10M | 5.1k | C++ | 07/08 |
| 275 | [xianhu/LearnPython](https://github.com/xianhu/LearnPython) | 以撸代码的形式学习Python | 5.1k | Jupyter Notebook | 06/24 |
| 276 | [PaddlePaddle/Paddle-Lite](https://github.com/PaddlePaddle/Paddle-Lite) | Multi-platform high performance deep learning inference engine (『飞桨』多平台高性能深度学习预测引擎) | 5.0k | C++ | 07/08 |
| 277 | [react-better/react-admin](https://github.com/react-better/react-admin) | :sparkles: react-admin system solution : react 后台管理系统解决方案 | 5.0k | TypeScript | 06/12 |
| 278 | [guodongxiaren/README](https://github.com/guodongxiaren/README) | README文件语法解读,即Github Flavored Markdown语法介绍 | 5.0k | - | 04/11 |
| 279 | [ustbhuangyi/vue-analysis](https://github.com/ustbhuangyi/vue-analysis) | :thumbsup: Vue.js 源码分析 | 5.0k | JavaScript | 06/07 |
| 280 | [HcySunYang/vue-design](https://github.com/HcySunYang/vue-design) | 📖 master分支:《渲染器》 elegant分支:逐行级别的源码分析 | 5.0k | JavaScript | 06/12 |
| 281 | [Sunnyyoung/WeChatTweak-macOS](https://github.com/Sunnyyoung/WeChatTweak-macOS) | A dynamic library tweak for WeChat macOS - 首款微信 macOS 客户端撤回拦截与多开 | 4.9k | Objective-C | 04/28 |
| 282 | [lancopku/pkuseg-python](https://github.com/lancopku/pkuseg-python) | pkuseg多领域中文分词工具; The pkuseg toolkit for multi-domain Chinese word segmentation | 4.9k | Python | 06/21 |
| 283 | [Dod-o/Statistical-Learning-Method_Code](https://github.com/Dod-o/Statistical-Learning-Method_Code) | 手写实现李航《统计学习方法》书中全部算法 | 4.9k | Python | 05/23 |
| 284 | [timqian/chinese-independent-blogs](https://github.com/timqian/chinese-independent-blogs) | 中文独立博客列表 | 4.9k | JavaScript | 07/07 |
| 285 | [Vonng/ddia](https://github.com/Vonng/ddia) | 《Designing Data-Intensive Application》DDIA中文翻译 | 4.8k | - | 07/08 |
| 286 | [PaddlePaddle/models](https://github.com/PaddlePaddle/models) | Pre-trained and Reproduced Deep Learning Models (『飞桨』官方模型库,包含多种学术前沿和工业场景验证的深度学习模型) | 4.8k | Python | 07/05 |
| 287 | [febsteam/FEBS-Shiro](https://github.com/febsteam/FEBS-Shiro) | Spring Boot 2.2.5,Shiro1.4.2 & Layui 2.5.5 权限管理系统。预览地址:http://47.104.70.138:8080/login | 4.8k | Java | 06/11 |
| 288 | [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 换肤框架, 极低的学习成本, 极好的用户体验. "一行"代码就可以实现换肤, 你值得拥有!!! | 4.8k | Java | 06/05 |
| 289 | [smallnest/rpcx](https://github.com/smallnest/rpcx) | A zero cost, faster multi-language bidirectional 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! 𝐉𝐚𝐯𝐚有𝐝𝐮𝐛𝐛𝐨, 𝐆𝐨𝐥𝐚𝐧𝐠有𝐫𝐩𝐜𝐱! | 4.8k | Go | 07/01 |
| 290 | [nonstriater/Learn-Algorithms](https://github.com/nonstriater/Learn-Algorithms) | 算法学习笔记 | 4.7k | C | 05/28 |
| 291 | [yanzhenjie/SwipeRecyclerView](https://github.com/yanzhenjie/SwipeRecyclerView) | :melon: RecyclerView侧滑菜单,Item拖拽,滑动删除Item,自动加载更多,HeaderView,FooterView,Item分组黏贴。 | 4.7k | Java | 05/31 |
| 292 | [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.7k | Python | 06/23 |
| 293 | [huiyadanli/RevokeMsgPatcher](https://github.com/huiyadanli/RevokeMsgPatcher) | :trollface: A hex editor for WeChat/QQ/TIM - PC版微信/QQ/TIM防撤回补丁(我已经看到了,撤回也没用了) | 4.7k | C# | 06/30 |
| 294 | [jackzhenguo/python-small-examples](https://github.com/jackzhenguo/python-small-examples) | 告别枯燥,致力于打造 Python 富有体系且实用的小例子、小案例。 | 4.7k | Python | 07/07 |
| 295 | [changmingxie/tcc-transaction](https://github.com/changmingxie/tcc-transaction) | tcc-transaction是TCC型事务java实现 | 4.7k | Java | 07/02 |
| 296 | [wklken/k-vim](https://github.com/wklken/k-vim) | vim配置 | 4.7k | Vim script | 04/15 |
| 297 | [We5ter/Scanners-Box](https://github.com/We5ter/Scanners-Box) | A powerful hacker toolkit collected more than 10 categories of open source scanners from Github - 安全行业从业者自研开源扫描器合辑 | 4.7k | - | 05/09 |
| 298 | [pujiaxin33/JXCategoryView](https://github.com/pujiaxin33/JXCategoryView) | A powerful and easy to use category view (segmentedcontrol, segmentview, pagingview, pagerview, pagecontrol) (腾讯新闻、今日头条、QQ音乐、网易云音乐、京东、爱奇艺、腾讯视频、淘宝、天猫、简书、微博等所有主流APP分类切换滚动视图) | 4.7k | Objective-C | 07/03 |
| 299 | [warmheartli/ChatBotCourse](https://github.com/warmheartli/ChatBotCourse) | 自己动手做聊天机器人教程 | 4.7k | Python | 01/04 |
| 300 | [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.6k | Java | 04/08 |
⬆ [回到目录](#目录)
<br/>
## Java
| # | Repository | Description | Stars | Language | Updated |
| ---- | ------------------------------------------------------------ | ------------------------------------------------------------ | ------ | -------- | ------- |
| 1 | [CyC2018/CS-Notes](https://github.com/CyC2018/CS-Notes) | :books: 技术面试必备基础知识、Leetcode、计算机操作系统、计算机网络、系统设计、Java、Python、C++ | 105.5k | Java | 05/29 |
| 2 | [Snailclimb/JavaGuide](https://github.com/Snailclimb/JavaGuide) | 「Java学习+面试指南」一份涵盖大部分Java程序员所需要掌握的核心知识。 | 83.4k | Java | 07/07 |
| 3 | [MisterBooo/LeetCodeAnimation](https://github.com/MisterBooo/LeetCodeAnimation) | Demonstrate all the questions on LeetCode in the form of animation.(用动画的形式呈现解LeetCode题目的思路) | 56.4k | Java | 06/28 |
| 4 | [doocs/advanced-java](https://github.com/doocs/advanced-java) | 😮 互联网 Java 工程师进阶知识完全扫盲:涵盖高并发、分布式、高可用、微服务、海量数据处理等领域知识,后端同学必看,前端同学也可学习 | 45.3k | Java | 07/05 |
| 5 | [macrozheng/mall](https://github.com/macrozheng/mall) | mall项目是一套电商系统,包括前台商城系统及后台管理系统,基于SpringBoot+MyBatis实现,采用Docker容器化部署。 前台商城系统包含首页门户、商品推荐、商品搜索、商品展示、购物车、订单流程、会员中心、客户服务、帮助中心等模块。 后台管理系统包含商品管理、订单管理、会员管理、促销管理、运营管理、内容管理、统计报表、财务管理、权限管理、设置等模块。 | 37.7k | Java | 07/07 |
| 6 | [ityouknow/spring-boot-examples](https://github.com/ityouknow/spring-boot-examples) | about learning Spring Boot via examples. Spring Boot 教程、技术栈示例代码,快速简单上手教程。 | 22.8k | Java | 05/05 |
| 7 | [kon9chunkit/GitHub-Chinese-Top-Charts](https://github.com/kon9chunkit/GitHub-Chinese-Top-Charts) | :cn: GitHub中文排行榜,帮助你发现高分优秀中文项目、更高效地吸收国人的优秀经验成果;榜单每周更新一次,敬请关注! | 22.3k | Java | 07/08 |
| 8 | [alibaba/arthas](https://github.com/alibaba/arthas) | Alibaba Java Diagnostic Tool Arthas/Alibaba Java诊断利器Arthas | 21.9k | Java | 07/07 |
| 9 | [alibaba/druid](https://github.com/alibaba/druid) | 阿里巴巴计算平台事业部出品,为监控而生的数据库连接池 | 21.6k | Java | 07/07 |
| 10 | [ctripcorp/apollo](https://github.com/ctripcorp/apollo) | Apollo(阿波罗)是携程框架部门研发的分布式配置中心,能够集中化管理应用不同环境、不同集群的配置,配置修改后能够实时推送到应用端,并且具备规范的权限、流程治理等特性,适用于微服务配置管理场景。 | 21.4k | Java | 07/05 |
| 11 | [scwang90/SmartRefreshLayout](https://github.com/scwang90/SmartRefreshLayout) | 🔥下拉刷新、上拉加载、二级刷新、淘宝二楼、RefreshLayout、OverScroll,Android智能下拉刷新框架,支持越界回弹、越界拖动,具有极强的扩展性,集成了几十种炫酷的Header和 Footer。 | 21.0k | Java | 06/28 |
| 12 | [lenve/vhr](https://github.com/lenve/vhr) | 微人事是一个前后端分离的人力资源管理系统,项目采用SpringBoot+Vue开发。 | 17.4k | Java | 06/30 |
| 13 | [qiurunze123/miaosha](https://github.com/qiurunze123/miaosha) | ⭐⭐⭐⭐秒杀系统设计与实现.互联网工程师进阶与分析🙋🐓 | 16.3k | Java | 07/02 |
| 14 | [xkcoding/spring-boot-demo](https://github.com/xkcoding/spring-boot-demo) | spring boot demo 是一个用来深度学习并实战 spring boot 的项目,目前总共包含 65 个集成demo,已经完成 53 个。 该项目已成功集成 actuator(监控)、admin(可视化监控)、logback(日志)、aopLog(通过AOP记录web请求日志)、统一异常处理(json级别和页面级别)、freemarker(模板引擎)、thymeleaf(模板引擎)、Beetl(模板引擎)、Enjoy(模板引擎)、JdbcTemplate(通用JDBC操作数据库)、JPA(强大的ORM框架)、mybatis(强大的ORM框架)、通用Mapper(快速操作Mybati ... | 16.1k | Java | 07/02 |
| 15 | [hollischuang/toBeTopJavaer](https://github.com/hollischuang/toBeTopJavaer) | To Be Top Javaer - Java工程师成神之路 | 15.8k | Java | 06/19 |
| 16 | [halo-dev/halo](https://github.com/halo-dev/halo) | ✍ An excellent open source blog publishing application. \| 一个优秀的开源博客发布应用。 | 15.8k | Java | 07/05 |
| 17 | [alibaba/easyexcel](https://github.com/alibaba/easyexcel) | 快速、简单避免OOM的java处理Excel工具 | 15.7k | Java | 06/24 |
| 18 | [shuzheng/zheng](https://github.com/shuzheng/zheng) | 基于Spring+SpringMVC+Mybatis分布式敏捷开发系统架构,提供整套公共微服务服务模块:集中权限管理(单点登录)、内容管理、支付中心、用户管理(支持第三方登录)、微信平台、存储系统、配置中心、日志分析、任务和通知等,支持服务治理、监控和追踪,努力为中小型企业打造全方位J2EE企业级开发解决方案。 | 15.5k | Java | 07/02 |
| 19 | [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 | 15.3k | Java | 05/13 |
| 20 | [didi/DoraemonKit](https://github.com/didi/DoraemonKit) | A full-featured App (iOS & Android) development assistant. You deserve it. 简称 "DoKit" 。一款功能齐全的客户端( iOS 、Android、微信小程序 )研发助手,你值得拥有。https://www.dokit.cn/ | 15.0k | Java | 07/07 |
| 21 | [alibaba/canal](https://github.com/alibaba/canal) | 阿里巴巴 MySQL binlog 增量订阅&消费组件 | 14.6k | Java | 06/29 |
| 22 | [xuxueli/xxl-job](https://github.com/xuxueli/xxl-job) | A distributed task scheduling framework.(分布式任务调度平台XXL-JOB) | 14.6k | Java | 07/02 |
| 23 | [CarGuo/GSYVideoPlayer](https://github.com/CarGuo/GSYVideoPlayer) | 视频播放器(IJKplayer、ExoPlayer、MediaPlayer),HTTPS,支持弹幕,外挂字幕,支持滤镜、水印、gif截图,片头广告、中间广告,多个同时播放,支持基本的拖动,声音、亮度调节,支持边播边缓存,支持视频自带rotation的旋转(90,270之类),重力旋转与手动旋转的同步支持,支持列表播放 ,列表全屏动画,视频加载速度,列表小窗口支持拖动,动画效果,调整比例,多分辨率切换,支持切换播放器,进度条小窗口预览,列表切换详情页面无缝播放,rtsp、concat、mpeg。 | 14.4k | Java | 07/07 |
| 24 | [zhangdaiscott/jeecg-boot](https://github.com/zhangdaiscott/jeecg-boot) | 基于代码生成器的低代码平台,无代码开发、超越传统商业平台!前后端分离架构:SpringBoot 2.x,Ant Design&Vue,Mybatis-plus,Shiro,JWT。强大的代码生成器让前后端代码一键生成,无需写任何代码! 引领新开发模式(OnlineCoding-> 代码生成-> 手工MERGE),帮助Java项目解决70%重复工作,让开发更关注业务逻辑,既能快速提高开发效率,帮助公司节省成本,同时又不失灵活性。 | 13.9k | Java | 07/03 |
| 25 | [dianping/cat](https://github.com/dianping/cat) | CAT 作为服务端项目基础组件,提供了 Java, C/C++, Node.js, Python, Go 等多语言客户端,已经在美团点评的基础架构中间件框架(MVC框架,RPC框架,数据库框架,缓存框架等,消息队列,配置系统等)深度集成,为美团点评各业务线提供系统丰富的性能指标、健康状况、实时告警等。 | 13.7k | Java | 07/07 |
| 26 | [linlinjava/litemall](https://github.com/linlinjava/litemall) | 又一个小商城。litemall = Spring Boot后端 + Vue管理员前端 + 微信小程序用户前端 + Vue用户移动端 | 13.6k | Java | 07/05 |
| 27 | [forezp/SpringCloudLearning](https://github.com/forezp/SpringCloudLearning) | 《史上最简单的Spring Cloud教程源码》 | 13.5k | Java | 06/10 |
| 28 | [JeffLi1993/springboot-learning-example](https://github.com/JeffLi1993/springboot-learning-example) | spring boot 实践学习案例,是 spring boot 初学者及核心技术巩固的最佳实践。另外写博客,用 OpenWrite。 | 13.1k | Java | 07/02 |
| 29 | [alibaba/Sentinel](https://github.com/alibaba/Sentinel) | A powerful flow control component enabling reliability, resilience and monitoring for microservices. (面向云原生微服务的高可用流控防护组件) | 12.9k | Java | 07/07 |
| 30 | [alibaba/ARouter](https://github.com/alibaba/ARouter) | 💪 A framework for assisting in the renovation of Android componentization (帮助 Android App 进行组件化改造的路由框架) | 12.1k | Java | 07/02 |
| 31 | [Bigkoo/Android-PickerView](https://github.com/Bigkoo/Android-PickerView) | This is a picker view for android , support linkage effect, timepicker and optionspicker.(时间选择器、省市区三级联动) | 11.9k | Java | 06/12 |
| 32 | [Tencent/QMUI_Android](https://github.com/Tencent/QMUI_Android) | 提高 Android UI 开发效率的 UI 库 | 11.7k | Java | 06/29 |
| 33 | [dyc87112/SpringBoot-Learning](https://github.com/dyc87112/SpringBoot-Learning) | Spring Boot基础教程,Spring Boot 2.x版本连载中!!! | 11.7k | Java | 07/02 |
| 34 | [elunez/eladmin](https://github.com/elunez/eladmin) | 项目基于 Spring Boot 2.1.0 、 Jpa、 Spring Security、redis、Vue的前后端分离的后台管理系统,项目采用分模块开发方式, 权限控制采用 RBAC,支持数据字典与数据权限管理,支持一键生成前后端代码,支持动态路由 | 9.7k | Java | 07/06 |
| 35 | [pagehelper/Mybatis-PageHelper](https://github.com/pagehelper/Mybatis-PageHelper) | Mybatis通用分页插件 | 9.4k | Java | 05/18 |
| 36 | [justauth/JustAuth](https://github.com/justauth/JustAuth) | :100: 小而全而美的第三方登录开源组件。目前已支持Github、Gitee、微博、钉钉、百度、Coding、腾讯云开发者平台、OSChina、支付宝、QQ、微信、淘宝、Google、Facebook、抖音、领英、小米、微软、今日头条、Teambition、StackOverflow、Pinterest、人人、华为、企业微信、酷家乐、Gitlab、美团、饿了么和推特等第三方平台的授权登录。 Login, so easy! | 9.0k | Java | 07/05 |
| 37 | [LuckSiege/PictureSelector](https://github.com/LuckSiege/PictureSelector) | Picture Selector Library for Android or 图片选择器 | 8.9k | Java | 06/17 |
| 38 | [seaswalker/spring-analysis](https://github.com/seaswalker/spring-analysis) | Spring源码阅读 | 8.9k | Java | 07/02 |
| 39 | [frank-lam/fullstack-tutorial](https://github.com/frank-lam/fullstack-tutorial) | 🚀 fullstack tutorial 2020,后台技术栈/架构师之路/全栈开发社区,春招/秋招/校招/面试 | 8.6k | Java | 05/30 |
| 40 | [daniulive/SmarterStreaming](https://github.com/daniulive/SmarterStreaming) | 国内外为数不多致力于极致体验的超强全自研跨平台(windows/android/iOS)流媒体内核,通过模块化自由组合,支持实时RTMP推流、RTSP推流、RTMP播放器、RTSP播放器、录像、多路流媒体转发、音视频导播、动态视频合成、音频混音、直播互动、内置轻量级RTSP服务等,比快更快,业界真正靠谱的超低延迟直播SDK(1秒内,低延迟模式下200~400ms)。 | 8.6k | Java | 07/07 |
| 41 | [bilibili/DanmakuFlameMaster](https://github.com/bilibili/DanmakuFlameMaster) | Android开源弹幕引擎·烈焰弹幕使 ~ | 8.6k | Java | 02/27 |
| 42 | [lihengming/spring-boot-api-project-seed](https://github.com/lihengming/spring-boot-api-project-seed) | :seedling::rocket:一个基于Spring Boot & MyBatis的种子项目,用于快速构建中小型API、RESTful API项目~ | 8.0k | Java | 04/21 |
| 43 | [hs-web/hsweb-framework](https://github.com/hs-web/hsweb-framework) | hsweb (haʊs wɛb) 是一个用于快速搭建企业后台管理系统的基础项目,集成一揽子便捷功能如:便捷的通用增删改查,强大的权限管理,动态多数据源,动态表单,在线数据库维护等. 基于 spring-boot,mybaits. | 7.3k | Java | 07/03 |
| 44 | [heibaiying/BigData-Notes](https://github.com/heibaiying/BigData-Notes) | 大数据入门指南 :star: | 7.2k | Java | 06/24 |
| 45 | [hyb1996/Auto.js](https://github.com/hyb1996/Auto.js) | A UiAutomator on android, does not need root access(安卓平台上的JavaScript自动化工具) | 7.0k | Java | 06/24 |
| 46 | [DuGuQiuBai/Java](https://github.com/DuGuQiuBai/Java) | 27天成为Java大神 | 6.7k | Java | 02/16 |
| 47 | [huanghaibin-dev/CalendarView](https://github.com/huanghaibin-dev/CalendarView) | Android上一个优雅、万能自定义UI、支持周视图、自定义周起始、性能高效的日历控件,支持热插拔实现的UI定制!支持标记、自定义颜色、农历、自定义月视图各种显示模式等。Canvas绘制,速度快、占用内存低,你真的想不到日历居然还可以如此优雅!An elegant, highly customized and high-performance Calendar Widget on Android. | 6.6k | Java | 04/21 |
| 48 | [alibaba/otter](https://github.com/alibaba/otter) | 阿里巴巴分布式数据库同步系统(解决中美异地机房) | 6.0k | Java | 07/02 |
| 49 | [crossoverJie/cim](https://github.com/crossoverJie/cim) | 📲cim(cross IM) 适用于开发者的分布式即时通讯系统 | 5.9k | Java | 07/04 |
| 50 | [dyc87112/SpringCloud-Learning](https://github.com/dyc87112/SpringCloud-Learning) | Spring Cloud基础教程,持续连载更新中 | 5.9k | Java | 07/02 |
| 51 | [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 实战与性能优化》 | 6.9k | Java | 07/04 |
| 52 | [macrozheng/mall-learning](https://github.com/macrozheng/mall-learning) | mall学习教程,架构、业务、技术要点全方位解析。mall项目(25k+star)是一套电商系统,使用现阶段主流技术实现。 涵盖了SpringBoot2.1.3、MyBatis3.4.6、Elasticsearch6.2.2、RabbitMQ3.7.15、Redis5.0、Mongodb4.2.5、Mysql5.7等技术,采用Docker容器化部署。 | 5.7k | Java | 07/06 |
| 53 | [Exrick/xmall](https://github.com/Exrick/xmall) | 基于SOA架构的分布式电商购物商城 前后端分离 前台商城:Vue全家桶 后台管理系统:Dubbo/SSM/Elasticsearch/Redis/MySQL/ActiveMQ/Shiro/Zookeeper等 | 5.5k | Java | 07/02 |
| 54 | [NLPchina/ansj_seg](https://github.com/NLPchina/ansj_seg) | ansj分词.ict的真正java实现.分词效果速度都超过开源版的ict. 中文分词,人名识别,词性标注,用户自定义词典 | 5.5k | Java | 01/31 |
| 55 | [goldze/MVVMHabit](https://github.com/goldze/MVVMHabit) | 👕基于谷歌最新AAC架构,MVVM设计模式的一套快速开发库,整合Okhttp+RxJava+Retrofit+Glide等主流模块,满足日常开发需求。使用该框架可以快速开发一个高质量、易维护的Android应用。 | 5.5k | Java | 06/05 |
| 56 | [sparklemotion/nokogiri](https://github.com/sparklemotion/nokogiri) | Nokogiri (鋸) is a Rubygem providing HTML, XML, SAX, and Reader parsers with XPath and CSS selector support. | 5.5k | Java | 07/06 |
| 57 | [gedoor/MyBookshelf](https://github.com/gedoor/MyBookshelf) | 阅读是一款可以自定义来源阅读网络内容的工具,为广大网络文学爱好者提供一种方便、快捷舒适的试读体验。 | 5.4k | Java | 07/04 |
| 58 | [knightliao/disconf](https://github.com/knightliao/disconf) | Distributed Configuration Management Platform(分布式配置管理平台) | 5.3k | Java | 04/07 |
| 59 | [zouzg/mybatis-generator-gui](https://github.com/zouzg/mybatis-generator-gui) | mybatis-generator界面工具,让你生成代码更简单更快捷 | 5.3k | Java | 05/17 |
| 60 | [ityouknow/spring-cloud-examples](https://github.com/ityouknow/spring-cloud-examples) | Spring Cloud 学习案例,服务发现、服务治理、链路追踪、服务监控等 | 5.2k | Java | 04/18 |
| 61 | [YunaiV/SpringBoot-Labs](https://github.com/YunaiV/SpringBoot-Labs) | 一个涵盖六个专栏:Spring Boot 2.X、Spring Cloud、Spring Cloud Alibaba、Dubbo、分布式消息队列、分布式事务的仓库。希望胖友小手一抖,右上角来个 Star,感恩 1024 | 5.2k | Java | 07/02 |
| 62 | [jpush/aurora-imui](https://github.com/jpush/aurora-imui) | General IM UI components. Android/iOS/RectNative ready. 通用 IM 聊天 UI 组件,已经同时支持 Android/iOS/RN。 | 5.2k | Java | 04/05 |
| 63 | [wildfirechat/server](https://github.com/wildfirechat/server) | 即时通讯(IM)系统 | 5.2k | Java | 07/06 |
| 64 | [lenve/VBlog](https://github.com/lenve/VBlog) | V部落,Vue+SpringBoot实现的多用户博客管理平台! | 5.1k | Java | 05/15 |
| 65 | [sohutv/cachecloud](https://github.com/sohutv/cachecloud) | 搜狐视频(sohu tv)Redis私有云平台 | 5.1k | Java | 07/02 |
| 66 | [liyifeng1994/ssm](https://github.com/liyifeng1994/ssm) | 手把手教你整合最优雅SSM框架:SpringMVC + Spring + MyBatis | 5.1k | Java | 07/02 |
| 67 | [febsteam/FEBS-Shiro](https://github.com/febsteam/FEBS-Shiro) | Spring Boot 2.2.5,Shiro1.4.2 & Layui 2.5.5 权限管理系统。预览地址:http://47.104.70.138:8080/login | 4.8k | Java | 06/11 |
| 68 | [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 换肤框架, 极低的学习成本, 极好的用户体验. "一行"代码就可以实现换肤, 你值得拥有!!! | 4.8k | Java | 06/05 |
| 69 | [yanzhenjie/SwipeRecyclerView](https://github.com/yanzhenjie/SwipeRecyclerView) | :melon: RecyclerView侧滑菜单,Item拖拽,滑动删除Item,自动加载更多,HeaderView,FooterView,Item分组黏贴。 | 4.7k | Java | 05/31 |
| 70 | [changmingxie/tcc-transaction](https://github.com/changmingxie/tcc-transaction) | tcc-transaction是TCC型事务java实现 | 4.7k | Java | 07/02 |
| 71 | [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.6k | Java | 04/08 |
| 72 | [hongyangAndroid/baseAdapter](https://github.com/hongyangAndroid/baseAdapter) | Android 万能的Adapter for ListView,RecyclerView,GridView等,支持多种Item类型的情况。 | 4.5k | Java | 02/13 |
| 73 | [KunMinX/Jetpack-MVVM-Best-Practice](https://github.com/KunMinX/Jetpack-MVVM-Best-Practice) | 是 难得一见 的 Jetpack MVVM 最佳实践!在 蕴繁于简 的代码中,对 视图控制器 乃至 标准化开发模式 形成正确、深入的理解! | 4.5k | Java | 07/04 |
| 74 | [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 ... | 4.5k | Java | 07/06 |
| 75 | [Tencent/Shadow](https://github.com/Tencent/Shadow) | 零反射全动态Android插件框架 | 4.5k | Java | 07/03 |
| 76 | [zhoutaoo/SpringCloud](https://github.com/zhoutaoo/SpringCloud) | 基于SpringCloud2.1的微服务开发脚手架,整合了spring-security-oauth2、nacos、feign、sentinel、springcloud-gateway等。服务治理方面引入elasticsearch、skywalking、springboot-admin、zipkin等,让项目开发快速进入业务开发,而不需过多时间花费在架构搭建上。持续更新中 | 4.5k | Java | 07/02 |
| 77 | [newbee-ltd/newbee-mall](https://github.com/newbee-ltd/newbee-mall) | newbee-mall 项目(新蜂商城)是一套电商系统,包括 newbee-mall 商城系统及 newbee-mall-admin 商城后台管理系统,基于 Spring Boot 2.X 及相关技术栈开发。 前台商城系统包含首页门户、商品分类、新品上线、首页轮播、商品推荐、商品搜索、商品展示、购物车、订单结算、订单流程、个人订单管理、会员中心、帮助中心等模块。 后台管理系统包含数据面板、轮播图管理、商品管理、订单管理、会员管理、分类管理、设置等模块。 | 4.4k | Java | 05/30 |
| 78 | [zhanghai/Douya](https://github.com/zhanghai/Douya) | 开源的 Material Design 豆瓣客户端(A Material Design app for douban.com) | 4.4k | Java | 04/13 |
| 79 | [SplashCodes/JAViewer](https://github.com/SplashCodes/JAViewer) | 更优雅的驾车体验 | 4.4k | Java | 02/25 |
| 80 | [youlookwhat/CloudReader](https://github.com/youlookwhat/CloudReader) | 云阅:一款基于网易云音乐UI,使用WanAndroid、Gank.Io及时光网api开发的符合Google Material Design的Android客户端。项目采取的是MVVM-DataBinding架构开发,主要包括:玩安卓区、干货区和电影区三个子模块。 | 4.3k | Java | 06/24 |
| 81 | [ZXZxin/ZXBlog](https://github.com/ZXZxin/ZXBlog) | 记录各种学习笔记(算法、Java、数据库、并发......) | 4.2k | Java | 03/26 |
| 82 | [apache/incubator-dolphinscheduler](https://github.com/apache/incubator-dolphinscheduler) | Dolphin Scheduler is a distributed and easy-to-extend visual workflow scheduling platform, dedicated to solving the complex dependencies in data processing, making the scheduling system out of the box for data processing.(分布式易扩展的可视化工作流任务调度) | 4.1k | Java | 07/07 |
| 83 | [jeasonlzy/ImagePicker](https://github.com/jeasonlzy/ImagePicker) | 完全仿微信的图片选择,并且提供了多种图片加载接口,选择图片后可以旋转,可以裁剪成矩形或圆形,可以配置各种其他的参数 | 4.1k | Java | 04/04 |
| 84 | [ffay/lanproxy](https://github.com/ffay/lanproxy) | lanproxy是一个将局域网个人电脑、服务器代理到公网的内网穿透工具,支持tcp流量转发,可支持任何tcp上层协议(访问内网网站、本地支付接口调试、ssh访问、远程桌面...)。目前市面上提供类似服务的有花生壳、TeamView、GoToMyCloud等等,但要使用第三方的公网服务器就必须为第三方付费,并且这些服务都有各种各样的限制,此外,由于数据包会流经第三方,因此对数据安全也是一大隐患。技术交流QQ群 1067424330 | 4.1k | Java | 05/30 |
| 85 | [527515025/springBoot](https://github.com/527515025/springBoot) | springboot 框架与其它组件结合如 jpa、mybatis、websocket、security、shiro、cache等 | 4.0k | Java | 07/02 |
| 86 | [razerdp/BasePopup](https://github.com/razerdp/BasePopup) | 一款针对系统PopupWindow优化的Popup库,功能强大,支持背景模糊,定位简单,你会爱上他的~ | 3.9k | Java | 07/05 |
| 87 | [techGay/v9porn](https://github.com/techGay/v9porn) | 9*Porn Android 客户端,突破游客每天观看10次视频的限制,还可以下载视频 | 3.8k | Java | 06/24 |
| 88 | [AriaLyy/Aria](https://github.com/AriaLyy/Aria) | 下载可以很简单 | 3.8k | Java | 07/07 |
| 89 | [hustcc/JS-Sorting-Algorithm](https://github.com/hustcc/JS-Sorting-Algorithm) | 一本关于排序算法的 GitBook 在线书籍 《十大经典排序算法》,多语言实现。 | 3.7k | Java | 05/04 |
| 90 | [2227324689/gpmall](https://github.com/2227324689/gpmall) | 【咕泡学院实战项目】-基于SpringBoot+Dubbo构建的电商平台-微服务架构、商城、电商、微服务、高并发、kafka、Elasticsearch | 3.5k | Java | 07/04 |
| 91 | [roncoo/roncoo-pay](https://github.com/roncoo/roncoo-pay) | 龙果支付系统(roncoo-pay)是国内首款开源的互联网支付系统,拥有独立的账户体系、用户体系、支付接入体系、支付交易体系、对账清结算体系。目标是打造一款集成主流支付方式且轻量易用的支付收款系统,满足互联网业务系统打通支付通道实现支付收款和业务资金管理等功能。 | 3.5k | Java | 05/21 |
| 92 | [Exrick/xpay](https://github.com/Exrick/xpay) | XPay个人免签收款支付系统 完全免费 资金直接到达本人账号 支持 支付宝 微信 QQ 云闪付 无需备案 无需签约 无需挂机监控APP 无需插件 无需第三方支付SDK 无需营业执照身份证 只需收款码 搞定支付流程 现已支持移动端支付 | 3.5k | Java | 07/02 |
| 93 | [luckybilly/CC](https://github.com/luckybilly/CC) | 业界首个支持渐进式组件化改造的Android组件化开源框架,支持跨进程调用。Componentize your android project gradually. | 3.4k | Java | 05/27 |
| 94 | [zzhoujay/RichText](https://github.com/zzhoujay/RichText) | Android平台下的富文本解析器,支持Html和Markdown | 3.4k | Java | 03/06 |
| 95 | [alipay/SoloPi](https://github.com/alipay/SoloPi) | SoloPi 自动化测试工具 | 3.4k | Java | 06/05 |
| 96 | [ming1016/study](https://github.com/ming1016/study) | 学习记录 | 3.3k | Java | 05/05 |
| 97 | [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.3k | Java | 06/17 |
| 98 | [javagrowing/JGrowing](https://github.com/javagrowing/JGrowing) | Java is Growing up but not only Java。Java成长路线,但学到不仅仅是Java。 | 3.3k | Java | 02/21 |
| 99 | [guolindev/giffun](https://github.com/guolindev/giffun) | 一款开源的GIF在线分享App,乐趣就要和世界分享。 | 3.3k | Java | 02/06 |
| 100 | [mercyblitz/tech-weekly](https://github.com/mercyblitz/tech-weekly) | 「小马哥技术周报」 | 3.2k | Java | 03/29 |
| 101 | [ZHENFENG13/spring-boot-projects](https://github.com/ZHENFENG13/spring-boot-projects) | 该仓库中主要是 Spring Boot 的入门学习教程以及一些常用的 Spring Boot 实战项目教程,包括 Spring Boot 使用的各种示例代码,同时也包括一些实战项目的项目源码和效果展示,实战项目包括基本的 web 开发以及目前大家普遍使用的线上博客项目/企业大型商城系统/前后端分离实践项目等,摆脱各种 hello world 入门案例的束缚,真正的掌握 Spring Boot 开发。 | 3.2k | Java | 05/30 |
| 102 | [hansonwang99/Spring-Boot-In-Action](https://github.com/hansonwang99/Spring-Boot-In-Action) | Spring Boot 系列实战合集 | 3.2k | Java | 07/02 |
| 103 | [hope-for/hope-boot](https://github.com/hope-for/hope-boot) | 🌱 Hope-Boot 一款现代化的脚手架项目 | 3.2k | Java | 04/02 |
| 104 | [mcxtzhang/SwipeDelMenuLayout](https://github.com/mcxtzhang/SwipeDelMenuLayout) | The most simple SwipeMenu in the history, 0 coupling, support any ViewGroup. Step integration swipe (delete) menu, high imitation QQ, iOS. ~史上最简单侧滑菜单,0耦合,支持任意ViewGroup。一步集成侧滑(删除)菜单,高仿QQ、IOS。~ | 3.2k | Java | 01/02 |
| 105 | [JZ-Darkal/AndroidHttpCapture](https://github.com/JZ-Darkal/AndroidHttpCapture) | AndroidHttpCapture网络诊断工具 是一款Android手机抓包软件 主要功能包括:手机端抓包、PING/DNS/TraceRoute诊断、抓包HAR数据上传分享。你也可以看成是Android版的"Fiddler" \(^o^)/~ | 3.2k | Java | 02/28 |
| 106 | [luojilab/DDComponentForAndroid](https://github.com/luojilab/DDComponentForAndroid) | 一套完整有效的android组件化方案,支持组件的组件完全隔离、单独调试、集成调试、组件交互、UI跳转、动态加载卸载等功能 | 3.1k | Java | 06/13 |
| 107 | [Nepxion/Discovery](https://github.com/Nepxion/Discovery) | 🐳 Nepxion Discovery is an enhancement for Spring Cloud Discovery with gray release, router, weight, limitation, circuit breaker, degrade, isolation, monitor, tracing 灰度发布、路由、权重、限流、熔断、降级、隔离、监控、追踪 | 3.1k | Java | 07/07 |
| 108 | [WVector/AppUpdate](https://github.com/WVector/AppUpdate) | 🚀 Android 版本更新 🚀 a library for android version update 🚀 | 3.1k | Java | 01/18 |
| 109 | [zzz40500/GsonFormat](https://github.com/zzz40500/GsonFormat) | 根据Gson库使用的要求,将JSONObject格式的String 解析成实体 | 3.1k | Java | 01/02 |
| 110 | [mpusher/mpush](https://github.com/mpusher/mpush) | MPush开源实时消息推送系统 | 3.1k | Java | 06/16 |
| 111 | [chillzhuang/SpringBlade](https://github.com/chillzhuang/SpringBlade) | SpringBlade 是一个由商业级项目升级优化而来的SpringCloud分布式微服务架构、SpringBoot单体式微服务架构并存的综合型项目,采用Java8 API重构了业务代码,完全遵循阿里巴巴编码规范。采用Spring Boot 2 、Spring Cloud Hoxton 、Mybatis 等核心技术,同时提供基于React和Vue的两个前端框架用于快速搭建企业级的SaaS多租户微服务平台。 官网:https://bladex.vip | 3.0k | Java | 06/12 |
| 112 | [stylefeng/Guns](https://github.com/stylefeng/Guns) | Guns基于SpringBoot 2,致力于做更简洁的后台管理系统,完美整合springmvc + shiro + mybatis-plus + beetl!Guns项目代码简洁,注释丰富,上手容易,同时Guns包含许多基础模块(用户管理,角色管理,部门管理,字典管理等10个模块),可以直接作为一个后台管理系统的脚手架! | 3.0k | Java | 07/02 |
| 113 | [kekingcn/kkFileView](https://github.com/kekingcn/kkFileView) | 使用spring boot打造文件文档在线预览项目解决方案,支持doc、docx、ppt、pptx、xls、xlsx、zip、rar、mp4,mp3以及众多类文本如txt、html、xml、java、properties、sql、js、md、json、conf、ini、vue、php、py、bat、gitignore等文件在线预览 | 2.9k | Java | 07/01 |
| 114 | [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版本。课程的更多更新内容及辅助练习也将逐步添加进这个代码仓。 | 2.9k | Java | 04/16 |
| 115 | [YunaiV/onemall](https://github.com/YunaiV/onemall) | 芋道 mall 商城,基于微服务的思想,构建在 B2C 电商场景下的项目实战。核心技术栈,是 Spring Boot + Dubbo 。未来,会重构成 Spring Cloud Alibaba 。 | 2.9k | Java | 07/02 |
| 116 | [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开放平台 | 2.8k | Java | 05/17 |
| 117 | [Heeexy/SpringBoot-Shiro-Vue](https://github.com/Heeexy/SpringBoot-Shiro-Vue) | 提供一套基于Spring Boot-Shiro-Vue的权限管理思路.前后端都加以控制,做到按钮/接口级别的权限 | 2.8k | Java | 05/20 |
| 118 | [Dromara/hmily](https://github.com/Dromara/hmily) | 微服务分布式事务TCC框架 | 2.8k | Java | 07/02 |
| 119 | [macrozheng/mall-swarm](https://github.com/macrozheng/mall-swarm) | mall-swarm是一套微服务商城系统,采用了 Spring Cloud Greenwich、Spring Boot 2、MyBatis、Docker、Elasticsearch等核心技术,同时提供了基于Vue的管理后台方便快速搭建系统。mall-swarm在电商业务的基础集成了注册中心、配置中心、监控中心、网关等系统功能。文档齐全,附带全套Spring Cloud教程。 | 2.8k | Java | 07/04 |
| 120 | [promeG/TinyPinyin](https://github.com/promeG/TinyPinyin) | 适用于Java和Android的快速、低内存占用的汉字转拼音库。 | 2.8k | Java | 04/29 |
| 121 | [crazyandcoder/citypicker](https://github.com/crazyandcoder/citypicker) | citypicker城市选择器,详细的省市区地址信息,支持仿iOS滚轮实现,仿京东样式,一级或者三级列表展示方式。 | 2.8k | Java | 04/29 |
| 122 | [h2pl/Java-Tutorial](https://github.com/h2pl/Java-Tutorial) | 【Java工程师面试复习指南】本仓库涵盖大部分Java程序员所需要掌握的核心知识,整合了互联网上的很多优质Java技术文章,力求打造为最完整最实用的Java开发者学习指南,如果对你有帮助,给个star告诉我吧,谢谢! | 2.8k | Java | 06/07 |
| 123 | [tuguangquan/mybatis](https://github.com/tuguangquan/mybatis) | mybatis源码中文注释 | 2.7k | Java | 07/02 |
| 124 | [huburt-Hu/NewbieGuide](https://github.com/huburt-Hu/NewbieGuide) | Android 快速实现新手引导层的库,通过简洁链式调用,一行代码实现引导层的显示 | 2.7k | Java | 07/01 |
| 125 | [Doikki/DKVideoPlayer](https://github.com/Doikki/DKVideoPlayer) | Android Video Player. 安卓视频播放器,封装MediaPlayer、ExoPlayer、IjkPlayer。模仿抖音并实现预加载,列表播放,悬浮播放,广告播放,弹幕 | 2.7k | Java | 06/01 |
| 126 | [MagicMashRoom/SuperCalendar](https://github.com/MagicMashRoom/SuperCalendar) | @Deprecated android 自定义日历控件 支持左右无限滑动 周月切换 标记日期显示 自定义显示效果跳转到指定日期 | 2.7k | Java | 05/31 |
| 127 | [lenve/JavaEETest](https://github.com/lenve/JavaEETest) | Spring、SpringMVC、MyBatis、Spring Boot案例 | 2.6k | Java | 07/02 |
| 128 | [FinalTeam/RxGalleryFinal](https://github.com/FinalTeam/RxGalleryFinal) | 图片选择库,单选/多选、拍照、裁剪、压缩,自定义。包括视频选择和录制。 | 2.6k | Java | 07/07 |
| 129 | [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.6k | Java | 06/29 |
| 130 | [jiajunhui/PlayerBase](https://github.com/jiajunhui/PlayerBase) | The basic library of Android player will process complex business components. The access is simple。Android播放器基础库,专注于播放视图组件的高复用性和组件间的低耦合,轻松处理复杂业务。 | 2.6k | Java | 06/01 |
| 131 | [bjmashibing/InternetArchitect](https://github.com/bjmashibing/InternetArchitect) | 年薪百万互联网架构师课程文档及源码(公开部分) | 2.6k | Java | 06/24 |
| 132 | [AbrahamCaiJin/CommonUtilLibrary](https://github.com/AbrahamCaiJin/CommonUtilLibrary) | 快速开发工具类收集,史上最全的开发工具类,欢迎Follow、Fork、Star | 2.5k | Java | 05/11 |
| 133 | [fengjundev/Android-Skin-Loader](https://github.com/fengjundev/Android-Skin-Loader) | 一个通过动态加载本地皮肤包进行换肤的皮肤框架 | 2.5k | Java | 02/11 |
| 134 | [prontera/spring-cloud-rest-tcc](https://github.com/prontera/spring-cloud-rest-tcc) | 以Spring Cloud Netflix作为服务治理基础, 展示基于tcc思想所实现的分布式事务解决方案 | 2.5k | Java | 02/09 |
| 135 | [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) | 2.4k | Java | 06/12 |
| 136 | [android-notes/Cockroach](https://github.com/android-notes/Cockroach) | 降低Android非必要crash | 2.4k | Java | 02/24 |
| 137 | [dingjikerbo/Android-BluetoothKit](https://github.com/dingjikerbo/Android-BluetoothKit) | Android BLE蓝牙通信库 | 2.4k | Java | 02/12 |
| 138 | [saysky/ForestBlog](https://github.com/saysky/ForestBlog) | 一个简单漂亮的SSM(Spring+SpringMVC+Mybatis)博客系统 | 2.4k | Java | 07/02 |
| 139 | [Javen205/IJPay](https://github.com/Javen205/IJPay) | IJPay 让支付触手可及,封装了微信支付、QQ支付、支付宝支付、京东支付、银联支付、PayPal 支付等常用的支付方式以及各种常用的接口。不依赖任何第三方 mvc 框架,仅仅作为工具使用简单快速完成支付模块的开发,可轻松嵌入到任何系统里。右上角点下小星星✨ | 2.4k | Java | 06/16 |
| 140 | [zuihou/zuihou-admin-cloud](https://github.com/zuihou/zuihou-admin-cloud) | 基于SpringCloud(Hoxton.SR3) + SpringBoot(2.2.6.RELEASE) 的SaaS 微服务脚手架,具有统一授权、认证后台管理系统,其中包含具备用户管理、资源权限管理、网关API、分布式事务、大文件断点分片续传等多个模块,支持多业务系统并行开发,可以作为后端服务的开发脚手架。代码简洁,架构清晰,适合学习和直接项目中使用。核心技术采用Nacos、Fegin、Ribbon、Zuul、Hystrix、JWT Token、Mybatis、SpringBoot、Redis、RibbitMQ等主要框架和中间件。 | 2.3k | Java | 05/23 |
| 141 | [BaronZ88/MinimalistWeather](https://github.com/BaronZ88/MinimalistWeather) | Android 平台开源天气 App,采用 MVP、RxJava、Retrofit2、OKHttp3、Dagger2、RetroLambda 等开源库来实现。 | 2.3k | Java | 05/04 |
| 142 | [Hitomis/transferee](https://github.com/Hitomis/transferee) | 一个帮助您完成从缩略视图到原视图无缝过渡转变的神奇框架 | 2.3k | Java | 06/27 |
| 143 | [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.3k | Java | 06/04 |
| 144 | [LaiFeng-Android/SopCastComponent](https://github.com/LaiFeng-Android/SopCastComponent) | 来疯直播安卓控件,支持flv,支持rtmp,支持添加视频特效等等 | 2.3k | Java | 06/04 |
| 145 | [Snailclimb/springboot-guide](https://github.com/Snailclimb/springboot-guide) | Not only Spring Boot but also important knowledge of Spring(不只是SpringBoot还有Spring重要知识点) | 2.3k | Java | 07/03 |
| 146 | [qunarcorp/bistoury](https://github.com/qunarcorp/bistoury) | Bistoury是去哪儿网的java应用生产问题诊断工具,提供了一站式的问题诊断方案 | 2.3k | Java | 07/02 |
| 147 | [xuexiangjys/XUI](https://github.com/xuexiangjys/XUI) | 💍一个简洁而优雅的Android原生UI框架,解放你的双手! | 2.3k | Java | 07/06 |
| 148 | [AlexLiuSheng/CheckVersionLib](https://github.com/AlexLiuSheng/CheckVersionLib) | 版本检测升级(更新)库。an auto check version library(app update) on Android | 2.3k | Java | 04/13 |
| 149 | [Pay-Group/best-pay-sdk](https://github.com/Pay-Group/best-pay-sdk) | 可能是最好的支付SDK | 2.2k | Java | 06/18 |
| 150 | [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.2k | Java | 05/29 |
| 151 | [JsonChao/Awesome-WanAndroid](https://github.com/JsonChao/Awesome-WanAndroid) | :zap:致力于打造一款极致体验的 http://www.wanandroid.com/ 客户端,知识和美是可以并存的哦QAQn(*≧▽≦*)n | 2.2k | Java | 06/24 |
| 152 | [liujingxing/okhttp-RxHttp](https://github.com/liujingxing/okhttp-RxHttp) | 🔥🔥🔥30秒上手,比Retrofit更好用的协程、RxJava2、RxJava3,史上最优雅的实现文件上传/下载/进度监听、动态/多域名、缓存;支持第三方数据解析工具、自定义请求、自动关闭请求等等 | 2.2k | Java | 07/06 |
| 153 | [liyiorg/weixin-popular](https://github.com/liyiorg/weixin-popular) | 微信SDK JAVA (公众平台、开放平台、 商户平台、 服务商平台) | 2.1k | Java | 04/26 |
| 154 | [qunarcorp/qmq](https://github.com/qunarcorp/qmq) | QMQ是去哪儿网内部广泛使用的消息中间件,自2012年诞生以来在去哪儿网所有业务场景中广泛的应用,包括跟交易息息相关的订单场景; 也包括报价搜索等高吞吐量场景。 | 2.1k | Java | 07/02 |
| 155 | [JPressProjects/jpress](https://github.com/JPressProjects/jpress) | JPress,一个使用 Java 开发的建站神器,目前已经有 10w+ 网站使用 JPress 进行驱动,其中包括多个政府机构,200+上市公司,中科院、红+字会等。 | 2.1k | Java | 07/02 |
| 156 | [QNJR-GROUP/EasyTransaction](https://github.com/QNJR-GROUP/EasyTransaction) | A distribute transaction solution(分布式事务) unified the usage of TCC , SAGA ,FMT (seata/fescar AutoCompensation), reliable message, compensate and so on; | 2.1k | Java | 07/02 |
| 157 | [xubinux/xbin-store](https://github.com/xubinux/xbin-store) | 模仿国内知名B2C网站,实现的一个分布式B2C商城 使用Spring Boot 自动配置 Dubbox / MVC / MyBatis / Druid / Solr / Redis 等。使用Spring Cloud版本请查看 | 2.1k | Java | 07/02 |
| 158 | [JeremyLiao/LiveEventBus](https://github.com/JeremyLiao/LiveEventBus) | :mailbox_with_mail:EventBus for Android,消息总线,基于LiveData,具有生命周期感知能力,支持Sticky,支持AndroidX,支持跨进程,支持跨APP | 2.1k | Java | 06/06 |
| 159 | [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.1k | Java | 07/07 |
| 160 | [BeesX/BeesAndroid](https://github.com/BeesX/BeesAndroid) | Android系统源码分析重构中 | 2.0k | Java | 07/07 |
| 161 | [xtuhcy/gecco](https://github.com/xtuhcy/gecco) | Easy to use lightweight web crawler(易用的轻量化网络爬虫) | 2.0k | Java | 07/04 |
| 162 | [xiaoyanger0825/NiceVieoPlayer](https://github.com/xiaoyanger0825/NiceVieoPlayer) | IjkPlayer/MediaPlayer+TextureView,支持列表,完美切换全屏、小窗口的Android视频播放器 | 2.0k | Java | 02/04 |
| 163 | [caiyonglong/MusicLake](https://github.com/caiyonglong/MusicLake) | MediaPlayer、Exoplayer音乐播放器,可播在线音乐,qq音乐,百度音乐,虾米音乐,网易云音乐,YouTuBe | 1.9k | Java | 05/27 |
| 164 | [xiaojinzi123/Component](https://github.com/xiaojinzi123/Component) | 🔥🔥🔥A powerful componentized framework.一个强大、100% 兼容、支持 AndroidX、支持 Kotlin并且灵活的组件化框架 | 1.9k | Java | 07/06 |
| 165 | [zlt2000/microservices-platform](https://github.com/zlt2000/microservices-platform) | 基于SpringBoot2.x、SpringCloud和SpringCloudAlibaba并采用前后端分离的企业级微服务多租户系统架构。并引入组件化的思想实现高内聚低耦合,项目代码简洁注释丰富上手容易,适合学习和企业中使用。真正实现了基于RBAC、jwt和oauth2的无状态统一权限认证的解决方案,面向互联网设计同时适合B端和C端用户,支持CI/CD多环境部署,并提供应用管理方便第三方系统接入;同时还集合各种微服务治理功能和监控功能。模块包括:企业级的认证系统、开发平台、应用监控、慢sql监控、统一日志、单点登录、Redis分布式高速缓存、配置中心、分布式任务调度、接口文档、代码生成等等。 | 1.9k | Java | 06/29 |
| 166 | [EhsanTang/ApiManager](https://github.com/EhsanTang/ApiManager) | CRAP - 开源API接口管理平台 \| 完全开源、免费使用的API接口管理系统、BUG管理系统:API接口管理、文档管理、数据库表管理、接口调试、浏览器调试插件、导出word&pdf接口…..,采用SpringMVC + MyBatis + Lucene + Bootstrap + Angularjs + Iconfont + Guava Cache ,线上使用地址:http://api.crap.cn | 1.9k | Java | 07/02 |
| 167 | [rememberber/WePush](https://github.com/rememberber/WePush) | 专注批量推送的小而美的工具,目前支持:模板消息-公众号、模板消息-小程序、微信客服消息、微信企业号/企业微信消息、阿里云短信、阿里大于模板短信 、腾讯云短信、云片网短信、E-Mail、HTTP请求、钉钉、华为云短信、百度云短信、又拍云短信、七牛云短信 | 1.9k | Java | 07/02 |
| 168 | [zhangdaiscott/jeecg](https://github.com/zhangdaiscott/jeecg) | JEECG是一款基于代码生成器的J2EE快速开发平台,开源界“小普元”超越传统商业企业级开发平台。引领新的开发模式(Online Coding模式(自定义表单) - > 代码生成器模式 - > 手工MERGE智能开发), 可以帮助解决Java项目90%的重复工作,让开发更多关注业务逻辑。既能快速提高开发效率,帮助公司节省人力成本,同时又不失灵活性。具备:表单配置能力(无需编码)、移动配置能力、工作流配置能力、报表配置能力(支持移动端)、插件开发能力(可插拔) | 1.9k | Java | 07/02 |
| 169 | [alibaba/yugong](https://github.com/alibaba/yugong) | 阿里巴巴去Oracle数据迁移同步工具(全量+增量,目标支持MySQL/DRDS) | 1.8k | Java | 07/02 |
| 170 | [forezp/SpringBootLearning](https://github.com/forezp/SpringBootLearning) | 《Spring Boot教程》源码 | 1.8k | Java | 07/02 |
| 171 | [HpWens/MeiWidgetView](https://github.com/HpWens/MeiWidgetView) | 🔥一款汇总了郭霖,鸿洋,以及自己平时收集的自定义控件集合库(小红书) | 1.8k | Java | 04/26 |
| 172 | [ngbdf/redis-manager](https://github.com/ngbdf/redis-manager) | Redis 一站式管理平台,支持集群的监控、安装、管理、告警以及基本的数据操作 | 1.8k | Java | 06/20 |
| 173 | [CheckChe0803/flink-recommandSystem-demo](https://github.com/CheckChe0803/flink-recommandSystem-demo) | :helicopter::rocket:基于Flink实现的商品实时推荐系统。flink统计商品热度,放入redis缓存,分析日志信息,将画像标签和实时记录放入Hbase。在用户发起推荐请求后,根据用户画像重排序热度榜,并结合协同过滤和标签两个推荐模块为新生成的榜单的每一个产品添加关联产品,最后返回新的用户列表。 | 1.8k | Java | 07/02 |
| 174 | [yizhiwazi/springboot-socks](https://github.com/yizhiwazi/springboot-socks) | SpringBoot 基础教程 \| 从入门到上瘾 \| 基于2.0.0.M5制作 | 1.7k | Java | 07/02 |
| 175 | [bz51/SpringBoot-Dubbo-Docker-Jenkins](https://github.com/bz51/SpringBoot-Dubbo-Docker-Jenkins) | 基于SpringBoot+Dubbo的微服务框架(借助Docker+Jenkins实现自动化、容器化部署) | 1.7k | Java | 07/01 |
| 176 | [phodal/migration](https://github.com/phodal/migration) | 《系统重构与迁移指南》手把手教你分析、评估现有系统、制定重构策略、探索可行重构方案、搭建测试防护网、进行系统架构重构、服务架构重构、模块重构、代码重构、数据库重构、重构后的架构守护 | 1.7k | Java | 01/09 |
| 177 | [meituan/WMRouter](https://github.com/meituan/WMRouter) | WMRouter是一款Android路由框架,基于组件化的设计思路,有功能灵活、使用简单的特点。 | 1.7k | Java | 06/22 |
| 178 | [Meituan-Dianping/Zebra](https://github.com/Meituan-Dianping/Zebra) | 美团点评集团统一使用的MySQL数据库访问层的中间件。主要提供对业务开发透明、读写分库、分库分表能力,并提供了端到端SQL监控的集成方案。 | 1.7k | Java | 07/02 |
| 179 | [doocs/jvm](https://github.com/doocs/jvm) | 🤗 JVM 底层原理知识总结 | 1.7k | Java | 06/20 |
| 180 | [siwangqishiq/ImageEditor-Android](https://github.com/siwangqishiq/ImageEditor-Android) | AndroidImageEdit 安卓设备上图形编辑开源控件,支持磨皮美白 自定义贴图 图片滤镜 图片旋转 图片剪裁 文字贴图 撤销 回退 等操作 | 1.7k | Java | 05/28 |
| 181 | [baichengzhou/SpringMVC-Mybatis-Shiro-redis-0.2](https://github.com/baichengzhou/SpringMVC-Mybatis-Shiro-redis-0.2) | 基于SpringMVC、Mybatis、Redis、Freemarker的Shiro管理Demo源码的升级版。 | 1.7k | Java | 07/02 |
| 182 | [aicareles/Android-BLE](https://github.com/aicareles/Android-BLE) | Android-BLE蓝牙框架,提供了扫描、连接、使能/除能通知、发送/读取数据、接收数据,读取rssi,设置mtu等蓝牙相关的所有操作接口,内部优化了连接队列,以及快速写入队列, 并支持多服务通讯,可扩展配置蓝牙相关操作。 | 1.7k | Java | 05/02 |
| 183 | [kanwangzjm/funiture](https://github.com/kanwangzjm/funiture) | 慕课网课程推荐 Java并发编程与高并发解决方案:http://coding.imooc.com/class/195.html Java开发企业级权限管理系统:http://coding.imooc.com/class/149.html github: https://github.com/kanwangzjm/funiture, spring项目,权限管理、系统监控、定时任务动态调整、qps限制、sql监控(邮件)、验证码服务、短链接服务、动态配置等 | 1.7k | Java | 07/02 |
| 184 | [huaban/jieba-analysis](https://github.com/huaban/jieba-analysis) | 结巴分词(java版) | 1.7k | Java | 06/15 |
| 185 | [Jay-Goo/RangeSeekBar](https://github.com/Jay-Goo/RangeSeekBar) | A beautiful and powerful SeekBar what supports single、 range、steps、vetical、custom( 一款美观强大的支持单向、双向范围选择、分步、垂直、高度自定义的SeekBar) | 1.6k | Java | 07/02 |
| 186 | [JessYanCoding/RetrofitUrlManager](https://github.com/JessYanCoding/RetrofitUrlManager) | 🔮 Let Retrofit support multiple baseUrl and can be change the baseUrl at runtime (以最简洁的 Api 让 Retrofit 同时支持多个 BaseUrl 以及动态改变 BaseUrl). | 1.6k | Java | 04/18 |
| 187 | [yaphone/itchat4j](https://github.com/yaphone/itchat4j) | itchat4j -- 用Java扩展个人微信号的能力 | 1.6k | Java | 01/07 |
| 188 | [wenmingvs/NotifyUtil](https://github.com/wenmingvs/NotifyUtil) | 通知工具类 | 1.6k | Java | 01/08 |
| 189 | [dersoncheng/MultipleTheme](https://github.com/dersoncheng/MultipleTheme) | Android换肤/夜间模式的Android框架,配合theme和换肤控件框架可以做到无缝切换换肤(无需重启应用和当前页面)。 This framework of Android app support multiple theme(such as day/night mode) and needn’t finish current application or current activity when you switch theme-mode. | 1.6k | Java | 01/10 |
| 190 | [zhegexiaohuozi/SeimiCrawler](https://github.com/zhegexiaohuozi/SeimiCrawler) | 一个简单、敏捷、分布式的支持SpringBoot的Java爬虫框架;An agile, distributed crawler framework. | 1.6k | Java | 07/02 |
| 191 | [huxq17/XRefreshView](https://github.com/huxq17/XRefreshView) | 一个万能的android下拉上拉刷新的框架,完美支持recyclerview | 1.6k | Java | 06/13 |
| 192 | [Dromara/Raincat](https://github.com/Dromara/Raincat) | 强一致分布式事务框架 | 1.6k | Java | 07/02 |
| 193 | [luckybilly/SmartSwipe](https://github.com/luckybilly/SmartSwipe) | An android library to make swipe more easier and more powerful. Android各种侧滑,有这一个就够了 | 1.6k | Java | 01/04 |
| 194 | [zhaojun1998/zfile](https://github.com/zhaojun1998/zfile) | 在线云盘、网盘、OnDrive、云存储、私有云、对象存储、h5ai | 1.6k | Java | 06/27 |
| 195 | [SpringCloud/spring-cloud-code](https://github.com/SpringCloud/spring-cloud-code) | 🔥《重新定义Spring Cloud实战》实体书对应源码,欢迎大家Star点赞收藏 | 1.6k | Java | 07/02 |
| 196 | [JessYanCoding/ArmsComponent](https://github.com/JessYanCoding/ArmsComponent) | 📦 A complete android componentization solution, powered by MVPArms (MVPArms 官方快速组件化方案). | 1.6k | Java | 04/27 |
| 197 | [yuzhiqiang1993/zxing](https://github.com/yuzhiqiang1993/zxing) | 基于zxing的扫一扫,优化了扫描二维码速度,集成最新版本的jar包(zxing-core.jar 3.3.3),集成简单,速度快,可配置颜色,还有闪光灯,解析二维码图片,生成二维码等功能 | 1.6k | Java | 04/24 |
| 198 | [egzosn/pay-java-parent](https://github.com/egzosn/pay-java-parent) | 第三方支付对接全能支付Java开发工具包.优雅的轻量级支付模块集成支付对接支付整合(微信,支付宝,银联,友店,富友,跨境支付paypal,payoneer(P卡派安盈)易极付)app,扫码,网页刷脸付刷卡付条码付转账服务商模式、支持多种支付类型多支付账户,支付与业务完全剥离,简单几行代码即可实现支付,简单快速完成支付模块的开发,可轻松嵌入到任何系统里 目前仅是一个开发工具包(即SDK),只提供简单Web实现,建议使用maven或gradle引用本项目即可使用本SDK提供的各种支付相关的功能 | 1.6k | Java | 06/29 |
| 199 | [wildfirechat/android-chat](https://github.com/wildfirechat/android-chat) | 开源即时通讯(野火IM)系统Android端 | 1.6k | Java | 07/07 |
| 200 | [liuyubobobo/Play-with-Data-Structures](https://github.com/liuyubobobo/Play-with-Data-Structures) | Codes of my MOOC Course <Play Data Structures in Java>. Updated contents and practices are also included. 我在慕课网上的课程《Java语言玩转数据结构》示例代码。课程的更多更新内容及辅助练习也将逐步添加进这个代码仓。 | 1.6k | Java | 03/24 |
⬆ [回到目录](#目录)
<br/>
## Python
| # | Repository | Description | Stars | Language | Updated |
| ---- | ------------------------------------------------------------ | ------------------------------------------------------------ | ----- | -------- | ------- |
| 1 | [521xueweihan/HelloGitHub](https://github.com/521xueweihan/HelloGitHub) | :octocat: Find pearls on open-source seashore 分享 GitHub 上有趣、入门级的开源项目 | 31.9k | Python | 06/27 |
| 2 | [testerSunshine/12306](https://github.com/testerSunshine/12306) | 12306智能刷票,订票 | 28.4k | Python | 03/23 |
| 3 | [0voice/interview_internal_reference](https://github.com/0voice/interview_internal_reference) | 2019年最新总结,阿里,腾讯,百度,美团,头条等技术面试题目,以及答案,专家出题人分析汇总。 | 27.8k | Python | 06/03 |
| 4 | [apachecn/AiLearning](https://github.com/apachecn/AiLearning) | AiLearning: 机器学习 - MachineLearning - ML、深度学习 - DeepLearning - DL、自然语言处理 NLP | 25.8k | Python | 07/03 |
| 5 | [fxsjy/jieba](https://github.com/fxsjy/jieba) | 结巴中文分词 | 23.5k | Python | 06/19 |
| 6 | [fighting41love/funNLP](https://github.com/fighting41love/funNLP) | 中英文敏感词、语言检测、中外手机/电话归属地/运营商查询、名字推断性别、手机号抽取、身份证抽取、邮箱抽取、中日文人名库、中文缩写库、拆字词典、词汇情感值、停用词、反动词表、暴恐词表、繁简体转换、英文模拟中文发音、汪峰歌词生成器、职业名称词库、同义词库、反义词库、否定词库、汽车品牌词库、汽车零件词库、连续英文切割、各种中文词向量、公司名字大全、古诗词库、IT词库、财经词库、成语词库、地名词库、历史名人词库、诗词词库、医学词库、饮食词库、法律词库、汽车词库、动物词库、中文聊天语料、中文谣言数据、百度中文问答数据集、句子相似度匹配算法集合、bert资源、文本生成&摘要相关工具、cocoNLP信息抽取 ... | 22.0k | Python | 06/23 |
| 7 | [littlecodersh/ItChat](https://github.com/littlecodersh/ItChat) | A complete and graceful API for Wechat. 微信个人号接口、微信机器人及命令行微信,三十行即可自定义个人号机器人。 | 20.6k | Python | 03/19 |
| 8 | [hankcs/HanLP](https://github.com/hankcs/HanLP) | 中文分词 词性标注 命名实体识别 依存句法分析 语义依存分析 新词发现 关键词短语提取 自动摘要 文本分类聚类 拼音简繁转换 自然语言处理 | 20.0k | Python | 07/03 |
| 9 | [d2l-ai/d2l-zh](https://github.com/d2l-ai/d2l-zh) | 《动手学深度学习》:面向中文读者、能运行、可讨论。英文版即伯克利“深度学习导论”教材。 | 17.9k | Python | 07/05 |
| 10 | [wangzheng0822/algo](https://github.com/wangzheng0822/algo) | 数据结构和算法必知必会的50个代码实现 | 15.7k | Python | 07/05 |
| 11 | [wangshub/wechat_jump_game](https://github.com/wangshub/wechat_jump_game) | 微信《跳一跳》Python 辅助 | 13.9k | Python | 01/29 |
| 12 | [Kr1s77/awesome-python-login-model](https://github.com/Kr1s77/awesome-python-login-model) | 😮python模拟登陆一些大型网站,还有一些简单的爬虫,希望对你们有所帮助❤️,如果喜欢记得给个star哦🌟 | 11.9k | Python | 05/14 |
| 13 | [pjialin/py12306](https://github.com/pjialin/py12306) | 🚂 12306 购票助手,支持集群,多账号,多任务购票以及 Web 页面管理 | 11.1k | Python | 04/08 |
| 14 | [Jack-Cherish/python-spider](https://github.com/Jack-Cherish/python-spider) | :rainbow:Python3网络爬虫实战:淘宝、京东、网易云、B站、12306、抖音、笔趣阁、漫画小说下载、音乐电影下载等 | 10.9k | Python | 06/23 |
| 15 | [leisurelicht/wtfpython-cn](https://github.com/leisurelicht/wtfpython-cn) | wtfpython的中文翻译/施工结束/ 能力有限,欢迎帮我改进翻译 | 10.5k | Python | 06/13 |
| 16 | [jhao104/proxy_pool](https://github.com/jhao104/proxy_pool) | Python爬虫代理IP池(proxy pool) | 10.1k | Python | 07/06 |
| 17 | [meolu/walle-web](https://github.com/meolu/walle-web) | walle - 瓦力 Devops开源项目代码部署平台 | 10.1k | Python | 07/01 |
| 18 | [h2y/Shadowrocket-ADBlock-Rules](https://github.com/h2y/Shadowrocket-ADBlock-Rules) | 提供多款 Shadowrocket 规则,带广告过滤功能。用于 iOS 未越狱设备选择性地自动翻墙。 | 8.9k | Python | 06/30 |
| 19 | [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. ) | 8.7k | Python | 05/15 |
| 20 | [darknessomi/musicbox](https://github.com/darknessomi/musicbox) | 网易云音乐命令行版本 | 8.4k | Python | 07/06 |
| 21 | [MorvanZhou/tutorials](https://github.com/MorvanZhou/tutorials) | 机器学习相关教程 | 8.2k | Python | 01/30 |
| 22 | [sfyc23/EverydayWechat](https://github.com/sfyc23/EverydayWechat) | 微信助手:1.每日定时给好友(女友)发送定制消息。2.机器人自动回复好友。3.群助手功能(例如:查询垃圾分类、天气、日历、电影实时票房、快递物流、PM2.5等) | 7.5k | Python | 01/10 |
| 23 | [hoochanlon/w3-goto-world](https://github.com/hoochanlon/w3-goto-world) | 🍅冲出你的窗口,Git镜像、Clone 及AWS下载加速、FREE SS/SSR/VMESS、WireGuard配置分享、IPFS、暗网等其他资源存储库 | 7.5k | Python | 07/07 |
| 24 | [Embedding/Chinese-Word-Vectors](https://github.com/Embedding/Chinese-Word-Vectors) | 100+ Chinese Word Vectors 上百种预训练中文词向量 | 7.5k | Python | 03/08 |
| 25 | [sylnsfar/qrcode](https://github.com/sylnsfar/qrcode) | artistic QR Code in Python (Animated GIF qr code)- Python 艺术二维码生成器 (GIF动态二维码、图片二维码) | 7.5k | Python | 07/01 |
| 26 | [wangshub/Douyin-Bot](https://github.com/wangshub/Douyin-Bot) | 😍 Python 抖音机器人,论如何在抖音上找到漂亮小姐姐? | 7.0k | Python | 05/07 |
| 27 | [vipstone/faceai](https://github.com/vipstone/faceai) | 一款入门级的人脸、视频、文字检测以及识别的项目. | 7.0k | Python | 04/16 |
| 28 | [luyishisi/Anti-Anti-Spider](https://github.com/luyishisi/Anti-Anti-Spider) | 越来越多的网站具有反爬虫特性,有的用图片隐藏关键数据,有的使用反人类的验证码,建立反反爬虫的代码仓库,通过与不同特性的网站做斗争(无恶意)提高技术。(欢迎提交难以采集的网站)(因工作原因,项目暂停) | 6.3k | Python | 06/29 |
| 29 | [injetlee/Python](https://github.com/injetlee/Python) | Python脚本。模拟登录知乎, 爬虫,操作excel,微信公众号,远程开机 | 5.5k | Python | 02/10 |
| 30 | [jindongwang/transferlearning](https://github.com/jindongwang/transferlearning) | Everything about Transfer Learning and Domain Adaptation--迁移学习 | 5.5k | Python | 07/06 |
| 31 | [houtianze/bypy](https://github.com/houtianze/bypy) | Python client for Baidu Yun (Personal Cloud Storage) 百度云/百度网盘Python客户端 | 5.4k | Python | 06/30 |
| 32 | [Linzaer/Ultra-Light-Fast-Generic-Face-Detector-1MB](https://github.com/Linzaer/Ultra-Light-Fast-Generic-Face-Detector-1MB) | 💎1MB lightweight face detection model (1MB轻量级人脸检测模型) | 5.1k | Python | 06/20 |
| 33 | [lancopku/pkuseg-python](https://github.com/lancopku/pkuseg-python) | pkuseg多领域中文分词工具; The pkuseg toolkit for multi-domain Chinese word segmentation | 4.9k | Python | 06/21 |
| 34 | [Dod-o/Statistical-Learning-Method_Code](https://github.com/Dod-o/Statistical-Learning-Method_Code) | 手写实现李航《统计学习方法》书中全部算法 | 4.9k | Python | 05/23 |
| 35 | [PaddlePaddle/models](https://github.com/PaddlePaddle/models) | Pre-trained and Reproduced Deep Learning Models (『飞桨』官方模型库,包含多种学术前沿和工业场景验证的深度学习模型) | 4.8k | Python | 07/05 |
| 36 | [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.7k | Python | 06/23 |
| 37 | [jackzhenguo/python-small-examples](https://github.com/jackzhenguo/python-small-examples) | 告别枯燥,致力于打造 Python 富有体系且实用的小例子、小案例。 | 4.7k | Python | 07/07 |
| 38 | [warmheartli/ChatBotCourse](https://github.com/warmheartli/ChatBotCourse) | 自己动手做聊天机器人教程 | 4.7k | Python | 01/04 |
| 39 | [chyroc/WechatSogou](https://github.com/chyroc/WechatSogou) | 基于搜狗微信搜索的微信公众号爬虫接口 | 4.6k | Python | 04/23 |
| 40 | [smacke/ffsubsync](https://github.com/smacke/ffsubsync) | Automagically synchronize subtitles with video. 自动同步字幕与视频。 | 4.4k | Python | 06/22 |
| 41 | [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爬虫逆向,分布式爬虫,爬虫项目实战实例等 | 4.1k | Python | 05/09 |
| 42 | [shidenggui/easytrader](https://github.com/shidenggui/easytrader) | 提供同花顺客户端/国金/华泰客户端/雪球的基金、股票自动程序化交易以及自动打新,支持跟踪 joinquant /ricequant 模拟交易 和 实盘雪球组合, 量化交易组件 | 4.0k | Python | 07/03 |
| 43 | [Jrohy/multi-v2ray](https://github.com/Jrohy/multi-v2ray) | v2ray多用户管理部署程序 | 3.9k | Python | 05/23 |
| 44 | [QUANTAXIS/QUANTAXIS](https://github.com/QUANTAXIS/QUANTAXIS) | QUANTAXIS 支持任务调度 分布式部署的 股票/期货/期权/港股/虚拟货币 数据/回测/模拟/交易/可视化/多账户 纯本地量化解决方案 | 3.7k | Python | 07/04 |
| 45 | [offu/WeRoBot](https://github.com/offu/WeRoBot) | WeRoBot 是一个微信公众号开发框架 | 3.7k | Python | 07/06 |
| 46 | [apachecn/sklearn-doc-zh](https://github.com/apachecn/sklearn-doc-zh) | :book: [译] scikit-learn(sklearn) 中文文档 | 3.5k | Python | 07/03 |
| 47 | [SmirkCao/Lihang](https://github.com/SmirkCao/Lihang) | Statistical learning methods, 统计学习方法(第2版)[李航] [笔记, 代码, notebook, 参考文献, Errata, lihang] | 3.5k | Python | 04/01 |
| 48 | [yuanxiaosc/DeepNude-an-Image-to-Image-technology](https://github.com/yuanxiaosc/DeepNude-an-Image-to-Image-technology) | DeepNude's algorithm and general image generation theory and practice research, including pix2pix, CycleGAN, UGATIT, DCGAN, SinGAN, ALAE, mGANprior, StarGAN-v2 and VAE models (TensorFlow2 implementation). DeepNude的算法以及通用生成对抗网络(GAN,Generative Adversarial Network)图像生成的理论与实践研究。 | 3.4k | Python | 06/28 |
| 49 | [ymcui/Chinese-BERT-wwm](https://github.com/ymcui/Chinese-BERT-wwm) | Pre-Training with Whole Word Masking for Chinese BERT(中文BERT-wwm系列模型) | 3.3k | Python | 05/18 |
| 50 | [QingdaoU/OnlineJudge](https://github.com/QingdaoU/OnlineJudge) | open source online judge based on Vue, Django and Docker. \| 青岛大学开源 Online Judge \| QQ群 496710125 \| [email protected] | 3.2k | Python | 07/07 |
| 51 | [nl8590687/ASRT_SpeechRecognition](https://github.com/nl8590687/ASRT_SpeechRecognition) | A Deep-Learning-Based Chinese Speech Recognition System 基于深度学习的中文语音识别系统 | 3.1k | Python | 05/30 |
| 52 | [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.1k | Python | 05/14 |
| 53 | [ownthink/KnowledgeGraphData](https://github.com/ownthink/KnowledgeGraphData) | 史上最大规模1.4亿中文知识图谱开源下载 | 3.0k | Python | 05/26 |
| 54 | [billryan/algorithm-exercise](https://github.com/billryan/algorithm-exercise) | Data Structure and Algorithm notes. 数据结构与算法/leetcode/lintcode题解/ | 3.0k | Python | 06/15 |
| 55 | [the0demiurge/ShadowSocksShare](https://github.com/the0demiurge/ShadowSocksShare) | Python爬虫/Flask网站/免费ShadowSocks账号/ssr订阅/json 订阅 | 2.8k | Python | 06/14 |
| 56 | [ysrc/xunfeng](https://github.com/ysrc/xunfeng) | 巡风是一款适用于企业内网的漏洞快速应急,巡航扫描系统。 | 2.8k | Python | 01/29 |
| 57 | [Jack-Lee-Hiter/AlgorithmsByPython](https://github.com/Jack-Lee-Hiter/AlgorithmsByPython) | 算法/数据结构/Python/剑指offer/机器学习/leetcode | 2.7k | Python | 01/19 |
| 58 | [mozillazg/python-pinyin](https://github.com/mozillazg/python-pinyin) | 汉字转拼音(pypinyin) | 2.7k | Python | 07/05 |
| 59 | [brightmart/albert_zh](https://github.com/brightmart/albert_zh) | A LITE BERT FOR SELF-SUPERVISED LEARNING OF LANGUAGE REPRESENTATIONS, 海量中文预训练ALBERT模型 | 2.6k | Python | 04/20 |
| 60 | [guohongze/adminset](https://github.com/guohongze/adminset) | 自动化运维平台:CMDB、CD、DevOps、资产管理、任务编排、持续交付、系统监控、运维管理、配置管理 | 2.6k | Python | 05/14 |
| 61 | [KubeOperator/KubeOperator](https://github.com/KubeOperator/KubeOperator) | KubeOperator 是一个开源的轻量级 Kubernetes 发行版,专注于帮助企业规划、部署和运营生产级别的 K8s 集群。 | 2.5k | Python | 07/07 |
| 62 | [dataabc/weiboSpider](https://github.com/dataabc/weiboSpider) | 新浪微博爬虫,用python爬取新浪微博数据 | 2.5k | Python | 07/05 |
| 63 | [zhaipro/easy12306](https://github.com/zhaipro/easy12306) | 使用机器学习算法完成对12306验证码的自动识别 | 2.5k | Python | 05/31 |
| 64 | [MingchaoZhu/DeepLearning](https://github.com/MingchaoZhu/DeepLearning) | Python for《Deep Learning》,该书为《深度学习》(花书) 数学推导、原理剖析与源码级别代码实现 | 2.4k | Python | 06/23 |
| 65 | [TingsongYu/PyTorch_Tutorial](https://github.com/TingsongYu/PyTorch_Tutorial) | 《Pytorch模型训练实用教程》中配套代码 | 2.4k | Python | 05/06 |
| 66 | [apachecn/pytorch-doc-zh](https://github.com/apachecn/pytorch-doc-zh) | Pytorch 中文文档 | 2.4k | Python | 07/02 |
| 67 | [welliamcao/OpsManage](https://github.com/welliamcao/OpsManage) | 自动化运维平台: 代码及应用部署CI/CD、资产管理CMDB、计划任务管理平台、SQL审核\|回滚、任务调度、站内WIKI | 2.4k | Python | 07/01 |
| 68 | [PyQt5/PyQt](https://github.com/PyQt5/PyQt) | PyQt Examples(PyQt各种测试和例子) PyQt4 PyQt5 | 2.3k | Python | 07/04 |
| 69 | [TheKingOfDuck/fuzzDicts](https://github.com/TheKingOfDuck/fuzzDicts) | Web Pentesting Fuzz 字典,一个就够了。 | 2.3k | Python | 05/10 |
| 70 | [WhaleShark-Team/cobra](https://github.com/WhaleShark-Team/cobra) | Source Code Security Audit (源代码安全审计) | 2.3k | Python | 04/24 |
| 71 | [XuefengHuang/lianjia-scrawler](https://github.com/XuefengHuang/lianjia-scrawler) | 链家二手房租房在线数据,存量房交易服务平台数据,详细数据分析教程 | 2.3k | Python | 02/04 |
| 72 | [YongHaoWu/NeteaseCloudMusicFlac](https://github.com/YongHaoWu/NeteaseCloudMusicFlac) | 根据网易云音乐的歌单, 下载flac无损音乐到本地. Download the FLAC music from Internet according to your NeteaseCloudMusic playlist. | 2.3k | Python | 07/06 |
| 73 | [qq547276542/Agriculture_KnowledgeGraph](https://github.com/qq547276542/Agriculture_KnowledgeGraph) | 农业知识图谱(AgriKG):农业领域的信息检索,命名实体识别,关系抽取,智能问答,辅助决策 | 2.3k | Python | 02/17 |
| 74 | [shidenggui/easyquotation](https://github.com/shidenggui/easyquotation) | 实时获取新浪 / 腾讯 的免费股票行情 / 集思路的分级基金行情 | 2.2k | Python | 06/01 |
| 75 | [Tencent/FaceDetection-DSFD](https://github.com/Tencent/FaceDetection-DSFD) | 腾讯优图高精度双分支人脸检测器 | 2.2k | Python | 06/03 |
| 76 | [wzpan/wukong-robot](https://github.com/wzpan/wukong-robot) | 🤖 wukong-robot 是一个简单、灵活、优雅的中文语音对话机器人/智能音箱项目,还可能是首个支持脑机交互的开源智能音箱项目。 | 2.2k | Python | 06/14 |
| 77 | [opendevops-cn/opendevops](https://github.com/opendevops-cn/opendevops) | CODO是一款为用户提供企业多混合云、一站式DevOps、自动化运维、完全开源的云管理平台、自动化运维平台 | 2.2k | Python | 06/28 |
| 78 | [shmilylty/OneForAll](https://github.com/shmilylty/OneForAll) | OneForAll是一款功能强大的子域收集工具 | 2.2k | Python | 07/06 |
| 79 | [momosecurity/aswan](https://github.com/momosecurity/aswan) | 陌陌风控系统静态规则引擎,零基础简易便捷的配置多种复杂规则,实时高效管控用户异常行为。 | 2.2k | Python | 06/08 |
| 80 | [junerain123/javsdt](https://github.com/junerain123/javsdt) | 影片信息整理工具,抓取元数据nfo,自定义重命名文件(夹),下载fanart裁剪poster,为emby、kodi、极影派铺路。 | 2.1k | Python | 06/25 |
| 81 | [zpoint/CPython-Internals](https://github.com/zpoint/CPython-Internals) | Dive into CPython internals, trying to illustrate every detail of CPython implementation \| CPython 源码阅读笔记, 多图展示底层实现细节 | 2.1k | Python | 07/05 |
| 82 | [0xHJK/music-dl](https://github.com/0xHJK/music-dl) | search and download music 从网易云音乐、QQ音乐、酷狗音乐、百度音乐、虾米音乐、咪咕音乐等搜索和下载歌曲 | 2.1k | Python | 03/25 |
| 83 | [moranzcw/Computer-Networking-A-Top-Down-Approach-NOTES](https://github.com/moranzcw/Computer-Networking-A-Top-Down-Approach-NOTES) | 《计算机网络-自顶向下方法(原书第6版)》编程作业,Wireshark实验文档的翻译和解答。 | 2.0k | Python | 05/07 |
| 84 | [lanbing510/DouBanSpider](https://github.com/lanbing510/DouBanSpider) | 豆瓣读书的爬虫 | 2.0k | Python | 04/08 |
| 85 | [aaPanel/BaoTa](https://github.com/aaPanel/BaoTa) | 宝塔Linux面板 - 简单好用的服务器运维面板 | 2.0k | Python | 06/25 |
| 86 | [tychxn/jd-assistant](https://github.com/tychxn/jd-assistant) | 京东抢购助手:包含登录,查询商品库存/价格,添加/清空购物车,抢购商品(下单),查询订单等功能 | 2.0k | Python | 03/10 |
| 87 | [Ehco1996/django-sspanel](https://github.com/Ehco1996/django-sspanel) | 用diango开发的shadowsocks/V2ray面板 | 1.9k | Python | 07/06 |
| 88 | [howie6879/owllook](https://github.com/howie6879/owllook) | owllook-在线网络小说阅读网站&小说搜索引擎&小说推荐系统[搜索、追书、收藏、追更、小说API] | 1.9k | Python | 05/03 |
| 89 | [cycz/jdBuyMask](https://github.com/cycz/jdBuyMask) | 京东监控口罩有货爬虫,自动下单爬虫,口罩爬虫 | 1.9k | Python | 02/13 |
| 90 | [makelove/OpenCV-Python-Tutorial](https://github.com/makelove/OpenCV-Python-Tutorial) | OpenCV问答群,QQ群号:187436093 | 1.9k | Python | 03/30 |
| 91 | [shidenggui/easyquant](https://github.com/shidenggui/easyquant) | 股票量化框架,支持行情获取以及交易 | 1.9k | Python | 03/14 |
| 92 | [jindaxiang/akshare](https://github.com/jindaxiang/akshare) | AkShare is an elegant and simple financial data interface library for Python, built for human beings! 开源财经数据接口库 | 1.9k | Python | 07/07 |
| 93 | [Determined22/zh-NER-TF](https://github.com/Determined22/zh-NER-TF) | A very simple BiLSTM-CRF model for Chinese Named Entity Recognition 中文命名实体识别 (TensorFlow) | 1.8k | Python | 03/07 |
| 94 | [DropsDevopsOrg/ECommerceCrawlers](https://github.com/DropsDevopsOrg/ECommerceCrawlers) | 实战🐍多种网站、电商数据爬虫🕷。包含🕸:淘宝商品、微信公众号、大众点评、企查查、招聘网站、闲鱼、阿里任务、博客园、微博、百度贴吧、豆瓣电影、包图网、全景网、豆瓣音乐、某省药监局、搜狐新闻、机器学习文本采集、fofa资产采集、汽车之家、国家统计局、百度关键词收录数、蜘蛛泛目录、今日头条、豆瓣影评、携程、小米应用商店、安居客、途家民宿❤️❤️❤️。微信爬虫展示项目: | 1.8k | Python | 06/18 |
| 95 | [hankcs/pyhanlp](https://github.com/hankcs/pyhanlp) | 中文分词 词性标注 命名实体识别 依存句法分析 新词发现 关键词短语提取 自动摘要 文本分类聚类 拼音简繁 自然语言处理 | 1.8k | Python | 05/26 |
| 96 | [jiangxufeng/v2rayL](https://github.com/jiangxufeng/v2rayL) | v2ray linux GUI客户端,支持订阅、vemss、ss等协议,自动更新订阅、检查版本更新 | 1.8k | Python | 04/04 |
| 97 | [nghuyong/WeiboSpider](https://github.com/nghuyong/WeiboSpider) | This is a sina weibo spider built by scrapy [微博爬虫/持续维护] | 1.8k | Python | 07/05 |
| 98 | [Tencent/ObjectDetection-OneStageDet](https://github.com/Tencent/ObjectDetection-OneStageDet) | 单阶段通用目标检测器 | 1.7k | Python | 06/03 |
| 99 | [BlankerL/DXY-COVID-19-Data](https://github.com/BlankerL/DXY-COVID-19-Data) | 2019新型冠状病毒疫情时间序列数据仓库 \| COVID-19/2019-nCoV Infection Time Series Data Warehouse | 1.7k | Python | 07/07 |
| 100 | [Roujack/mathAI](https://github.com/Roujack/mathAI) | 一个拍照做题程序。输入一张包含数学计算题的图片,输出识别出的数学计算式以及计算结果。This is a mathematic expression recognition project. | 1.7k | Python | 05/18 |
| 101 | [zhaoyingjun/chatbot](https://github.com/zhaoyingjun/chatbot) | 一个可以自己进行训练的中文聊天机器人, 根据自己的语料训练出自己想要的聊天机器人,可以用于智能客服、在线问答、智能聊天等场景。目前包含seq2seq、seqGAN版本和tf2.0版本。 | 1.7k | Python | 07/05 |
| 102 | [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.7k | Python | 04/10 |
| 103 | [yoshiko2/AV_Data_Capture](https://github.com/yoshiko2/AV_Data_Capture) | 本地电影刮削与整理一体化解决方案 | 1.6k | Python | 06/30 |
| 104 | [awolfly9/IPProxyTool](https://github.com/awolfly9/IPProxyTool) | python ip proxy tool scrapy crawl. 抓取大量免费代理 ip,提取有效 ip 使用 | 1.6k | Python | 02/02 |
| 105 | [hhyo/Archery](https://github.com/hhyo/Archery) | SQL 审核查询平台 | 1.6k | Python | 06/06 |
| 106 | [nickliqian/cnn_captcha](https://github.com/nickliqian/cnn_captcha) | use cnn recognize captcha by tensorflow. 本项目针对字符型图片验证码,使用tensorflow实现卷积神经网络,进行验证码识别。 | 1.6k | Python | 03/31 |
| 107 | [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.6k | Python | 03/29 |
| 108 | [kingname/GeneralNewsExtractor](https://github.com/kingname/GeneralNewsExtractor) | 新闻网页正文通用抽取器 Beta 版. | 1.6k | Python | 06/27 |
| 109 | [newpanjing/simpleui](https://github.com/newpanjing/simpleui) | A modern theme based on vue+element-ui for django admin.一款基于vue+element-ui的django admin现代化主题。全球3000+网站都在使用!喜欢可以点个star✨ | 1.6k | Python | 07/02 |
| 110 | [PegasusWang/python_data_structures_and_algorithms](https://github.com/PegasusWang/python_data_structures_and_algorithms) | Python 中文数据结构和算法教程 | 1.5k | Python | 06/15 |
| 111 | [china-testing/python-api-tesing](https://github.com/china-testing/python-api-tesing) | python中文库-python人工智能大数据自动化接口测试开发。 书籍下载及python库汇总https://china-testing.github.io/ | 1.5k | Python | 06/29 |
| 112 | [ownthink/Jiagu](https://github.com/ownthink/Jiagu) | Jiagu深度学习自然语言处理工具 知识图谱关系抽取 中文分词 词性标注 命名实体识别 情感分析 新词发现 关键词 文本摘要 文本聚类 | 1.5k | Python | 06/24 |
| 113 | [PantsuDango/Dango-Translator](https://github.com/PantsuDango/Dango-Translator) | 团子翻译器 —— 个人兴趣制作的一款基于OCR技术的翻译器 | 1.5k | Python | 07/04 |
| 114 | [xianhu/PSpider](https://github.com/xianhu/PSpider) | 简单易用的Python爬虫框架,QQ交流群:597510560 | 1.5k | Python | 03/03 |
| 115 | [moyuanz/DevilYuan](https://github.com/moyuanz/DevilYuan) | DevilYuan可视化股票量化系统,支持选股,历史数据自动下载,策略回测及参数优化,实盘交易和常用的统计功能 | 1.5k | Python | 06/29 |
| 116 | [minivision-ai/photo2cartoon](https://github.com/minivision-ai/photo2cartoon) | 人像卡通化探索项目 (photo-to-cartoon translation project) | 1.4k | Python | 07/06 |
| 117 | [shinnytech/tqsdk-python](https://github.com/shinnytech/tqsdk-python) | 天勤量化开发包, 期货量化, 实时行情/历史数据/实盘交易 | 1.4k | Python | 07/07 |
| 118 | [zhanyong-wan/dongbei](https://github.com/zhanyong-wan/dongbei) | 东北方言编程语言 | 1.4k | Python | 04/13 |
| 119 | [guanguans/favorite-link](https://github.com/guanguans/favorite-link) | ❤️ 每日收集喜欢的开源项目 \| RSS 订阅 \| 快知 app 订阅 | 1.4k | Python | 07/07 |
| 120 | [abbeyokgo/PyOne](https://github.com/abbeyokgo/PyOne) | PyOne-一款给力的onedrive文件管理、分享程序 | 1.4k | Python | 03/14 |
| 121 | [littlecodersh/itchatmp](https://github.com/littlecodersh/itchatmp) | A complete and graceful API for wechat mp. 完备优雅的微信公众号接口,原生支持同步、协程使用。 | 1.3k | Python | 04/24 |
| 122 | [Henryhaohao/Bilibili_video_download](https://github.com/Henryhaohao/Bilibili_video_download) | :rainbow:Bilibili_video_download-B站视频下载 | 1.3k | Python | 04/03 |
| 123 | [649453932/Chinese-Text-Classification-Pytorch](https://github.com/649453932/Chinese-Text-Classification-Pytorch) | 中文文本分类,TextCNN,TextRNN,FastText,TextRCNN,BiLSTM_Attention,DPCNN,Transformer,基于pytorch,开箱即用。 | 1.3k | Python | 04/19 |
| 124 | [toolgood/ToolGood.Words](https://github.com/toolgood/ToolGood.Words) | 一款高性能敏感词(非法词/脏字)检测过滤组件,附带繁体简体互换,支持全角半角互换,汉字转拼音,模糊搜索等功能。 | 1.3k | Python | 06/27 |
| 125 | [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.3k | Python | 07/05 |
| 126 | [coffeehb/Some-PoC-oR-ExP](https://github.com/coffeehb/Some-PoC-oR-ExP) | 各种漏洞poc、Exp的收集或编写 | 1.2k | Python | 07/06 |
| 127 | [NewFuture/DDNS](https://github.com/NewFuture/DDNS) | :triangular_flag_on_post: 自动更新域名解析到本机IP(支持dnspod,阿里DNS,CloudFlare,华为云,DNSCOM...) | 1.2k | Python | 06/28 |
| 128 | [LyleMi/Learn-Web-Hacking](https://github.com/LyleMi/Learn-Web-Hacking) | Study Notes For Web Hacking / Web安全学习笔记 | 1.2k | Python | 07/05 |
| 129 | [PaddlePaddle/PaddleHub](https://github.com/PaddlePaddle/PaddleHub) | Toolkit for Pre-trained Model Application of PaddlePaddle(『飞桨』预训练模型应用工具 ) | 1.2k | Python | 07/07 |
| 130 | [michaelliao/sinaweibopy](https://github.com/michaelliao/sinaweibopy) | 新浪微博Python SDK | 1.2k | Python | 05/11 |
| 131 | [cn/GB2260](https://github.com/cn/GB2260) | 中华人民共和国国家标准 GB/T 2260 行政区划代码 | 1.2k | Python | 05/18 |
| 132 | [howie6879/ruia](https://github.com/howie6879/ruia) | Async Python 3.6+ web scraping micro-framework based on asyncio(Python3.6+异步爬虫框架) | 1.2k | Python | 06/07 |
| 133 | [QuantFans/quantdigger](https://github.com/QuantFans/quantdigger) | 基于python的量化交易平台 | 1.2k | Python | 05/02 |
| 134 | [brightmart/roberta_zh](https://github.com/brightmart/roberta_zh) | RoBERTa中文预训练模型: RoBERTa for Chinese | 1.2k | Python | 06/29 |
| 135 | [duoergun0729/nlp](https://github.com/duoergun0729/nlp) | 兜哥出品 <一本开源的NLP入门书籍> | 1.2k | Python | 02/11 |
| 136 | [frombeijingwithlove/dlcv_for_beginners](https://github.com/frombeijingwithlove/dlcv_for_beginners) | 《深度学习与计算机视觉》配套代码 | 1.2k | Python | 01/24 |
| 137 | [zhzyker/exphub](https://github.com/zhzyker/exphub) | Exphub[漏洞利用脚本库] 包括Webloigc、Struts2、Tomcat、Nexus、Solr、Jboss、Drupal的漏洞利用脚本,优先更新高危且易利用的漏洞利用脚本,最新添加CVE-2020-11444、CVE-2020-10204、CVE-2020-10199、CVE-2020-1938、CVE-2020-2551、CVE-2020-2555、CVE-2020-2883、CVE-2019-17558、CVE-2019-6340 | 1.2k | Python | 07/05 |
| 138 | [wkunzhi/Python3-Spider](https://github.com/wkunzhi/Python3-Spider) | Python爬虫实战 - 模拟登陆各大网站 包含但不限于:滑块验证、拼多多、美团、百度、bilibili、大众点评、淘宝,如果喜欢请start ❤️ | 1.2k | Python | 04/25 |
| 139 | [EugeneLiu/translationCSAPP](https://github.com/EugeneLiu/translationCSAPP) | 为 CSAPP 视频课程提供字幕,翻译 PPT,Lab。 | 1.1k | Python | 05/18 |
| 140 | [dixudx/tumblr-crawler](https://github.com/dixudx/tumblr-crawler) | Easily download all the photos/videos from tumblr blogs. 下载指定的 Tumblr 博客中的图片,视频 | 1.1k | Python | 05/02 |
| 141 | [al0ne/Vxscan](https://github.com/al0ne/Vxscan) | python3写的综合扫描工具,主要用来存活验证,敏感文件探测(目录扫描/js泄露接口/html注释泄露),WAF/CDN识别,端口扫描,指纹/服务识别,操作系统识别,POC扫描,SQL注入,绕过CDN,查询旁站等功能,主要用来甲方自测或乙方授权测试,请勿用来搞破坏。 | 1.1k | Python | 01/02 |
| 142 | [zwczou/weixin-python](https://github.com/zwczou/weixin-python) | 微信SDK - 包括微信支付,微信公众号,微信登陆,微信消息处理等 | 1.1k | Python | 07/06 |
| 143 | [CLUEbenchmark/CLUE](https://github.com/CLUEbenchmark/CLUE) | 中文语言理解基准测评 Chinese Language Understanding Evaluation Benchmark: datasets, baselines, pre-trained models, corpus and leaderboard | 1.0k | Python | 06/10 |
| 144 | [wbt5/real-url](https://github.com/wbt5/real-url) | 获取斗鱼&虎牙&哔哩哔哩&抖音&快手等26个直播平台的真实流媒体地址(直播源)和弹幕,直播源可在PotPlayer、flv.js等播放器中播放。 | 1.0k | Python | 07/05 |
| 145 | [crownpku/Rasa_NLU_Chi](https://github.com/crownpku/Rasa_NLU_Chi) | Turn Chinese natural language into structured data 中文自然语言理解 | 1.0k | Python | 03/29 |
| 146 | [heucoder/dimensionality_reduction_alo_codes](https://github.com/heucoder/dimensionality_reduction_alo_codes) | 特征提取/数据降维:PCA、LDA、MDS、LLE、TSNE等降维算法的python实现 | 1.0k | Python | 01/28 |
| 147 | [PyJun/Mooc_Downloader](https://github.com/PyJun/Mooc_Downloader) | 学无止下载器,慕课下载器,Mooc下载,慕课网下载,中国大学下载,爱课程下载,网易云课堂下载,学堂在线下载;支持视频,课件同时下载 | 1.0k | Python | 06/28 |
| 148 | [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 | 997 | Python | 06/07 |
| 149 | [ymcui/Chinese-XLNet](https://github.com/ymcui/Chinese-XLNet) | Pre-Trained Chinese XLNet(中文XLNet预训练模型) | 996 | Python | 05/18 |
| 150 | [fendouai/PyTorchDocs](https://github.com/fendouai/PyTorchDocs) | PyTorch 官方中文教程包含 60 分钟快速入门教程,强化教程,计算机视觉,自然语言处理,生成对抗网络,强化学习。欢迎 Star,Fork! | 990 | Python | 01/15 |
| 151 | [nobody132/masr](https://github.com/nobody132/masr) | 中文语音识别; Mandarin Automatic Speech Recognition; | 982 | Python | 05/18 |
| 152 | [seisman/how-to-write-makefile](https://github.com/seisman/how-to-write-makefile) | 跟我一起写Makefile重制版 | 954 | Python | 07/06 |
| 153 | [rainx/pytdx](https://github.com/rainx/pytdx) | Python tdx数据接口 | 954 | Python | 04/15 |
| 154 | [Acmesec/CTFCrackTools](https://github.com/Acmesec/CTFCrackTools) | China's first CTFTools framework.中国国内首个CTF工具框架,旨在帮助CTFer快速攻克难关 | 941 | Python | 04/11 |
| 155 | [guofei9987/scikit-opt](https://github.com/guofei9987/scikit-opt) | Genetic Algorithm, Particle Swarm Optimization, Simulated Annealing, Ant Colony Optimization Algorithm,Immune Algorithm, Artificial Fish Swarm Algorithm, Differential Evolution and TSP(Traveling salesman) 遗传、粒子群、模拟退火、蚁群算法等 | 934 | Python | 06/09 |
| 156 | [FinMind/FinMind](https://github.com/FinMind/FinMind) | Open Data, more than 50 financial data. 提供超過 50 個金融資料,每天更新 https://finmind.github.io/ | 929 | Python | 07/03 |
| 157 | [fzlee/alipay](https://github.com/fzlee/alipay) | Python Alipay(支付宝) SDK with SHA1/SHA256 support | 926 | Python | 03/19 |
| 158 | [phodal/iot](https://github.com/phodal/iot) | IoT, 这是一个最小Internet of Things ,一个Internet of Things相关的毕业设计产生的一个简化的物联网系统。 。 | 924 | Python | 04/21 |
| 159 | [jachinlin/geektime_dl](https://github.com/jachinlin/geektime_dl) | 把极客时间装进 Kindle,内含快手内推等福利 | 921 | Python | 06/02 |
| 160 | [songyouwei/ABSA-PyTorch](https://github.com/songyouwei/ABSA-PyTorch) | Aspect Based Sentiment Analysis, PyTorch Implementations. 基于方面的情感分析,使用PyTorch实现。 | 906 | Python | 06/28 |
| 161 | [githublitao/api_automation_test](https://github.com/githublitao/api_automation_test) | 接口自动化测试平台,已停止维护,看心情改改 | 899 | Python | 06/20 |
| 162 | [sczhengyabin/Image-Downloader](https://github.com/sczhengyabin/Image-Downloader) | Download images from Google, Bing, Baidu. 谷歌、百度、必应图片下载. | 898 | Python | 05/05 |
| 163 | [laixintao/python-parallel-programming-cookbook-cn](https://github.com/laixintao/python-parallel-programming-cookbook-cn) | 📖《Python Parallel Programming Cookbook》中文版 | 890 | Python | 04/18 |
| 164 | [Hsury/BiliDrive](https://github.com/Hsury/BiliDrive) | ☁️ 哔哩云,不支持任意文件的全速上传与下载 | 887 | Python | 03/20 |
| 165 | [grayddq/GScan](https://github.com/grayddq/GScan) | 本程序旨在为安全应急响应人员对Linux主机排查时提供便利,实现主机侧Checklist的自动全面化检测,根据检测结果自动数据聚合,进行黑客攻击路径溯源。 | 886 | Python | 04/10 |
| 166 | [snowkylin/TensorFlow-cn](https://github.com/snowkylin/TensorFlow-cn) | 简单粗暴 TensorFlow (1.X) \| A Concise Handbook of TensorFlow (1.X) \| 此版本不再更新,新版见 https://tf.wiki | 882 | Python | 04/28 |
| 167 | [nonebot/nonebot](https://github.com/nonebot/nonebot) | 基于 酷Q 的 Python 异步 QQ 机器人框架 | 865 | Python | 07/05 |
| 168 | [blackholll/loonflow](https://github.com/blackholll/loonflow) | 基于django的工作流引擎,工单(a workflow engine base on django python) | 854 | Python | 06/20 |
| 169 | [fendouai/FaceRank](https://github.com/fendouai/FaceRank) | FaceRank - Rank Face by CNN Model based on TensorFlow (add keras version). FaceRank-人脸打分基于 TensorFlow (新增 Keras 版本) 的 CNN 模型(QQ群:167122861)。技术支持:http://tensorflow123.com | 819 | Python | 03/15 |
| 170 | [iceyhexman/onlinetools](https://github.com/iceyhexman/onlinetools) | 在线cms识别\|信息泄露\|工控\|系统\|物联网安全\|cms漏洞扫描\|nmap端口扫描\|子域名获取\|待续.. | 807 | Python | 06/19 |
| 171 | [benitoro/stockholm](https://github.com/benitoro/stockholm) | 一个股票数据(沪深)爬虫和选股策略测试框架 | 803 | Python | 04/22 |
| 172 | [librauee/Reptile](https://github.com/librauee/Reptile) | 🏀 Python3 网络爬虫实战(部分含详细教程)猫眼 腾讯视频 豆瓣 研招网 微博 笔趣阁小说 百度热点 B站 CSDN 网易云阅读 阿里文学 百度股票 今日头条 微信公众号 网易云音乐 拉勾 有道 unsplash 实习僧 汽车之家 英雄联盟盒子 大众点评 链家 LPL赛程 台风 梦幻西游、阴阳师藏宝阁 天气 牛客网 百度文库 睡前故事 知乎 Wish | 792 | Python | 06/06 |
| 173 | [CLUEbenchmark/CLUEDatasetSearch](https://github.com/CLUEbenchmark/CLUEDatasetSearch) | 搜索所有中文NLP数据集,附常用英文NLP数据集 | 789 | Python | 03/01 |
| 174 | [Dawnnnnnn/bilibili-live-tools](https://github.com/Dawnnnnnn/bilibili-live-tools) | python实现的bilibili直播助手 | 784 | Python | 06/22 |
| 175 | [buppt/ChineseNER](https://github.com/buppt/ChineseNER) | 中文命名实体识别,实体抽取,tensorflow,pytorch,BiLSTM+CRF | 783 | Python | 03/15 |
| 176 | [ZSAIm/iqiyi-parser](https://github.com/ZSAIm/iqiyi-parser) | 解析下载爱奇艺、哔哩哔哩、腾讯视频 | 783 | Python | 06/10 |
| 177 | [zq1997/deepin-wine](https://github.com/zq1997/deepin-wine) | 【deepin源移植】Debian/Ubuntu上最快的QQ/微信安装方式 | 778 | Python | 07/07 |
| 178 | [shunliz/Machine-Learning](https://github.com/shunliz/Machine-Learning) | 机器学习原理 | 773 | Python | 02/12 |
| 179 | [HaddyYang/django2.0-course](https://github.com/HaddyYang/django2.0-course) | Django2.0视频教程相关代码(杨仕航) | 773 | Python | 06/06 |
| 180 | [hanbinglengyue/FART](https://github.com/hanbinglengyue/FART) | ART环境下自动化脱壳方案 | 772 | Python | 06/07 |
| 181 | [whyliam/whyliam.workflows.youdao](https://github.com/whyliam/whyliam.workflows.youdao) | 使用有道翻译你想知道的单词和语句 | 764 | Python | 02/03 |
| 182 | [mai-lang-chai/Middleware-Vulnerability-detection](https://github.com/mai-lang-chai/Middleware-Vulnerability-detection) | CVE、CMS、中间件漏洞检测利用合集 Since 2019-9-15 | 761 | Python | 07/06 |
| 183 | [fffonion/Xunlei-Fastdick](https://github.com/fffonion/Xunlei-Fastdick) | 迅雷快鸟 Xunlei Network Accelerator For Router | 749 | Python | 02/17 |
| 184 | [HatBoy/Struts2-Scan](https://github.com/HatBoy/Struts2-Scan) | Struts2全漏洞扫描利用工具 | 749 | Python | 06/16 |
| 185 | [Hackxiaoya/CuteOne](https://github.com/Hackxiaoya/CuteOne) | 这大概是最好的onedrive挂载程序了吧,我猜。 | 746 | Python | 05/21 |
| 186 | [X-zhangyang/Real-World-Masked-Face-Dataset](https://github.com/X-zhangyang/Real-World-Masked-Face-Dataset) | Real-World Masked Face Dataset,口罩人脸数据集 | 743 | Python | 06/09 |
| 187 | [twtrubiks/docker-tutorial](https://github.com/twtrubiks/docker-tutorial) | Docker 基本教學 - 從無到有 Docker-Beginners-Guide 教你用 Docker 建立 Django + PostgreSQL 📝 | 738 | Python | 05/25 |
| 188 | [nosarthur/gita](https://github.com/nosarthur/gita) | Manage many git repos with sanity 不疯了似地管理多个git库 | 735 | Python | 07/07 |
| 189 | [Entromorgan/Autoticket](https://github.com/Entromorgan/Autoticket) | 大麦网自动抢票工具 | 729 | Python | 02/20 |
| 190 | [mtianyan/FunpySpiderSearchEngine](https://github.com/mtianyan/FunpySpiderSearchEngine) | 借鉴自慕课网【Scrapy 1.6.0爬取数据 + ElasticSearch6.8.0+Django2.2搜索引擎】 | 723 | Python | 04/05 |
| 191 | [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调用 | 717 | Python | 05/06 |
| 192 | [zaxlct/imooc-django](https://github.com/zaxlct/imooc-django) | 高仿慕课网:py3.5 + Django1.10 + xadmin 搭建的在线课程教育平台 | 716 | Python | 06/06 |
| 193 | [EvilCult/moviecatcher](https://github.com/EvilCult/moviecatcher) | 电影美剧搜索及在线观看离线下载软件,集成热门资源站,借助百度云实现离线下载以及在线播放功能。 | 713 | Python | 01/14 |
| 194 | [JeziL/caj2pdf](https://github.com/JeziL/caj2pdf) | Convert CAJ (China Academic Journals) files to PDF. 转换中国知网 CAJ 格式文献为 PDF。佛系转换,成功与否,皆是玄学。 | 704 | Python | 01/18 |
| 195 | [CTF-MissFeng/bayonet](https://github.com/CTF-MissFeng/bayonet) | bayonet是一款src资产管理系统,从子域名、端口服务、漏洞、爬虫等一体化的资产管理系统 | 702 | Python | 05/16 |
| 196 | [r0ysue/AndroidSecurityStudy](https://github.com/r0ysue/AndroidSecurityStudy) | 安卓应用安全学习 | 698 | Python | 05/21 |
| 197 | [gusibi/python-weixin](https://github.com/gusibi/python-weixin) | 微信(weixin\|wechat) Python SDK 支持开放平台和公众平台 支持微信小程序云开发 | 692 | Python | 02/22 |
| 198 | [V-I-C-T-O-R/12306](https://github.com/V-I-C-T-O-R/12306) | 12306买票小工具 | 692 | Python | 01/16 |
| 199 | [yangjianxin1/GPT2-chitchat](https://github.com/yangjianxin1/GPT2-chitchat) | GPT2 for Chinese chitchat/用于中文闲聊的GPT2模型(实现了DialoGPT的MMI思想) | 688 | Python | 05/16 |
| 200 | [rogerzhu/MNWeeklyCategory](https://github.com/rogerzhu/MNWeeklyCategory) | 码农周刊一周精选分类 | 688 | Python | 04/22 |
⬆ [回到目录](#目录)
<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 入门指南》 | 22.1k | Go | 07/07 |
| 2 | [kataras/iris](https://github.com/kataras/iris) | 感谢中国开发者 - https://bit.ly/謝謝 \| The fastest community-driven web framework for Go. Socket-Sharding, gRPC, Automatic HTTPS with Public Domain, MVC, Sessions, Caching, Versioning API, Problem API, Websocket, Dependency Injection and more. Fully compatible with the standard library and 3rd-party middlewa ... | 18.5k | Go | 07/07 |
| 3 | [chai2010/advanced-go-programming-book](https://github.com/chai2010/advanced-go-programming-book) | :books: 《Go语言高级编程》开源图书,涵盖CGO、Go汇编语言、RPC实现、Protobuf插件实现、Web框架实现、分布式系统等高阶主题(完稿) | 13.2k | Go | 06/21 |
| 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. | 12.8k | Go | 07/01 |
| 5 | [peterq/pan-light](https://github.com/peterq/pan-light) | 百度网盘不限速客户端, golang + qt5, 跨平台图形界面 | 10.6k | Go | 06/07 |
| 6 | [go-kratos/kratos](https://github.com/go-kratos/kratos) | Kratos是bilibili开源的一套Go微服务框架,包含大量微服务相关框架及工具。 | 10.1k | Go | 06/30 |
| 7 | [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 ... | 9.1k | Go | 07/01 |
| 8 | [talkgo/night](https://github.com/talkgo/night) | Weekly Go Online Meetup via Zoom and Bilibili|Go 夜读|由 SIG 成员维护|通过 zoom 在线直播的方式分享 Go 相关的技术话题,每天大家在微信/telegram/Slack 上及时沟通交流编程技术话题。 | 7.6k | Go | 07/02 |
| 9 | [polaris1119/The-Golang-Standard-Library-by-Example](https://github.com/polaris1119/The-Golang-Standard-Library-by-Example) | Golang标准库。对于程序员而言,标准库与语言本身同样重要,它好比一个百宝箱,能为各种常见的任务提供完美的解决方案。以示例驱动的方式讲解Golang的标准库。 | 6.9k | Go | 02/01 |
| 10 | [crawlab-team/crawlab](https://github.com/crawlab-team/crawlab) | Distributed web crawler admin platform for spiders management regardless of languages and frameworks. 分布式爬虫管理平台,支持任何语言和框架 | 6.4k | Go | 07/07 |
| 11 | [greyireland/algorithm-pattern](https://github.com/greyireland/algorithm-pattern) | 算法模板,最科学的刷题方式,最快速的刷题路径,你值得拥有~ | 6.2k | Go | 07/07 |
| 12 | [cloudreve/Cloudreve](https://github.com/cloudreve/Cloudreve) | 🌩支持多家云存储的云盘系统 (A project helps you build your own cloud in minutes) | 5.3k | Go | 06/20 |
| 13 | [smallnest/rpcx](https://github.com/smallnest/rpcx) | A zero cost, faster multi-language bidirectional 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! 𝐉𝐚𝐯𝐚有𝐝𝐮𝐛𝐛𝐨, 𝐆𝐨𝐥𝐚𝐧𝐠有𝐫𝐩𝐜𝐱! | 4.8k | Go | 07/01 |
| 14 | [geektutu/7days-golang](https://github.com/geektutu/7days-golang) | 7 days golang apps from scratch (web framework Gee, distributed cache GeeCache, object relational mapping ORM framework GeeORM etc) 7天用Go动手写/从零实现系列 | 4.4k | Go | 06/16 |
| 15 | [getlantern/lantern](https://github.com/getlantern/lantern) | Lantern官方版本下载 蓝灯 翻墙 代理 科学上网 外网 加速器 梯子 路由 lantern proxy vpn censorship-circumvention censorship gfw accelerator | 4.3k | Go | 06/13 |
| 16 | [lifei6671/mindoc](https://github.com/lifei6671/mindoc) | Golang实现的基于beego框架的接口在线文档管理系统 | 4.1k | Go | 06/19 |
| 17 | [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.1k | Go | 06/06 |
| 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 池。 | 3.9k | Go | 07/05 |
| 19 | [tophubs/TopList](https://github.com/tophubs/TopList) | 今日热榜,一个获取各大热门网站热门头条的聚合网站,使用Go语言编写,多协程异步快速抓取信息,预览:https://mo.fish | 3.7k | Go | 05/06 |
| 20 | [Tencent/bk-cmdb](https://github.com/Tencent/bk-cmdb) | 蓝鲸智云配置平台(BlueKing CMDB) | 3.5k | Go | 07/07 |
| 21 | [ffhelicopter/Go42](https://github.com/ffhelicopter/Go42) | 《Go语言四十二章经》详细讲述Go语言规范与语法细节及开发中常见的误区,通过研读标准库等经典代码设计模式,启发读者深刻理解Go语言的核心思维,进入Go语言开发的更高阶段。 | 3.4k | Go | 06/16 |
| 22 | [gwuhaolin/lightsocks](https://github.com/gwuhaolin/lightsocks) | ⚡️一个轻巧的网络混淆代理🌏 | 3.3k | Go | 04/15 |
| 23 | [senghoo/golang-design-pattern](https://github.com/senghoo/golang-design-pattern) | 设计模式 Golang实现-《研磨设计模式》读书笔记 | 3.3k | Go | 07/04 |
| 24 | [flipped-aurora/gin-vue-admin](https://github.com/flipped-aurora/gin-vue-admin) | 基于gin+vue搭建的后台管理系统框架,集成jwt鉴权,权限管理,动态路由,分页封装,多点登录拦截,资源权限,上传下载,代码生成器,表单生成器等基础功能,五分钟一套CURD前后端代码包含数据库的快感你不要体验一下吗~,更多功能正在开发中,欢迎issue和pr~ | 3.1k | Go | 07/07 |
| 25 | [xiaoming2028/FreePAC](https://github.com/xiaoming2028/FreePAC) | 科学上网/梯子/自由上网/翻墙 SS/SSR/V2Ray/Brook 搭建教程 | 3.0k | Go | 06/26 |
| 26 | [chaosblade-io/chaosblade](https://github.com/chaosblade-io/chaosblade) | An easy to use and powerful chaos engineering experiment toolkit.(阿里巴巴开源的一款简单易用、功能强大的混沌实验注入工具) | 2.8k | Go | 07/06 |
| 27 | [ouqiang/gocron](https://github.com/ouqiang/gocron) | 定时任务管理系统 | 2.7k | Go | 07/03 |
| 28 | [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 网络框架。 | 2.6k | Go | 07/07 |
| 29 | [aceld/zinx](https://github.com/aceld/zinx) | 基于Golang轻量级TCP并发服务器框架 | 2.5k | Go | 07/07 |
| 30 | [360EntSecGroup-Skylar/ElasticHD](https://github.com/360EntSecGroup-Skylar/ElasticHD) | Elasticsearch 可视化DashBoard, 支持Es监控、实时搜索,Index template快捷替换修改,索引列表信息查看, SQL converts to DSL等 | 2.4k | Go | 03/08 |
| 31 | [0xDkd/auxpi](https://github.com/0xDkd/auxpi) | 🍭 集合多家 API 的新一代图床 | 2.4k | Go | 02/19 |
| 32 | [goodrain/rainbond](https://github.com/goodrain/rainbond) | Enterprise Application System 以企业云原生应用开发、架构、运维、共享、交付为核心的Kubernetes多云赋能平台 | 2.3k | Go | 06/30 |
| 33 | [fanux/sealos](https://github.com/fanux/sealos) | 只能用丝滑一词形容的kubernetes高可用安装(kubernetes install)工具,一条命令,离线安装,包含所有依赖,内核负载不依赖haproxy keepalived,纯golang开发,99年证书,支持v1.16 v1.15 v1.17 v1.18! | 2.1k | Go | 07/06 |
| 34 | [feixiao/Distributed-Systems](https://github.com/feixiao/Distributed-Systems) | MIT课程《Distributed Systems 》学习和翻译 | 2.1k | Go | 02/08 |
| 35 | [chanxuehong/wechat](https://github.com/chanxuehong/wechat) | weixin/wechat/微信公众平台/微信企业号/微信商户平台/微信支付 go/golang sdk | 2.1k | Go | 06/15 |
| 36 | [silenceper/wechat](https://github.com/silenceper/wechat) | WeChat SDK for Go (微信SDK:简单、易用) | 2.1k | Go | 07/07 |
| 37 | [qcrao/Go-Questions](https://github.com/qcrao/Go-Questions) | 从问题切入,串连 Go 语言相关的所有知识,融会贯通。 | 1.6k | Go | 02/11 |
| 38 | [phachon/mm-wiki](https://github.com/phachon/mm-wiki) | MM-Wiki 一个轻量级的企业知识分享与团队协同软件,可用于快速构建企业 Wiki 和团队知识分享平台。部署方便,使用简单,帮助团队构建一个信息共享、文档管理的协作环境。 | 1.5k | Go | 07/04 |
| 39 | [bilibili/overlord](https://github.com/bilibili/overlord) | Overlord是哔哩哔哩基于Go语言编写的memcache和redis&cluster的代理及集群管理功能,致力于提供自动化高可用的缓存服务解决方案。 | 1.4k | Go | 07/02 |
| 40 | [chai2010/go2-book](https://github.com/chai2010/go2-book) | :books: 《Go2编程指南》开源图书,重点讲解Go2新特性,以及Go1教程中较少涉及的特性 | 1.4k | Go | 06/21 |
| 41 | [studygolang/studygolang](https://github.com/studygolang/studygolang) | Go 语言中文网 \| Golang中文社区 \| Go语言学习园地 源码 | 1.8k | Go | 06/27 |
| 42 | [eyebluecn/tank](https://github.com/eyebluecn/tank) | 《蓝眼云盘》(Eyeblue Cloud Storage) | 1.8k | Go | 06/21 |
| 43 | [ysrc/yulong-hids](https://github.com/ysrc/yulong-hids) | 一款由 YSRC 开源的主机入侵检测系统 | 1.7k | Go | 06/29 |
| 44 | [dreamans/syncd](https://github.com/dreamans/syncd) | syncd是一款开源的代码部署工具,它具有简单、高效、易用等特点,可以提高团队的工作效率. | 1.7k | Go | 06/06 |
| 45 | [douyu/jupiter](https://github.com/douyu/jupiter) | Jupiter是douyu开源的面向服务治理的Golang微服务框架 | 1.7k | Go | 07/07 |
| 46 | [overnote/over-golang](https://github.com/overnote/over-golang) | Golang相关:[进度80%]Go语法、Go并发思想、Go与web开发、Go微服务设施等 | 1.6k | Go | 06/30 |
| 47 | [micro-in-cn/tutorials](https://github.com/micro-in-cn/tutorials) | Micro/Go-Micro 中文示例、教程、资料,源码解读 | 1.5k | Go | 07/06 |
| 48 | [halfrost/LeetCode-Go](https://github.com/halfrost/LeetCode-Go) | ✅ Solutions to LeetCode by Go, 100% test coverage. / LeetCode 题解 | 1.5k | Go | 04/03 |
| 49 | [go-ego/gse](https://github.com/go-ego/gse) | Go efficient text segmentation @vcaesar; support english, chinese, japanese and other. Go 语言高性能分词 | 1.4k | Go | 07/07 |
| 50 | [linclin/gopub](https://github.com/linclin/gopub) | vue.js(element框架)+golang(beego框架)开发的运维发布系统,支持git,jenkins版本发布,go ssh,BT两种文件传输方式选择,支持部署前准备任务和部署后任务钩子函数 | 1.2k | Go | 03/26 |
| 51 | [xormplus/xorm](https://github.com/xormplus/xorm) | xorm是一个简单而强大的Go语言ORM库,通过它可以使数据库操作非常简便。本库是基于原版xorm的定制增强版本,为xorm提供类似ibatis的配置文件及动态SQL支持,支持AcitveRecord操作 | 1.2k | Go | 05/29 |
| 52 | [alibaba/RedisShake](https://github.com/alibaba/RedisShake) | Redis-shake is a tool for synchronizing data between two redis databases. Redis-shake是一个用于在两个redis之间同步数据的工具,满足用户非常灵活的同步、迁移需求。 | 1.2k | Go | 05/06 |
| 53 | [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/ | 1.2k | Go | 07/04 |
| 54 | [yanyiwu/gojieba](https://github.com/yanyiwu/gojieba) | "结巴"中文分词的Golang版本 | 1.2k | Go | 05/31 |
| 55 | [40t/go-sniffer](https://github.com/40t/go-sniffer) | 🔎Sniffing and parsing mysql,redis,http,mongodb etc protocol. 抓包截取项目中的数据库请求并解析成相应的语句。 | 1.1k | Go | 06/12 |
| 56 | [davyxu/tabtoy](https://github.com/davyxu/tabtoy) | 高性能表格数据导出器 | 1.1k | Go | 06/22 |
| 57 | [opensec-cn/kunpeng](https://github.com/opensec-cn/kunpeng) | kunpeng是一个Golang编写的开源POC框架/库,以动态链接库的形式提供各种语言调用,通过此项目可快速开发漏洞检测类的系统。 | 1.1k | Go | 05/15 |
| 58 | [Jrohy/trojan](https://github.com/Jrohy/trojan) | trojan多用户管理部署程序, 支持web页面管理 | 1.1k | Go | 07/03 |
| 59 | [george518/PPGo_Job](https://github.com/george518/PPGo_Job) | PPGo_Job是一款可视化的、多人多权限的、一任务多机执行的定时任务管理系统,采用golang开发,安装方便,资源消耗少,支持大并发,可同时管理多台服务器上的定时任务。 | 1.1k | Go | 04/14 |
| 60 | [alberliu/gim](https://github.com/alberliu/gim) | golang写的IM服务器,支持多业务接入 | 1.0k | Go | 06/28 |
| 61 | [hantmac/Mastering_Go_ZH_CN](https://github.com/hantmac/Mastering_Go_ZH_CN) | 《Mastering GO》中文译本,《玩转 GO》。 | 1.0k | Go | 06/23 |
| 62 | [esrrhs/pingtunnel](https://github.com/esrrhs/pingtunnel) | 流量转发加速工具.a tool that advertises tcp/udp/socks5 traffic as icmp traffic for forwarding. | 993 | Go | 07/06 |
| 63 | [henson/proxypool](https://github.com/henson/proxypool) | Golang实现的IP代理池 | 991 | Go | 07/05 |
| 64 | [godcong/fate](https://github.com/godcong/fate) | fate 命运 起名 算命 宝宝起名 起名助手 宝宝取名 | 980 | Go | 07/03 |
| 65 | [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更好的性能。 | 959 | Go | 07/06 |
| 66 | [zxh0/jvmgo-book](https://github.com/zxh0/jvmgo-book) | 《自己动手写Java虚拟机》源代码 | 936 | Go | 02/17 |
| 67 | [yoki123/ncmdump](https://github.com/yoki123/ncmdump) | netease cloud music copyright protection file dump(golang版本网易云音乐ncm文件格式转换) | 925 | Go | 04/30 |
| 68 | [smartwalle/alipay](https://github.com/smartwalle/alipay) | 支付宝 AliPay SDK for Go, 集成简单,功能完善,持续更新,支持公钥证书和普通公钥进行签名和验签。 | 904 | Go | 07/01 |
| 69 | [xianlubird/mydocker](https://github.com/xianlubird/mydocker) | <<自己动手写docker>> 源码 | 903 | Go | 04/06 |
| 70 | [iwannay/jiacrontab](https://github.com/iwannay/jiacrontab) | 简单可信赖的任务管理工具 | 895 | Go | 03/12 |
| 71 | [wxbool/video-srt-windows](https://github.com/wxbool/video-srt-windows) | 这是一个可以识别视频语音自动生成字幕SRT文件的开源 Windows-GUI 软件工具。 | 877 | Go | 05/07 |
| 72 | [xluohome/phonedata](https://github.com/xluohome/phonedata) | 手机号码归属地信息库、手机号归属地查询 phone.dat 最后更新:2020年04月 | 872 | Go | 04/23 |
| 73 | [smallnest/dive-to-gosync-workshop](https://github.com/smallnest/dive-to-gosync-workshop) | 深入Go并发编程研讨课 | 861 | Go | 06/29 |
| 74 | [geph-official/geph2](https://github.com/geph-official/geph2) | Geph (迷霧通) is a modular Internet censorship circumvention system designed specifically to deal with national filtering. | 855 | Go | 04/30 |
| 75 | [bilibili/sniper](https://github.com/bilibili/sniper) | 轻量级 go 业务框架。 | 851 | Go | 07/07 |
| 76 | [wuYin/blog](https://github.com/wuYin/blog) | 个人博客 | 826 | Go | 05/11 |
| 77 | [3xxx/engineercms](https://github.com/3xxx/engineercms) | 工程师知识管理系统:基于golang go语言(beego框架)。每个行业都有自己的知识管理系统,engineercms旨在为土木工程师们打造一款适用的基于web的知识管理系统。它既可以用于管理个人的项目资料,也可以用于管理项目团队资料;它既可以运行于个人电脑,也可以放到服务器上。支持提取码分享文件,onlyoffice实时文档协作,直接在线编辑dwg文件、office文档,在线利用mindoc创作你的书籍,阅览PDF文件。通用的业务流程设置。手机端配套小程序,微信搜索“珠三角设代”或“青少儿书画”即可呼出小程序。 | 823 | Go | 06/28 |
| 78 | [gobyexample-cn/gobyexample](https://github.com/gobyexample-cn/gobyexample) | Go by Example 通过例子学 Golang | 816 | Go | 06/04 |
| 79 | [Go-zh/tour](https://github.com/Go-zh/tour) | Go 语言官方教程中文版 | 815 | Go | 04/04 |
| 80 | [chai2010/awesome-go-zh](https://github.com/chai2010/awesome-go-zh) | :books: Go资源精选中文版(含中文图书大全) | 813 | Go | 07/05 |
| 81 | [Gourouting/singo](https://github.com/Gourouting/singo) | Gin+Gorm开发Golang API快速开发脚手架 | 780 | Go | 03/09 |
| 82 | [mlogclub/bbs-go](https://github.com/mlogclub/bbs-go) | 基于Golang的社区系统。 | 780 | Go | 07/06 |
| 83 | [yangwenmai/learning-golang](https://github.com/yangwenmai/learning-golang) | Go 学习之路:Go 开发者博客、Go 微信公众号、Go 学习资料(文档、书籍、视频) | 779 | Go | 04/02 |
| 84 | [GameXG/TcpRoute2](https://github.com/GameXG/TcpRoute2) | TcpRoute , TCP 层的路由器。对于 TCP 连接自动从多个线路(电信、联通、移动)、多个域名解析结果中选择最优线路。 | 777 | Go | 05/23 |
| 85 | [caixw/apidoc](https://github.com/caixw/apidoc) | RESTful API 文档生成工具,支持 Go、Java、Swift、JavaScript、Rust、PHP、Python 和 Ruby 等大部分语言。 | 763 | Go | 07/05 |
| 86 | [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的集群复制工具,可以满足迁移和同步的需求,进一步实现灾备和多活功能。 | 740 | Go | 06/30 |
| 87 | [mozillazg/go-pinyin](https://github.com/mozillazg/go-pinyin) | 汉字转拼音 | 735 | Go | 06/14 |
| 88 | [duanhf2012/origin](https://github.com/duanhf2012/origin) | 积木式服务器引擎 | 717 | Go | 07/03 |
| 89 | [gudegg/yunSpider](https://github.com/gudegg/yunSpider) | 百度云网盘爬虫 | 691 | Go | 04/05 |
| 90 | [bobohume/gonet](https://github.com/bobohume/gonet) | go分布式服务器,基于内存mmo | 685 | Go | 06/13 |
| 91 | [Janusec/janusec](https://github.com/Janusec/janusec) | Janusec Application Gateway, Provides Simple, Fast and Secure Application Delivery. JANUSEC应用网关,提供简单、快速、安全的应用交付。 | 682 | Go | 07/03 |
| 92 | [8treenet/freedom](https://github.com/8treenet/freedom) | freedom是一个基于六边形架构的框架,可以支撑充血的领域模型范式。 | 667 | Go | 07/03 |
| 93 | [hanchuanchuan/goInception](https://github.com/hanchuanchuan/goInception) | 一个集审核、执行、备份及生成回滚语句于一身的MySQL运维工具 | 652 | Go | 06/21 |
| 94 | [thinkeridea/go-extend](https://github.com/thinkeridea/go-extend) | go语言扩展包,收集一些常用的操作函数,辅助更快的完成开发工作,并减少重复代码 | 549 | Go | 01/06 |
| 95 | [unknwon/building-web-applications-in-go](https://github.com/unknwon/building-web-applications-in-go) | Go 语言 Web 应用开发系列教程,从新手到双手残废 | 538 | Go | 03/21 |
| 96 | [link1st/gowebsocket](https://github.com/link1st/gowebsocket) | golang基于websocket单台机器支持百万连接分布式聊天(IM)系统 | 528 | Go | 06/30 |
| 97 | [iGoogle-ink/gopay](https://github.com/iGoogle-ink/gopay) | QQ、微信(WeChat)、支付宝(AliPay)的Go版本SDK。【持续更新,望开发者及时升级】 | 599 | Go | 06/27 |
| 98 | [sevenelevenlee/go-patterns](https://github.com/sevenelevenlee/go-patterns) | Golang 设计模式 | 595 | Go | 06/18 |
| 99 | [liushuchun/wechatcmd](https://github.com/liushuchun/wechatcmd) | 提供微信终端版本、微信命令行版本聊天功能、微信机器人 | 593 | Go | 05/09 |
| 100 | [qiniu/httptest](https://github.com/qiniu/httptest) | Qiniu httptest package - 七牛HTTP测试工具包 | 547 | Go | 06/23 |
| 101 | [jiajunhuang/blog](https://github.com/jiajunhuang/blog) | Jiajun的编程随想 | 510 | Go | 07/05 |
| 102 | [cnbattle/douyin](https://github.com/cnbattle/douyin) | 抖音推荐列表视频爬虫方案,基于app(虚拟机或真机) 相关技术 golang adb | 501 | Go | 07/07 |
| 103 | [tjfoc/gmsm](https://github.com/tjfoc/gmsm) | GM SM2/3/4 library based on Golang (基于Go语言的国密SM2/SM3/SM4算法库) | 494 | Go | 06/29 |
| 104 | [duolatech/xapimanager](https://github.com/duolatech/xapimanager) | XAPI MANAGER -专业实用的开源接口管理平台,为程序开发者提供一个灵活,方便,快捷的API管理工具,让API管理变的更加清晰、明朗。如果你觉得xApi对你有用的话,别忘了给我们点个赞哦^_^ ! | 493 | Go | 04/20 |
| 105 | [Golangltd/codeclass](https://github.com/Golangltd/codeclass) | Golang语言社区--腾讯课堂、网易云课堂、字节教育课程PPT及代码 | 492 | Go | 06/24 |
| 106 | [silenceper/pool](https://github.com/silenceper/pool) | Golang 通用网络连接池 | 487 | Go | 05/30 |
| 107 | [33cn/chain33](https://github.com/33cn/chain33) | 高度模块化, 遵循 KISS原则的区块链开发框架 | 475 | Go | 07/06 |
| 108 | [go-crawler/go_jobs](https://github.com/go-crawler/go_jobs) | 带你了解一下Golang的市场行情 | 469 | Go | 05/17 |
| 109 | [indes/flowerss-bot](https://github.com/indes/flowerss-bot) | A telegram bot for rss reader. 一个支持应用内阅读的 Telegram RSS Bot。 | 463 | Go | 07/03 |
| 110 | [go-spring/go-spring](https://github.com/go-spring/go-spring) | 基于 IoC 的 Go 后端一站式开发框架 🚀 | 463 | Go | 06/28 |
| 111 | [link1st/go-stress-testing](https://github.com/link1st/go-stress-testing) | go 实现的压测工具,ab、locust、Jmeter压测工具介绍【单台机器100w连接压测实战】 | 460 | Go | 07/04 |
| 112 | [hidu/mysql-schema-sync](https://github.com/hidu/mysql-schema-sync) | mysql表结构自动同步工具(目前只支持字段、索引的同步,分区等高级功能暂不支持) | 446 | Go | 06/11 |
| 113 | [snowlyg/IrisAdminApi](https://github.com/snowlyg/IrisAdminApi) | iris 框架的后台api项目 | 438 | Go | 06/27 |
| 114 | [TeaWeb/build](https://github.com/TeaWeb/build) | TeaWeb-可视化的Web代理服务。DEMO: http://teaos.cn:7777 | 434 | Go | 06/25 |
| 115 | [lifei6671/interview-go](https://github.com/lifei6671/interview-go) | golang面试题集合 | 433 | Go | 06/12 |
| 116 | [it234/goapp](https://github.com/it234/goapp) | Gin + GORM + Casbin + vue-element-admin 实现的权限管理系统(golang) | 425 | Go | 01/14 |
| 117 | [didi/falcon-log-agent](https://github.com/didi/falcon-log-agent) | 用于监控系统的日志采集agent,可无缝对接open-falcon | 425 | Go | 03/02 |
| 118 | [hzwy23/hauth](https://github.com/hzwy23/hauth) | hauth项目,不是一个前端or后台框架! 而是一个集成权限管理,菜单资源管理,域管理,角色管理,用户管理,组织架构管理,操作日志管理等等的快速开发平台. hauth是一个基础产品,在这个基础产品上,根据业务需求,快速的开发应用服务.账号:admin,密码:123456 | 422 | Go | 05/11 |
| 119 | [kplcloud/kplcloud](https://github.com/kplcloud/kplcloud) | 基于Kubernetes的PaaS平台 | 416 | Go | 01/19 |
| 120 | [silenceper/gowatch](https://github.com/silenceper/gowatch) | gowatch is a command line tool that builds and (re)starts your go project everytime you save a Go or template file.\|\|Go程序热编译工具,提升开发效率 | 410 | Go | 06/24 |
| 121 | [wiatingpub/MTBSystem](https://github.com/wiatingpub/MTBSystem) | 使用go-micro微服务实现的在线电影院订票系统 | 409 | Go | 06/14 |
| 122 | [objcoding/wxpay](https://github.com/objcoding/wxpay) | 微信支付(WeChat Pay) SDK for Golang | 408 | Go | 06/22 |
| 123 | [pibigstar/go-demo](https://github.com/pibigstar/go-demo) | Go语言实例教程从入门到进阶,包括基础库使用、设计模式、面试易错点、工具类、对接第三方等 | 405 | Go | 06/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 | 402 | Go | 05/31 |
| 125 | [EndlessCheng/mahjong-helper](https://github.com/EndlessCheng/mahjong-helper) | 日本麻将助手:牌效+防守+记牌(支持雀魂、天凤) | 394 | Go | 06/12 |
| 126 | [baiyutang/meetup](https://github.com/baiyutang/meetup) | 【❤️ 互联网最全大厂技术分享PPT 👍🏻 持续更新中!】🍻各大技术交流会、活动资料汇总 ,如 👉QCon👉全球运维技术大会 👉 GDG 👉 全球技术领导力峰会👉大前端大会👉架构师峰会👉敏捷开发DevOps👉OpenResty👉Elastic,欢迎 PR / Issues | 393 | Go | 07/01 |
| 127 | [gookit/color](https://github.com/gookit/color) | 🎨 Terminal color rendering tool library, support 8/16 colors, 256 colors, RGB color rendering output, compatible with Windows. CLI 控制台颜色渲染工具库, 拥有简洁的使用API,支持16色,256色,RGB色彩渲染输出,兼容并支持 Windows 环境的色彩渲染 | 391 | Go | 05/20 |
| 128 | [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。 | 385 | Go | 06/15 |
| 129 | [zxh0/luago-book](https://github.com/zxh0/luago-book) | 《自己动手实现Lua》源代码 | 380 | Go | 05/30 |
| 130 | [hr3lxphr6j/bililive-go](https://github.com/hr3lxphr6j/bililive-go) | 一个直播录制工具 | 364 | Go | 07/07 |
| 131 | [phodal/coca](https://github.com/phodal/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 是一个用于系统重构、系统迁移和系统分析的瑞士军刀。它可以分析代码中的 badsmell,行数统计,分析调用与依赖,进行 Git 分析,以及自动化重构等。 | 357 | Go | 06/23 |
| 132 | [brokercap/Bifrost](https://github.com/brokercap/Bifrost) | Bifrost ---- 面向生产环境的 MySQL 同步到Redis,MongoDB等服务的异构中间件 | 354 | Go | 06/12 |
| 133 | [wumansgy/GoAndBlockChainStudy](https://github.com/wumansgy/GoAndBlockChainStudy) | go and blockchain study note,欢迎各位志同道合的朋友一起完善,让更多的go或者区块链开发者能够有一份不错的学习资料 | 350 | Go | 06/10 |
| 134 | [jemygraw/TechDoc](https://github.com/jemygraw/TechDoc) | 自己编写的技术文档汇总 | 350 | Go | 07/01 |
| 135 | [darjun/go-daily-lib](https://github.com/darjun/go-daily-lib) | Go 每日一库 | 346 | Go | 06/27 |
| 136 | [qit-team/snow](https://github.com/qit-team/snow) | 简洁易用的Go业务框架 | 343 | Go | 07/07 |
| 137 | [xinliangnote/Go](https://github.com/xinliangnote/Go) | 【Go 从入门到实战】学习笔记,从零开始学 Go、Gin 框架,基本语法包括 26 个Demo,Gin 框架包括:Gin 自定义路由配置、Gin 使用 Logrus 进行日志记录、Gin 数据绑定和验证、Gin 自定义错误处理、Go gRPC Hello World... 持续更新中... | 340 | Go | 01/04 |
| 138 | [Golangltd/LollipopGo](https://github.com/Golangltd/LollipopGo) | 2.8X 版本更新 Golang语言社区 全球服游戏服务器框架,目前协议支持websocket、http及RPC,采用状态同步,愿景:打造竞技实时【比赛】对战游戏平台框架! 功能持续更新中... ... | 339 | Go | 06/21 |
| 139 | [labulaka521/crocodile](https://github.com/labulaka521/crocodile) | Distributed Task Scheduling System\|分布式定时任务调度平台 | 335 | Go | 06/30 |
| 140 | [zc2638/go-standard](https://github.com/zc2638/go-standard) | Go常用规范定义,标准库方法使用示例,请注意这不是Go的中文版标准库(内含传送门) | 334 | Go | 05/28 |
| 141 | [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 | 331 | Go | 04/25 |
| 142 | [childe/gohangout](https://github.com/childe/gohangout) | golang版本的hangout, 希望能省些内存. 使用了自己写的Kafka lib .. 虚. 不过我们在生产环境已经使用近1年, kafka 版本从0.9.0.1到2.0都在使用, 目前情况稳定. 吞吐量在每天2000亿条以上. | 330 | Go | 07/06 |
| 143 | [wangbin/jiebago](https://github.com/wangbin/jiebago) | Jieba 分词 Go 语言版 | 325 | Go | 01/03 |
| 144 | [ego008/goyoubbs](https://github.com/ego008/goyoubbs) | golang 实现的youBBS,自动安装、更新HTTPS | 322 | Go | 03/18 |
| 145 | [tomoya92/pybbs-go](https://github.com/tomoya92/pybbs-go) | beego写的简单bbs | 317 | Go | 05/06 |
| 146 | [iissy/goweb](https://github.com/iissy/goweb) | 一个用Golang写的CMS(内容管理系统) | 310 | Go | 06/14 |
| 147 | [zboya/golang_runtime_reading](https://github.com/zboya/golang_runtime_reading) | golang 1.10.2 runtime code reading - golang runtime源码分析。只有思考过,你才会印象深刻。 | 310 | Go | 06/07 |
| 148 | [ma6254/FictionDown](https://github.com/ma6254/FictionDown) | 小说下载\|小说爬取\|起点\|笔趣阁\|导出Markdown\|导出txt\|转换epub\|广告过滤\|自动校对 | 309 | Go | 06/08 |
| 149 | [1024casts/snake](https://github.com/1024casts/snake) | 🐍 一款小巧的基于Go构建的开发框架,可以快速进行业务开发,遵循SOLID设计原则 | 305 | Go | 07/07 |
| 150 | [dengsgo/fileboy](https://github.com/dengsgo/fileboy) | fileboy,文件变更监听通知工具,使用 Go 编写。Fileboy, File Change Monitoring Notification Tool, written with Go. | 291 | Go | 06/27 |
| 151 | [Adminisme/ServerScan](https://github.com/Adminisme/ServerScan) | ServerScan一款使用Golang开发的高并发网络扫描、服务探测工具。 | 290 | Go | 04/07 |
| 152 | [chai2010/gopherchina2018-cgo-talk](https://github.com/chai2010/gopherchina2018-cgo-talk) | :book: GopherChina2018: 深入CGO编程 - 最新修订 | 285 | Go | 06/21 |
| 153 | [magiclvzs/antnet](https://github.com/magiclvzs/antnet) | A game server net framework in Golang go(Golang)游戏服务器网络框架 | 279 | Go | 06/30 |
| 154 | [hwholiday/learning_tools](https://github.com/hwholiday/learning_tools) | Go 学习、Go 进阶、Go 实用工具类、Go-kit ,Go-Micro 微服务实践、Go 推送 | 279 | Go | 06/22 |
| 155 | [qieguo2016/algorithm](https://github.com/qieguo2016/algorithm) | 常用算法和数据结构讲解,面试算法题/leetcode解题,提供golang/js版本 | 277 | Go | 07/02 |
| 156 | [micro-in-cn/starter-kit](https://github.com/micro-in-cn/starter-kit) | Quick Go-Micro 快速开发包 | 273 | Go | 05/26 |
| 157 | [jaywcjlove/golang-tutorial](https://github.com/jaywcjlove/golang-tutorial) | Go语言快速入门 | 272 | Go | 03/25 |
| 158 | [makazeu/AnotherSteamCommunityFix](https://github.com/makazeu/AnotherSteamCommunityFix) | 通过修改hosts转发HTTP请求的方式临时性修复SteamCommunity在中国大陆无法访问的小工具 | 267 | Go | 04/29 |
| 159 | [gookit/validate](https://github.com/gookit/validate) | ⚔ Go package for data validation and filtering. support Map, Struct, Form data. Go通用的数据验证与过滤库,使用简单,内置大部分常用验证、过滤器,支持自定义验证器、自定义消息、字段翻译。 | 267 | Go | 07/07 |
| 160 | [GameXG/ProxyClient](https://github.com/GameXG/ProxyClient) | golang 代理库,和net一致的API。支持 socks4、socks4a、socks5、http、https 等代理协议。 | 265 | Go | 01/21 |
| 161 | [hequan2017/go-admin](https://github.com/hequan2017/go-admin) | go web api,包含gin+gorm+jwt+rbac等。 | 265 | Go | 02/04 |
| 162 | [micro-plat/hydra](https://github.com/micro-plat/hydra) | 后端全栈式服务框架,提供接口服务器、web服务器、websocket服务器,RPC服务器、统一调度服务器、消息消费服务器 | 263 | Go | 07/07 |
| 163 | [esap/wechat](https://github.com/esap/wechat) | 微信SDK的golang实现,短小精悍,同时兼容【企业号/服务号/订阅号/小程序】 | 262 | Go | 02/20 |
| 164 | [didi/sharingan](https://github.com/didi/sharingan) | Sharingan(写轮眼)是一个基于golang的流量录制回放工具,适合项目重构、回归测试等。 | 261 | Go | 06/28 |
| 165 | [Tencent/bk-bcs](https://github.com/Tencent/bk-bcs) | 蓝鲸智云容器管理平台(BlueKing Container Service) | 259 | Go | 07/06 |
| 166 | [idoubi/gonews](https://github.com/idoubi/gonews) | golang每日新闻检索平台 | 257 | Go | 06/08 |
| 167 | [go-workflow/go-workflow](https://github.com/go-workflow/go-workflow) | go版本极简工作流引擎 | 246 | Go | 04/12 |
| 168 | [admpub/nging](https://github.com/admpub/nging) | 漂亮的Go语言通用后台管理框架,包含计划任务、MySQL管理、Redis管理、FTP管理、SSH管理、服务器管理、Caddy配置、云存储管理等功能。 | 244 | Go | 07/07 |
| 169 | [nange/gospider](https://github.com/nange/gospider) | golang实现的爬虫框架,使用者只需关心页面规则,提供web管理界面。基于colly开发。 | 242 | Go | 01/15 |
| 170 | [sunshinev/go-sword](https://github.com/sunshinev/go-sword) | 【Go-sword】可视化CRUD管理后台生成工具 | 237 | Go | 06/08 |
| 171 | [Shitaibin/golang_step_by_step](https://github.com/Shitaibin/golang_step_by_step) | Golang入门教程的文章、示例代码,喜欢就star,订阅就watch | 234 | Go | 04/19 |
| 172 | [jackhu1990/golangman](https://github.com/jackhu1990/golangman) | golangman是一个帮助具有其他语言开发经验的人快速上手golang的开源项目. | 233 | Go | 02/15 |
| 173 | [importcjj/sensitive](https://github.com/importcjj/sensitive) | 敏感词查找,验证,过滤和替换 🤓 FindAll, Validate, Filter and Replace words. | 233 | Go | 04/16 |
| 174 | [islenbo/autossh](https://github.com/islenbo/autossh) | No password ssh client for Mac/Linux, one key login remote server. 一个SSH远程客户端,可一键登录远程服务器,主要用来弥补Mac/Linux Terminal SSH无法保存密码的不足。 | 232 | Go | 02/07 |
| 175 | [woodylan/go-websocket](https://github.com/woodylan/go-websocket) | 基于Golang实现的分布式WebSocket服务、IM服务,仅依赖Etcd,简单易部署,支持高并发、单发、群发、广播,其它项目可以通过http与本项目通信。 | 230 | Go | 06/30 |
| 176 | [goflyfox/gmanager](https://github.com/goflyfox/gmanager) | 基于gf框架的管理平台,支持登录、认证、组织机构、用户、角色、菜单、日志 | 222 | Go | 04/01 |
| 177 | [whitehatnote/BlueShell](https://github.com/whitehatnote/BlueShell) | 红蓝对抗跨平台远控工具 | 207 | Go | 06/17 |
| 178 | [q191201771/lal](https://github.com/q191201771/lal) | 🔥 Go live stream lib/client/server. support RTMP, HTTP-FLV, HLS(m3u8+ts), H264/AVC, H265/HEVC, AAC, GOP cache, relay pull, relay push. \|\| Go直播流媒体网络传输服务器 | 201 | Go | 07/07 |
| 179 | [fastgoo/wechat-grpc-client](https://github.com/fastgoo/wechat-grpc-client) | 微信Ipad协议golang版本,基于grpc的实现策略。这套代码需要通过gprc服务端组包解包才可以正常使用 | 199 | Go | 03/04 |
| 180 | [broqiang/mdblog](https://github.com/broqiang/mdblog) | 用来显示 markdown 文档的,基于 gin 框架的, go 语言开发的博客 | 197 | Go | 06/10 |
| 181 | [vckai/novel](https://github.com/vckai/novel) | Golang小说采集展示站 | 196 | Go | 06/27 |
| 182 | [sinksmell/lanblog](https://github.com/sinksmell/lanblog) | 懒人博客,前后端分离,Vue+Beego Restful api 开箱即用,部署简单,后台管理系统简洁美观。 | 190 | Go | 02/25 |
| 183 | [q191201771/naza](https://github.com/q191201771/naza) | 🍀 Go basic library. \|\| Go语言基础库 | 188 | Go | 06/25 |
| 184 | [shenghui0779/yiigo](https://github.com/shenghui0779/yiigo) | 🔥 Go 轻量级开发通用库 🚀🚀🚀 | 187 | Go | 06/29 |
| 185 | [issue9/identicon](https://github.com/issue9/identicon) | Go 语言版 identicon 头像产生工具 | 186 | Go | 02/02 |
| 186 | [8treenet/gcache](https://github.com/8treenet/gcache) | gcache是gorm的中间件,插入后gorm即刻拥有缓存。 | 183 | Go | 06/26 |
| 187 | [freshcn/qqwry](https://github.com/freshcn/qqwry) | 纯真ip库的golang服务 | 182 | Go | 03/11 |
| 188 | [zu1k/tg-keyword-reply-bot](https://github.com/zu1k/tg-keyword-reply-bot) | Telegram关键词机器人: 根据群组管理员设定的关键词或者正则规则,自动回复文字、图片、文件或者进行永久禁言、临时禁言、踢出等群管操作。后续版本将增加Web管理平台 | 182 | Go | 06/13 |
| 189 | [zxysilent/blog](https://github.com/zxysilent/blog) | 一个go、echo、vue 开发的快速、简洁、美观、前后端分离的个人博客系统(blog)、也可方便二次开发为CMS(内容管理系统)和各种企业门户网站 | 181 | Go | 07/03 |
| 190 | [lianxiangcloud/linkchain](https://github.com/lianxiangcloud/linkchain) | 享云链-郑和版本,由链享云打造的专注于数字经济创新业务的公链。 | 180 | Go | 03/02 |
| 191 | [IrineSistiana/mos-chinadns](https://github.com/IrineSistiana/mos-chinadns) | 一个高性能低延迟的支持加密DNS协议的DNS分流器。解决DNS广告劫持、嗅探和污染的同时不会影响本地域名的解析。多平台开箱即用。Windows系统可一键安装。 | 179 | Go | 07/07 |
| 192 | [sodaling/FastestBilibiliDownloader](https://github.com/sodaling/FastestBilibiliDownloader) | B站视频极速批量下载器\|The fastest Bilibili video downloader | 175 | Go | 07/04 |
| 193 | [bypass-GFW-SNI/main](https://github.com/bypass-GFW-SNI/main) | 突破 GFW 的 SNI 封锁 | 174 | Go | 04/14 |
| 194 | [Gopusher/gateway](https://github.com/Gopusher/gateway) | 🚀构建分布式即时聊天、消息推送系统。 Building distributed instant messaging, push notification systems. | 174 | Go | 04/09 |
| 195 | [out0fmemory/Goproxy-Always-Available](https://github.com/out0fmemory/Goproxy-Always-Available) | fork from goproxy Becaust it closed!! 1632版本自动扫描可用ip | 172 | Go | 05/30 |
| 196 | [mattn/goemon](https://github.com/mattn/goemon) | 五右衛門 | 170 | Go | 04/06 |
| 197 | [Comdex/imgo](https://github.com/Comdex/imgo) | golang图像处理工具库(golang image process lib) | 170 | Go | 02/13 |
| 198 | [harlanc/moshopserver](https://github.com/harlanc/moshopserver) | 小程序商城golang后台API(基于Beego) | 170 | Go | 06/01 |
| 199 | [liyuechun/blockchain_go_videos](https://github.com/liyuechun/blockchain_go_videos) | Golang公链开发系统视频教程 | 169 | Go | 07/04 |
| 200 | [donng/Play-with-Data-Structures](https://github.com/donng/Play-with-Data-Structures) | 慕课 liuyubobobo「玩转数据结构」课程的 Go 语言实现版本 | 166 | Go | 06/19 |
⬆ [回到目录](#目录)
<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 | 12.3k | PHP | 06/01 |