forked from GrowingGit/GitHub-Chinese-Top-Charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.md
2151 lines (2088 loc) · 463 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中文排行榜](/banner.png)
#### 榜单设立目的
- :cn: GitHub中文排行榜,帮助你发现高分优秀中文项目;
- 各位开发者伙伴可以更高效地吸收国人的优秀经验、成果;
- 中文项目只能满足阶段性的需求,想要有进一步提升,还请多花时间学习高分神级英文项目;
#### 榜单设立范围
- 设立1个总榜(所有语言项目汇总排名)、18个分榜(单个语言项目排名);
#### 榜单入选规则
- 一个小小的要求:项目的 Description 和 README.md 都要包含中文说明;
- 更新越持续越好:最近一年内有更新过的项目才有机会入选(拥抱活跃,远离僵尸);
- Stars 越多越好:各榜根据 Stars 对项目进行排序 ,在满足持续更新条件的项目中,取前200名上榜;
#### 榜单更新频率
- 每周更新一次,最近更新时间为1月18日(提前祝贺大家春节快乐,春运一路畅通!);
#### 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++ | 88.9k | Java | 01/14 |
| 2 | [jackfrued/Python-100-Days](https://github.com/jackfrued/Python-100-Days) | Python - 100天从新手到大师 | 76.3k | Jupyter Notebook | 01/17 |
| 3 | [justjavac/free-programming-books-zh_CN](https://github.com/justjavac/free-programming-books-zh_CN) | :books: 免费的计算机编程类中文书籍,欢迎投稿 | 62.6k | - | 12/29 |
| 4 | [MisterBooo/LeetCodeAnimation](https://github.com/MisterBooo/LeetCodeAnimation) | Demonstrate all the questions on LeetCode in the form of animation.(用动画的形式呈现解LeetCode题目的思路) | 48.7k | Java | 01/10 |
| 5 | [xingshaocheng/architect-awesome](https://github.com/xingshaocheng/architect-awesome) | 后端架构师技术图谱 | 42.7k | - | 01/16 |
| 6 | [doocs/advanced-java](https://github.com/doocs/advanced-java) | 😮 互联网 Java 工程师进阶知识完全扫盲:涵盖高并发、分布式、高可用、微服务、海量数据处理等领域知识,后端同学必看,前端同学也可学习 | 38.2k | Java | 01/15 |
| 7 | [scutan90/DeepLearning-500-questions](https://github.com/scutan90/DeepLearning-500-questions) | 深度学习500问,以问答形式对常用的概率知识、线性代数、机器学习、深度学习、计算机视觉等热点问题进行阐述,以帮助自己及有需要的读者。 全书分为18个章节,50余万字。由于水平有限,书中不妥之处恳请广大读者批评指正。 未完待续............ 如有意合作,联系[email protected] 版权所有,违权必究 Tan 2018.06 | 36.3k | - | 01/07 |
| 8 | [bailicangdu/vue2-elm](https://github.com/bailicangdu/vue2-elm) | 基于 vue2 + vuex 构建一个具有 45 个页面的大型单页面应用 | 31.8k | Vue | 10/09 |
| 9 | [justjavac/awesome-wechat-weapp](https://github.com/justjavac/awesome-wechat-weapp) | 微信小程序开发资源汇总 :100: | 29.4k | - | 12/27 |
| 10 | [azl397985856/leetcode](https://github.com/azl397985856/leetcode) | LeetCode Solutions: A Record of My Problem Solving Journey.( leetcode题解,记录自己的leetcode解题之路。) | 25.8k | JavaScript | 01/17 |
| 11 | [proxyee-down-org/proxyee-down](https://github.com/proxyee-down-org/proxyee-down) | http下载工具,基于http代理,支持多连接分块下载 | 25.5k | Java | 10/09 |
| 12 | [shengxinjing/programmer-job-blacklist](https://github.com/shengxinjing/programmer-job-blacklist) | :see_no_evil:程序员找工作黑名单,换工作和当技术合伙人需谨慎啊 更新有赞 | 24.8k | Shell | 04/09 |
| 13 | [521xueweihan/HelloGitHub](https://github.com/521xueweihan/HelloGitHub) | :octocat: Find pearls on open-source seashore 分享 GitHub 上有趣、入门级的开源项目 | 24.5k | Python | 12/30 |
| 14 | [NervJS/taro](https://github.com/NervJS/taro) | 多端统一开发框架,支持用 React 的开发方式编写一次代码,生成能运行在微信/百度/支付宝/字节跳动/ QQ 小程序/快应用/H5/React Native 等的应用。 https://taro.jd.com/ | 23.8k | JavaScript | 01/17 |
| 15 | [0voice/interview_internal_reference](https://github.com/0voice/interview_internal_reference) | 2019年最新总结,阿里,腾讯,百度,美团,头条等技术面试题目,以及答案,专家出题人分析汇总。 | 23.6k | Python | 12/18 |
| 16 | [apachecn/AiLearning](https://github.com/apachecn/AiLearning) | AiLearning: 机器学习 - MachineLearning - ML、深度学习 - DeepLearning - DL、自然语言处理 NLP | 22.8k | Python | 01/03 |
| 17 | [fxsjy/jieba](https://github.com/fxsjy/jieba) | 结巴中文分词 | 21.6k | Python | 01/13 |
| 18 | [sentsin/layui](https://github.com/sentsin/layui) | 采用自身模块规范编写的前端 UI 框架,遵循原生 HTML/CSS/JS 的书写形式,极低门槛,拿来即用。 | 20.9k | JavaScript | 01/15 |
| 19 | [lib-pku/libpku](https://github.com/lib-pku/libpku) | 贵校课程资料民间整理 | 21.8k | TeX | 01/17 |
| 20 | [geekcompany/ResumeSample](https://github.com/geekcompany/ResumeSample) | Resume template for Chinese programmers . 程序员简历模板系列。包括PHP程序员简历模板、iOS程序员简历模板、Android程序员简历模板、Web前端程序员简历模板、Java程序员简历模板、C/C++程序员简历模板、NodeJS程序员简历模板、架构师简历模板以及通用程序员简历模板 | 20.7k | - | 11/23 |
| 21 | [ityouknow/spring-boot-examples](https://github.com/ityouknow/spring-boot-examples) | about learning Spring Boot via examples. Spring Boot 教程、技术栈示例代码,快速简单上手教程。 | 20.6k | Java | 12/20 |
| 22 | [fouber/blog](https://github.com/fouber/blog) | 没事写写文章,喜欢的话请点star,想订阅点watch,千万别fork! | 20.2k | - | 11/12 |
| 23 | [alibaba/druid](https://github.com/alibaba/druid) | 阿里巴巴数据库事业部出品,为监控而生的数据库连接池 | 20.1k | Java | 01/16 |
| 24 | [scwang90/SmartRefreshLayout](https://github.com/scwang90/SmartRefreshLayout) | 🔥下拉刷新、上拉加载、二级刷新、淘宝二楼、RefreshLayout、OverScroll,Android智能下拉刷新框架,支持越界回弹、越界拖动,具有极强的扩展性,集成了几十种炫酷的Header和 Footer。 | 19.8k | Java | 01/17 |
| 25 | [littlecodersh/ItChat](https://github.com/littlecodersh/ItChat) | A complete and graceful API for Wechat. 微信个人号接口、微信机器人及命令行微信,三十行即可自定义个人号机器人。 | 19.6k | Python | 01/10 |
| 26 | [Tencent/wepy](https://github.com/Tencent/wepy) | 小程序组件化开发框架 | 19.6k | JavaScript | 01/09 |
| 27 | [iikira/BaiduPCS-Go](https://github.com/iikira/BaiduPCS-Go) | 百度网盘客户端 - Go语言编写 | 19.6k | Go | 12/21 |
| 28 | [alibaba/flutter-go](https://github.com/alibaba/flutter-go) | flutter 开发者帮助 APP,包含 flutter 常用 140+ 组件的demo 演示与中文文档 | 19.5k | Dart | 01/03 |
| 29 | [ctripcorp/apollo](https://github.com/ctripcorp/apollo) | Apollo(阿波罗)是携程框架部门研发的分布式配置中心,能够集中化管理应用不同环境、不同集群的配置,配置修改后能够实时推送到应用端,并且具备规范的权限、流程治理等特性,适用于微服务配置管理场景。 | 19.4k | Java | 01/10 |
| 30 | [Meituan-Dianping/mpvue](https://github.com/Meituan-Dianping/mpvue) | 基于 Vue.js 的小程序开发框架,从底层支持 Vue.js 语法和构建工具体系。 | 19.3k | JavaScript | 12/29 |
| 31 | [alibaba/arthas](https://github.com/alibaba/arthas) | Alibaba Java Diagnostic Tool Arthas/Alibaba Java诊断利器Arthas | 19.2k | Java | 01/16 |
| 32 | [SwiftGGTeam/the-swift-programming-language-in-chinese](https://github.com/SwiftGGTeam/the-swift-programming-language-in-chinese) | 中文版 Apple 官方 Swift 教程《The Swift Programming Language》 | 19.2k | CSS | 12/27 |
| 33 | [FallibleInc/security-guide-for-developers](https://github.com/FallibleInc/security-guide-for-developers) | Security Guide for Developers (实用性开发人员安全须知) | 18.8k | - | 01/10 |
| 34 | [julycoding/The-Art-Of-Programming-By-July](https://github.com/julycoding/The-Art-Of-Programming-By-July) | 本项目曾冲到全球第一,干货集锦见本页面最底部,另完整精致的纸质版《编程之法:面试和算法心得》已在京东/当当上销售 | 18.6k | C | 12/27 |
| 35 | [formulahendry/955.WLB](https://github.com/formulahendry/955.WLB) | 955 不加班的公司名单 - 工作 955,work–life balance (工作与生活的平衡) | 18.5k | - | 12/19 |
| 36 | [Advanced-Frontend/Daily-Interview-Question](https://github.com/Advanced-Frontend/Daily-Interview-Question) | 我是木易杨,公众号「高级前端进阶」作者,每天搞定一道前端大厂面试题,祝大家天天进步,一年后会看到不一样的自己。 | 16.7k | JavaScript | 01/06 |
| 37 | [fighting41love/funNLP](https://github.com/fighting41love/funNLP) | 中英文敏感词、语言检测、中外手机/电话归属地/运营商查询、名字推断性别、手机号抽取、身份证抽取、邮箱抽取、中日文人名库、中文缩写库、拆字词典、词汇情感值、停用词、反动词表、暴恐词表、繁简体转换、英文模拟中文发音、汪峰歌词生成器、职业名称词库、同义词库、反义词库、否定词库、汽车品牌词库、汽车零件词库、连续英文切割、各种中文词向量、公司名字大全、古诗词库、IT词库、财经词库、成语词库、地名词库、历史名人词库、诗词词库、医学词库、饮食词库、法律词库、汽车词库、动物词库、中文聊天语料、中文谣言数据、百度中文问答数据集、句子相似度匹配算法集合、bert资源、文本生成&摘要相关工具、cocoNLP信息抽取 ... | 16.4k | Python | 01/14 |
| 38 | [reactnativecn/react-native-guide](https://github.com/reactnativecn/react-native-guide) | React Native指南汇集了各类react-native学习资源、开源App和组件 | 15.6k | - | 08/11 |
| 39 | [QSCTech/zju-icicles](https://github.com/QSCTech/zju-icicles) | 浙江大学课程攻略共享计划 | 15.3k | C | 01/14 |
| 40 | [mqyqingfeng/Blog](https://github.com/mqyqingfeng/Blog) | 冴羽写博客的地方,预计写四个系列:JavaScript深入系列、JavaScript专题系列、ES6系列、React系列。 | 15.2k | - | 11/21 |
| 41 | [JacksonTian/fks](https://github.com/JacksonTian/fks) | 前端技能汇总 Frontend Knowledge Structure | 15.5k | JavaScript | 06/27 |
| 42 | [MLEveryday/100-Days-Of-ML-Code](https://github.com/MLEveryday/100-Days-Of-ML-Code) | 100-Days-Of-ML-Code中文版 | 14.9k | Jupyter Notebook | 08/22 |
| 43 | [shuzheng/zheng](https://github.com/shuzheng/zheng) | 基于Spring+SpringMVC+Mybatis分布式敏捷开发系统架构,提供整套公共微服务服务模块:集中权限管理(单点登录)、内容管理、支付中心、用户管理(支持第三方登录)、微信平台、存储系统、配置中心、日志分析、任务和通知等,支持服务治理、监控和追踪,努力为中小型企业打造全方位J2EE企业级开发解决方案。 | 14.9k | Java | 11/13 |
| 44 | [judasn/IntelliJ-IDEA-Tutorial](https://github.com/judasn/IntelliJ-IDEA-Tutorial) | IntelliJ IDEA 简体中文专题教程 | 14.8k | - | 01/09 |
| 45 | [chaozh/awesome-blockchain-cn](https://github.com/chaozh/awesome-blockchain-cn) | 收集所有区块链(BlockChain)技术开发相关资料,包括Fabric和Ethereum开发资料 | 14.7k | JavaScript | 10/06 |
| 46 | [alibaba/ice](https://github.com/alibaba/ice) | 🚀Simple and friendly front-end development system(飞冰,简单而友好的前端研发体系 )https://ice.work/ | 14.6k | JavaScript | 01/17 |
| 47 | [kon9chunkit/GitHub-Chinese-Top-Charts](https://github.com/kon9chunkit/GitHub-Chinese-Top-Charts) | :cn: GitHub中文排行榜,帮助你发现高分优秀中文项目、更高效地吸收国人的优秀经验成果;榜单每周更新一次,敬请关注! | 13.9k | Python | 01/18 |
| 48 | [wangshub/wechat_jump_game](https://github.com/wangshub/wechat_jump_game) | 微信《跳一跳》Python 辅助 | 13.9k | Python | 12/17 |
| 49 | [hzlzh/Best-App](https://github.com/hzlzh/Best-App) | 收集&推荐优秀的 Apps/硬件/技巧/周边等 | 13.8k | - | 11/04 |
| 50 | [Binaryify/NeteaseCloudMusicApi](https://github.com/Binaryify/NeteaseCloudMusicApi) | 网易云音乐 Node.js API service | 13.7k | JavaScript | 01/15 |
| 51 | [lenve/vhr](https://github.com/lenve/vhr) | 微人事是一个前后端分离的人力资源管理系统,项目采用SpringBoot+Vue开发。 | 13.6k | Java | 01/08 |
| 52 | [wangzheng0822/algo](https://github.com/wangzheng0822/algo) | 数据结构和算法必知必会的50个代码实现 | 13.4k | Python | 01/11 |
| 53 | [CarGuo/GSYVideoPlayer](https://github.com/CarGuo/GSYVideoPlayer) | 视频播放器(IJKplayer、ExoPlayer、MediaPlayer),HTTPS,支持弹幕,外挂字幕,支持滤镜、水印、gif截图,片头广告、中间广告,多个同时播放,支持基本的拖动,声音、亮度调节,支持边播边缓存,支持视频自带rotation的旋转(90,270之类),重力旋转与手动旋转的同步支持,支持列表播放 ,列表全屏动画,视频加载速度,列表小窗口支持拖动,动画效果,调整比例,多分辨率切换,支持切换播放器,进度条小窗口预览,列表切换详情页面无缝播放,rtsp、concat、mpeg。 | 13.1k | Java | 01/17 |
| 54 | [didi/DoraemonKit](https://github.com/didi/DoraemonKit) | 简称 "DoKit" 。一款功能齐全的客户端( iOS 、Android、微信小程序 )研发助手,你值得拥有。 | 13.0k | Java | 01/17 |
| 55 | [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~ | 13.0k | Python | 01/12 |
| 56 | [YMFE/yapi](https://github.com/YMFE/yapi) | YApi 是一个可本地部署的、打通前后端及QA的、可视化的接口管理平台 | 13.5k | JavaScript | 01/02 |
| 57 | [Awesome-HarmonyOS/HarmonyOS](https://github.com/Awesome-HarmonyOS/HarmonyOS) | A curated list of awesome things related to HarmonyOS. 华为鸿蒙操作系统。 | 13.4k | C | 09/09 |
| 58 | [521xueweihan/git-tips](https://github.com/521xueweihan/git-tips) | :trollface:Git的奇技淫巧 | 11.3k | - | 10/26 |
| 59 | [Curzibn/Luban](https://github.com/Curzibn/Luban) | Luban(鲁班)—Image compression with efficiency very close to WeChat Moments/可能是最接近微信朋友圈的图片压缩算法 | 11.3k | Java | 09/12 |
| 60 | [Bigkoo/Android-PickerView](https://github.com/Bigkoo/Android-PickerView) | This is a picker view for android , support linkage effect, timepicker and optionspicker.(时间选择器、省市区三级联动) | 11.3k | Java | 01/18 |
| 61 | [pjialin/py12306](https://github.com/pjialin/py12306) | 🚂 12306 购票助手,支持集群,多账号,多任务购票以及 Web 页面管理 | 11.0k | Python | 01/10 |
| 62 | [ruanyf/weekly](https://github.com/ruanyf/weekly) | 科技爱好者周刊,每周五发布 | 10.9k | - | 01/17 |
| 63 | [linlinjava/litemall](https://github.com/linlinjava/litemall) | 又一个小商城。litemall = Spring Boot后端 + Vue管理员前端 + 微信小程序用户前端 + Vue用户移动端 | 10.9k | Java | 01/14 |
| 64 | [vnpy/vnpy](https://github.com/vnpy/vnpy) | 基于Python的开源量化交易平台开发框架 | 10.7k | C++ | 01/18 |
| 65 | [Tencent/omi](https://github.com/Tencent/omi) | Front End Cross-Frameworks Framework - 前端跨框架跨平台框架 | 10.7k | JavaScript | 01/09 |
| 66 | [dyc87112/SpringBoot-Learning](https://github.com/dyc87112/SpringBoot-Learning) | Spring Boot基础教程,Spring Boot 2.x版本连载中!!! | 10.6k | - | 01/15 |
| 67 | [alibaba/Sentinel](https://github.com/alibaba/Sentinel) | A lightweight powerful flow control component enabling reliability and monitoring for microservices. (轻量级的流量控制、熔断降级 Java 库) | 10.6k | Java | 01/16 |
| 68 | [qyuhen/book](https://github.com/qyuhen/book) | 学习笔记 | 10.5k | - | 04/26 |
| 69 | [Tamsiree/RxTool](https://github.com/Tamsiree/RxTool) | Android开发人员不得不收集的工具类集合 \| 支付宝支付 \| 微信支付(统一下单) \| 微信分享 \| Zip4j压缩(支持分卷压缩与加密) \| 一键集成UCrop选择圆形头像 \| 一键集成二维码和条形码的扫描与生成 \| 常用Dialog \| WebView的封装可播放视频 \| 仿斗鱼滑动验证码 \| Toast封装 \| 震动 \| GPS \| Location定位 \| 图片缩放 \| Exif 图片添加地理位置信息(经纬度) \| 蛛网等级 \| 颜色选择器 \| ArcGis \| VTPK \| 编译运行一下说不定会找到惊喜 | 10.4k | Java | 12/28 |
| 70 | [Yixiaohan/show-me-the-code](https://github.com/Yixiaohan/show-me-the-code) | Python 练习册,每天一个小程序 | 10.4k | - | 11/11 |
| 71 | [hollischuang/toBeTopJavaer](https://github.com/hollischuang/toBeTopJavaer) | To Be Top Javaer - Java工程师成神之路 | 10.4k | Java | 01/06 |
| 72 | [thx/RAP](https://github.com/thx/RAP) | Web接口管理工具,开源免费,接口自动化,MOCK数据自动生成,自动化测试,企业级管理。阿里妈妈MUX团队出品!阿里巴巴都在用!1000+公司的选择!RAP2已发布请移步至https://github.com/thx/rap2-delos | 10.3k | JavaScript | 06/29 |
| 73 | [shimohq/chinese-programmer-wrong-pronunciation](https://github.com/shimohq/chinese-programmer-wrong-pronunciation) | 中国程序员容易发音错误的单词 | 10.2k | - | 12/28 |
| 74 | [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. | 10.2k | Go | 01/18 |
| 75 | [jobbole/awesome-programming-books](https://github.com/jobbole/awesome-programming-books) | 经典编程书籍大全,涵盖:计算机系统与网络、系统架构、算法与数据结构、前端开发、后端开发、移动开发、数据库、测试、项目与团队、程序员职业修炼、求职面试等 | 10.1k | - | 02/20 |
| 76 | [zergtant/pytorch-handbook](https://github.com/zergtant/pytorch-handbook) | pytorch handbook是一本开源的书籍,目标是帮助那些希望和使用PyTorch进行深度学习开发和研究的朋友快速入门,其中包含的Pytorch教程全部通过测试保证可以成功运行 | 10.1k | Jupyter Notebook | 01/17 |
| 77 | [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 ... | 10.1k | Dart | 01/17 |
| 78 | [xkcoding/spring-boot-demo](https://github.com/xkcoding/spring-boot-demo) | spring boot demo 是一个用来深度学习并实战 spring boot 的项目,目前总共包含 63 个集成demo,已经完成 52 个。 该项目已成功集成 actuator(监控)、admin(可视化监控)、logback(日志)、aopLog(通过AOP记录web请求日志)、统一异常处理(json级别和页面级别)、freemarker(模板引擎)、thymeleaf(模板引擎)、Beetl(模板引擎)、Enjoy(模板引擎)、JdbcTemplate(通用JDBC操作数据库)、JPA(强大的ORM框架)、mybatis(强大的ORM框架)、通用Mapper(快速操作Mybati ... | 10.0k | Java | 01/17 |
| 79 | [Tencent/QMUI_Android](https://github.com/Tencent/QMUI_Android) | 提高 Android UI 开发效率的 UI 库 | 10.0k | Java | 01/14 |
| 80 | [stephentian/33-js-concepts](https://github.com/stephentian/33-js-concepts) | :scroll: 每个 JavaScript 工程师都应懂的33个概念 @leonardomso | 10.0k | JavaScript | 07/24 |
| 81 | [Tim9Liu9/TimLiu-iOS](https://github.com/Tim9Liu9/TimLiu-iOS) | iOS开发常用三方库、插件、知名博客等等 | 9.9k | - | 11/28 |
| 82 | [peterq/pan-light](https://github.com/peterq/pan-light) | 百度网盘不限速客户端, golang + qt5, 跨平台图形界面 | 9.8k | Go | 11/08 |
| 83 | [Jack-Cherish/python-spider](https://github.com/Jack-Cherish/python-spider) | :rainbow:Python3网络爬虫实战 | 9.8k | Python | 12/25 |
| 84 | [jeasonlzy/okhttp-OkGo](https://github.com/jeasonlzy/okhttp-OkGo) | OkGo - 3.0 震撼来袭,该库是基于 Http 协议,封装了 OkHttp 的网络请求框架,比 Retrofit 更简单易用,支持 RxJava,RxJava2,支持自定义缓存,支持批量断点下载管理和批量上传管理功能 | 9.8k | Java | 07/03 |
| 85 | [leisurelicht/wtfpython-cn](https://github.com/leisurelicht/wtfpython-cn) | wtfpython的中文翻译/施工结束/ 能力有限,欢迎帮我改进翻译 | 9.8k | Python | 12/26 |
| 86 | [fengdu78/deeplearning_ai_books](https://github.com/fengdu78/deeplearning_ai_books) | deeplearning.ai(吴恩达老师的深度学习课程笔记及资源) | 9.8k | HTML | 01/13 |
| 87 | [huihut/interview](https://github.com/huihut/interview) | 📚 C/C++ 技术面试基础知识总结,包括语言、程序库、数据结构、算法、系统、网络、链接装载库等知识及面试经验、招聘、内推等信息。 | 9.0k | C++ | 01/02 |
| 88 | [open-android/Android](https://github.com/open-android/Android) | GitHub上最火的Android开源项目,所有开源项目都有详细资料和配套视频 | 9.0k | - | 10/19 |
| 89 | [bilibili/kratos](https://github.com/bilibili/kratos) | Kratos是bilibili开源的一套Go微服务框架,包含大量微服务相关框架及工具。 | 8.8k | Go | 01/17 |
| 90 | [jhao104/proxy_pool](https://github.com/jhao104/proxy_pool) | Python爬虫代理IP池(proxy pool) | 8.8k | Python | 01/14 |
| 91 | [233boy/v2ray](https://github.com/233boy/v2ray) | 最好用的 V2Ray 一键安装脚本 & 管理脚本 | 9.0k | Shell | 01/16 |
| 92 | [ruanyf/free-books](https://github.com/ruanyf/free-books) | 互联网上的免费书籍 | 8.9k | - | 01/13 |
| 93 | [cnodejs/nodeclub](https://github.com/cnodejs/nodeclub) | :baby_chick:Nodeclub 是使用 Node.js 和 MongoDB 开发的社区系统 | 8.7k | JavaScript | 01/03 |
| 94 | [pagehelper/Mybatis-PageHelper](https://github.com/pagehelper/Mybatis-PageHelper) | Mybatis通用分页插件 | 8.7k | Java | 01/11 |
| 95 | [yujiangshui/A-Programmers-Guide-to-English](https://github.com/yujiangshui/A-Programmers-Guide-to-English) | 专为程序员编写的英语学习指南 v1.2。在线版本请点 -> | 8.6k | - | 09/03 |
| 96 | [bailicangdu/vue2-manage](https://github.com/bailicangdu/vue2-manage) | 基于 vue + element-ui 的后台管理系统 | 8.6k | Vue | 01/25 |
| 97 | [AlloyTeam/Mars](https://github.com/AlloyTeam/Mars) | 腾讯移动 Web 前端知识库 | 8.6k | - | 01/11 |
| 98 | [answershuto/learnVue](https://github.com/answershuto/learnVue) | :octocat:Vue.js 源码解析 | 8.5k | JavaScript | 12/31 |
| 99 | [opendigg/awesome-github-vue](https://github.com/opendigg/awesome-github-vue) | Vue相关开源项目库汇总 | 8.4k | - | 08/02 |
| 100 | [USTC-Resource/USTC-Course](https://github.com/USTC-Resource/USTC-Course) | :heart:中国科学技术大学课程资源 | 8.4k | Python | 12/24 |
| 101 | [bilibili/DanmakuFlameMaster](https://github.com/bilibili/DanmakuFlameMaster) | Android开源弹幕引擎·烈焰弹幕使 ~ | 8.3k | Java | 11/02 |
| 102 | [paascloud/paascloud-master](https://github.com/paascloud/paascloud-master) | spring cloud + vue + oAuth2.0全家桶实战,前后端分离模拟商城,完整的购物流程、后端运营平台,可以实现快速搭建企业级微服务项目。支持微信登录等三方登录。 | 7.2k | Java | 11/13 |
| 103 | [litten/hexo-theme-yilia](https://github.com/litten/hexo-theme-yilia) | 一个简洁优雅的hexo主题 A simple and elegant theme for hexo. | 7.1k | JavaScript | 11/02 |
| 104 | [icindy/wxParse](https://github.com/icindy/wxParse) | wxParse-微信小程序富文本解析自定义组件,支持HTML及markdown解析 | 7.1k | JavaScript | 05/05 |
| 105 | [hs-web/hsweb-framework](https://github.com/hs-web/hsweb-framework) | hsweb (haʊs wɛb) 是一个用于快速搭建企业后台管理系统的基础项目,集成一揽子便捷功能如:便捷的通用增删改查,强大的权限管理,动态多数据源,动态表单,在线数据库维护等. 基于 spring-boot,mybaits. | 7.0k | Java | 01/13 |
| 106 | [LuckSiege/PictureSelector](https://github.com/LuckSiege/PictureSelector) | Picture Selector Library for Android or 图片选择器 | 8.0k | Java | 01/18 |
| 107 | [daniulive/SmarterStreaming](https://github.com/daniulive/SmarterStreaming) | 国内外为数不多致力于极致体验的超强全自研跨平台(windows/android/iOS)流媒体内核,通过模块化自由组合,支持实时RTMP推流、RTSP推流、RTMP播放器、RTSP播放器、录像、多路流媒体转发、音视频导播、动态视频合成、音频混音、直播互动、内置轻量级RTSP服务等,比快更快,业界真正靠谱的超低延迟直播SDK(1秒内,低延迟模式下200~400ms)。 | 7.9k | Java | 01/09 |
| 108 | [snail007/goproxy](https://github.com/snail007/goproxy) | Proxy是高性能全功能的http代理、https代理、socks5代理、内网穿透、内网穿透p2p、内网穿透代理、内网穿透反向代理、内网穿透服务器、Websocket代理、TCP代理、UDP代理、DNS代理、DNS加密代理,代理API认证,全能跨平台代理服务器。 | 7.8k | Go | 12/23 |
| 109 | [sentsin/layer](https://github.com/sentsin/layer) | 丰富多样的 Web 弹出层组件,可轻松实现 Alert/Confirm/Prompt/ 普通提示/页面区块/iframe/tips等等几乎所有的弹出交互。目前已成为最多人使用的弹层解决方案 | 7.8k | JavaScript | 09/09 |
| 110 | [aalansehaiyang/technology-talk](https://github.com/aalansehaiyang/technology-talk) | 汇总java生态圈常用技术框架、开源中间件,系统架构、数据库、大公司架构案例、常用三方类库、项目管理、线上问题排查、个人成长、思考等知识 | 7.8k | - | 12/26 |
| 111 | [adobe-fonts/source-han-sans](https://github.com/adobe-fonts/source-han-sans) | Source Han Sans \| 思源黑体 \| 思源黑體 \| 思源黑體 香港 \| 源ノ角ゴシック \| 본고딕 | 7.5k | HolyC | 12/04 |
| 112 | [chokcoco/iCSS](https://github.com/chokcoco/iCSS) | 不止于 CSS | 7.5k | - | 01/16 |
| 113 | [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.4k | TSQL | 01/10 |
| 114 | [weilanwl/ColorUI](https://github.com/weilanwl/ColorUI) | 鲜亮的高饱和色彩,专注视觉的小程序组件库 | 7.5k | Vue | 12/17 |
| 115 | [evil-huawei/evil-huawei](https://github.com/evil-huawei/evil-huawei) | Evil Huawei - 华为作过的恶 | 7.4k | JavaScript | 12/06 |
| 116 | [thinkgem/jeesite](https://github.com/thinkgem/jeesite) | JeeSite 是一个企业信息化开发基础平台,Java企业应用开源框架,Java EE(J2EE)快速开发框架,使用经典技术组合(Spring、Spring MVC、Apache Shiro、MyBatis、Bootstrap UI),包括核心模块如:组织机构、角色用户、权限授权、数据权限、内容管理、工作流等。 | 7.2k | JavaScript | 09/07 |
| 117 | [sparanoid/chinese-copywriting-guidelines](https://github.com/sparanoid/chinese-copywriting-guidelines) | Chinese copywriting guidelines for better written communication/中文文案排版指北 | 7.2k | CoffeeScript | 01/05 |
| 118 | [didi/chameleon](https://github.com/didi/chameleon) | 🦎 一套代码运行多端,一端所见即多端所见 | 7.1k | JavaScript | 01/16 |
| 119 | [fangzesheng/free-api](https://github.com/fangzesheng/free-api) | 收集免费的接口服务,做一个api的搬运工 | 7.0k | - | 01/09 |
| 120 | [justauth/JustAuth](https://github.com/justauth/JustAuth) | :100: 史上最全的整合第三方登录的开源库。目前已支持Github、Gitee、微博、钉钉、百度、Coding、腾讯云开发者平台、OSChina、支付宝、QQ、微信、淘宝、Google、Facebook、抖音、领英、小米、微软、今日头条、Teambition、StackOverflow、Pinterest、人人、华为、企业微信、酷家乐、Gitlab、美团、饿了么和推特等第三方平台的授权登录。 Login, so easy! | 7.0k | Java | 01/07 |
| 121 | [hoodiearon/w3-goto-world](https://github.com/hoodiearon/w3-goto-world) | 🍅冲出你的窗口,Git镜像、Clone 及AWS下载加速、FREE SS/SSR/VMESS、WireGuard配置分享、IPFS、暗网等其他资源存储库 | 7.0k | JavaScript | 12/01 |
| 122 | [sfyc23/EverydayWechat](https://github.com/sfyc23/EverydayWechat) | 微信助手:1.每日定时给好友(女友)发送定制消息。2.机器人自动回复好友。3.群助手功能(例如:查询垃圾分类、天气、日历、电影实时票房、快递物流、PM2.5等) | 6.9k | Python | 01/10 |
| 123 | [geeeeeeeeek/WeChatLuckyMoney](https://github.com/geeeeeeeeek/WeChatLuckyMoney) | :money_with_wings: WeChat's lucky money helper (微信抢红包插件) by Zhongyi Tong. An Android app that helps you snatch red packets in WeChat groups. | 6.9k | Java | 01/25 |
| 124 | [sylnsfar/qrcode](https://github.com/sylnsfar/qrcode) | artistic QR Code in Python (Animated GIF qr code)- Python 艺术二维码生成器 (GIF动态二维码、图片二维码) | 6.9k | Python | 11/27 |
| 125 | [xiandanin/magnetW](https://github.com/xiandanin/magnetW) | 磁力链接聚合搜索 | 6.8k | JavaScript | 01/15 |
| 126 | [opendigg/awesome-github-wechat-weapp](https://github.com/opendigg/awesome-github-wechat-weapp) | 微信小程序开源项目库汇总 | 6.8k | - | 06/15 |
| 127 | [hongyangAndroid/okhttputils](https://github.com/hongyangAndroid/okhttputils) | [停止维护]okhttp的辅助类 | 6.8k | Java | 12/09 |
| 128 | [crazycodeboy/TakePhoto](https://github.com/crazycodeboy/TakePhoto) | 一款用于在Android设备上获取照片(拍照或从相册、文件中选择)、裁剪图片、压缩图片的开源工具库 | 6.8k | Java | 08/26 |
| 129 | [modood/Administrative-divisions-of-China](https://github.com/modood/Administrative-divisions-of-China) | 中华人民共和国行政区划:省级(省份直辖市自治区)、 地级(城市)、 县级(区县)、 乡级(乡镇街道)、 村级(村委会居委会) ,中国省市区镇村二级三级四级五级联动地址数据 Node.js 爬虫。 | 6.7k | JavaScript | 10/29 |
| 130 | [mzlogin/awesome-adb](https://github.com/mzlogin/awesome-adb) | :lollipop: ADB Usage Complete / ADB 用法大全 | 6.7k | - | 11/01 |
| 131 | [bailicangdu/react-pxq](https://github.com/bailicangdu/react-pxq) | 一个 react + redux 的完整项目 和 个人总结 | 6.6k | JavaScript | 08/23 |
| 132 | [android-cn/android-open-project-analysis](https://github.com/android-cn/android-open-project-analysis) | Analysis implementation of android open source project, 微信公众号:codekk, 网站: | 6.6k | - | 10/15 |
| 133 | [Embedding/Chinese-Word-Vectors](https://github.com/Embedding/Chinese-Word-Vectors) | 100+ Chinese Word Vectors 上百种预训练中文词向量 | 6.5k | Python | 04/04 |
| 134 | [open-power-workgroup/Hospital](https://github.com/open-power-workgroup/Hospital) | OpenPower工作组收集汇总的医院开放数据 | 6.5k | HTML | 06/07 |
| 135 | [xirong/my-git](https://github.com/xirong/my-git) | Individual collecting material of learning git(有关 git 的学习资料) | 6.4k | - | 10/11 |
| 136 | [zhaoolee/ChineseBQB](https://github.com/zhaoolee/ChineseBQB) | 🇨🇳Chinese sticker pack,More joy / 表情包的博物馆, Github最有毒的仓库, 中国表情包大集合, 聚欢乐~ | 6.4k | CSS | 01/08 |
| 137 | [toutiaoio/awesome-architecture](https://github.com/toutiaoio/awesome-architecture) | 架构师技术图谱,助你早日成为架构师 | 6.4k | - | 01/08 |
| 138 | [elunez/eladmin](https://github.com/elunez/eladmin) | 项目基于 Spring Boot 2.1.0 、 Jpa、 Spring Security、redis、Vue的前后端分离的后台管理系统,项目采用分模块开发方式, 权限控制采用 RBAC,支持数据字典与数据权限管理,支持一键生成前后端代码,支持动态路由 | 6.4k | Java | 01/16 |
| 139 | [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 | 6.4k | PHP | 12/04 |
| 140 | [DeathKing/Learning-SICP](https://github.com/DeathKing/Learning-SICP) | MIT视频公开课《计算机程序的构造和解释》中文化项目及课程学习资料搜集。 | 6.4k | Ruby | 10/12 |
| 141 | [seaswalker/spring-analysis](https://github.com/seaswalker/spring-analysis) | Spring源码阅读 | 6.3k | Java | 01/16 |
| 142 | [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. ) | 6.3k | Python | 12/13 |
| 143 | [bingoogolapple/BGAQRCode-Android](https://github.com/bingoogolapple/BGAQRCode-Android) | QRCode 扫描二维码、扫描条形码、相册获取图片后识别、生成带 Logo 二维码、支持微博微信 QQ 二维码扫描样式 | 6.3k | C | 11/02 |
| 144 | [helloqingfeng/Awsome-Front-End-learning-resource](https://github.com/helloqingfeng/Awsome-Front-End-learning-resource) | :octocat:GitHub最全的前端资源汇总仓库(包括前端学习、开发资源、求职面试等) | 6.3k | PHP | 11/29 |
| 145 | [hackstoic/golang-open-source-projects](https://github.com/hackstoic/golang-open-source-projects) | 为互联网IT人打造的中文版awesome-go | 6.3k | - | 01/08 |
| 146 | [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.1k | Java | 08/14 |
| 147 | [qinjx/30min_guides](https://github.com/qinjx/30min_guides) | 覃健祥的学习笔记,各种几十分钟入门的文档 | 6.1k | - | 08/23 |
| 148 | [zh-google-styleguide/zh-google-styleguide](https://github.com/zh-google-styleguide/zh-google-styleguide) | Google 开源项目风格指南 (中文版) | 6.0k | Makefile | 01/10 |
| 149 | [zhongyang219/TrafficMonitor](https://github.com/zhongyang219/TrafficMonitor) | 这是一个用于显示当前网速、CPU及内存利用率的桌面悬浮窗软件,并支持任务栏显示,支持更换皮肤。 | 6.2k | C++ | 12/28 |
| 150 | [tumobi/nideshop-mini-program](https://github.com/tumobi/nideshop-mini-program) | NideShop:基于Node.js+MySQL开发的开源微信小程序商城(微信小程序) | 5.9k | JavaScript | 09/19 |
| 151 | [huangz1990/redis-3.0-annotated](https://github.com/huangz1990/redis-3.0-annotated) | 带有详细注释的 Redis 3.0 代码(annotated Redis 3.0 source code)。 | 5.8k | C | 10/16 |
| 152 | [lihengming/spring-boot-api-project-seed](https://github.com/lihengming/spring-boot-api-project-seed) | :seedling::rocket:一个基于Spring Boot & MyBatis的种子项目,用于快速构建中小型API、RESTful API项目~ | 5.8k | Java | 12/13 |
| 153 | [ruanyf/document-style-guide](https://github.com/ruanyf/document-style-guide) | 中文技术文档的写作规范 | 5.8k | - | 12/27 |
| 154 | [GitHubDaily/GitHubDaily](https://github.com/GitHubDaily/GitHubDaily) | GitHubDaily 分享内容定期整理与分类。欢迎推荐、自荐项目,让更多人知道你的项目。 | 5.8k | - | 12/31 |
| 155 | [bbfamily/abu](https://github.com/bbfamily/abu) | 阿布量化交易系统(股票,期权,期货,比特币,机器学习) 基于python的开源量化交易,量化投资架构 | 5.8k | Python | 09/22 |
| 156 | [vipstone/faceai](https://github.com/vipstone/faceai) | 一款入门级的人脸、视频、文字检测以及识别的项目. | 5.8k | Python | 07/11 |
| 157 | [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.7k | Objective-C | 01/03 |
| 158 | [xcatliu/typescript-tutorial](https://github.com/xcatliu/typescript-tutorial) | TypeScript 入门教程 | 5.7k | JavaScript | 01/16 |
| 159 | [DuGuQiuBai/Java](https://github.com/DuGuQiuBai/Java) | 27天成为Java大神 | 5.7k | Java | 10/31 |
| 160 | [gsdios/SDCycleScrollView](https://github.com/gsdios/SDCycleScrollView) | Autoscroll Banner. 无限循环图片、文字轮播器。 | 5.7k | Objective-C | 01/03 |
| 161 | [alibaba/otter](https://github.com/alibaba/otter) | 阿里巴巴分布式数据库同步系统(解决中美异地机房) | 5.5k | Java | 12/05 |
| 162 | [chyingp/nodejs-learning-guide](https://github.com/chyingp/nodejs-learning-guide) | Nodejs学习笔记以及经验总结,公众号"程序猿小卡" | 5.5k | Ruby | 12/22 |
| 163 | [phodal/github](https://github.com/phodal/github) | GitHub 漫游指南- a Chinese ebook on how to build a good project on Github. Explore the users' behavior. Find some thing interest. | 5.4k | Rich Text Format | 12/02 |
| 164 | [skywind3000/awesome-cheatsheets](https://github.com/skywind3000/awesome-cheatsheets) | 超级速查表 - 编程语言、框架和开发工具的速查表,单个文件包含一切你需要知道的东西 :zap: | 5.4k | Shell | 12/12 |
| 165 | [qiu-deqing/FE-interview](https://github.com/qiu-deqing/FE-interview) | 收集的前端面试题和答案 | 5.4k | - | 08/21 |
| 166 | [lijin-THU/notes-python](https://github.com/lijin-THU/notes-python) | 中文 Python 笔记 | 5.4k | Jupyter Notebook | 11/29 |
| 167 | [yanue/V2rayU](https://github.com/yanue/V2rayU) | V2rayU,基于v2ray核心的mac版客户端,用于科学上网,使用swift编写,支持vmess,shadowsocks,socks5等服务协议,支持订阅, 支持二维码,剪贴板导入,手动配置,二维码分享等 | 5.4k | Swift | 12/27 |
| 168 | [ElemeFE/v-charts](https://github.com/ElemeFE/v-charts) | 基于 Vue2.0 和 ECharts 封装的图表组件📈📊 | 5.4k | JavaScript | 07/30 |
| 169 | [deeplearning-ai/machine-learning-yearning-cn](https://github.com/deeplearning-ai/machine-learning-yearning-cn) | Machine Learning Yearning 中文版 - 《机器学习训练秘籍》 - Andrew Ng 著 | 5.7k | CSS | 10/16 |
| 170 | [xtyxtyx/sorry](https://github.com/xtyxtyx/sorry) | 在线制作`sorry 为所欲为`的gif | 5.7k | CSS | 04/08 |
| 171 | [CoolPhilChen/SJTU-Courses](https://github.com/CoolPhilChen/SJTU-Courses) | 上海交通大学课程资料分享 | 5.6k | - | 07/23 |
| 172 | [smuyyh/BookReader](https://github.com/smuyyh/BookReader) | :closed_book: "任阅" 网络小说阅读器,3D翻页效果、txt/pdf/epub书籍阅读、Wifi传书~ | 5.5k | Java | 06/25 |
| 173 | [wsdjeg/vim-galore-zh_cn](https://github.com/wsdjeg/vim-galore-zh_cn) | Vim 从入门到精通 | 5.5k | Vim script | 10/04 |
| 174 | [hyb1996/Auto.js](https://github.com/hyb1996/Auto.js) | A UiAutomator on android, does not need root access(安卓平台上的JavaScript自动化工具) | 5.4k | Java | 12/01 |
| 175 | [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.4k | Java | 01/15 |
| 176 | [hongyangAndroid/FlowLayout](https://github.com/hongyangAndroid/FlowLayout) | [不再维护]Android流式布局,支持单选、多选等,适合用于产品标签等。 | 5.3k | Java | 10/13 |
| 177 | [TalkingData/iview-weapp](https://github.com/TalkingData/iview-weapp) | 一套高质量的微信小程序 UI 组件库 | 5.3k | CSS | 12/25 |
| 178 | [heibaiying/BigData-Notes](https://github.com/heibaiying/BigData-Notes) | 大数据入门指南 :star: | 5.3k | Java | 01/17 |
| 179 | [dyc87112/SpringCloud-Learning](https://github.com/dyc87112/SpringCloud-Learning) | Spring Cloud基础教程,持续连载更新中 | 5.3k | Java | 01/10 |
| 180 | [nusr/hacker-laws-zh](https://github.com/nusr/hacker-laws-zh) | 💻📖对开发人员有用的定律、理论、原则和模式。(Laws, Theories, Principles and Patterns that developers will find useful.) | 5.2k | - | 01/15 |
| 181 | [thx/rap2-delos](https://github.com/thx/rap2-delos) | 阿里妈妈前端团队出品的开源接口管理工具RAP第二代 | 5.2k | TypeScript | 01/17 |
| 182 | [yifeikong/reverse-interview-zh](https://github.com/yifeikong/reverse-interview-zh) | 技术面试最后反问面试官的话 | 5.2k | - | 10/23 |
| 183 | [Meituan-Dianping/walle](https://github.com/Meituan-Dianping/walle) | Android Signature V2 Scheme签名下的新一代渠道包打包神器 | 5.2k | Java | 12/23 |
| 184 | [knightliao/disconf](https://github.com/knightliao/disconf) | Distributed Configuration Management Platform(分布式配置管理平台) | 5.1k | Java | 01/29 |
| 185 | [crownpku/Awesome-Chinese-NLP](https://github.com/crownpku/Awesome-Chinese-NLP) | A curated list of resources for Chinese NLP 中文自然语言处理相关资料 | 5.1k | - | 01/10 |
| 186 | [1c7/Crash-Course-Computer-Science-Chinese](https://github.com/1c7/Crash-Course-Computer-Science-Chinese) | :computer: 计算机速成课 \| Crash Course 字幕组 (全40集 2018-5-1 精校完成) | 5.1k | JavaScript | 10/28 |
| 187 | [OpenFlutter/Flutter-Notebook](https://github.com/OpenFlutter/Flutter-Notebook) | 日更的FlutterDemo合集,今天你fu了吗 | 5.1k | Dart | 12/30 |
| 188 | [opsnull/follow-me-install-kubernetes-cluster](https://github.com/opsnull/follow-me-install-kubernetes-cluster) | 和我一步步部署 kubernetes 集群 | 5.1k | Shell | 01/06 |
| 189 | [houtianze/bypy](https://github.com/houtianze/bypy) | Python client for Baidu Yun (Personal Cloud Storage) 百度云/百度网盘Python客户端 | 5.0k | Python | 11/16 |
| 190 | [jpush/aurora-imui](https://github.com/jpush/aurora-imui) | General IM UI components. Android/iOS/RectNative ready. 通用 IM 聊天 UI 组件,已经同时支持 Android/iOS/RN。 | 5.0k | Java | 12/28 |
| 191 | [foru17/front-end-collect](https://github.com/foru17/front-end-collect) | 分享自己长期关注的前端开发相关的优秀网站、博客、以及活跃开发者 | 5.0k | JavaScript | 03/23 |
| 192 | [fex-team/ueditor](https://github.com/fex-team/ueditor) | rich text 富文本编辑器 | 5.0k | JavaScript | 07/23 |
| 193 | [giantray/stackoverflow-java-top-qa](https://github.com/giantray/stackoverflow-java-top-qa) | stackoverflow上Java相关回答整理翻译 | 5.0k | - | 09/17 |
| 194 | [zouzg/mybatis-generator-gui](https://github.com/zouzg/mybatis-generator-gui) | mybatis-generator界面工具,让你生成代码更简单更快捷 | 4.9k | Java | 10/10 |
| 195 | [hotoo/pinyin](https://github.com/hotoo/pinyin) | :cn: 汉字拼音 ➜ hàn zì pīn yīn | 4.9k | JavaScript | 01/08 |
| 196 | [macrozheng/mall-admin-web](https://github.com/macrozheng/mall-admin-web) | mall-admin-web是一个电商后台管理系统的前端项目,基于Vue+Element实现。 主要包括商品管理、订单管理、会员管理、促销管理、运营管理、内容管理、统计报表、财务管理、权限管理、设置等功能。 | 4.8k | Vue | 01/04 |
| 197 | [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 实战与性能优化》 | 4.8k | Java | 01/14 |
| 198 | [liyifeng1994/ssm](https://github.com/liyifeng1994/ssm) | 手把手教你整合最优雅SSM框架:SpringMVC + Spring + MyBatis | 4.8k | Java | 12/22 |
| 199 | [ZhongFuCheng3y/3y](https://github.com/ZhongFuCheng3y/3y) | :notebook:从Java基础、JavaWeb基础到常用的框架再到面试题都有完整的教程,几乎涵盖了Java后端必备的知识点 | 4.8k | - | 01/18 |
| 200 | [wuchangming/spy-debugger](https://github.com/wuchangming/spy-debugger) | 微信调试,各种WebView样式调试、手机浏览器的页面真机调试。便捷的远程调试手机页面、抓包工具,支持:HTTP/HTTPS,无需USB连接设备。 | 4.7k | JavaScript | 12/22 |
⬆ [回到目录](#目录)
<br/>
## Java
| # | Repository | Description | Stars | Language | Updated |
| ---- | ------------------------------------------------------------ | ------------------------------------------------------------ | ----- | -------- | ------- |
| 1 | [CyC2018/CS-Notes](https://github.com/CyC2018/CS-Notes) | :books: 技术面试必备基础知识、Leetcode、计算机操作系统、计算机网络、系统设计、Java、Python、C++ | 88.8k | Java | 01/14 |
| 2 | [MisterBooo/LeetCodeAnimation](https://github.com/MisterBooo/LeetCodeAnimation) | Demonstrate all the questions on LeetCode in the form of animation.(用动画的形式呈现解LeetCode题目的思路) | 48.6k | Java | 01/10 |
| 3 | [doocs/advanced-java](https://github.com/doocs/advanced-java) | 😮 互联网 Java 工程师进阶知识完全扫盲:涵盖高并发、分布式、高可用、微服务、海量数据处理等领域知识,后端同学必看,前端同学也可学习 | 38.2k | Java | 01/15 |
| 4 | [macrozheng/mall](https://github.com/macrozheng/mall) | mall项目是一套电商系统,包括前台商城系统及后台管理系统,基于SpringBoot+MyBatis实现,采用Docker容器化部署。 前台商城系统包含首页门户、商品推荐、商品搜索、商品展示、购物车、订单流程、会员中心、客户服务、帮助中心等模块。 后台管理系统包含商品管理、订单管理、会员管理、促销管理、运营管理、内容管理、统计报表、财务管理、权限管理、设置等模块。 | 28.9k | Java | 01/17 |
| 5 | [proxyee-down-org/proxyee-down](https://github.com/proxyee-down-org/proxyee-down) | http下载工具,基于http代理,支持多连接分块下载 | 25.5k | Java | 10/09 |
| 6 | [ityouknow/spring-boot-examples](https://github.com/ityouknow/spring-boot-examples) | about learning Spring Boot via examples. Spring Boot 教程、技术栈示例代码,快速简单上手教程。 | 20.6k | Java | 12/20 |
| 7 | [alibaba/druid](https://github.com/alibaba/druid) | 阿里巴巴数据库事业部出品,为监控而生的数据库连接池 | 20.1k | Java | 01/16 |
| 8 | [scwang90/SmartRefreshLayout](https://github.com/scwang90/SmartRefreshLayout) | 🔥下拉刷新、上拉加载、二级刷新、淘宝二楼、RefreshLayout、OverScroll,Android智能下拉刷新框架,支持越界回弹、越界拖动,具有极强的扩展性,集成了几十种炫酷的Header和 Footer。 | 19.8k | Java | 01/17 |
| 9 | [ctripcorp/apollo](https://github.com/ctripcorp/apollo) | Apollo(阿波罗)是携程框架部门研发的分布式配置中心,能够集中化管理应用不同环境、不同集群的配置,配置修改后能够实时推送到应用端,并且具备规范的权限、流程治理等特性,适用于微服务配置管理场景。 | 19.4k | Java | 01/10 |
| 10 | [alibaba/arthas](https://github.com/alibaba/arthas) | Alibaba Java Diagnostic Tool Arthas/Alibaba Java诊断利器Arthas | 19.2k | Java | 01/16 |
| 11 | [shuzheng/zheng](https://github.com/shuzheng/zheng) | 基于Spring+SpringMVC+Mybatis分布式敏捷开发系统架构,提供整套公共微服务服务模块:集中权限管理(单点登录)、内容管理、支付中心、用户管理(支持第三方登录)、微信平台、存储系统、配置中心、日志分析、任务和通知等,支持服务治理、监控和追踪,努力为中小型企业打造全方位J2EE企业级开发解决方案。 | 14.9k | Java | 11/13 |
| 12 | [lenve/vhr](https://github.com/lenve/vhr) | 微人事是一个前后端分离的人力资源管理系统,项目采用SpringBoot+Vue开发。 | 13.6k | Java | 01/08 |
| 13 | [CarGuo/GSYVideoPlayer](https://github.com/CarGuo/GSYVideoPlayer) | 视频播放器(IJKplayer、ExoPlayer、MediaPlayer),HTTPS,支持弹幕,外挂字幕,支持滤镜、水印、gif截图,片头广告、中间广告,多个同时播放,支持基本的拖动,声音、亮度调节,支持边播边缓存,支持视频自带rotation的旋转(90,270之类),重力旋转与手动旋转的同步支持,支持列表播放 ,列表全屏动画,视频加载速度,列表小窗口支持拖动,动画效果,调整比例,多分辨率切换,支持切换播放器,进度条小窗口预览,列表切换详情页面无缝播放,rtsp、concat、mpeg。 | 13.1k | Java | 01/17 |
| 14 | [didi/DoraemonKit](https://github.com/didi/DoraemonKit) | 简称 "DoKit" 。一款功能齐全的客户端( iOS 、Android、微信小程序 )研发助手,你值得拥有。 | 13.0k | Java | 01/17 |
| 15 | [dianping/cat](https://github.com/dianping/cat) | CAT 作为服务端项目基础组件,提供了 Java, C/C++, Node.js, Python, Go 等多语言客户端,已经在美团点评的基础架构中间件框架(MVC框架,RPC框架,数据库框架,缓存框架等,消息队列,配置系统等)深度集成,为美团点评各业务线提供系统丰富的性能指标、健康状况、实时告警等。 | 12.6k | Java | 12/26 |
| 16 | [alibaba/easyexcel](https://github.com/alibaba/easyexcel) | 快速、简单避免OOM的java处理Excel工具 | 12.6k | Java | 01/03 |
| 17 | [wuyouzhuguli/SpringAll](https://github.com/wuyouzhuguli/SpringAll) | 循序渐进,学习Spring Boot、Spring Boot & Shiro、Spring Cloud、Spring Security & Spring Security OAuth2,博客Spring系列源码 | 12.6k | Java | 11/19 |
| 18 | [alibaba/canal](https://github.com/alibaba/canal) | 阿里巴巴 MySQL binlog 增量订阅&消费组件 | 12.4k | Java | 01/15 |
| 19 | [xuxueli/xxl-job](https://github.com/xuxueli/xxl-job) | A distributed task scheduling framework.(分布式任务调度平台XXL-JOB) | 12.3k | Java | 01/06 |
| 20 | [JeffLi1993/springboot-learning-example](https://github.com/JeffLi1993/springboot-learning-example) | spring boot 实践学习案例,是 spring boot 初学者及核心技术巩固的最佳实践。另外写博客,用 OpenWrite。 | 12.1k | Java | 10/15 |
| 21 | [brettwooldridge/HikariCP](https://github.com/brettwooldridge/HikariCP) | 光 HikariCP・A solid, high-performance, JDBC connection pool at last. | 12.1k | Java | 01/14 |
| 22 | [alibaba/ARouter](https://github.com/alibaba/ARouter) | 💪 A framework for assisting in the renovation of Android componentization (帮助 Android App 进行组件化改造的路由框架) | 11.4k | Java | 12/31 |
| 23 | [Curzibn/Luban](https://github.com/Curzibn/Luban) | Luban(鲁班)—Image compression with efficiency very close to WeChat Moments/可能是最接近微信朋友圈的图片压缩算法 | 11.3k | Java | 09/12 |
| 24 | [Bigkoo/Android-PickerView](https://github.com/Bigkoo/Android-PickerView) | This is a picker view for android , support linkage effect, timepicker and optionspicker.(时间选择器、省市区三级联动) | 11.3k | Java | 01/18 |
| 25 | [linlinjava/litemall](https://github.com/linlinjava/litemall) | 又一个小商城。litemall = Spring Boot后端 + Vue管理员前端 + 微信小程序用户前端 + Vue用户移动端 | 10.9k | Java | 01/14 |
| 26 | [alibaba/Sentinel](https://github.com/alibaba/Sentinel) | A lightweight powerful flow control component enabling reliability and monitoring for microservices. (轻量级的流量控制、熔断降级 Java 库) | 10.6k | Java | 01/16 |
| 27 | [Tamsiree/RxTool](https://github.com/Tamsiree/RxTool) | Android开发人员不得不收集的工具类集合 \| 支付宝支付 \| 微信支付(统一下单) \| 微信分享 \| Zip4j压缩(支持分卷压缩与加密) \| 一键集成UCrop选择圆形头像 \| 一键集成二维码和条形码的扫描与生成 \| 常用Dialog \| WebView的封装可播放视频 \| 仿斗鱼滑动验证码 \| Toast封装 \| 震动 \| GPS \| Location定位 \| 图片缩放 \| Exif 图片添加地理位置信息(经纬度) \| 蛛网等级 \| 颜色选择器 \| ArcGis \| VTPK \| 编译运行一下说不定会找到惊喜 | 10.4k | Java | 12/28 |
| 28 | [hollischuang/toBeTopJavaer](https://github.com/hollischuang/toBeTopJavaer) | To Be Top Javaer - Java工程师成神之路 | 10.4k | Java | 01/06 |
| 29 | [xkcoding/spring-boot-demo](https://github.com/xkcoding/spring-boot-demo) | spring boot demo 是一个用来深度学习并实战 spring boot 的项目,目前总共包含 63 个集成demo,已经完成 52 个。 该项目已成功集成 actuator(监控)、admin(可视化监控)、logback(日志)、aopLog(通过AOP记录web请求日志)、统一异常处理(json级别和页面级别)、freemarker(模板引擎)、thymeleaf(模板引擎)、Beetl(模板引擎)、Enjoy(模板引擎)、JdbcTemplate(通用JDBC操作数据库)、JPA(强大的ORM框架)、mybatis(强大的ORM框架)、通用Mapper(快速操作Mybati ... | 10.0k | Java | 01/17 |
| 30 | [Tencent/QMUI_Android](https://github.com/Tencent/QMUI_Android) | 提高 Android UI 开发效率的 UI 库 | 10.0k | Java | 01/14 |
| 31 | [jeasonlzy/okhttp-OkGo](https://github.com/jeasonlzy/okhttp-OkGo) | OkGo - 3.0 震撼来袭,该库是基于 Http 协议,封装了 OkHttp 的网络请求框架,比 Retrofit 更简单易用,支持 RxJava,RxJava2,支持自定义缓存,支持批量断点下载管理和批量上传管理功能 | 9.8k | Java | 07/03 |
| 32 | [zhangdaiscott/jeecg-boot](https://github.com/zhangdaiscott/jeecg-boot) | 一款基于代码生成器的JAVA快速开发平台,开源界“小普元”超越传统商业企业级开发平台!采用前后端分离架构:SpringBoot 2.x,Ant Design&Vue,Mybatis-plus,Shiro,JWT。强大的代码生成器让前后端代码一键生成,无需写任何代码! 引领新的开发模式(OnlineCoding模式-> 代码生成器模式-> 手工MERGE智能开发),帮助Java项目解决70%的重复工作,让开发更多关注业务逻辑。既能快速提高开发效率,帮助公司节省成本,同时又不失灵活性。JeecgBoot还独创在线开发模式(No代码):在线表单配置(表单设计器)、移动配置能力、在线工作流配置(流程设 ... | 9.6k | Java | 01/13 |
| 33 | [youth5201314/banner](https://github.com/youth5201314/banner) | Android广告图片轮播控件,支持无限循环和多种主题,可以灵活设置轮播样式、动画、轮播和切换时间、位置、图片加载框架等! | 9.3k | Java | 01/17 |
| 34 | [JessYanCoding/AndroidAutoSize](https://github.com/JessYanCoding/AndroidAutoSize) | 🔥 A low-cost Android screen adaptation solution (今日头条屏幕适配方案终极版,一个极低成本的 Android 屏幕适配方案). | 9.1k | Java | 11/08 |
| 35 | [pagehelper/Mybatis-PageHelper](https://github.com/pagehelper/Mybatis-PageHelper) | Mybatis通用分页插件 | 8.7k | Java | 01/11 |
| 36 | [bilibili/DanmakuFlameMaster](https://github.com/bilibili/DanmakuFlameMaster) | Android开源弹幕引擎·烈焰弹幕使 ~ | 8.3k | Java | 11/02 |
| 37 | [LuckSiege/PictureSelector](https://github.com/LuckSiege/PictureSelector) | Picture Selector Library for Android or 图片选择器 | 8.0k | Java | 01/17 |
| 38 | [daniulive/SmarterStreaming](https://github.com/daniulive/SmarterStreaming) | 国内外为数不多致力于极致体验的超强全自研跨平台(windows/android/iOS)流媒体内核,通过模块化自由组合,支持实时RTMP推流、RTSP推流、RTMP播放器、RTSP播放器、录像、多路流媒体转发、音视频导播、动态视频合成、音频混音、直播互动、内置轻量级RTSP服务等,比快更快,业界真正靠谱的超低延迟直播SDK(1秒内,低延迟模式下200~400ms)。 | 7.9k | Java | 01/09 |
| 39 | [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 | 7.7k | Java | 12/13 |
| 40 | [GcsSloop/AndroidNote](https://github.com/GcsSloop/AndroidNote) | 安卓学习笔记 | 7.6k | Java | 04/29 |
| 41 | [frank-lam/fullstack-tutorial](https://github.com/frank-lam/fullstack-tutorial) | 🚀 fullstack tutorial 2019,后台技术栈/架构师之路/全栈开发社区,春招/秋招/校招/面试 | 7.5k | Java | 11/19 |
| 42 | [paascloud/paascloud-master](https://github.com/paascloud/paascloud-master) | spring cloud + vue + oAuth2.0全家桶实战,前后端分离模拟商城,完整的购物流程、后端运营平台,可以实现快速搭建企业级微服务项目。支持微信登录等三方登录。 | 7.2k | Java | 11/13 |
| 43 | [hs-web/hsweb-framework](https://github.com/hs-web/hsweb-framework) | hsweb (haʊs wɛb) 是一个用于快速搭建企业后台管理系统的基础项目,集成一揽子便捷功能如:便捷的通用增删改查,强大的权限管理,动态多数据源,动态表单,在线数据库维护等. 基于 spring-boot,mybaits. | 7.0k | Java | 01/13 |
| 44 | [justauth/JustAuth](https://github.com/justauth/JustAuth) | :100: 史上最全的整合第三方登录的开源库。目前已支持Github、Gitee、微博、钉钉、百度、Coding、腾讯云开发者平台、OSChina、支付宝、QQ、微信、淘宝、Google、Facebook、抖音、领英、小米、微软、今日头条、Teambition、StackOverflow、Pinterest、人人、华为、企业微信、酷家乐、Gitlab、美团、饿了么和推特等第三方平台的授权登录。 Login, so easy! | 7.0k | Java | 01/07 |
| 45 | [geeeeeeeeek/WeChatLuckyMoney](https://github.com/geeeeeeeeek/WeChatLuckyMoney) | :money_with_wings: WeChat's lucky money helper (微信抢红包插件) by Zhongyi Tong. An Android app that helps you snatch red packets in WeChat groups. | 6.9k | Java | 01/25 |
| 46 | [hongyangAndroid/okhttputils](https://github.com/hongyangAndroid/okhttputils) | [停止维护]okhttp的辅助类 | 6.8k | Java | 12/09 |
| 47 | [crazycodeboy/TakePhoto](https://github.com/crazycodeboy/TakePhoto) | 一款用于在Android设备上获取照片(拍照或从相册、文件中选择)、裁剪图片、压缩图片的开源工具库 | 6.8k | Java | 08/26 |
| 48 | [elunez/eladmin](https://github.com/elunez/eladmin) | 项目基于 Spring Boot 2.1.0 、 Jpa、 Spring Security、redis、Vue的前后端分离的后台管理系统,项目采用分模块开发方式, 权限控制采用 RBAC,支持数据字典与数据权限管理,支持一键生成前后端代码,支持动态路由 | 6.4k | Java | 01/16 |
| 49 | [seaswalker/spring-analysis](https://github.com/seaswalker/spring-analysis) | Spring源码阅读 | 6.3k | Java | 01/16 |
| 50 | [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.1k | Java | 08/14 |
| 51 | [lihengming/spring-boot-api-project-seed](https://github.com/lihengming/spring-boot-api-project-seed) | :seedling::rocket:一个基于Spring Boot & MyBatis的种子项目,用于快速构建中小型API、RESTful API项目~ | 5.8k | Java | 12/13 |
| 52 | [DuGuQiuBai/Java](https://github.com/DuGuQiuBai/Java) | 27天成为Java大神 | 5.7k | Java | 10/31 |
| 53 | [alibaba/otter](https://github.com/alibaba/otter) | 阿里巴巴分布式数据库同步系统(解决中美异地机房) | 5.5k | Java | 12/05 |
| 54 | [smuyyh/BookReader](https://github.com/smuyyh/BookReader) | :closed_book: "任阅" 网络小说阅读器,3D翻页效果、txt/pdf/epub书籍阅读、Wifi传书~ | 5.5k | Java | 06/25 |
| 55 | [hyb1996/Auto.js](https://github.com/hyb1996/Auto.js) | A UiAutomator on android, does not need root access(安卓平台上的JavaScript自动化工具) | 5.4k | Java | 12/01 |
| 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.4k | Java | 01/15 |
| 57 | [NLPchina/ansj_seg](https://github.com/NLPchina/ansj_seg) | ansj分词.ict的真正java实现.分词效果速度都超过开源版的ict. 中文分词,人名识别,词性标注,用户自定义词典 | 5.3k | Java | 11/17 |
| 58 | [hongyangAndroid/FlowLayout](https://github.com/hongyangAndroid/FlowLayout) | [不再维护]Android流式布局,支持单选、多选等,适合用于产品标签等。 | 5.3k | Java | 10/13 |
| 59 | [heibaiying/BigData-Notes](https://github.com/heibaiying/BigData-Notes) | 大数据入门指南 :star: | 5.3k | Java | 01/17 |
| 60 | [dyc87112/SpringCloud-Learning](https://github.com/dyc87112/SpringCloud-Learning) | Spring Cloud基础教程,持续连载更新中 | 5.3k | Java | 01/10 |
| 61 | [Meituan-Dianping/walle](https://github.com/Meituan-Dianping/walle) | Android Signature V2 Scheme签名下的新一代渠道包打包神器 | 5.2k | Java | 12/23 |
| 62 | [knightliao/disconf](https://github.com/knightliao/disconf) | Distributed Configuration Management Platform(分布式配置管理平台) | 5.1k | Java | 01/29 |
| 63 | [jpush/aurora-imui](https://github.com/jpush/aurora-imui) | General IM UI components. Android/iOS/RectNative ready. 通用 IM 聊天 UI 组件,已经同时支持 Android/iOS/RN。 | 5.0k | Java | 12/28 |
| 64 | [zouzg/mybatis-generator-gui](https://github.com/zouzg/mybatis-generator-gui) | mybatis-generator界面工具,让你生成代码更简单更快捷 | 4.9k | Java | 10/10 |
| 65 | [sohutv/cachecloud](https://github.com/sohutv/cachecloud) | 搜狐视频(sohu tv)Redis私有云平台 | 4.8k | Java | 11/14 |
| 66 | [ityouknow/spring-cloud-examples](https://github.com/ityouknow/spring-cloud-examples) | Spring Cloud 学习案例,服务发现、服务治理、链路追踪、服务监控等 | 4.8k | Java | 01/03 |
| 67 | [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 实战与性能优化》 | 4.8k | Java | 01/14 |
| 68 | [liyifeng1994/ssm](https://github.com/liyifeng1994/ssm) | 手把手教你整合最优雅SSM框架:SpringMVC + Spring + MyBatis | 4.8k | Java | 12/22 |
| 69 | [Exrick/xmall](https://github.com/Exrick/xmall) | 基于SOA架构的分布式电商购物商城 前后端分离 前台商城:Vue全家桶 后台管理系统:Dubbo/SSM/Elasticsearch/Redis/MySQL/ActiveMQ/Shiro/Zookeeper等 | 4.7k | Java | 12/26 |
| 70 | [wildfirechat/server](https://github.com/wildfirechat/server) | 即时通讯(IM)系统 | 4.6k | Java | 01/16 |
| 71 | [goldze/MVVMHabit](https://github.com/goldze/MVVMHabit) | 👕基于谷歌最新AAC架构,MVVM设计模式的一套快速开发库,整合Okhttp+RxJava+Retrofit+Glide等主流模块,满足日常开发需求。使用该框架可以快速开发一个高质量、易维护的Android应用。 | 4.6k | Java | 12/20 |
| 72 | [yipianfengye/android-zxingLibrary](https://github.com/yipianfengye/android-zxingLibrary) | 几行代码快速集成二维码扫描功能 | 4.5k | Java | 10/14 |
| 73 | [yanzhenjie/SwipeRecyclerView](https://github.com/yanzhenjie/SwipeRecyclerView) | :melon: RecyclerView侧滑菜单,Item拖拽,滑动删除Item,自动加载更多,HeaderView,FooterView,Item分组黏贴。 | 4.5k | Java | 04/12 |
| 74 | [crossoverJie/cim](https://github.com/crossoverJie/cim) | 📲cim(cross IM) 适用于开发者的分布式即时通讯系统 | 4.5k | Java | 01/08 |
| 75 | [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.5k | Java | 10/25 |
| 76 | [gedoor/MyBookshelf](https://github.com/gedoor/MyBookshelf) | 阅读是一款可以自定义来源阅读网络内容的工具,为广大网络文学爱好者提供一种方便、快捷舒适的试读体验。 | 4.4k | Java | 01/12 |
| 77 | [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.4k | Java | 11/01 |
| 78 | [mcxiaoke/packer-ng-plugin](https://github.com/mcxiaoke/packer-ng-plugin) | 下一代Android打包工具,100个渠道包只需要10秒钟 | 4.4k | Java | 11/26 |
| 79 | [changmingxie/tcc-transaction](https://github.com/changmingxie/tcc-transaction) | tcc-transaction是TCC型事务java实现 | 4.4k | Java | 12/25 |
| 80 | [zhanghai/Douya](https://github.com/zhanghai/Douya) | 开源的 Material Design 豆瓣客户端(A Material Design app for douban.com) | 4.3k | Java | 01/13 |
| 81 | [HotBitmapGG/bilibili-android-client](https://github.com/HotBitmapGG/bilibili-android-client) | An unofficial bilibili client for android http://www.jianshu.com/p/f69a55b94c05 -- 该项目已停止维护! | 4.2k | Java | 12/17 |
| 82 | [SplashCodes/JAViewer](https://github.com/SplashCodes/JAViewer) | 更优雅的驾车体验 | 4.2k | Java | 12/01 |
| 83 | [lenve/VBlog](https://github.com/lenve/VBlog) | V部落,Vue+SpringBoot实现的多用户博客管理平台! | 4.1k | Java | 11/09 |
| 84 | [youlookwhat/CloudReader](https://github.com/youlookwhat/CloudReader) | 云阅:一款基于网易云音乐UI,使用玩安卓、Gank.Io及时光网api开发的符合Google Material Design的Android客户端。项目采取的是MVVM-DataBinding架构开发,主要包括:玩安卓区、干货区和电影区三个子模块。 | 4.1k | Java | 01/14 |
| 85 | [DingMouRen/LayoutManagerGroup](https://github.com/DingMouRen/LayoutManagerGroup) | :point_right: Customize the LayoutManager of RecyclerView(自定义LayoutManager) | 4.1k | Java | 10/05 |
| 86 | [wuyouzhuguli/FEBS-Shiro](https://github.com/wuyouzhuguli/FEBS-Shiro) | Spring Boot 2.2.1,Shiro1.4.2 & Layui 2.5.5 权限管理系统。预览地址:https://shiro.mrbird.cn:8080 | 4.1k | Java | 01/11 |
| 87 | [bingoogolapple/BGABanner-Android](https://github.com/bingoogolapple/BGABanner-Android) | 引导界面滑动导航 + 大于等于1页时无限轮播 + 各种切换动画轮播效果 | 3.7k | Java | 11/10 |
| 88 | [qstumn/BadgeView](https://github.com/qstumn/BadgeView) | 支持自由定制外观、拖拽消除的MaterialDesign风格Android BadgeView | 3.6k | Java | 09/22 |
| 89 | [razerdp/BasePopup](https://github.com/razerdp/BasePopup) | 亲,还在为PopupWindow烦恼吗?不如试试BasePopup,你会爱上他的~ | 3.6k | Java | 01/16 |
| 90 | [techGay/v9porn](https://github.com/techGay/v9porn) | 9*Porn Android 客户端,突破游客每天观看10次视频的限制,还可以下载视频 | 3.5k | Java | 01/04 |
| 91 | [AriaLyy/Aria](https://github.com/AriaLyy/Aria) | 下载可以很简单 | 3.4k | Java | 01/18 |
| 92 | [apache/incubator-dolphinscheduler](https://github.com/apache/incubator-dolphinscheduler) | Dolphin Scheduler is a distributed and easy-to-expand visual DAG workflow scheduling system, dedicated to solving the complex dependencies in data processing, making the scheduling system out of the box for data processing.(分布式易扩展的可视化工作流任务调度) | 3.4k | Java | 01/17 |
| 93 | [hustcc/JS-Sorting-Algorithm](https://github.com/hustcc/JS-Sorting-Algorithm) | 一本关于排序算法的 GitBook 在线书籍 《十大经典排序算法》,多语言实现。 | 3.4k | Java | 10/09 |
| 94 | [bilibili/MagicaSakura](https://github.com/bilibili/MagicaSakura) | MagicaSakura 是 Android 多主题框架。~ is an Android multi theme library which supporting both daily colorful theme and night theme. | 3.3k | Java | 05/12 |
| 95 | [oldmanpushcart/greys-anatomy](https://github.com/oldmanpushcart/greys-anatomy) | Java诊断工具 | 3.3k | Java | 12/02 |
| 96 | [brianway/java-learning](https://github.com/brianway/java-learning) | 旨在打造在线最佳的 Java 学习笔记,含博客讲解和源码实例,包括 Java SE 和 Java Web | 3.3k | Java | 06/25 |
| 97 | [zzhoujay/RichText](https://github.com/zzhoujay/RichText) | Android平台下的富文本解析器,支持Html和Markdown | 3.3k | Java | 12/23 |
| 98 | [yhaolpz/FloatWindow](https://github.com/yhaolpz/FloatWindow) | Andorid 任意界面悬浮窗,实现悬浮窗如此简单 | 3.2k | Java | 09/18 |
| 99 | [roncoo/roncoo-pay](https://github.com/roncoo/roncoo-pay) | 龙果支付系统(roncoo-pay)是国内首款开源的互联网支付系统,拥有独立的账户体系、用户体系、支付接入体系、支付交易体系、对账清结算体系。目标是打造一款集成主流支付方式且轻量易用的支付收款系统,满足互联网业务系统打通支付通道实现支付收款和业务资金管理等功能。 | 3.2k | Java | 12/18 |
| 100 | [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.2k | Java | 01/03 |
| 101 | [ming1016/study](https://github.com/ming1016/study) | 学习记录 | 3.2k | Java | 12/07 |
| 102 | [binIoter/GuideView](https://github.com/binIoter/GuideView) | 东半球最好用的新手引导库,能够快速为任何一个View创建一个遮罩层,支持单个页面,多个引导串联展示,支持为高亮区域设置不同的图形,支持引导动画,方便扩展,良好支持fragment | 3.1k | Java | 11/30 |
| 103 | [guolindev/giffun](https://github.com/guolindev/giffun) | 一款开源的GIF在线分享App,乐趣就要和世界分享。 | 3.1k | Java | 09/20 |
| 104 | [hope-for/hope-boot](https://github.com/hope-for/hope-boot) | 🌱 Hope-Boot 一款现代化的脚手架项目 | 3.1k | Java | 01/11 |
| 105 | [alipay/SoloPi](https://github.com/alipay/SoloPi) | SoloPi 自动化测试工具 | 3.1k | Java | 01/16 |
| 106 | [zhanglei-workspace/shopping-management-system](https://github.com/zhanglei-workspace/shopping-management-system) | 该项目为多个小项目的集合(持续更新中...)。内容类似淘宝、京东等网购管理系统以及图书管理、超市管理等系统。目的在于便于Java初级爱好者在学习完某一部分Java知识后有一个合适的项目锻炼、运用所学知识,完善知识体系。适用人群:Java基础到入门的爱好者。 | 3.1k | Java | 12/13 |
| 107 | [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.0k | Java | 01/02 |
| 108 | [zwwill/yanxuan-weex-demo](https://github.com/zwwill/yanxuan-weex-demo) | :art: High quality pure Weex demo / 网易严选 App 感受 Weex 开发 | 3.0k | Java | 02/14 |
| 109 | [GitLqr/LQRWeChat](https://github.com/GitLqr/LQRWeChat) | 本项目仿最新版微信6.5.7(除图片选择器外),基于融云SDK,使用目前较火的 Rxjava+Retrofit+MVP+Glide 技术开发。相比上个版本,加入发送位置消息,红包消息等功能。 | 3.0k | Java | 03/07 |
| 110 | [Exrick/xpay](https://github.com/Exrick/xpay) | XPay个人免签收款支付系统 完全免费 资金直接到达本人账号 支持 支付宝 微信 QQ 云闪付 无需备案 无需签约 无需挂机监控APP 无需插件 无需第三方支付SDK 无需营业执照身份证 只需收款码 搞定支付流程 现已支持移动端支付 | 3.0k | Java | 12/31 |
| 111 | [zzz40500/GsonFormat](https://github.com/zzz40500/GsonFormat) | 根据Gson库使用的要求,将JSONObject格式的String 解析成实体 | 3.0k | Java | 01/02 |
| 112 | [zhoutaoo/SpringCloud](https://github.com/zhoutaoo/SpringCloud) | 基于SpringCloud2.1的微服务开发脚手架,整合了spring-security-oauth2、nacos、feign、sentinel、springcloud-gateway等。服务治理方面引入elasticsearch、skywalking、springboot-admin、zipkin等,让项目开发快速进入业务开发,而不需过多时间花费在架构搭建上。持续更新中 | 3.0k | Java | 01/14 |
| 113 | [WVector/AppUpdate](https://github.com/WVector/AppUpdate) | 🚀 Android 版本更新 🚀 a library for android version update 🚀 | 2.9k | Java | 01/17 |
| 114 | [mpusher/mpush](https://github.com/mpusher/mpush) | MPush开源实时消息推送系统 | 2.9k | Java | 06/26 |
| 115 | [JZ-Darkal/AndroidHttpCapture](https://github.com/JZ-Darkal/AndroidHttpCapture) | AndroidHttpCapture网络诊断工具 是一款Android手机抓包软件 主要功能包括:手机端抓包、PING/DNS/TraceRoute诊断、抓包HAR数据上传分享。你也可以看成是Android版的"Fiddler" \(^o^)/~ | 2.9k | Java | 09/05 |
| 116 | [ittianyu/BottomNavigationViewEx](https://github.com/ittianyu/BottomNavigationViewEx) | An android lib for enhancing BottomNavigationView. 一个增强BottomNavigationView的安卓库。 | 2.9k | Java | 06/05 |
| 117 | [ZHENFENG13/spring-boot-projects](https://github.com/ZHENFENG13/spring-boot-projects) | 该仓库中主要是 Spring Boot 的入门学习教程以及一些常用的 Spring Boot 实战项目教程,包括 Spring Boot 使用的各种示例代码,同时也包括一些实战项目的项目源码和效果展示,实战项目包括基本的 web 开发以及目前大家普遍使用的线上博客项目/企业大型商城系统/前后端分离实践项目等,摆脱各种 hello world 入门案例的束缚,真正的掌握 Spring Boot 开发。 | 2.8k | Java | 12/15 |
| 118 | [woxingxiao/BubbleSeekBar](https://github.com/woxingxiao/BubbleSeekBar) | A beautiful Android custom seekbar, which has a bubble view with progress appearing upon when seeking. 自定义SeekBar,进度变化更以可视化气泡样式呈现 | 2.7k | Java | 03/08 |
| 119 | [Dromara/hmily](https://github.com/Dromara/hmily) | 高性能异步分布式事务TCC框架 | 2.7k | Java | 01/02 |
| 120 | [zhou-you/RxEasyHttp](https://github.com/zhou-you/RxEasyHttp) | 本库是一款基于RxJava2+Retrofit2实现简单易用的网络请求框架,结合android平台特性的网络封装库,采用api链式调用一点到底,集成cookie管理,多种缓存模式,极简https配置,上传下载进度显示,请求错误自动重试,请求携带token、时间戳、签名sign动态配置,自动登录成功后请求重发功能,3种层次的参数设置默认全局局部,默认标准ApiResult同时可以支持自定义的数据结构,已经能满足现在的大部分网络请求。 | 2.7k | Java | 06/27 |
| 121 | [crazyandcoder/citypicker](https://github.com/crazyandcoder/citypicker) | citypicker城市选择器,详细的省市区地址信息,支持仿iOS滚轮实现,仿京东样式,一级或者三级列表展示方式。 | 2.6k | Java | 01/16 |
| 122 | [zaaach/CityPicker](https://github.com/zaaach/CityPicker) | :fire::fire::fire:城市选择、定位、搜索及右侧字母导航,类似美团 百度糯米 饿了么等APP选择城市功能 | 2.6k | Java | 12/04 |
| 123 | [promeG/TinyPinyin](https://github.com/promeG/TinyPinyin) | 适用于Java和Android的快速、低内存占用的汉字转拼音库。 | 2.6k | Java | 04/22 |
| 124 | [stylefeng/Guns](https://github.com/stylefeng/Guns) | Guns基于SpringBoot 2,致力于做更简洁的后台管理系统,完美整合springmvc + shiro + mybatis-plus + beetl!Guns项目代码简洁,注释丰富,上手容易,同时Guns包含许多基础模块(用户管理,角色管理,部门管理,字典管理等10个模块),可以直接作为一个后台管理系统的脚手架! | 2.6k | Java | 01/10 |
| 125 | [FinalTeam/RxGalleryFinal](https://github.com/FinalTeam/RxGalleryFinal) | 图片选择库,单选/多选、拍照、裁剪、压缩,自定义。包括视频选择和录制。 | 2.6k | Java | 12/05 |
| 126 | [AweiLoveAndroid/CommonDevKnowledge](https://github.com/AweiLoveAndroid/CommonDevKnowledge) | :octocat::fire: :star2::star::star::star: :star: 史上最全的BAT大厂Android面试题汇集,以及常用的Android开发的一些技能点,冷门知识点汇总,开发中遇到的坑汇总等干货。 | 2.6k | Java | 11/05 |
| 127 | [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.5k | Java | 12/10 |
| 128 | [huburt-Hu/NewbieGuide](https://github.com/huburt-Hu/NewbieGuide) | Android 快速实现新手引导层的库,通过简洁链式调用,一行代码实现引导层的显示 | 2.5k | Java | 01/17 |
| 129 | [LuckyJayce/LargeImage](https://github.com/LuckyJayce/LargeImage) | Android 加载大图 可以高清显示10000*10000像素的图片,轻松实现微博长图功能 | 2.1k | Java | 03/23 |
| 130 | [xubinux/xbin-store](https://github.com/xubinux/xbin-store) | 模仿国内知名B2C网站,实现的一个分布式B2C商城 使用Spring Boot 自动配置 Dubbox / MVC / MyBatis / Druid / Solr / Redis 等。使用Spring Cloud版本请查看 | 2.0k | Java | 12/27 |
| 131 | [Hitomis/transferee](https://github.com/Hitomis/transferee) | 一个帮助您完成从缩略图到原图无缝过渡转变的神奇组件 | 2.0k | Java | 11/19 |
| 132 | [l123456789jy/Lazy](https://github.com/l123456789jy/Lazy) | The android tools 自己整理的常用的工具类 | 2.0k | Java | 08/02 |
| 133 | [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.0k | Java | 08/30 |
| 134 | [Qihoo360/ArgusAPM](https://github.com/Qihoo360/ArgusAPM) | Powerful, comprehensive (Android) application performance management platform. 360线上移动性能检测平台 | 2.0k | Java | 05/09 |
| 135 | [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.0k | Java | 12/21 |
| 136 | [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.0k | Java | 11/22 |
| 137 | [qunarcorp/qmq](https://github.com/qunarcorp/qmq) | QMQ是去哪儿网内部广泛使用的消息中间件,自2012年诞生以来在去哪儿网所有业务场景中广泛的应用,包括跟交易息息相关的订单场景; 也包括报价搜索等高吞吐量场景。 | 1.9k | Java | 01/15 |
| 138 | [JsonChao/Awesome-WanAndroid](https://github.com/JsonChao/Awesome-WanAndroid) | :zap:致力于打造一款极致体验的 http://www.wanandroid.com/ 客户端,知识和美是可以并存的哦QAQn(*≧▽≦*)n | 1.9k | Java | 01/15 |
| 139 | [Javen205/IJPay](https://github.com/Javen205/IJPay) | IJPay 让支付触手可及,封装了微信支付、QQ支付、支付宝支付、京东支付、银联支付常用的支付方式以及各种常用的接口。不依赖任何第三方 mvc 框架,仅仅作为工具使用简单快速完成支付模块的开发,可轻松嵌入到任何系统里。 | 1.9k | Java | 12/14 |
| 140 | [Zhaoss/WeiXinRecordedDemo](https://github.com/Zhaoss/WeiXinRecordedDemo) | 仿微信视频拍摄UI, 基于ffmpeg的视频录制编辑 | 1.9k | Java | 11/29 |
| 141 | [OCNYang/Android-Animation-Set](https://github.com/OCNYang/Android-Animation-Set) | :books: Android 所有动画系列详尽教程。 Explain all animations in Android. | 1.9k | Java | 03/19 |
| 142 | [KunMinX/Jetpack-MVVM-Best-Practice](https://github.com/KunMinX/Jetpack-MVVM-Best-Practice) | 是 难得一见 的 Jetpack MVVM 最佳实践!在 蕴繁于简 的代码中,对 视图控制器 乃至 标准化开发模式 形成正确、深入的理解! | 1.9k | Java | 01/18 |
| 143 | [mqzhangw/JIMU](https://github.com/mqzhangw/JIMU) | 一种简单有效的android组件化方案,支持组件的代码资源隔离、单独调试、集成调试、组件交互、UI跳转、生命周期等完整功能。 | 1.9k | Java | 03/18 |
| 144 | [zhangxd1989/spring-boot-cloud](https://github.com/zhangxd1989/spring-boot-cloud) | 基于 Spring Boot、Spring Cloud、Spring Oauth2 和 Spring Cloud Netflix 等框架构建的微服务项目 | 1.9k | Java | 09/10 |
| 145 | [vivian8725118/TimeLine](https://github.com/vivian8725118/TimeLine) | 瀑布流式的时间轴 | 1.9k | Java | 01/20 |
| 146 | [xingda920813/HelloDaemon](https://github.com/xingda920813/HelloDaemon) | Android 服务保活/常驻 (Android service daemon using JobScheduler) | 1.9k | Java | 03/30 |
| 147 | [yyued/SVGAPlayer-Android](https://github.com/yyued/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) 动画。 | 1.9k | Java | 01/16 |
| 148 | [ctripcorp/C-OCR](https://github.com/ctripcorp/C-OCR) | C-OCR是携程自研的OCR项目,主要包括身份证、护照、火车票、签证等旅游相关证件、材料的识别。 项目包含4个部分,拒识、检测、识别、后处理。 | 1.8k | Java | 05/08 |
| 149 | [qunarcorp/bistoury](https://github.com/qunarcorp/bistoury) | Bistoury是去哪儿网的java应用生产问题诊断工具,提供了一站式的问题诊断方案 | 1.8k | Java | 01/17 |
| 150 | [xtuhcy/gecco](https://github.com/xtuhcy/gecco) | Easy to use lightweight web crawler(易用的轻量化网络爬虫) | 1.8k | Java | 09/05 |
| 151 | [Luosunce/material-design-data](https://github.com/Luosunce/material-design-data) | 关于 Material Design 的一切资料都在这里 | 1.8k | Java | 10/26 |
| 152 | [wangdan/AisenWeiBo](https://github.com/wangdan/AisenWeiBo) | 新浪微博第三方Android客户端 | 1.8k | Java | 06/19 |
| 153 | [YunaiV/onemall](https://github.com/YunaiV/onemall) | mall 商城,基于微服务的思想,构建在 B2C 电商场景下的项目实战。核心技术栈,是 Spring Boot + Dubbo 。未来,会重构成 Spring Cloud Alibaba 。 | 1.8k | Java | 11/22 |
| 154 | [bingoogolapple/BGASwipeBackLayout-Android](https://github.com/bingoogolapple/BGASwipeBackLayout-Android) | Android Activity 滑动返回。支持微信滑动返回样式、横屏滑动返回、全屏滑动返回 | 2.0k | Java | 11/16 |
| 155 | [bingoogolapple/BGAPhotoPicker-Android](https://github.com/bingoogolapple/BGAPhotoPicker-Android) | Android 图片选择、预览、九宫格图片控件、拖拽排序九宫格图片控件 | 1.8k | Java | 11/16 |
| 156 | [ZhaoKaiQiang/KLog](https://github.com/ZhaoKaiQiang/KLog) | 这是一个Android专用的LogCat工具,主要功能为打印行号、函数调用、Json解析、XML解析、点击跳转、Log信息保存等功能 | 1.8k | Java | 08/23 |
| 157 | [zhangdaiscott/jeecg](https://github.com/zhangdaiscott/jeecg) | JEECG是一款基于代码生成器的J2EE快速开发平台,开源界“小普元”超越传统商业企业级开发平台。引领新的开发模式(Online Coding模式(自定义表单) - > 代码生成器模式 - > 手工MERGE智能开发), 可以帮助解决Java项目90%的重复工作,让开发更多关注业务逻辑。既能快速提高开发效率,帮助公司节省人力成本,同时又不失灵活性。具备:表单配置能力(无需编码)、移动配置能力、工作流配置能力、报表配置能力(支持移动端)、插件开发能力(可插拔) | 1.7k | Java | 01/17 |
| 158 | [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 | 1.7k | Java | 12/22 |
| 159 | [newbee-ltd/newbee-mall](https://github.com/newbee-ltd/newbee-mall) | newbee-mall 项目(新蜂商城)是一套电商系统,包括 newbee-mall 商城系统及 newbee-mall-admin 商城后台管理系统,基于 Spring Boot 2.X 及相关技术栈开发。 前台商城系统包含首页门户、商品分类、新品上线、首页轮播、商品推荐、商品搜索、商品展示、购物车、订单结算、订单流程、个人订单管理、会员中心、帮助中心等模块。 后台管理系统包含数据面板、轮播图管理、商品管理、订单管理、会员管理、分类管理、设置等模块。 | 1.7k | Java | 01/17 |
| 160 | [saysky/ForestBlog](https://github.com/saysky/ForestBlog) | 一个简单漂亮的SSM(Spring+SpringMVC+Mybatis)博客系统 | 1.7k | Java | 01/10 |
| 161 | [Pay-Group/best-pay-sdk](https://github.com/Pay-Group/best-pay-sdk) | 可能是最好的支付SDK | 1.7k | Java | 01/09 |
| 162 | [xuexiangjys/XUI](https://github.com/xuexiangjys/XUI) | 💍一个简洁而优雅的Android原生UI框架,解放你的双手! | 1.7k | Java | 01/15 |
| 163 | [jokermonn/permissions4m](https://github.com/jokermonn/permissions4m) | :wrench:国产手机5.0、6.0权限适配框架/编译时注解框架/an Android Runtime Permissions Tool by using APT | 1.7k | Java | 05/07 |
| 164 | [JeremyLiao/LiveEventBus](https://github.com/JeremyLiao/LiveEventBus) | :mailbox_with_mail:EventBus for Android,消息总线,基于LiveData,具有生命周期感知能力,支持Sticky,支持AndroidX,支持跨进程,支持跨APP | 1.7k | Java | 11/08 |
| 165 | [xiaojinzi123/Component](https://github.com/xiaojinzi123/Component) | 🔥🔥🔥A powerful componentized framework.一个最强大、100% 兼容、支持 AndroidX、支持 Kotlin的组件化框架. 碾压其他同类型的组件化框架! 路由模块吊打 ARouter, 点击后面链接查看比较结果 | 1.7k | Java | 01/17 |
| 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.7k | Java | 01/03 |
| 167 | [alibaba/yugong](https://github.com/alibaba/yugong) | 阿里巴巴去Oracle数据迁移同步工具(全量+增量,目标支持MySQL/DRDS) | 1.7k | Java | 12/05 |
| 168 | [caiyonglong/MusicLake](https://github.com/caiyonglong/MusicLake) | 音乐播放器,可播在线音乐,qq音乐,百度音乐,虾米音乐,网易云音乐,YouTuBe | 1.7k | Java | 11/20 |
| 169 | [DingMouRen/PaletteImageView](https://github.com/DingMouRen/PaletteImageView) | 懂得智能配色的ImageView,还能给自己设置多彩的阴影哦。(Understand the intelligent color matching ImageView, but also to set their own colorful shadow Oh!) | 1.7k | Java | 10/23 |
| 170 | [sunfusheng/GlideImageView](https://github.com/sunfusheng/GlideImageView) | 基于Glide V4.9.0封装的图片加载库,可以监听加载图片时的进度 | 1.6k | Java | 04/30 |
| 171 | [HpWens/MeiWidgetView](https://github.com/HpWens/MeiWidgetView) | 🔥一款汇总了郭霖,鸿洋,以及自己平时收集的自定义控件集合库(小红书) | 1.6k | Java | 08/12 |
| 172 | [SpringForAll/spring-boot-starter-swagger](https://github.com/SpringForAll/spring-boot-starter-swagger) | 自制spring boot starter for swagger 2.x,来试试吧,很好用哦~ | 1.6k | Java | 12/09 |
| 173 | [baichengzhou/SpringMVC-Mybatis-Shiro-redis-0.2](https://github.com/baichengzhou/SpringMVC-Mybatis-Shiro-redis-0.2) | 基于SpringMVC、Mybatis、Redis、Freemarker的Shiro管理Demo源码的升级版。 | 1.6k | Java | 12/04 |
| 174 | [xwjie/PLMCodeTemplate](https://github.com/xwjie/PLMCodeTemplate) | 给部门制定的代码框架模板 | 1.6k | Java | 01/12 |
| 175 | [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 |
| 176 | [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.6k | Java | 11/03 |
| 177 | [rememberber/WePush](https://github.com/rememberber/WePush) | 专注批量推送的小而美的工具,目前支持:模板消息-公众号、模板消息-小程序、微信客服消息、微信企业号/企业微信消息、阿里云短信、阿里大于模板短信 、腾讯云短信、云片网短信、E-Mail、HTTP请求、钉钉、华为云短信、百度云短信、又拍云短信、七牛云短信 | 1.6k | Java | 12/16 |
| 178 | [meituan/WMRouter](https://github.com/meituan/WMRouter) | WMRouter是一款Android路由框架,基于组件化的设计思路,有功能灵活、使用简单的特点。 | 1.6k | Java | 11/05 |
| 179 | [roncoo/spring-boot-demo](https://github.com/roncoo/spring-boot-demo) | Spring Boot的基础教程,由浅入深,一步一步学习Spring Boot,最后学到的不单单是基础!Spring Cloud基础教程请看:https://github.com/roncoo/spring-cloud-demo | 1.6k | Java | 01/30 |
| 180 | [siwangqishiq/ImageEditor-Android](https://github.com/siwangqishiq/ImageEditor-Android) | AndroidImageEdit 安卓设备上图形编辑开源控件,支持磨皮美白 自定义贴图 图片滤镜 图片旋转 图片剪裁 文字贴图 撤销 回退 等操作 | 1.6k | Java | 01/14 |
| 181 | [bz51/SpringBoot-Dubbo-Docker-Jenkins](https://github.com/bz51/SpringBoot-Dubbo-Docker-Jenkins) | 基于SpringBoot+Dubbo的微服务框架(借助Docker+Jenkins实现自动化、容器化部署) | 1.6k | Java | 11/13 |
| 182 | [Sunzxyong/Recovery](https://github.com/Sunzxyong/Recovery) | a crash recovery framework.(一个App异常恢复框架) | 1.6k | Java | 02/17 |
| 183 | [yaphone/itchat4j](https://github.com/yaphone/itchat4j) | itchat4j -- 用Java扩展个人微信号的能力 | 1.5k | Java | 01/07 |
| 184 | [BakerJQ/Android-InfiniteCards](https://github.com/BakerJQ/Android-InfiniteCards) | An infinite card switching UI for Android, support custom animation 自定义实现神奇动效的卡片切换视图 | 1.5k | Java | 07/24 |
| 185 | [zhegexiaohuozi/SeimiCrawler](https://github.com/zhegexiaohuozi/SeimiCrawler) | 一个简单、敏捷、分布式的支持SpringBoot的Java爬虫框架;An agile, distributed crawler framework. | 1.5k | Java | 12/06 |
| 186 | [Dromara/Raincat](https://github.com/Dromara/Raincat) | 强一致分布式事务框架 | 1.5k | Java | 12/27 |
| 187 | [Meituan-Dianping/Zebra](https://github.com/Meituan-Dianping/Zebra) | 美团点评集团统一使用的MySQL数据库访问层的中间件。主要提供对业务开发透明、读写分库、分库分表能力,并提供了端到端SQL监控的集成方案。 | 1.5k | Java | 11/12 |
| 188 | [Alex-Jerry/Android-BLE](https://github.com/Alex-Jerry/Android-BLE) | AndroidBLE蓝牙框架,包括扫描、连接、设置通知、发送数据、读取、接收数据和OTA升级以及各种直观的回调,近乎一行代码植入项目,可扩展配置蓝牙相关操作。 | 1.5k | Java | 01/02 |
| 189 | [jenly1314/KingTV](https://github.com/jenly1314/KingTV) | 📺 高仿全民直播(全民TV),项目采用 MVP + RXJava + Retrofit + OKHttp + Material Design + Dagger2 + Base + Glide + GreenDao构建。因为全民TV已经凉了,导致App已经连不上。所以本项目已暂停维护。仅供学习。 推荐MVPFrame: https://github.com/jenly1314/MVPFrame 和你值得拥有的MVVMFrame快速开发框架: https://github.com/jenly1314/MVVMFrame | 1.5k | Java | 05/29 |
| 190 | [JessYanCoding/ArmsComponent](https://github.com/JessYanCoding/ArmsComponent) | 📦 A complete android componentization solution, powered by MVPArms (MVPArms 官方快速组件化方案). | 1.5k | Java | 03/29 |
| 191 | [qyxxjd/MultipleStatusView](https://github.com/qyxxjd/MultipleStatusView) | 一个支持多种状态的自定义View,可以方便的切换到:加载中视图、错误视图、空数据视图、网络异常视图、内容视图。 | 1.5k | Java | 12/18 |
| 192 | [yizhiwazi/springboot-socks](https://github.com/yizhiwazi/springboot-socks) | SpringBoot 基础教程 \| 从入门到上瘾 \| 基于2.0.0.M5制作 | 1.5k | Java | 11/21 |
| 193 | [jmdhappy/xxpay-master](https://github.com/jmdhappy/xxpay-master) | XxPay聚合支付使用Java开发,包括spring-cloud、dubbo、spring-boot三个架构版本,已接入微信、支付宝等主流支付渠道,可直接用于生产环境 | 1.5k | Java | 11/25 |
| 194 | [limpoxe/Android-Plugin-Framework](https://github.com/limpoxe/Android-Plugin-Framework) | Android插件框架,免安装运行插件APK ,支持独立插件和非独立插件 | 1.5k | Java | 01/16 |
| 195 | [xuhuisheng/lemon](https://github.com/xuhuisheng/lemon) | 开源OA | 1.5k | Java | 06/28 |
| 196 | [liujingxing/okhttp-RxHttp](https://github.com/liujingxing/okhttp-RxHttp) | RxJava2 + OkHttp 30秒上手,新一代OkHttp请求神器,史上最优雅的实现文件上传/下载/进度监听、动态/多域名、缓存;支持第三方数据解析工具、自定义请求、自动关闭请求等等 | 1.5k | Java | 01/14 |
| 197 | [ren93/RecyclerBanner](https://github.com/ren93/RecyclerBanner) | 用RecyclerView实现无限轮播图,有普通版和3d版 | 1.5k | Java | 07/10 |
| 198 | [huaban/jieba-analysis](https://github.com/huaban/jieba-analysis) | 结巴分词(java版) | 1.5k | Java | 12/31 |
| 199 | [luckybilly/SmartSwipe](https://github.com/luckybilly/SmartSwipe) | An android library to make swipe more easier and more powerful. 关于侧滑,有这一个就够了 | 1.5k | Java | 01/04 |
| 200 | [wuyr/PathLayoutManager](https://github.com/wuyr/PathLayoutManager) | RecyclerView的LayoutManager,轻松实现各种炫酷、特殊效果,再也不怕产品经理为难! | 1.4k | Java | 01/30 |
⬆ [回到目录](#目录)
<br/>
## Python
| # | Repository | Description | Stars | Language | Updated |
| ---- | ------------------------------------------------------------ | ------------------------------------------------------------ | ----- | -------- | ------- |
| 1 | [testerSunshine/12306](https://github.com/testerSunshine/12306) | 12306智能刷票,订票 | 28.2k | Python | 01/11 |
| 2 | [521xueweihan/HelloGitHub](https://github.com/521xueweihan/HelloGitHub) | :octocat: Find pearls on open-source seashore 分享 GitHub 上有趣、入门级的开源项目 | 24.5k | Python | 12/30 |
| 3 | [0voice/interview_internal_reference](https://github.com/0voice/interview_internal_reference) | 2019年最新总结,阿里,腾讯,百度,美团,头条等技术面试题目,以及答案,专家出题人分析汇总。 | 23.6k | Python | 12/18 |
| 4 | [apachecn/AiLearning](https://github.com/apachecn/AiLearning) | AiLearning: 机器学习 - MachineLearning - ML、深度学习 - DeepLearning - DL、自然语言处理 NLP | 22.8k | Python | 01/03 |
| 5 | [fxsjy/jieba](https://github.com/fxsjy/jieba) | 结巴中文分词 | 21.6k | Python | 01/13 |
| 6 | [littlecodersh/ItChat](https://github.com/littlecodersh/ItChat) | A complete and graceful API for Wechat. 微信个人号接口、微信机器人及命令行微信,三十行即可自定义个人号机器人。 | 19.6k | Python | 01/10 |
| 7 | [fighting41love/funNLP](https://github.com/fighting41love/funNLP) | 中英文敏感词、语言检测、中外手机/电话归属地/运营商查询、名字推断性别、手机号抽取、身份证抽取、邮箱抽取、中日文人名库、中文缩写库、拆字词典、词汇情感值、停用词、反动词表、暴恐词表、繁简体转换、英文模拟中文发音、汪峰歌词生成器、职业名称词库、同义词库、反义词库、否定词库、汽车品牌词库、汽车零件词库、连续英文切割、各种中文词向量、公司名字大全、古诗词库、IT词库、财经词库、成语词库、地名词库、历史名人词库、诗词词库、医学词库、饮食词库、法律词库、汽车词库、动物词库、中文聊天语料、中文谣言数据、百度中文问答数据集、句子相似度匹配算法集合、bert资源、文本生成&摘要相关工具、cocoNLP信息抽取 ... | 16.4k | Python | 01/14 |
| 8 | [kon9chunkit/GitHub-Chinese-Top-Charts](https://github.com/kon9chunkit/GitHub-Chinese-Top-Charts) | :cn: GitHub中文排行榜,帮助你发现高分优秀中文项目、更高效地吸收国人的优秀经验成果;榜单每周更新一次,敬请关注! | 13.9k | Python | 01/18 |
| 9 | [wangshub/wechat_jump_game](https://github.com/wangshub/wechat_jump_game) | 微信《跳一跳》Python 辅助 | 13.9k | Python | 12/17 |
| 10 | [wangzheng0822/algo](https://github.com/wangzheng0822/algo) | 数据结构和算法必知必会的50个代码实现 | 13.4k | Python | 01/11 |
| 11 | [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~ | 13.0k | Python | 01/12 |
| 12 | [youfou/wxpy](https://github.com/youfou/wxpy) | 微信机器人 / 可能是最优雅的微信个人号 API ✨✨ | 11.7k | Python | 07/15 |
| 13 | [apachecn/awesome-algorithm](https://github.com/apachecn/awesome-algorithm) | 项目永久冻结,迁移至新地址: | 10.3k | Python | 07/17 |
| 14 | [Jack-Cherish/python-spider](https://github.com/Jack-Cherish/python-spider) | :rainbow:Python3网络爬虫实战 | 9.8k | Python | 12/25 |
| 15 | [leisurelicht/wtfpython-cn](https://github.com/leisurelicht/wtfpython-cn) | wtfpython的中文翻译/施工结束/ 能力有限,欢迎帮我改进翻译 | 9.8k | Python | 12/26 |
| 16 | [meolu/walle-web](https://github.com/meolu/walle-web) | walle - 瓦力 Devops开源项目代码部署平台 | 9.2k | Python | 01/03 |
| 17 | [jhao104/proxy_pool](https://github.com/jhao104/proxy_pool) | Python爬虫代理IP池(proxy pool) | 8.8k | Python | 01/14 |
| 18 | [USTC-Resource/USTC-Course](https://github.com/USTC-Resource/USTC-Course) | :heart:中国科学技术大学课程资源 | 8.4k | Python | 12/24 |
| 19 | [darknessomi/musicbox](https://github.com/darknessomi/musicbox) | 网易云音乐命令行版本 | 8.1k | Python | 12/21 |
| 20 | [sylnsfar/qrcode](https://github.com/sylnsfar/qrcode) | artistic QR Code in Python (Animated GIF qr code)- Python 艺术二维码生成器 (GIF动态二维码、图片二维码) | 6.9k | Python | 11/27 |
| 21 | [h2y/Shadowrocket-ADBlock-Rules](https://github.com/h2y/Shadowrocket-ADBlock-Rules) | 提供多款 Shadowrocket 规则,带广告过滤功能。用于 iOS 未越狱设备选择性地自动翻墙。 | 6.9k | Python | 12/14 |
| 22 | [pwxcoo/chinese-xinhua](https://github.com/pwxcoo/chinese-xinhua) | :orange_book: 中华新华字典数据库。包括歇后语,成语,词语,汉字。 | 6.7k | Python | 08/11 |
| 23 | [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. | 6.6k | Python | 12/17 |
| 24 | [Embedding/Chinese-Word-Vectors](https://github.com/Embedding/Chinese-Word-Vectors) | 100+ Chinese Word Vectors 上百种预训练中文词向量 | 6.5k | Python | 04/04 |
| 25 | [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. ) | 6.3k | Python | 12/13 |
| 26 | [luyishisi/Anti-Anti-Spider](https://github.com/luyishisi/Anti-Anti-Spider) | 越来越多的网站具有反爬虫特性,有的用图片隐藏关键数据,有的使用反人类的验证码,建立反反爬虫的代码仓库,通过与不同特性的网站做斗争(无恶意)提高技术。(欢迎提交难以采集的网站)(因工作原因,项目暂停) | 5.9k | Python | 09/24 |
| 27 | [bbfamily/abu](https://github.com/bbfamily/abu) | 阿布量化交易系统(股票,期权,期货,比特币,机器学习) 基于python的开源量化交易,量化投资架构 | 5.8k | Python | 09/22 |
| 28 | [vipstone/faceai](https://github.com/vipstone/faceai) | 一款入门级的人脸、视频、文字检测以及识别的项目. | 5.8k | Python | 07/11 |
| 29 | [houtianze/bypy](https://github.com/houtianze/bypy) | Python client for Baidu Yun (Personal Cloud Storage) 百度云/百度网盘Python客户端 | 5.0k | Python | 11/16 |
| 30 | [chyroc/WechatSogou](https://github.com/chyroc/WechatSogou) | 基于搜狗微信搜索的微信公众号爬虫接口 | 4.3k | Python | 10/23 |
| 31 | [wb14123/seq2seq-couplet](https://github.com/wb14123/seq2seq-couplet) | Play couplet with seq2seq model. 用深度学习对对联。 | 4.0k | Python | 10/09 |
| 32 | [WenDesi/lihang_book_algorithm](https://github.com/WenDesi/lihang_book_algorithm) | 致力于将李航博士《统计学习方法》一书中所有算法实现一遍 | 3.8k | Python | 04/29 |
| 33 | [princewen/tensorflow_practice](https://github.com/princewen/tensorflow_practice) | tensorflow实战练习,包括强化学习、推荐系统、nlp等 | 3.6k | Python | 12/13 |
| 34 | [offu/WeRoBot](https://github.com/offu/WeRoBot) | WeRoBot 是一个微信公众号开发框架 | 3.4k | Python | 01/13 |
| 35 | [shidenggui/easytrader](https://github.com/shidenggui/easytrader) | 提供同花顺客户端/国金/华泰客户端/雪球的基金、股票自动程序化交易以及自动打新,支持跟踪 joinquant /ricequant 模拟交易 和 实盘雪球组合, 量化交易组件 | 3.4k | Python | 01/14 |
| 36 | [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 and VAE models (TensorFlow2 implementation). DeepNude的算法以及通用GAN图像生成的理论与实践研究。 | 3.1k | Python | 12/23 |
| 37 | [jinfagang/tensorflow_poems](https://github.com/jinfagang/tensorflow_poems) | 中文古诗自动作诗机器人,屌炸天,基于tensorflow1.10 api,正在积极维护升级中,快star,保持更新! | 2.9k | Python | 02/11 |
| 38 | [billryan/algorithm-exercise](https://github.com/billryan/algorithm-exercise) | Data Structure and Algorithm notes. 数据结构与算法/leetcode/lintcode题解/ | 2.9k | Python | 11/03 |
| 39 | [QingdaoU/OnlineJudge](https://github.com/QingdaoU/OnlineJudge) | open source online judge based on Vue, Django and Docker. \| 青岛大学开源 Online Judge \| QQ群 496710125 \| [email protected] | 2.9k | Python | 12/10 |
| 40 | [Kr1s77/Python-crawler-tutorial-starts-from-zero](https://github.com/Kr1s77/Python-crawler-tutorial-starts-from-zero) | python爬虫教程,带你从零到一,包含js逆向,selenium, tesseract OCR识别,mongodb的使用,以及scrapy框架 | 2.8k | Python | 11/12 |
| 41 | [gaussic/text-classification-cnn-rnn](https://github.com/gaussic/text-classification-cnn-rnn) | CNN-RNN中文文本分类,基于TensorFlow | 2.8k | Python | 05/19 |
| 42 | [SmirkCao/Lihang](https://github.com/SmirkCao/Lihang) | Statistical learning methods, 统计学习方法(第2版)[李航] [笔记, 代码, notebook, 参考文献, Errata, lihang] | 2.8k | Python | 10/28 |
| 43 | [huyingxi/Synonyms](https://github.com/huyingxi/Synonyms) | 中文近义词工具包 | 2.7k | Python | 06/11 |
| 44 | [ownthink/KnowledgeGraphData](https://github.com/ownthink/KnowledgeGraphData) | 史上最大规模1.4亿中文知识图谱开源下载 | 2.6k | Python | 11/22 |
| 45 | [ysrc/xunfeng](https://github.com/ysrc/xunfeng) | 巡风是一款适用于企业内网的漏洞快速应急,巡航扫描系统。 | 2.6k | Python | 11/14 |
| 46 | [the0demiurge/ShadowSocksShare](https://github.com/the0demiurge/ShadowSocksShare) | Python爬虫/Flask网站/免费ShadowSocks账号/ssr订阅/json 订阅 | 2.5k | Python | 10/23 |
| 47 | [qq547276542/Agriculture_KnowledgeGraph](https://github.com/qq547276542/Agriculture_KnowledgeGraph) | 农业知识图谱(AgriKG):农业领域的信息检索,命名实体识别,关系抽取,智能问答,辅助决策 | 2.0k | Python | 01/07 |
| 48 | [brightmart/albert_zh](https://github.com/brightmart/albert_zh) | A LITE BERT FOR SELF-SUPERVISED LEARNING OF LANGUAGE REPRESENTATIONS, 海量中文预训练ALBERT模型 | 2.0k | Python | 01/07 |
| 49 | [XuShaohua/bcloud](https://github.com/XuShaohua/bcloud) | 百度网盘的linux桌面客户端 | 2.0k | Python | 06/17 |
| 50 | [lanbing510/DouBanSpider](https://github.com/lanbing510/DouBanSpider) | 豆瓣读书的爬虫 | 1.9k | Python | 07/03 |
| 51 | [shidenggui/easyquotation](https://github.com/shidenggui/easyquotation) | 实时获取新浪 / 腾讯 的免费股票行情 / 集思路的分级基金行情 | 1.8k | Python | 01/02 |
| 52 | [zpoint/CPython-Internals](https://github.com/zpoint/CPython-Internals) | Dive into CPython internals, trying to illustrate every detail of CPython implementation \| CPython 源码阅读笔记, 多图展示底层实现细节 | 1.8k | Python | 01/10 |
| 53 | [0xHJK/music-dl](https://github.com/0xHJK/music-dl) | search and download music 从网易云音乐、QQ音乐、酷狗音乐、百度音乐、虾米音乐、咪咕音乐等搜索和下载歌曲 | 1.8k | Python | 01/13 |
| 54 | [howie6879/owllook](https://github.com/howie6879/owllook) | owllook-在线网络小说阅读网站&小说搜索引擎&小说推荐系统[搜索、追书、收藏、追更、小说API] | 1.8k | Python | 01/02 |
| 55 | [PyQt5/PyQt](https://github.com/PyQt5/PyQt) | PyQt Examples(PyQt各种测试和例子) PyQt4 PyQt5 | 1.8k | Python | 11/08 |
| 56 | [opendevops-cn/opendevops](https://github.com/opendevops-cn/opendevops) | CODO是一款为用户提供企业多混合云、一站式DevOps、自动化运维、完全开源的云管理平台、自动化运维平台 | 1.7k | Python | 11/13 |
| 57 | [xiaofengShi/CHINESE-OCR](https://github.com/xiaofengShi/CHINESE-OCR) | [python3.6] 运用tf实现自然场景文字检测,keras/pytorch实现ctpn+crnn+ctc实现不定长场景文字OCR识别 | 1.7k | Python | 08/13 |
| 58 | [airingursb/bilibili-user](https://github.com/airingursb/bilibili-user) | 🍥 Bilibili 用户爬虫 | 1.7k | Python | 01/24 |
| 59 | [wzpan/wukong-robot](https://github.com/wzpan/wukong-robot) | 🤖 wukong-robot 是一个简单、灵活、优雅的中文语音对话机器人/智能音箱项目,还可能是首个支持脑机交互的开源智能音箱项目。 | 1.7k | Python | 12/29 |
| 60 | [Ehco1996/django-sspanel](https://github.com/Ehco1996/django-sspanel) | 用diango开发的全新的shadowsocks网络面板 | 1.7k | Python | 01/16 |
| 61 | [Determined22/zh-NER-TF](https://github.com/Determined22/zh-NER-TF) | A very simple BiLSTM-CRF model for Chinese Named Entity Recognition 中文命名实体识别 (TensorFlow) | 1.7k | Python | 09/14 |
| 62 | [shidenggui/easyquant](https://github.com/shidenggui/easyquant) | 股票量化框架,支持行情获取以及交易 | 1.7k | Python | 09/17 |
| 63 | [Dod-o/Statistical-Learning-Method_Code](https://github.com/Dod-o/Statistical-Learning-Method_Code) | 手写实现李航《统计学习方法》书中全部算法 | 1.6k | Python | 12/08 |
| 64 | [Roujack/mathAI](https://github.com/Roujack/mathAI) | 一个拍照做题程序。输入一张包含数学计算题的图片,输出识别出的数学计算式以及计算结果。This is a mathematic expression recognition project. | 1.6k | Python | 09/15 |
| 65 | [awolfly9/IPProxyTool](https://github.com/awolfly9/IPProxyTool) | python ip proxy tool scrapy crawl. 抓取大量免费代理 ip,提取有效 ip 使用 | 1.6k | Python | 01/17 |
| 66 | [TheKingOfDuck/fuzzDicts](https://github.com/TheKingOfDuck/fuzzDicts) | Web Pentesting Fuzz 字典,一个就够了。 | 1.5k | Python | 01/15 |
| 67 | [jumper2014/lianjia-beike-spider](https://github.com/jumper2014/lianjia-beike-spider) | 链家网和贝壳网房价爬虫,采集北京上海广州深圳等21个中国主要城市的房价数据(小区,二手房,出租房,新房),稳定可靠快速!支持csv,MySQL, MongoDB,Excel, json存储,支持Python2和3,图表展示数据,注释丰富 🚁,点星支持 | 1.5k | Python | 07/24 |
| 68 | [yoyoyo-yo/Gasyori100knock](https://github.com/yoyoyo-yo/Gasyori100knock) | 画像処理100本ノックして画像処理を画像処理して画像処理するためのもの For Japanese, English and Chinese | 1.5k | Python | 01/18 |
| 69 | [loadchange/amemv-crawler](https://github.com/loadchange/amemv-crawler) | 🙌Easily download all the videos from TikTok(amemv).下载指定的 抖音(Douyin) 号的视频,抖音爬虫 | 1.5k | Python | 11/28 |
| 70 | [junerain123/javsdt](https://github.com/junerain123/javsdt) | JAV影片信息整理工具,抓取元数据nfo,自定义重命名文件(夹),下载fanart裁剪poster,为emby、kodi、极影派铺路。jav-scrapy 老司机 javbus | 1.4k | Python | 01/10 |
| 71 | [hankcs/pyhanlp](https://github.com/hankcs/pyhanlp) | 自然语言处理 中文分词 词性标注 命名实体识别 依存句法分析 新词发现 关键词短语提取 自动摘要 文本分类聚类 拼音简繁 | 1.4k | Python | 01/10 |
| 72 | [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.4k | Python | 12/19 |
| 73 | [xianhu/PSpider](https://github.com/xianhu/PSpider) | 简单易用的Python爬虫框架,QQ交流群:597510560 | 1.4k | Python | 11/07 |
| 74 | [dataabc/weiboSpider](https://github.com/dataabc/weiboSpider) | 新浪微博爬虫,用python爬取新浪微博数据 | 1.4k | Python | 01/14 |
| 75 | [KubeOperator/KubeOperator](https://github.com/KubeOperator/KubeOperator) | KubeOperator 是一个开源项目,通过 Web UI 在 VMware、OpenStack 和物理机上规划、部署和运营生产级别的 Kubernetes 集群。支持内网离线环境、支持 GPU、内置应用商店,已通过 CNCF 的 Kubernetes 软件一致性认证。 | 1.4k | Python | 01/18 |
| 76 | [nghuyong/WeiboSpider](https://github.com/nghuyong/WeiboSpider) | This is a sina weibo spider built by scrapy[微博爬虫/持续维护] | 1.4k | Python | 11/02 |
| 77 | [FeeiCN/GSIL](https://github.com/FeeiCN/GSIL) | GitHub Sensitive Information Leakage(GitHub敏感信息泄露监控) | 1.4k | Python | 10/13 |
| 78 | [Skyexu/TopSup](https://github.com/Skyexu/TopSup) | 答题辅助决策:头号英雄等答题类游戏 | 1.3k | Python | 12/15 |
| 79 | [aaPanel/BaoTa](https://github.com/aaPanel/BaoTa) | 宝塔Linux面板 - 简单好用的服务器运维面板 | 1.3k | Python | 01/09 |
| 80 | [EvilCult/Video-Downloader](https://github.com/EvilCult/Video-Downloader) | 下载youku,letv,sohu,tudou,bilibili,acfun,iqiyi等网站分段视频文件,提供mac&win独立App。 | 1.3k | Python | 07/21 |
| 81 | [moyuanz/DevilYuan](https://github.com/moyuanz/DevilYuan) | DevilYuan可视化股票量化系统,支持选股,历史数据自动下载,策略回测及参数优化,实盘交易和常用的统计功能 | 1.3k | Python | 01/08 |
| 82 | [HuberTRoy/leetCode](https://github.com/HuberTRoy/leetCode) | :pencil2: 算法相关知识储备 LeetCode with Python :books: | 1.3k | Python | 08/11 |
| 83 | [youyuge34/PI-REC](https://github.com/youyuge34/PI-REC) | :fire: PI-REC: Progressive Image Reconstruction Network With Edge and Color Domain. :fire: 图像翻译,条件GAN,AI绘画 | 1.3k | Python | 11/01 |
| 84 | [zhaoyingjun/chatbot](https://github.com/zhaoyingjun/chatbot) | 一个可以自己进行训练的中文聊天机器人, 根据自己的语料训练出自己想要的聊天机器人,可以用于智能客服、在线问答、智能聊天等场景。目前包含seq2seq、seqGAN版本和tf2.0版本。 | 1.3k | Python | 12/16 |
| 85 | [leeguandong/Interview-code-practice-python](https://github.com/leeguandong/Interview-code-practice-python) | 面试题 | 1.3k | Python | 10/28 |
| 86 | [littlecodersh/itchatmp](https://github.com/littlecodersh/itchatmp) | A complete and graceful API for wechat mp. 完备优雅的微信公众号接口,原生支持同步、协程使用。 | 1.3k | Python | 09/26 |
| 87 | [nickliqian/cnn_captcha](https://github.com/nickliqian/cnn_captcha) | use cnn recognize captcha by tensorflow. 本项目针对字符型图片验证码,使用tensorflow实现卷积神经网络,进行验证码识别。 | 1.2k | Python | 12/17 |
| 88 | [hhyo/Archery](https://github.com/hhyo/Archery) | SQL 审核查询平台 | 1.2k | Python | 01/15 |
| 89 | [michaelliao/sinaweibopy](https://github.com/michaelliao/sinaweibopy) | 新浪微博Python SDK | 1.2k | Python | 05/02 |
| 90 | [dingdang-robot/dingdang-robot](https://github.com/dingdang-robot/dingdang-robot) | 🤖 叮当是一款可以工作在 Raspberry Pi 上的中文语音对话机器人/智能音箱项目。 | 1.2k | Python | 02/05 |
| 91 | [kingname/GeneralNewsExtractor](https://github.com/kingname/GeneralNewsExtractor) | 新闻网页正文通用抽取器 Beta 版. | 1.2k | Python | 01/04 |
| 92 | [china-testing/python-api-tesing](https://github.com/china-testing/python-api-tesing) | python中文库-python人工智能大数据自动化接口测试开发。 书籍下载及python库汇总https://china-testing.github.io/ | 1.2k | Python | 01/01 |
| 93 | [QuantFans/quantdigger](https://github.com/QuantFans/quantdigger) | 基于python的量化交易平台 | 1.1k | Python | 06/02 |
| 94 | [coffeehb/Some-PoC-oR-ExP](https://github.com/coffeehb/Some-PoC-oR-ExP) | 各种漏洞poc、Exp的收集或编写 | 1.1k | Python | 01/17 |
| 95 | [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.1k | Python | 01/17 |
| 96 | [H4ckForJob/dirmap](https://github.com/H4ckForJob/dirmap) | An advanced web directory & file scanning tool that will be more powerful than DirBuster, Dirsearch, cansina, and Yu Jian.一个高级web目录、文件扫描工具,功能将会强于DirBuster、Dirsearch、cansina、御剑。 | 1.1k | Python | 10/18 |
| 97 | [yzddmr6/webshell-venom](https://github.com/yzddmr6/webshell-venom) | 免杀webshell无限生成工具(利用随机异或无限免杀D盾) | 1.1k | Python | 01/16 |
| 98 | [Lucifer1993/struts-scan](https://github.com/Lucifer1993/struts-scan) | Python2编写的struts2漏洞全版本检测和利用工具 | 1.1k | Python | 05/07 |
| 99 | [DropsDevopsOrg/ECommerceCrawlers](https://github.com/DropsDevopsOrg/ECommerceCrawlers) | 实战🐍多种网站、电商数据爬虫🕷。包含🕸:淘宝商品、微信公众号、大众点评、招聘网站、闲鱼、阿里任务、博客园、微博、百度贴吧、豆瓣电影、包图网、全景网、豆瓣音乐、某省药监局、搜狐新闻、机器学习文本采集、fofa资产采集、汽车之家、国家统计局、百度关键词收录数、蜘蛛泛目录、今日头条、豆瓣影评、携程、小米应用商店❤️❤️❤️。微信爬虫展示项目: | 1.1k | Python | 01/10 |
| 100 | [howie6879/ruia](https://github.com/howie6879/ruia) | Async Python 3.6+ web scraping micro-framework based on asyncio(Python3.6+异步爬虫框架) | 1.1k | Python | 01/18 |
| 101 | [shmilylty/OneForAll](https://github.com/shmilylty/OneForAll) | OneForAll是一款功能强大的子域收集工具 | 1.1k | Python | 01/10 |
| 102 | [Lucifer1993/AngelSword](https://github.com/Lucifer1993/AngelSword) | Python3编写的CMS漏洞检测框架 | 1.1k | Python | 04/20 |
| 103 | [marchtea/scrapy_doc_chs](https://github.com/marchtea/scrapy_doc_chs) | scrapy中文翻译文档 | 1.1k | Python | 09/12 |
| 104 | [InsaneLife/ChineseNLPCorpus](https://github.com/InsaneLife/ChineseNLPCorpus) | 中文自然语言处理数据集,平时做做实验的材料。欢迎补充提交合并。 | 1.0k | Python | 12/22 |
| 105 | [Lam1360/YOLOv3-model-pruning](https://github.com/Lam1360/YOLOv3-model-pruning) | 在 oxford hand 数据集上对 YOLOv3 做模型剪枝(network slimming) | 1.0k | Python | 08/26 |
| 106 | [shinnytech/tqsdk-python](https://github.com/shinnytech/tqsdk-python) | 天勤量化开发包, 期货量化, 实时行情/历史数据/实盘交易 | 1.0k | Python | 01/18 |
| 107 | [Yinzo/SmartQQBot](https://github.com/Yinzo/SmartQQBot) | 基于SmartQQ的自动机器人框架 | 1.0k | Python | 02/11 |
| 108 | [Adyzng/jd-autobuy](https://github.com/Adyzng/jd-autobuy) | Python爬虫,京东自动登录,在线抢购商品 | 990 | Python | 08/19 |
| 109 | [duoergun0729/nlp](https://github.com/duoergun0729/nlp) | 兜哥出品 <一本开源的NLP入门书籍> | 989 | Python | 11/04 |
| 110 | [HuberTRoy/MusicBox](https://github.com/HuberTRoy/MusicBox) | :blush: :musical_note: MusicPlayer 一站式收听多平台音乐(网易云, 虾米, QQ)的跨平台音乐播放器,尽情享受吧~:sparkles: | 986 | Python | 11/19 |
| 111 | [dragen1860/Deep-Learning-with-PyTorch-Tutorials](https://github.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials) | 深度学习与PyTorch入门实战视频教程 配套源代码和PPT | 979 | Python | 11/17 |
| 112 | [yangxuanxc/wechat_friends](https://github.com/yangxuanxc/wechat_friends) | 微信好友信息分析并可视化以及自动回复微信消息 | 974 | Python | 11/10 |
| 113 | [LyleMi/Learn-Web-Hacking](https://github.com/LyleMi/Learn-Web-Hacking) | Study Notes For Web Hacking / Web安全学习笔记 | 970 | Python | 01/15 |
| 114 | [zwczou/weixin-python](https://github.com/zwczou/weixin-python) | 微信SDK - 包括微信支付,微信公众号,微信登陆,微信消息处理等 | 964 | Python | 12/31 |
| 115 | [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. | 964 | Python | 01/17 |
| 116 | [ly0/baidupcsapi](https://github.com/ly0/baidupcsapi) | 百度网盘api | 962 | Python | 02/15 |
| 117 | [audier/DeepSpeechRecognition](https://github.com/audier/DeepSpeechRecognition) | A Chinese Deep Speech Recognition System 包括基于深度学习的声学模型和基于深度学习的语言模型 | 953 | Python | 03/26 |
| 118 | [szad670401/end-to-end-for-chinese-plate-recognition](https://github.com/szad670401/end-to-end-for-chinese-plate-recognition) | 多标签分类,端到端的中文车牌识别基于mxnet, End-to-End Chinese plate recognition base on mxnet | 950 | Python | 01/08 |
| 119 | [al0ne/Vxscan](https://github.com/al0ne/Vxscan) | python3写的综合扫描工具,主要用来存活验证,敏感文件探测(目录扫描/js泄露接口/html注释泄露),WAF/CDN识别,端口扫描,指纹/服务识别,操作系统识别,POC扫描,SQL注入,绕过CDN,查询旁站等功能,主要用来甲方自测或乙方授权测试,请勿用来搞破坏。 | 929 | Python | 01/02 |
| 120 | [brightmart/roberta_zh](https://github.com/brightmart/roberta_zh) | RoBERTa中文预训练模型: RoBERTa for Chinese | 923 | Python | 10/12 |
| 121 | [crownpku/Rasa_NLU_Chi](https://github.com/crownpku/Rasa_NLU_Chi) | Turn Chinese natural language into structured data 中文自然语言理解 | 914 | Python | 12/19 |
| 122 | [EugeneLiu/translationCSAPP](https://github.com/EugeneLiu/translationCSAPP) | 为 CSAPP 视频课程提供字幕,翻译 PPT,Lab。 | 904 | Python | 01/03 |
| 123 | [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 自动化运维 审计 录像 文件管理 sftp上传 实时监控 录像回放 网页版rz/sz上传下载 django | 898 | Python | 01/15 |
| 124 | [snowkylin/TensorFlow-cn](https://github.com/snowkylin/TensorFlow-cn) | 简单粗暴 TensorFlow (1.X) \| A Concise Handbook of TensorFlow (1.X) | 870 | Python | 08/23 |
| 125 | [Henryhaohao/Bilibili_video_download](https://github.com/Henryhaohao/Bilibili_video_download) | :rainbow:Bilibili_video_download-B站视频下载 | 854 | Python | 11/04 |
| 126 | [anbai-inc/Kibana_Hanization](https://github.com/anbai-inc/Kibana_Hanization) | Kibana 中文汉化 | 829 | Python | 05/10 |
| 127 | [fzlee/alipay](https://github.com/fzlee/alipay) | Python Alipay(支付宝) SDK with SHA1/SHA256 support | 828 | Python | 01/16 |
| 128 | [heucoder/dimensionality_reduction_alo_codes](https://github.com/heucoder/dimensionality_reduction_alo_codes) | 特征提取/数据降维:PCA、LDA、MDS、LLE、TSNE等降维算法的python实现 | 827 | Python | 11/17 |
| 129 | [Acmesec/CTFCrackTools](https://github.com/Acmesec/CTFCrackTools) | China's first CTFTools framework.中国国内首个CTF工具框架,旨在帮助CTFer快速攻克难关 | 825 | Python | 01/07 |
| 130 | [yoshiko2/AV_Data_Capture](https://github.com/yoshiko2/AV_Data_Capture) | 日本电影元数据刮削器,配合kodi,emby等本地媒体管理工具使用 | 819 | Python | 01/02 |
| 131 | [jachinlin/geektime_dl](https://github.com/jachinlin/geektime_dl) | 把极客时间装进 Kindle | 817 | Python | 01/08 |
| 132 | [drcoms/drcom-generic](https://github.com/drcoms/drcom-generic) | Dr.COM/DrCOM 现已覆盖 d p x三版。 | 766 | Python | 10/21 |
| 133 | [githublitao/api_automation_test](https://github.com/githublitao/api_automation_test) | 接口自动化测试平台,已停止维护,看心情改改 | 763 | Python | 12/14 |
| 134 | [ymcui/Chinese-PreTrained-XLNet](https://github.com/ymcui/Chinese-PreTrained-XLNet) | Pre-Trained Chinese XLNet(中文XLNet预训练模型) | 749 | Python | 01/02 |
| 135 | [FutunnOpen/futuquant](https://github.com/FutunnOpen/futuquant) | 富途开放API Python SDK(因更名废弃, 转到 py-futu-api ) | 747 | Python | 01/22 |
| 136 | [rabbitmask/WeblogicScan](https://github.com/rabbitmask/WeblogicScan) | Weblogic一键漏洞检测工具,V1.3 | 698 | Python | 06/27 |
| 137 | [shunliz/Machine-Learning](https://github.com/shunliz/Machine-Learning) | 机器学习原理 | 684 | Python | 08/20 |
| 138 | [nosarthur/gita](https://github.com/nosarthur/gita) | Manage multiple git repos side by side for sanity 不疯了似地管理多个git库 | 683 | Python | 01/13 |
| 139 | [terrifyzhao/bert-utils](https://github.com/terrifyzhao/bert-utils) | 一行代码使用BERT生成句向量,BERT做文本分类、文本相似度计算 | 682 | Python | 10/14 |
| 140 | [PKUJohnson/OpenData](https://github.com/PKUJohnson/OpenData) | 开源的金融投资数据提取工具,专注在各类网站上爬取数据,并通过简单易用的API方式使用 | 682 | Python | 10/30 |
| 141 | [649453932/Chinese-Text-Classification-Pytorch](https://github.com/649453932/Chinese-Text-Classification-Pytorch) | 中文文本分类,TextCNN,TextRNN,FastText,TextRCNN,BiLSTM_Attention,DPCNN,Transformer,基于pytorch,开箱即用。 | 679 | Python | 12/25 |
| 142 | [sczhengyabin/Image-Downloader](https://github.com/sczhengyabin/Image-Downloader) | Download images from Google, Bing, Baidu. 谷歌、百度、必应图片下载. | 679 | Python | 04/03 |
| 143 | [whyliam/whyliam.workflows.youdao](https://github.com/whyliam/whyliam.workflows.youdao) | 使用有道翻译你想知道的单词和语句 | 678 | Python | 12/10 |
| 144 | [yhangf/PythonCrawler](https://github.com/yhangf/PythonCrawler) | :heartpulse:用python编写的爬虫项目集合 | 675 | Python | 05/09 |
| 145 | [Hackxiaoya/CuteOne](https://github.com/Hackxiaoya/CuteOne) | 这大概是最好的onedrive挂载程序了吧,我猜。 | 668 | Python | 10/22 |
| 146 | [zeruniverse/QQRobot](https://github.com/zeruniverse/QQRobot) | QQBot, QQ机器人(群聊小黄鸡) LINUX挂机版, SmartQQ协议。 | 667 | Python | 06/11 |
| 147 | [mtianyan/FunpySpiderSearchEngine](https://github.com/mtianyan/FunpySpiderSearchEngine) | 借鉴自慕课网-2019.06.19更新【Scrapy 1.6.0爬取数据 + ElasticSearch6.8.0+Django2.2搜索引擎】【爬虫端】(知乎 & 拉勾(暂不可用) & 伯乐) | 666 | Python | 11/16 |
| 148 | [libai3/masr](https://github.com/libai3/masr) | 中文语音识别,高识别率预训练模型,支持docker快速安装 Chinese Speech Recognition; Mandarin Automatic Speech Recognition; | 659 | Python | 01/02 |
| 149 | [zaxlct/imooc-django](https://github.com/zaxlct/imooc-django) | 高仿慕课网:py3.5 + Django1.10 + xadmin 搭建的在线课程教育平台 | 657 | Python | 01/10 |
| 150 | [Entromorgan/Autoticket](https://github.com/Entromorgan/Autoticket) | 大麦网自动抢票工具 | 653 | Python | 01/08 |
| 151 | [ZSAIm/iqiyi-parser](https://github.com/ZSAIm/iqiyi-parser) | 解析下载爱奇艺、哔哩哔哩、腾讯视频 | 653 | Python | 01/07 |
| 152 | [EvilCult/moviecatcher](https://github.com/EvilCult/moviecatcher) | 电影美剧搜索及在线观看离线下载软件,集成热门资源站,借助百度云实现离线下载以及在线播放功能。 | 648 | Python | 01/14 |
| 153 | [rogerzhu/MNWeeklyCategory](https://github.com/rogerzhu/MNWeeklyCategory) | 码农周刊一周精选分类 | 645 | Python | 01/08 |
| 154 | [lemonhu/stock-knowledge-graph](https://github.com/lemonhu/stock-knowledge-graph) | 利用网络上公开的数据构建一个小型的证券知识图谱/知识库 | 642 | Python | 07/09 |
| 155 | [gusibi/python-weixin](https://github.com/gusibi/python-weixin) | 微信(weixin\|wechat) Python SDK 支持开放平台和公众平台 支持微信小程序云开发 | 641 | Python | 10/31 |
| 156 | [lzjun567/python_scripts](https://github.com/lzjun567/python_scripts) | 一些python相关的演示代码 | 640 | Python | 12/18 |
| 157 | [CaoZ/JD-Coin](https://github.com/CaoZ/JD-Coin) | 自动登录京东,打卡领钢镚,签到领京豆 | 639 | Python | 10/14 |
| 158 | [buppt/ChineseNER](https://github.com/buppt/ChineseNER) | 中文命名实体识别,实体抽取,tensorflow,pytorch,BiLSTM+CRF | 637 | Python | 11/24 |
| 159 | [blackholll/loonflow](https://github.com/blackholll/loonflow) | 基于django的工作流引擎,工单(a workflow engine base on django python) | 637 | Python | 12/08 |
| 160 | [Seedarchangel/TuChart](https://github.com/Seedarchangel/TuChart) | Tuchart is a visualization interface for the Chinese stock market. Tuchart supports candlestick charts, price charts, tick data, high-frequency data and distribution of top shareholders for individual stocks. Tuchart是一个基于pyqt和echarts的股票视觉化应用。Tuchart 支持日/月线,分笔,高频数据,前十股东分笔的视觉化 | 635 | Python | 08/25 |
| 161 | [sinall/StrategyEase-Python-SDK](https://github.com/sinall/StrategyEase-Python-SDK) | 策略易(StrategyEase)Python SDK,策略自动化交易 API 及量化平台。 | 629 | Python | 12/27 |
| 162 | [Neeky/mysqltools](https://github.com/Neeky/mysqltools) | 一个用于快速构建大规模,高质量,全自动化的 mysql分布式集群环境的工具;包含mysql 安装、备份、监控、高可用、读写分离、优化、巡检、自行化运维 | 627 | Python | 11/28 |
| 163 | [httprunner/HttpRunnerManager](https://github.com/httprunner/HttpRunnerManager) | 基于 HttpRunner 的 Web 测试平台,已停止维护。 | 627 | Python | 07/11 |
| 164 | [SimmerChan/KG-demo-for-movie](https://github.com/SimmerChan/KG-demo-for-movie) | 从无到有构建一个电影知识图谱,并基于该KG,开发一个简易的KBQA程序。 | 619 | Python | 05/16 |
| 165 | [Timthony/self_drive](https://github.com/Timthony/self_drive) | 基于树莓派的自动驾驶小车,利用树莓派和tensorflow实现小车在赛道的自动驾驶。(Self-driving car based on raspberry pi(tensorflow)) | 607 | Python | 06/02 |
| 166 | [youyuge34/Anime-InPainting](https://github.com/youyuge34/Anime-InPainting) | An application tool of edge-connect, which can do anime inpainting and drawing. 动漫人物图片自动修复,去马赛克,填补,去瑕疵 | 604 | Python | 03/27 |
| 167 | [twtrubiks/docker-tutorial](https://github.com/twtrubiks/docker-tutorial) | Docker 基本教學 - 從無到有 Docker-Beginners-Guide 教你用 Docker 建立 Django + PostgreSQL 📝 | 604 | Python | 11/15 |
| 168 | [Dawnnnnnn/bilibili-live-tools](https://github.com/Dawnnnnnn/bilibili-live-tools) | python实现的bilibili直播助手 | 603 | Python | 01/02 |
| 169 | [lzjun567/note](https://github.com/lzjun567/note) | 学习笔记 | 597 | Python | 06/19 |
| 170 | [joe011/python](https://github.com/joe011/python) | python常用脚本 | 595 | Python | 04/16 |
| 171 | [lovelyyoshino/Shadowsocks-Hosts-or-V2ray](https://github.com/lovelyyoshino/Shadowsocks-Hosts-or-V2ray) | 利用 hosts 、 Shadowsocks (影梭)、V2ray科学上网 | 594 | Python | 12/21 |
| 172 | [HatBoy/Struts2-Scan](https://github.com/HatBoy/Struts2-Scan) | Struts2全漏洞扫描利用工具 | 594 | Python | 09/10 |
| 173 | [ls0f/phone](https://github.com/ls0f/phone) | 手机号码归属地库 | 593 | Python | 06/03 |
| 174 | [ProHiryu/bert-chinese-ner](https://github.com/ProHiryu/bert-chinese-ner) | 使用预训练语言模型BERT做中文NER | 591 | Python | 10/16 |
| 175 | [FeeiCN/ESD](https://github.com/FeeiCN/ESD) | Enumeration sub domains(枚举子域名) | 583 | Python | 07/05 |
| 176 | [knownsec/rtcp](https://github.com/knownsec/rtcp) | 利用 Python 的 Socket 端口转发,用于远程维护 | 561 | Python | 09/27 |
| 177 | [WyAtu/Perun](https://github.com/WyAtu/Perun) | Perun是一款主要适用于乙方安服、渗透测试人员和甲方RedTeam红队人员的网络资产漏洞扫描器/扫描框架 | 561 | Python | 04/25 |
| 178 | [jiangxufeng/v2rayL](https://github.com/jiangxufeng/v2rayL) | v2ray linux GUI客户端,支持订阅、vemss、ss等协议,自动更新订阅、检查版本更新 | 560 | Python | 01/06 |
| 179 | [richardchien/nonebot](https://github.com/richardchien/nonebot) | 基于 酷Q 的 Python 异步 QQ 机器人框架 | 557 | Python | 01/15 |
| 180 | [smileboywtu/MillionHeroAssistant](https://github.com/smileboywtu/MillionHeroAssistant) | 百万 / 冲顶 / 芝士 / UC / 万能 答题助手(知识图谱更加专业,自动推荐答案, Android手机自动屏幕适配,模拟器支持,多开) | 528 | Python | 01/08 |
| 181 | [zhongyiio/crack-geetest](https://github.com/zhongyiio/crack-geetest) | 滑动验证码破解示例,仅供学习使用。 | 526 | Python | 11/03 |
| 182 | [ownthink/KnowledgeGraph](https://github.com/ownthink/KnowledgeGraph) | 史上最大规模1.4亿知识图谱数据免费下载,知识图谱,通用知识图谱,融合了两千五百多万的实体,拥有亿级别的实体属性关系。 | 519 | Python | 10/09 |
| 183 | [smilelight/lightNLP](https://github.com/smilelight/lightNLP) | 基于Pytorch和torchtext的自然语言处理深度学习框架,包含序列标注、文本分类、句子关系、文本生成、结构分析、五大功能模块,已实现了命名实体识别、中文分词、词性标注、语义角色标注、情感分析、关系抽取、语言模型、文本相似度、文本蕴含、依存句法分析、词向量训练、聊天机器人、机器翻译、文本摘要等功能。框架功能丰富,开箱可用,极易上手!基本都是学习他人实现然后自己修改融合到框架中,没有细致调参,且有不少Bug~ | 519 | Python | 01/10 |
| 184 | [gavin66/proxy_list](https://github.com/gavin66/proxy_list) | 爬取免费可用代理,供爬虫等工具使用 | 518 | Python | 04/01 |
| 185 | [tp4a/teleport](https://github.com/tp4a/teleport) | Teleport是一款简单易用的堡垒机系统。 | 521 | Python | 01/15 |
| 186 | [Hopetree/izone](https://github.com/Hopetree/izone) | django+bootstrap4 个人博客 | 514 | Python | 01/09 |
| 187 | [osroom/osroom](https://github.com/osroom/osroom) | Python Flask开源网站, CMF, 个人,企业网站,多用户网站.提供Restful Api,App,小程序调用 | 495 | Python | 01/13 |
| 188 | [SpikeKing/keras-yolo3-detection](https://github.com/SpikeKing/keras-yolo3-detection) | YOLO v3 物体检测算法 | 491 | Python | 01/03 |
| 189 | [k8gege/K8CScan](https://github.com/k8gege/K8CScan) | K8Cscan大型内网渗透自定义插件化扫描神器,包含信息收集、网络资产、漏洞扫描、密码爆破、漏洞利用,程序采用多线程批量扫描大型内网多个IP段C段主机,目前插件包含: C段旁注扫描、子域名扫描、Ftp密码爆破、Mysql密码爆破、Oracle密码爆破、MSSQL密码爆破、Windows/Linux系统密码爆破、存活主机扫描、端口扫描、Web信息探测、操作系统版本探测、Cisco思科设备扫描等,支持调用任意外部程序或脚本,支持Cobalt Strike联动 | 491 | Python | 12/25 |
| 190 | [Foair/course-crawler](https://github.com/Foair/course-crawler) | 🎓 中国大学MOOC、学堂在线、网易云课堂、好大学在线、爱课程 MOOC 课程下载。 | 487 | Python | 12/09 |
| 191 | [wx-chevalier/Awesome-CheatSheets](https://github.com/wx-chevalier/Awesome-CheatSheets) | :books: Ultimate CheatSheets(Tutorials&MindMap), overview of syntax, features and practical tips, collection of useful code snippets, go from zero to hero at fly. :dizzy: 干货满满的全栈开发速学速查手册集锦 | 486 | Python | 01/18 |
| 192 | [yangxudong/deeplearning](https://github.com/yangxudong/deeplearning) | 深度学习相关的模型训练、评估和预测相关代码 | 486 | Python | 11/28 |
| 193 | [a312863063/seeprettyface-generator-wanghong](https://github.com/a312863063/seeprettyface-generator-wanghong) | 这是一个用StyleGAN训练出的网红脸生成器 | 484 | Python | 12/25 |
| 194 | [lb2281075105/Python-Spider](https://github.com/lb2281075105/Python-Spider) | 豆瓣电影top250、斗鱼爬取json数据以及爬取美女图片、淘宝、有缘、CrawlSpider爬取红娘网相亲人的部分基本信息以及红娘网分布式爬取和存储redis、爬虫小demo、Selenium、爬取多点、django开发接口、爬取有缘网信息、模拟知乎登录、模拟github登录、模拟图虫网登录、爬取多点商城整站数据、爬取微信公众号历史文章、爬取微信群或者微信好友分享的文章、itchat监听指定微信公众号分享的文章 | 482 | Python | 05/15 |
| 195 | [lihanghang/NLP-Knowledge-Graph](https://github.com/lihanghang/NLP-Knowledge-Graph) | 自然语言处理、知识图谱、对话系统三大技术研究与应用。 | 477 | Python | 01/14 |
| 196 | [twtrubiks/django-rest-framework-tutorial](https://github.com/twtrubiks/django-rest-framework-tutorial) | Django-REST-framework 基本教學 - 從無到有 DRF-Beginners-Guide 📝 | 475 | Python | 11/02 |
| 197 | [w-digital-scanner/w13scan](https://github.com/w-digital-scanner/w13scan) | Passive Security Scanner (被动式安全扫描器) | 473 | Python | 01/14 |
| 198 | [guanfuchen/semseg](https://github.com/guanfuchen/semseg) | 常用的语义分割架构结构综述以及代码复现 | 471 | Python | 07/13 |
| 199 | [xiaoshun007/12306Python](https://github.com/xiaoshun007/12306Python) | An automatic 12306 hacking program by Python. 12306自动抢票程序 | 468 | Python | 10/15 |
| 200 | [Mingtzge/2019-CCF-BDCI-OCR-MCZJ-OCR-IdentificationIDElement](https://github.com/Mingtzge/2019-CCF-BDCI-OCR-MCZJ-OCR-IdentificationIDElement) | 2019CCF-BDCI大赛 最佳创新探索奖获得者 基于OCR身份证要素提取赛题冠军 天晨破晓团队 赛题源码 | 468 | Python | 01/09 |
⬆ [回到目录](#目录)
<br/>
## Go
| # | Repository | Description | Stars | Language | Updated |
| ---- | ------------------------------------------------------------ | ------------------------------------------------------------ | ----- | -------- | ------- |
| 1 | [iikira/BaiduPCS-Go](https://github.com/iikira/BaiduPCS-Go) | 百度网盘客户端 - Go语言编写 | 19.6k | Go | 12/21 |
| 2 | [kataras/iris](https://github.com/kataras/iris) | 感谢中国开发者 - https://bit.ly/謝謝 \| The fastest community-driven web framework for Go. Webassembly, 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 middleware package ... | 17.3k | Go | 01/18 |
| 3 | [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. | 10.2k | Go | 01/16 |
| 4 | [peterq/pan-light](https://github.com/peterq/pan-light) | 百度网盘不限速客户端, golang + qt5, 跨平台图形界面 | 9.8k | Go | 11/08 |
| 5 | [bilibili/kratos](https://github.com/bilibili/kratos) | Kratos是bilibili开源的一套Go微服务框架,包含大量微服务相关框架及工具。 | 8.8k | Go | 01/17 |
| 6 | [snail007/goproxy](https://github.com/snail007/goproxy) | Proxy是高性能全功能的http代理、https代理、socks5代理、内网穿透、内网穿透p2p、内网穿透代理、内网穿透反向代理、内网穿透服务器、Websocket代理、TCP代理、UDP代理、DNS代理、DNS加密代理,代理API认证,全能跨平台代理服务器。 | 7.8k | Go | 12/23 |
| 7 | [polaris1119/The-Golang-Standard-Library-by-Example](https://github.com/polaris1119/The-Golang-Standard-Library-by-Example) | Golang标准库。对于程序员而言,标准库与语言本身同样重要,它好比一个百宝箱,能为各种常见的任务提供完美的解决方案。以示例驱动的方式讲解Golang的标准库。 | 6.3k | Go | 10/14 |
| 8 | [smallnest/rpcx](https://github.com/smallnest/rpcx) | A zero cost, faster multil-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.3k | Go | 01/04 |
| 9 | [lifei6671/mindoc](https://github.com/lifei6671/mindoc) | Golang实现的基于beego框架的接口在线文档管理系统 | 3.6k | Go | 09/29 |
| 10 | [huichen/wukong](https://github.com/huichen/wukong) | 高度可定制的全文搜索引擎 | 3.5k | Go | 08/21 |
| 11 | [tophubs/TopList](https://github.com/tophubs/TopList) | 今日热榜,一个获取各大热门网站热门头条的聚合网站,使用Go语言编写,多协程异步快速抓取信息,预览:https://mo.fish | 3.5k | Go | 01/06 |
| 12 | [Tencent/bk-cmdb](https://github.com/Tencent/bk-cmdb) | 蓝鲸智云配置平台(BlueKing CMDB) | 3.2k | Go | 01/17 |
| 13 | [panjf2000/ants](https://github.com/panjf2000/ants) | 🐜🐜🐜 ants is a high-performance and low-cost goroutine pool in Go, inspired by fasthttp./ ants 是一个高性能且低损耗的 goroutine 池。 | 2.9k | Go | 01/17 |
| 14 | [chaosblade-io/chaosblade](https://github.com/chaosblade-io/chaosblade) | An easy to use and powerful chaos engineering experiment toolkit.(阿里巴巴开源的一款简单易用、功能强大的混沌实验注入工具) | 2.3k | Go | 01/16 |
| 15 | [gwuhaolin/livego](https://github.com/gwuhaolin/livego) | 纯 Go 写的直播服务器 | 2.3k | Go | 10/25 |
| 16 | [ouqiang/gocron](https://github.com/ouqiang/gocron) | 定时任务管理系统 | 2.2k | Go | 12/06 |
| 17 | [senghoo/golang-design-pattern](https://github.com/senghoo/golang-design-pattern) | 设计模式 Golang实现-《研磨设计模式》读书笔记 | 2.1k | Go | 10/08 |
| 18 | [360EntSecGroup-Skylar/ElasticHD](https://github.com/360EntSecGroup-Skylar/ElasticHD) | Elasticsearch 可视化DashBoard, 支持Es监控、实时搜索,Index template快捷替换修改,索引列表信息查看, SQL converts to DSL等 | 2.1k | Go | 05/15 |
| 19 | [goodrain/rainbond](https://github.com/goodrain/rainbond) | Enterprise Application System 以企业云原生应用开发、架构、运维、共享、交付为核心的Kubernetes多云赋能平台 | 2.1k | Go | 01/17 |
| 20 | [aimerforreimu/auxpi](https://github.com/aimerforreimu/auxpi) | 🍭 集合多家 API 的新一代图床 | 2.1k | Go | 09/24 |
| 21 | [TruthHun/DocHub](https://github.com/TruthHun/DocHub) | 参考百度文库,使用Beego(Golang)开发的开源文库系统 | 2.1k | Go | 11/25 |
| 22 | [shen100/mili](https://github.com/shen100/mili) | golang123 是使用 vue、nuxt、node.js 和 golang 开发的知识分享系统 | 2.0k | Go | 11/13 |
| 23 | [chanxuehong/wechat](https://github.com/chanxuehong/wechat) | weixin/wechat/微信公众平台/微信企业号/微信商户平台/微信支付 go/golang sdk | 1.9k | Go | 01/08 |
| 24 | [aceld/zinx](https://github.com/aceld/zinx) | 基于Golang轻量级TCP并发服务器框架 | 1.9k | Go | 12/27 |
| 25 | [xiaoming2028/FreePAC](https://github.com/xiaoming2028/FreePAC) | 科学上网/梯子/自由上网/翻墙 SS/SSR/V2Ray/Brook 搭建教程 | 1.9k | Go | 12/11 |
| 26 | [xmge/gonote](https://github.com/xmge/gonote) | 欢迎各位gopher一起来完善这份笔记,让更多的人能够了解go,学习go,使用go,热爱go. :thumbsup: | 1.9k | Go | 11/26 |
| 27 | [gopl-zh/gopl-zh.github.com](https://github.com/gopl-zh/gopl-zh.github.com) | Go语言圣经中文版(只接收PR, Issue请提交到golang-china/gopl-zh) | 1.8k | Go | 12/24 |
| 28 | [liangdas/mqant](https://github.com/liangdas/mqant) | mqant是一款基于Golang语言的简洁,高效,高性能的分布式游戏服务器框架 | 1.8k | Go | 01/02 |
| 29 | [silenceper/wechat](https://github.com/silenceper/wechat) | WeChat SDK for Go (微信SDK:简单、易用) | 1.7k | Go | 01/17 |
| 30 | [eolinker/goku-api-gateway](https://github.com/eolinker/goku-api-gateway) | A Powerful HTTP API Gateway in pure golang!Goku API Gateway (中文名:悟空 API 网关)是一个基于 Golang开发的微服务网关,能够实现高性能 HTTP API 转发、服务编排、多租户管理、API 访问权限控制等目的,拥有强大的自定义插件系统可以自行扩展,并且提供友好的图形化配置界面,能够快速帮助企业进行 API 服务治理、提高 API 服务的稳定性和安全性。 | 1.7k | Go | 11/28 |
| 31 | [ysrc/yulong-hids](https://github.com/ysrc/yulong-hids) | 一款由 YSRC 开源的主机入侵检测系统 | 1.6k | Go | 10/18 |
| 32 | [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 网络框架。 | 1.6k | Go | 01/17 |
| 33 | [dreamans/syncd](https://github.com/dreamans/syncd) | syncd是一款开源的代码部署工具,它具有简单、高效、易用等特点,可以提高团队的工作效率. | 1.6k | Go | 09/02 |
| 34 | [studygolang/studygolang](https://github.com/studygolang/studygolang) | Go 语言中文网 \| Golang中文社区 \| Go语言学习园地 源码 | 1.6k | Go | 12/06 |
| 35 | [sjqzhang/go-fastdfs](https://github.com/sjqzhang/go-fastdfs) | A simple fast, easy use distributed file system written by golang(similar fastdfs).go-fastdfs 是一个简单的分布式文件系统(私有云存储),具有无中心、高性能,高可靠,免维护等优点,支持断点续传,分块上传,小文件合并,自动同步,自动修复。 | 1.5k | Go | 01/02 |
| 36 | [TruthHun/BookStack](https://github.com/TruthHun/BookStack) | BookStack,基于MinDoc,使用Beego开发的在线文档管理系统,功能类似Gitbook和看云。 | 1.4k | Go | 01/07 |
| 37 | [hacklcx/HFish](https://github.com/hacklcx/HFish) | Extend the enterprise security test open source honeypot system , Record hacker attacks. 扩展企业安全测试主动诱导型开源蜜罐框架系统,记录黑客攻击手段 | 1.4k | Go | 12/19 |
| 38 | [funny/link](https://github.com/funny/link) | Go语言网络层脚手架 | 1.3k | Go | 08/05 |
| 39 | [fanux/sealos](https://github.com/fanux/sealos) | kubernetes高可用安装工具,一条命令,离线安装,包含所有依赖,内核负载不依赖haproxy keepalived,纯golang开发,99年证书,支持v1.16.4 v1.15.7 v1.14.10 v1.17.0! | 1.3k | Go | 01/09 |
| 40 | [bilibili/overlord](https://github.com/bilibili/overlord) | Overlord是哔哩哔哩基于Go语言编写的memcache和redis&cluster的代理及集群管理功能,致力于提供自动化高可用的缓存服务解决方案。 | 1.2k | Go | 01/09 |
| 41 | [go-ego/gse](https://github.com/go-ego/gse) | Go efficient text segmentation @vcaesar; support english, chinese, japanese and other. Go 语言高性能分词 | 1.2k | Go | 01/12 |
| 42 | [overnote/over-golang](https://github.com/overnote/over-golang) | Golang笔记:[进度80%]Go语法、Go并发思想、Go与web开发、Go微服务设施等 | 1.2k | Go | 01/07 |
| 43 | [linclin/gopub](https://github.com/linclin/gopub) | vue.js(element框架)+golang(beego框架)开发的运维发布系统,支持git,jenkins版本发布,go ssh,BT两种文件传输方式选择,支持部署前准备任务和部署后任务钩子函数 | 1.2k | Go | 01/06 |
| 44 | [qcrao/Go-Questions](https://github.com/qcrao/Go-Questions) | 从问题切入,串连 Go 语言相关的所有知识,融会贯通。 | 1.2k | Go | 01/07 |
| 45 | [phachon/mm-wiki](https://github.com/phachon/mm-wiki) | MM-Wiki 一个轻量级的企业知识分享与团队协同软件,可用于快速构建企业 Wiki 和团队知识分享平台。部署方便,使用简单,帮助团队构建一个信息共享、文档管理的协作环境。 | 1.1k | Go | 12/28 |
| 46 | [micro-in-cn/tutorials](https://github.com/micro-in-cn/tutorials) | Micro 中文示例、教程、资料,源码解读 | 1.1k | Go | 01/16 |
| 47 | [xormplus/xorm](https://github.com/xormplus/xorm) | xorm是一个简单而强大的Go语言ORM库,通过它可以使数据库操作非常简便。本库是基于原版xorm的定制增强版本,为xorm提供类似ibatis的配置文件及动态SQL支持,支持AcitveRecord操作 | 1.0k | Go | 11/14 |
| 48 | [davyxu/tabtoy](https://github.com/davyxu/tabtoy) | 跨平台的高性能便捷电子表格导出器 | 1.0k | Go | 01/03 |
| 49 | [Jinnrry/getAwayBSG](https://github.com/Jinnrry/getAwayBSG) | 逃离北上广 | 981 | Go | 09/05 |
| 50 | [opensec-cn/kunpeng](https://github.com/opensec-cn/kunpeng) | kunpeng是一个Golang编写的开源POC框架/库,以动态链接库的形式提供各种语言调用,通过此项目可快速开发漏洞检测类的系统。 | 953 | Go | 12/16 |
| 51 | [yanyiwu/gojieba](https://github.com/yanyiwu/gojieba) | "结巴"中文分词的Golang版本 | 952 | Go | 01/14 |
| 52 | [george518/PPGo_Job](https://github.com/george518/PPGo_Job) | PPGo_Job是一款可视化的、多人多权限的、一任务多机执行的定时任务管理系统,采用golang开发,安装方便,资源消耗少,支持大并发,可同时管理多台服务器上的定时任务。 | 938 | Go | 11/21 |
| 53 | [alibaba/RedisShake](https://github.com/alibaba/RedisShake) | Redis-shake is a tool for synchronizing data between two redis databases. Redis-shake是一个用于在两个redis之间同步数据的工具,满足用户非常灵活的同步、迁移需求。 | 914 | Go | 12/31 |
| 54 | [40t/go-sniffer](https://github.com/40t/go-sniffer) | 🔎Sniffing and parsing mysql,redis,http,mongodb etc protocol. 抓包截取项目中的数据库请求并解析成相应的语句。 | 912 | Go | 10/09 |
| 55 | [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更好的性能。 | 881 | Go | 12/11 |
| 56 | [henson/proxypool](https://github.com/henson/proxypool) | Golang实现的IP代理池 | 875 | Go | 12/24 |
| 57 | [MiSecurity/x-patrol](https://github.com/MiSecurity/x-patrol) | github泄露扫描系统 | 862 | Go | 10/18 |
| 58 | [iwannay/jiacrontab](https://github.com/iwannay/jiacrontab) | 简单可信赖的任务管理工具 | 823 | Go | 01/05 |
| 59 | [smallnest/dive-to-gosync-workshop](https://github.com/smallnest/dive-to-gosync-workshop) | 深入Go并发编程研讨课 | 807 | Go | 07/25 |
| 60 | [qiniu/qshell](https://github.com/qiniu/qshell) | qshell是利用七牛文档上公开的API实现的一个方便开发者测试和使用七牛API服务的命令行工具。 | 806 | Go | 01/04 |
| 61 | [alberliu/gim](https://github.com/alberliu/gim) | golang写的IM服务器 | 794 | Go | 01/16 |
| 62 | [xianlubird/mydocker](https://github.com/xianlubird/mydocker) | <<自己动手写docker>> 源码 | 793 | Go | 09/10 |
| 63 | [wuYin/blog](https://github.com/wuYin/blog) | 个人博客 | 775 | Go | 11/09 |
| 64 | [qiniu/qlang](https://github.com/qiniu/qlang) | Q Language (Q语言) - A script language for Go | 767 | Go | 09/07 |
| 65 | [smartwalle/alipay](https://github.com/smartwalle/alipay) | 支付宝 AliPay SDK for Go, 集成简单,功能完善,持续更新,支持公钥证书和普通公钥进行签名和验签。 | 758 | Go | 01/13 |
| 66 | [Go-zh/tour](https://github.com/Go-zh/tour) | Go 语言官方教程中文版 | 739 | Go | 05/15 |
| 67 | [chai2010/awesome-go-zh](https://github.com/chai2010/awesome-go-zh) | :books: Go资源精选中文版(含中文图书大全) | 738 | Go | 09/23 |
| 68 | [yoki123/ncmdump](https://github.com/yoki123/ncmdump) | netease cloud music copyright protection file dump(golang版本网易云音乐ncm文件格式转换) | 731 | Go | 11/05 |
| 69 | [caixw/apidoc](https://github.com/caixw/apidoc) | RESTful API 文档生成工具,支持 Go、Java、Swift、JavaScript、Rust、PHP、Python 和 Ruby 等大部分语言。 | 729 | Go | 01/11 |
| 70 | [bilibili/sniper](https://github.com/bilibili/sniper) | 轻量级 go 业务框架。 | 724 | Go | 08/23 |
| 71 | [GameXG/TcpRoute2](https://github.com/GameXG/TcpRoute2) | TcpRoute , TCP 层的路由器。对于 TCP 连接自动从多个线路(电信、联通、移动)、多个域名解析结果中选择最优线路。 | 699 | Go | 03/21 |
| 72 | [3xxx/engineercms](https://github.com/3xxx/engineercms) | 工程师知识管理系统:基于golang go语言(beego框架)。每个行业都有自己的知识管理系统,engineercms旨在为土木工程师们打造一款适用的基于web的知识管理系统。它既可以用于管理个人的项目资料,也可以用于管理项目团队资料;它既可以运行于个人电脑,也可以放到服务器上。支持onlyoffice实时文档协作,直接在线编辑dwg文件、office文档,阅览PDF文件。通用的业务流程设置。手机端配套小程序,微信搜索“珠三角设代”或“青少儿书画”即可呼出小程序。 | 696 | Go | 01/11 |
| 73 | [gobyexample-cn/gobyexample](https://github.com/gobyexample-cn/gobyexample) | Go by Example 通过例子学 Golang | 689 | Go | 01/15 |
| 74 | [getlantern/lantern](https://github.com/getlantern/lantern) | Lantern官方版本下载 蓝灯 翻墙 代理 科学上网 外网 加速器 梯子 路由 lantern proxy vpn censorship-circumvention censorship gfw accelerator | 686 | Go | 01/01 |
| 75 | [xluohome/phonedata](https://github.com/xluohome/phonedata) | 手机号码归属地信息库、手机号归属地查询 phone.dat 最后更新:2019年11月 | 684 | Go | 11/16 |
| 76 | [owenliang/go-push](https://github.com/owenliang/go-push) | 用GO做推送 | 678 | Go | 11/09 |
| 77 | [mozillazg/go-pinyin](https://github.com/mozillazg/go-pinyin) | 汉字转拼音 | 634 | Go | 01/15 |
| 78 | [wangsongyan/wblog](https://github.com/wangsongyan/wblog) | 基于gin+gorm开发的个人博客项目 | 619 | Go | 07/12 |
| 79 | [bobohume/gonet](https://github.com/bobohume/gonet) | go分布式服务器,基于内存mmo | 616 | Go | 01/14 |
| 80 | [wendal/gor](https://github.com/wendal/gor) | Golang编写的静态博客引擎 | 591 | Go | 09/04 |
| 81 | [ixre/go2o](https://github.com/ixre/go2o) | 基于DDD的o2o的业务模型及基础, 使用Golang+Thrift实现 | 579 | Go | 01/10 |
| 82 | [itcloudy/ERP](https://github.com/itcloudy/ERP) | 基于beego的进销存系统 | 577 | Go | 10/15 |
| 83 | [Gourouting/singo](https://github.com/Gourouting/singo) | Gin+Gorm开发Golang API快速开发脚手架 | 573 | Go | 11/06 |
| 84 | [liushuchun/wechatcmd](https://github.com/liushuchun/wechatcmd) | 提供微信终端版本、微信命令行版本聊天功能、微信机器人 | 561 | Go | 04/22 |
| 85 | [yangwenmai/learning-golang](https://github.com/yangwenmai/learning-golang) | Go 学习之路:Go 开发者博客、Go 微信公众号、Go 学习资料(文档、书籍、视频) | 560 | Go | 05/06 |
| 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的集群复制工具,可以满足迁移和同步的需求,进一步实现灾备和多活功能。 | 556 | Go | 01/13 |
| 87 | [winterssy/mxget](https://github.com/winterssy/mxget) | 优雅的一站式音乐搜索、下载试听服务,支持国内所有音乐平台 | 544 | Go | 01/17 |
| 88 | [wyh267/FalconEngine](https://github.com/wyh267/FalconEngine) | 一个go语言实现的简单搜索引擎 | 535 | Go | 02/19 |
| 89 | [hanchuanchuan/goInception](https://github.com/hanchuanchuan/goInception) | 一个集审核、执行、备份及生成回滚语句于一身的MySQL运维工具 | 521 | Go | 01/18 |
| 90 | [qiniu/httptest](https://github.com/qiniu/httptest) | Qiniu httptest package - 七牛HTTP测试工具包 | 516 | Go | 09/11 |
| 91 | [lhtzbj12/sdrms](https://github.com/lhtzbj12/sdrms) | 基于Beego开发的易用、易扩展、界面友好的轻量级功能权限管理系统 | 489 | Go | 07/01 |
| 92 | [jiajunhuang/blog](https://github.com/jiajunhuang/blog) | Jiajun的编程随想 | 480 | Go | 01/13 |
| 93 | [sevenelevenlee/go-patterns](https://github.com/sevenelevenlee/go-patterns) | Golang 设计模式 | 479 | Go | 11/24 |
| 94 | [unknwon/building-web-applications-in-go](https://github.com/unknwon/building-web-applications-in-go) | Go 语言 Web 应用开发系列教程,从新手到双手残废 | 478 | Go | 12/14 |
| 95 | [medivhzhan/weapp](https://github.com/medivhzhan/weapp) | GO 微信小程序 SDK | 474 | Go | 11/08 |
| 96 | [thinkeridea/go-extend](https://github.com/thinkeridea/go-extend) | go语言扩展包,收集一些常用的操作函数,辅助更快的完成开发工作,并减少重复代码 | 435 | Go | 01/06 |
| 97 | [Golangltd/codeclass](https://github.com/Golangltd/codeclass) | Golang语言社区--腾讯课堂、网易云课堂、字节教育课程PPT及代码 | 433 | Go | 05/09 |
| 98 | [duolatech/xapimanager](https://github.com/duolatech/xapimanager) | XAPI MANAGER -专业实用的开源接口管理平台,为程序开发者提供一个灵活,方便,快捷的API管理工具,让API管理变的更加清晰、明朗。如果你觉得xApi对你有用的话,别忘了给我们点个赞哦^_^ ! | 429 | Go | 08/30 |
| 99 | [godcong/fate](https://github.com/godcong/fate) | fate 命运 起名 算命 宝宝起名 | 422 | Go | 01/15 |
| 100 | [33cn/chain33](https://github.com/33cn/chain33) | 高度模块化, 遵循 KISS原则的区块链开发框架 | 413 | Go | 01/17 |
| 101 | [TeaWeb/build](https://github.com/TeaWeb/build) | TeaWeb-可视化的Web代理服务。DEMO: http://teaos.cn:7777 | 401 | Go | 12/14 |
| 102 | [hidu/mysql-schema-sync](https://github.com/hidu/mysql-schema-sync) | mysql表结构自动同步工具(目前只支持字段、索引的同步,分区等高级功能暂不支持) | 396 | Go | 01/01 |
| 103 | [guonaihong/gout](https://github.com/guonaihong/gout) | gout to become the Swiss Army Knife of the http client @^^@---> gout 是http client领域的瑞士军刀,小巧,强大,犀利。具体用法可看文档,如使用迷惑或者API用得不爽都可提issues | 396 | Go | 01/17 |
| 104 | [silenceper/pool](https://github.com/silenceper/pool) | Golang 通用网络连接池 | 394 | Go | 11/05 |
| 105 | [cnbattle/douyin](https://github.com/cnbattle/douyin) | 抖音推荐列表视频爬虫方案,基于app(虚拟机或真机) 相关技术 golang adb nodejs anyproxy | 389 | Go | 09/11 |
| 106 | [piexlmax/gin-vue-admin](https://github.com/piexlmax/gin-vue-admin) | 基于gin+gorm+vue搭建的快速后台管理系统模板,包含jwt鉴权,权限管理,动态路由,分页封装,多点登录拦截,资源权限,上传下载等基础功能,更多功能正在开发中,欢迎iss,欢迎pr | 389 | Go | 01/18 |
| 107 | [didi/falcon-log-agent](https://github.com/didi/falcon-log-agent) | 用于监控系统的日志采集agent,可无缝对接open-falcon | 388 | Go | 08/09 |
| 108 | [hb-go/echo-web](https://github.com/hb-go/echo-web) | Go web framework Echo example. 在线演示☞迁移ing❌ | 378 | Go | 05/29 |
| 109 | [wiatingpub/MTBSystem](https://github.com/wiatingpub/MTBSystem) | 使用go-micro微服务实现的在线电影院订票系统 | 376 | Go | 08/02 |
| 110 | [tjfoc/gmsm](https://github.com/tjfoc/gmsm) | GM SM2/3/4 library based on Golang (基于Go语言的国密SM2/SM3/SM4算法库) | 366 | Go | 01/02 |
| 111 | [geph-official/geph2](https://github.com/geph-official/geph2) | Geph (迷霧通) is a modular Internet censorship circumvention system designed specifically to deal with national filtering. | 353 | Go | 01/15 |
| 112 | [bitepeng/b0pass](https://github.com/bitepeng/b0pass) | 百灵快传:基于Go语言的高性能 "手机电脑超大文件传输神器"、"局域网共享文件服务器"。LAN large file transfer tool。 | 350 | Go | 11/29 |
| 113 | [jemygraw/TechDoc](https://github.com/jemygraw/TechDoc) | 自己编写的技术文档汇总 | 349 | Go | 07/04 |
| 114 | [ying32/govcl](https://github.com/ying32/govcl) | A Cross-platform Golang GUI library, Binding with Delphi VCL and Lazarus LCL.(一个跨平台的Golang GUI库,底层绑定自Delphi VCL和Lazarus LCL。视频教程请加入QQ群获取。) | 348 | Go | 12/30 |
| 115 | [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程序热编译工具,提升开发效率 | 338 | Go | 01/17 |
| 116 | [objcoding/wxpay](https://github.com/objcoding/wxpay) | 微信支付(WeChat Pay) SDK for Golang | 337 | Go | 08/15 |
| 117 | [Echosong/beego_blog](https://github.com/Echosong/beego_blog) | beego+layui go入门开发 简洁美观的个人博客系统 | 337 | Go | 10/30 |
| 118 | [snowlyg/IrisAdminApi](https://github.com/snowlyg/IrisAdminApi) | iris 框架的后台api项目 | 336 | Go | 01/17 |
| 119 | [zgs225/alfred-youdao](https://github.com/zgs225/alfred-youdao) | 有道词典 for Alfred | 333 | Go | 04/30 |
| 120 | [wumansgy/GoAndBlockChainStudy](https://github.com/wumansgy/GoAndBlockChainStudy) | go and blockchain study note,欢迎各位志同道合的朋友一起完善,让更多的go或者区块链开发者能够有一份不错的学习资料 | 325 | Go | 01/15 |
| 121 | [qit-team/snow](https://github.com/qit-team/snow) | 简洁易用的Go业务框架 | 318 | Go | 12/13 |
| 122 | [it234/goapp](https://github.com/it234/goapp) | Gin + GORM + Casbin + vue-element-admin 实现的权限管理系统(golang) | 314 | Go | 01/14 |
| 123 | [wangbin/jiebago](https://github.com/wangbin/jiebago) | Jieba 分词 Go 语言版 | 303 | Go | 01/03 |
| 124 | [hb-go/micro](https://github.com/hb-go/micro) | go-micro 微服务实践,更多请关注Micro中国站☞ | 301 | Go | 10/19 |
| 125 | [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 环境 | 299 | Go | 01/16 |
| 126 | [EndlessCheng/mahjong-helper](https://github.com/EndlessCheng/mahjong-helper) | 日本麻将助手:牌效+防守+记牌(支持雀魂、天凤) | 298 | Go | 12/31 |
| 127 | [zc2638/go-standard](https://github.com/zc2638/go-standard) | Go常用规范定义,标准库方法使用示例,请注意这不是Go的中文版标准库(内含传送门) | 290 | Go | 12/17 |
| 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。 | 290 | Go | 12/03 |
| 129 | [Gourouting/giligili](https://github.com/Gourouting/giligili) | gin+gorm开发的视频网站示例 | 290 | Go | 09/04 |
| 130 | [xxjwxc/gormt](https://github.com/xxjwxc/gormt) | mysql database to golang gorm struct , golang gorm 数据库映射工具 | 284 | Go | 01/17 |
| 131 | [ego008/goyoubbs](https://github.com/ego008/goyoubbs) | golang 实现的youBBS,自动安装、更新HTTPS | 274 | Go | 01/07 |
| 132 | [chai2010/gopherchina2018-cgo-talk](https://github.com/chai2010/gopherchina2018-cgo-talk) | :book: GopherChina2018: 深入CGO编程 - 最新修订 | 269 | Go | 06/19 |
| 133 | [kplcloud/kplcloud](https://github.com/kplcloud/kplcloud) | 基于Kubernetes的PaaS平台 | 269 | Go | 01/16 |
| 134 | [Golangltd/LollipopGo](https://github.com/Golangltd/LollipopGo) | Golang语言社区 全球服游戏服务器框架,目前协议支持websocket、http及RPC,采用状态同步,愿景:打造竞技实时【比赛】对战游戏平台框架! 功能持续更新中... ... | 268 | Go | 07/02 |
| 135 | [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 分析,以及自动化重构等。 | 268 | Go | 01/18 |
| 136 | [indes/flowerss-bot](https://github.com/indes/flowerss-bot) | A telegram bot for rss reader. 一个支持应用内阅读的 Telegram RSS Bot。 | 264 | Go | 01/11 |
| 137 | [brokercap/Bifrost](https://github.com/brokercap/Bifrost) | Bifrost ---- 面向生产环境的 MySQL 同步到Redis,MongoDB等服务的异构中间件 | 262 | Go | 01/18 |
| 138 | [Terry-Ye/im](https://github.com/Terry-Ye/im) | 纯go实现的分布式im即时通讯系统,各层可单独部署,之间通过rpc通讯 | 260 | Go | 11/23 |
| 139 | [ma6254/FictionDown](https://github.com/ma6254/FictionDown) | 小说下载\|小说爬取\|起点\|笔趣阁\|导出Markdown\|导出txt\|转换epub\|广告过滤\|自动校对 | 259 | Go | 05/15 |
| 140 | [qiniu/arch](https://github.com/qiniu/arch) | 极客时间专栏《许式伟的架构课》相关的源代码:冯诺伊曼结构 | 259 | Go | 02/10 |
| 141 | [xinliangnote/go-gin-api](https://github.com/xinliangnote/go-gin-api) | 基于 Gin 进行模块化设计的 API 框架,封装了常用功能,使用简单,致力于进行快速的业务研发。比如,validator.v9 参数验证、签名验证中间件、日志记录中间件、异常捕获中间件、jaeger 链路追踪、gRPC 的使用 等等。 | 259 | Go | 11/16 |
| 142 | [hr3lxphr6j/bililive-go](https://github.com/hr3lxphr6j/bililive-go) | 一个直播录制工具 | 258 | Go | 11/14 |
| 143 | [esrrhs/pingtunnel](https://github.com/esrrhs/pingtunnel) | a tool that advertises tcp/udp/socks5 traffic as icmp traffic for forwarding.流量转发工具. | 251 | Go | 01/08 |
| 144 | [wxbool/video-srt-windows](https://github.com/wxbool/video-srt-windows) | 这是一个可以识别视频语音自动生成字幕SRT文件的开源 Windows-GUI 软件工具。 | 249 | Go | 12/29 |
| 145 | [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 | 248 | Go | 12/12 |
| 146 | [childe/gohangout](https://github.com/childe/gohangout) | golang版本的hangout, 希望能省些内存. 使用了自己写的Kafka lib .. 虚. 不过我们在生产环境已经使用近1年, kafka 版本从0.9.0.1到2.0都在使用, 目前情况稳定. 吞吐量在每天2000亿条以上. | 248 | Go | 01/15 |
| 147 | [dengsgo/fileboy](https://github.com/dengsgo/fileboy) | fileboy,文件变更监听通知系统,使用 Go 编写。Fileboy, File Change Monitoring Notification System, written with Go. | 245 | Go | 01/05 |
| 148 | [jaywcjlove/golang-tutorial](https://github.com/jaywcjlove/golang-tutorial) | Go语言快速入门 | 238 | Go | 02/08 |
| 149 | [idoubi/gonews](https://github.com/idoubi/gonews) | golang每日新闻检索平台 | 234 | Go | 11/13 |
| 150 | [zboya/golang_runtime_reading](https://github.com/zboya/golang_runtime_reading) | golang 1.10.2 runtime code reading - golang runtime源码分析。只有思考过,你才会印象深刻。 | 233 | Go | 07/22 |
| 151 | [esap/wechat](https://github.com/esap/wechat) | 微信SDK的golang实现,短小精悍,同时兼容【企业号/服务号/订阅号/小程序】 | 231 | Go | 07/24 |
| 152 | [qieguo2016/algorithm](https://github.com/qieguo2016/algorithm) | 常用算法和数据结构讲解,面试算法题/leetcode解题,提供golang/js版本 | 230 | Go | 12/22 |
| 153 | [Leslie1sMe/golang](https://github.com/Leslie1sMe/golang) | Golang的实战项目,学习笔记,代码例程汇总。 | 227 | Go | 12/24 |
| 154 | [link1st/gowebsocket](https://github.com/link1st/gowebsocket) | golang基于websocket单台机器支持百万连接分布式聊天(IM)系统 | 224 | Go | 01/08 |
| 155 | [lifei6671/interview-go](https://github.com/lifei6671/interview-go) | golang面试题集合 | 221 | Go | 08/19 |
| 156 | [go-spring/go-spring](https://github.com/go-spring/go-spring) | 基于 IoC 的 Go 后端一站式开发框架 🚀 | 218 | Go | 01/17 |
| 157 | [chanyipiaomiao/devops-api](https://github.com/chanyipiaomiao/devops-api) | Golang + Beego 编写 提供开发/运维常用操作的HTTP API接口: 手机归属地查询、IP地址查询、工作日节假日判断、微信报警、钉钉报警、2步验证、密码存储、发送邮件、生成随机密码等功能 | 216 | Go | 04/02 |
| 158 | [magiclvzs/antnet](https://github.com/magiclvzs/antnet) | A game server net framework in Golang go(Golang)游戏服务器网络框架 | 214 | Go | 01/16 |
| 159 | [pingguoxueyuan/gostudy](https://github.com/pingguoxueyuan/gostudy) | gostudy是关于golang的学习教程,采用通俗易懂、实践和理论相结合的方式,阐述golang各个方面的特性,尽快让初学者通过项目实践,快速的上手并成为经验丰富的golang开发者 | 211 | Go | 12/22 |
| 160 | [milkbobo/gopay](https://github.com/milkbobo/gopay) | golang支付:微信公众号,微信app,微信小程序,微信企业支付,支付宝网页版,支付宝app,支付宝企业支付 | 209 | Go | 08/27 |
| 161 | [deepzz0/goblog](https://github.com/deepzz0/goblog) | beego框架开发的博客,采用mongodb数据库,markdown编辑文章,集成评论、友情链接,云标签功能,带后台管理、站长验证、feed、sitemap,提供邮件报错,静态文件七牛云存储。我的博客: | 208 | Go | 12/28 |
| 162 | [countstarlight/homo](https://github.com/countstarlight/homo) | 一个基于离线唤醒,自然语言理解和情感分析的开源自然交互系统 | 204 | Go | 12/17 |
| 163 | [micro-in-cn/all-in-one](https://github.com/micro-in-cn/all-in-one) | micro 特性全合一项目示例 [归档] 移步至:https://github.com/micro-in-cn/tutorials | 204 | Go | 07/28 |
| 164 | [micro-plat/hydra](https://github.com/micro-plat/hydra) | 后端全栈式服务框架,提供接口服务器、web服务器、websocket服务器,RPC服务器、统一调度服务器、消息消费服务器 | 201 | Go | 01/14 |
| 165 | [pibigstar/go-demo](https://github.com/pibigstar/go-demo) | Go语言实例教程从入门到进阶,包括基础库使用、设计模式、面试易错点、工具类、对接第三方等 | 195 | Go | 01/12 |
| 166 | [yanjunhui/chat](https://github.com/yanjunhui/chat) | 微信企业号发送监控 for OpenFalcon | 194 | Go | 02/27 |
| 167 | [knownsec/gsm](https://github.com/knownsec/gsm) | 使用树莓派配合硬件来进行短信转发 | 193 | Go | 05/08 |
| 168 | [Tencent/bk-bcs](https://github.com/Tencent/bk-bcs) | 蓝鲸智云容器管理平台(BlueKing Container Service) | 193 | Go | 01/17 |
| 169 | [hequan2017/go-admin](https://github.com/hequan2017/go-admin) | go web api,包含gin+gorm+jwt+rbac等。 | 191 | Go | 12/30 |
| 170 | [islenbo/autossh](https://github.com/islenbo/autossh) | No password ssh client for Mac/Linux, one key login remote server. 一个SSH远程客户端,可一键登录远程服务器,主要用来弥补Mac/Linux Terminal SSH无法保存密码的不足。 | 189 | Go | 08/22 |
| 171 | [nvwa-io/nvwa-io](https://github.com/nvwa-io/nvwa-io) | Nvwa-io is a open source DevOps CI/CD auto-build and auto-deploy system(女娲 - 开源 DevOps CI/CD 自动构建和自动部署系统). http://nvwa-io.com | 186 | Go | 04/11 |
| 172 | [Shitaibin/golang_step_by_step](https://github.com/Shitaibin/golang_step_by_step) | Golang入门教程的文章、示例代码,喜欢就star,订阅就watch | 185 | Go | 01/14 |
| 173 | [tuotoo/qrcode](https://github.com/tuotoo/qrcode) | qrcode scanner ( decoder ) by golang 二维码扫描识别 | 184 | Go | 07/11 |
| 174 | [silsuer/golang-design-patterns](https://github.com/silsuer/golang-design-patterns) | 使用golang实现各种设计模式 | 183 | Go | 02/11 |
| 175 | [geektutu/7days-golang](https://github.com/geektutu/7days-golang) | 7 days Golang web framework from scratch (7天用Go动手写Web框架Gee[从零实现]) | 182 | Go | 01/18 |
| 176 | [Allenxuxu/microservices](https://github.com/Allenxuxu/microservices) | micro 微服务实例教程,包含JWT鉴权、熔断、监控、链路追踪、健康检查、跨域等 | 182 | Go | 12/27 |
| 177 | [nange/gospider](https://github.com/nange/gospider) | golang实现的爬虫框架,使用者只需关心页面规则,提供web管理界面。基于colly开发。 | 179 | Go | 01/15 |
| 178 | [lianxiangcloud/linkchain](https://github.com/lianxiangcloud/linkchain) | 享云链-郑和版本,由链享云打造的专注于数字经济创新业务的公链。 | 178 | Go | 01/17 |
| 179 | [issue9/identicon](https://github.com/issue9/identicon) | Go 语言版 identicon 头像产生工具 | 176 | Go | 09/06 |
| 180 | [afocus/captcha](https://github.com/afocus/captcha) | simple captcha for golang (go验证码生成器) | 173 | Go | 10/10 |
| 181 | [yehux/Coot](https://github.com/yehux/Coot) | 玩转 IFTTT 体验极客生活,互联网自动化神器 | 170 | Go | 08/15 |
| 182 | [sinksmell/lanblog](https://github.com/sinksmell/lanblog) | 懒人博客,前后端分离,Vue+Beego Restful api 开箱即用,部署简单,后台管理系统简洁美观。 | 168 | Go | 10/12 |
| 183 | [Leon2012/gimg](https://github.com/Leon2012/gimg) | golang实现的zimg | 168 | Go | 10/23 |
| 184 | [feiyu563/PrometheusAlert](https://github.com/feiyu563/PrometheusAlert) | Prometheus Alert是开源的运维告警中心消息转发系统,支持主流的监控系统Prometheus,日志系统Graylog和数据可视化系统Grafana发出的预警消息,支持钉钉,微信,华为云短信,腾讯云短信,腾讯云电话,阿里云短信,阿里云电话等 | 167 | Go | 01/18 |
| 185 | [antlinker/go-dirtyfilter](https://github.com/antlinker/go-dirtyfilter) | Golang基于DFA算法实现的敏感词过滤 | 165 | Go | 09/23 |
| 186 | [mattn/goemon](https://github.com/mattn/goemon) | 五右衛門 | 163 | Go | 01/08 |
| 187 | [freshcn/qqwry](https://github.com/freshcn/qqwry) | 纯真ip库的golang服务 | 163 | Go | 05/20 |
| 188 | [Tinywan/golang-tutorial](https://github.com/Tinywan/golang-tutorial) | :bouquet: Golang 系列教程(译) | 162 | Go | 11/13 |
| 189 | [mydevc/go-gin-mvc](https://github.com/mydevc/go-gin-mvc) | 基于框架gin+xorm搭建的MVC项目架子,适合初学者 | 162 | Go | 02/22 |
| 190 | [isucon/isucon7-qualify](https://github.com/isucon/isucon7-qualify) | ISUCON7 予選問題の参照実装とベンチマーカー | 160 | Go | 12/19 |
| 191 | [Gopusher/gateway](https://github.com/Gopusher/gateway) | 🚀构建分布式即时聊天、消息推送系统。 Building distributed instant messaging, push notification systems. | 157 | Go | 09/24 |
| 192 | [wumansgy/goEncrypt](https://github.com/wumansgy/goEncrypt) | go语言封装的各种对称加密和非对称加密,可以直接使用,包括3重DES,AES的CBC和CTR模式,还有RSA非对称加密,ECC椭圆曲线的加密和数字签名 | 155 | Go | 08/22 |
| 193 | [micro-in-cn/starter-kit](https://github.com/micro-in-cn/starter-kit) | Quick Go-Micro 快速开发包 | 153 | Go | 01/17 |
| 194 | [ItsWewin/go-chat](https://github.com/ItsWewin/go-chat) | Golang 高并发聊天程序/go chat room | 153 | Go | 12/18 |
| 195 | [gfandada/gserver](https://github.com/gfandada/gserver) | 通用的实时流golang框架,可以方便的创建游戏服务/聊天服务等 | 153 | Go | 04/16 |
| 196 | [link1st/go-stress-testing](https://github.com/link1st/go-stress-testing) | go 实现的压测工具,ab、locust、Jmeter压测工具介绍【单台机器100w连接压测实战】 | 152 | Go | 01/08 |
| 197 | [TNK-Studio/gortal](https://github.com/TNK-Studio/gortal) | 🚪A super lightweight jumpserver service developed using the Go language. 一个使用 Go 语言开发的,超级轻量的跳板机服务。 | 151 | Go | 12/17 |
| 198 | [Comdex/imgo](https://github.com/Comdex/imgo) | golang图像处理工具库(golang image process lib) | 150 | Go | 12/22 |
| 199 | [dwg255/landlord](https://github.com/dwg255/landlord) | 斗地主 | 150 | Go | 06/28 |
| 200 | [importcjj/sensitive](https://github.com/importcjj/sensitive) | 敏感词查找,验证,过滤和替换 🤓 FindAll, Validate, Filter and Replace words. | 150 | Go | 01/06 |
⬆ [回到目录](#目录)
<br/>
## PHP
| # | Repository | Description | Stars | Language | Updated |
| ---- | ------------------------------------------------------------ | ------------------------------------------------------------ | ----- | -------- | ------- |
| 1 | [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 | 6.4k | PHP | 12/04 |
| 2 | [helloqingfeng/Awsome-Front-End-learning-resource](https://github.com/helloqingfeng/Awsome-Front-End-learning-resource) | :octocat:GitHub最全的前端资源汇总仓库(包括前端学习、开发资源、求职面试等) | 6.3k | PHP | 11/29 |
| 3 | [fecshop/yii2_fecshop](https://github.com/fecshop/yii2_fecshop) | yii2 ( PHP ) fecmall(fecshop) core code used for ecommerce shop 多语言多货币多入口的开源电商 B2C 商城,支持移动端vue, app, html5,微信小程序微店,微信小程序商城等 | 3.7k | PHP | 01/15 |
| 4 | [hanc00l/wooyun_public](https://github.com/hanc00l/wooyun_public) | This repo is archived. Thanks for wooyun! 乌云公开漏洞、知识库爬虫和搜索 crawl and search for wooyun.org public bug(vulnerability) and drops | 3.6k | PHP | 07/17 |
| 5 | [johnlui/Learn-Laravel-5](https://github.com/johnlui/Learn-Laravel-5) | Laravel 5 系列入门教程 | 3.5k | PHP | 12/27 |
| 6 | [overtrue/pinyin](https://github.com/overtrue/pinyin) | :cn: 基于词库的中文转拼音优质解决方案 | 3.2k | PHP | 09/20 |
| 7 | [yansongda/pay](https://github.com/yansongda/pay) | 可能是我用过的最优雅的 Alipay 和 WeChat 的支付 SDK 扩展包了 | 3.1k | PHP | 01/12 |
| 8 | [cloudreve/Cloudreve](https://github.com/cloudreve/Cloudreve) | 🌈支持多家云存储的云盘系统 (A project helps you build your own cloud in minutes) | 3.0k | PHP | 12/29 |
| 9 | [fex-team/fis](https://github.com/fex-team/fis) | Front-end Integrated Solution - 前端集成解决方案, 最新版请进入 FIS3 https://github.com/fex-team/fis3 | 3.0k | PHP | 01/11 |
| 10 | [overtrue/laravel-wechat](https://github.com/overtrue/laravel-wechat) | 微信 SDK for Laravel, 基于 overtrue/wechat | 2.4k | PHP | 09/09 |
| 11 | [matyhtf/framework](https://github.com/matyhtf/framework) | SPF (Swoole PHP Framework),世界第一款基于Swoole扩展的PHP框架,开发者是Swoole创始人 | 2.1k | PHP | 01/16 |
| 12 | [overtrue/easy-sms](https://github.com/overtrue/easy-sms) | :calling: 一款满足你的多种发送需求的短信发送组件 | 2.0k | PHP | 12/27 |
| 13 | [helei112g/payment](https://github.com/helei112g/payment) | Payment是php版本的支付聚合第三方sdk,集成了微信支付、支付宝支付、招商一网通支付。提供统一的调用接口,方便快速接入各种支付、查询、退款、转账能力。服务端接入支付功能,方便、快捷。 | 2.0k | PHP | 12/17 |
| 14 | [summerblue/laravel-shop](https://github.com/summerblue/laravel-shop) | Laravel 电商实战教程的项目代码 | 2.0k | PHP | 01/13 |
| 15 | [jae-jae/QueryList](https://github.com/jae-jae/QueryList) | :spider: The progressive PHP crawler framework! 优雅的渐进式PHP采集框架。 | 1.9k | PHP | 05/31 |
| 16 | [pinguo/php-msf](https://github.com/pinguo/php-msf) | PHP微服务框架即Micro Service Framework For PHP | 1.8k | PHP | 01/23 |
| 17 | [maicong/music](https://github.com/maicong/music) | 音乐搜索器 - 多站合一音乐搜索解决方案 | 1.7k | PHP | 06/25 |
| 18 | [c0ny1/upload-labs](https://github.com/c0ny1/upload-labs) | 一个想帮你总结所有类型的上传漏洞的靶场 | 1.7k | PHP | 01/15 |
| 19 | [matyhtf/webim](https://github.com/matyhtf/webim) | 使用PHP+Swoole实现的网页即时聊天工具 | 1.6k | PHP | 10/22 |
| 20 | [baijunyao/thinkphp-bjyadmin](https://github.com/baijunyao/thinkphp-bjyadmin) | thinkphp 整合 Auth 权限管理、支付宝、微信支付、阿里 oss 、友盟推送、融云即时通讯、云通讯短信、Email 、Excel 、PDF 等等;基于 thinkphp 扩展了大量的功能;而不改动 thinkphp 核心;非常方便的升级、移植和使用; | 1.6k | PHP | 10/10 |
| 21 | [Qsnh/meedu](https://github.com/Qsnh/meedu) | 基于Laravel开发的在线教育点播收费系统。 | 1.4k | PHP | 01/16 |
| 22 | [SwooleDistributed/SwooleDistributed](https://github.com/SwooleDistributed/SwooleDistributed) | swoole 分布式全栈框架 | 1.4k | PHP | 04/30 |
| 23 | [ganlvtech/down_52pojie_cn](https://github.com/ganlvtech/down_52pojie_cn) | A single page file explorer that can be hosted on static website. 吾爱破解论坛 爱盘 https://down.52pojie.cn/ 页面的源代码 | 1.3k | PHP | 05/14 |
| 24 | [You2php/delete](https://github.com/You2php/delete) | (迫于压力,本项目停止维护,请尽快fork代码。1月1日之后删除项目)[免翻墙工具]A free and open-source youtube video proxy script [Written in PHP] | 1.3k | PHP | 04/23 |
| 25 | [honraytech/VueThink](https://github.com/honraytech/VueThink) | VueThink是一套基于Vue全家桶(Vue2.x + Vue-router2.x + Vuex)+ ThinkPHP5的前后端分离框架。 | 1.3k | PHP | 03/05 |
| 26 | [hightman/xunsearch](https://github.com/hightman/xunsearch) | 免费开源的中文搜索引擎,采用 C/C++ 编写 (基于 xapian 和 scws),提供 PHP 的开发接口和丰富文档 | 1.3k | PHP | 11/01 |
| 27 | [louislivi/SMProxy](https://github.com/louislivi/SMProxy) | Swoole MySQL Proxy 一个基于 MySQL 协议,Swoole 开发的MySQL数据库连接池。 A MySQL database connection pool based on MySQL protocol and Swoole. | 1.3k | PHP | 01/16 |
| 28 | [hui-ho/WebStack-Laravel](https://github.com/hui-ho/WebStack-Laravel) | 一个开源的网址导航网站项目,您可以拿来制作自己的网址导航。 | 1.2k | PHP | 12/23 |
| 29 | [helloxz/imgurl](https://github.com/helloxz/imgurl) | ImgURL是一个简单、纯粹的图床程序,让个人图床多一个选择。 | 1.2k | PHP | 09/02 |
| 30 | [zorlan/skycaiji](https://github.com/zorlan/skycaiji) | 蓝天采集器是一款免费的数据采集发布爬虫软件,采用php+mysql开发,可部署在云服务器,几乎能采集所有类型的网页,无缝对接各类CMS建站程序,免登录实时发布数据,全自动无需人工干预!是大数据、云时代网站数据自动化采集的最佳云端爬虫软件 | 1.2k | PHP | 09/25 |
| 31 | [zhanghuanchong/icon-workshop](https://github.com/zhanghuanchong/icon-workshop) | 图标工场 - 移动应用图标生成工具,一键生成所有尺寸的应用图标和启动图 | 1.1k | PHP | 09/03 |
| 32 | [SegmentFault/HyperDown](https://github.com/SegmentFault/HyperDown) | 一个结构清晰的,易于维护的,现代的PHP Markdown解析器 | 1.1k | PHP | 11/18 |
| 33 | [luofei614/SocketLog](https://github.com/luofei614/SocketLog) | 微信调试、API调试和AJAX的调试的工具,能将日志通过WebSocket输出到Chrome浏览器的console中 | 1.1k | PHP | 10/09 |
| 34 | [mashirozx/Sakura](https://github.com/mashirozx/Sakura) | A Wonderful WordPress Theme: 樱花庄的白猫博客主题 | 1.0k | PHP | 01/11 |
| 35 | [Piplin/Piplin](https://github.com/Piplin/Piplin) | :outbox_tray: An open source self-hosted continuous integration and deployment system - QQ群: 656868 | 1.0k | PHP | 12/31 |
| 36 | [Tai7sy/card-system](https://github.com/Tai7sy/card-system) | 个人在线发卡系统,高效安全的发卡平台 | 1.0k | PHP | 01/13 |
| 37 | [EleTeam/Shop-PHP-Yii2](https://github.com/EleTeam/Shop-PHP-Yii2) | EleTeam开源项目-电商全套解决方案之PHP版-Shop-for-PHP-Yii2。一个类似京东/天猫/淘宝的商城,有对应的APP支持,由EleTeam团队维护! | 991 | PHP | 09/24 |
| 38 | [TideSec/WDScanner](https://github.com/TideSec/WDScanner) | WDScanner平台目前实现了如下功能:分布式web漏洞扫描、客户管理、漏洞定期扫描、子域名枚举、端口扫描、网站爬虫、暗链检测、坏链检测、网站指纹搜集、专项漏洞检测、代理搜集及部署等功能。 | 979 | PHP | 07/04 |
| 39 | [thenbsp/wechat](https://github.com/thenbsp/wechat) | 微信公众平台第三方 SDK 开发包,优雅、健壮,可扩展,遵循 PSR 开发规范。 | 964 | PHP | 01/18 |
| 40 | [geesondog/rhaphp](https://github.com/geesondog/rhaphp) | RhaPHP是微信第三方管理平台,微信公众号管理系统,支持多公众号管理,CRM会员管理,小程序开发,APP接口开发、几乎集合微信功能,简洁、快速上手、快速开发微信各种各样应用。简洁、好用、快速、项目开发快几倍 。 | 926 | PHP | 12/28 |
| 41 | [fukuball/jieba-php](https://github.com/fukuball/jieba-php) | "結巴"中文分詞:做最好的 PHP 中文分詞、中文斷詞組件。 / "Jieba" (Chinese for "to stutter") Chinese text segmentation: built to be the best PHP Chinese word segmentation module. | 914 | PHP | 11/17 |
| 42 | [overtrue/api.yike.io](https://github.com/overtrue/api.yike.io) | 一刻社区后端 API 源码 | 902 | PHP | 01/01 |
| 43 | [MoeNetwork/Tieba-Cloud-Sign](https://github.com/MoeNetwork/Tieba-Cloud-Sign) | 百度贴吧云签到,在服务器上配置好就无需进行任何操作便可以实现贴吧的全自动签到。配合插件使用还可实现云灌水、点赞、封禁、删帖、审查等功能 | 873 | PHP | 12/20 |
| 44 | [gongfuxiang/shopxo](https://github.com/gongfuxiang/shopxo) | ShopXO免费开源商城系统、国内领先企业级B2C免费开源电商系统,包含PC、h5、微信小程序、支付宝小程序、百度小程序、头条&抖音小程序、QQ小程序,遵循Apache2开源协议发布、基于ThinkPHP5.1框架研发 | 868 | PHP | 01/17 |
| 45 | [bowu678/php_bugs](https://github.com/bowu678/php_bugs) | PHP代码审计分段讲解 | 861 | PHP | 06/04 |
| 46 | [Leslin/thinkphp5-restfulapi](https://github.com/Leslin/thinkphp5-restfulapi) | restful-api风格接口 APP接口 APP接口权限 oauth2.0 接口版本管理 接口鉴权 | 853 | PHP | 07/10 |
| 47 | [typecho-fans/plugins](https://github.com/typecho-fans/plugins) | Typecho开源插件集群 | 849 | PHP | 12/24 |
| 48 | [jitamin/jitamin](https://github.com/jitamin/jitamin) | :panda_face: Jitamin is a free software written in PHP, intended to handle the project management over the web. QQ群: 656868 | 827 | PHP | 09/12 |
| 49 | [ZhuFaner/shadowsocks-manage-system](https://github.com/ZhuFaner/shadowsocks-manage-system) | 科学上网管理系统 | 825 | PHP | 03/15 |
| 50 | [jianyan74/rageframe2](https://github.com/jianyan74/rageframe2) | 一个基于Yii2高级框架的快速开发应用引擎 | 789 | PHP | 01/10 |
| 51 | [osgochina/Donkey](https://github.com/osgochina/Donkey) | 基于swoole的定时器程序,支持秒级处理 | 777 | PHP | 12/02 |
| 52 | [peinhu/AetherUpload-Laravel](https://github.com/peinhu/AetherUpload-Laravel) | A Laravel package to upload large files 上传大文件的Laravel扩展包 | 735 | PHP | 11/18 |
| 53 | [yansongda/laravel-pay](https://github.com/yansongda/laravel-pay) | 可能是我用过的最优雅的 Alipay 和 WeChat 的 laravel 支付扩展包了 | 719 | PHP | 12/18 |
| 54 | [mylxsw/wizard](https://github.com/mylxsw/wizard) | Wizard是基于Laravel开发框架开发的一款开源项目(API)文档管理工具。 | 710 | PHP | 01/13 |
| 55 | [zhuifengshaonianhanlu/pikachu](https://github.com/zhuifengshaonianhanlu/pikachu) | 一个好玩的Web安全-漏洞测试平台 | 689 | PHP | 12/16 |
| 56 | [dedemao/alipay](https://github.com/dedemao/alipay) | 一个PHP文件搞定支付宝支付系列,包括电脑网站支付,手机网站支付,现金红包、扫码支付,JSAPI支付、单笔转账到支付宝账户、交易结算(分账、分润)、网页授权获取用户信息等 | 674 | PHP | 01/13 |
| 57 | [kevinyan815/Learning_Laravel_Kernel](https://github.com/kevinyan815/Learning_Laravel_Kernel) | Laravel核心代码学习 | 666 | PHP | 01/09 |
| 58 | [l3m0n/Bypass_Disable_functions_Shell](https://github.com/l3m0n/Bypass_Disable_functions_Shell) | 一个各种方式突破Disable_functions达到命令执行的shell | 665 | PHP | 06/18 |
| 59 | [hongriSec/PHP-Audit-Labs](https://github.com/hongriSec/PHP-Audit-Labs) | 一个关于PHP的代码审计项目 | 652 | PHP | 09/17 |
| 60 | [assimon/shanhufaka](https://github.com/assimon/shanhufaka) | 🚀珊瑚发卡系统 (专注一站式自动发货体系) | 642 | PHP | 01/14 |
| 61 | [gongwalker/ApiManager](https://github.com/gongwalker/ApiManager) | 接口文档管理工具 | 641 | PHP | 01/10 |
| 62 | [dedemao/weixinPay](https://github.com/dedemao/weixinPay) | 微信支付单文件版。一个PHP文件搞定微信支付系列。包括原生支付(扫码支付),H5支付,公众号支付,现金红包、企业付款到零钱等 | 633 | PHP | 11/05 |
| 63 | [wmhello/laravel_template_with_vue](https://github.com/wmhello/laravel_template_with_vue) | laravel5.5和vue.js结合的前后端分离项目模板。作为程序的起点,可以直接以此为基础来进行业务扩展。模板内容包括基础的用户管理和权限管理、日志管理、集成第三方登录,整合laravel-echo-server 实现了websocket 做到了消息的实时推送,并在此基础上,实现了聊天室和客服功能。权限管理包括后端Token认证和前端vue.js的动态权限,解决了前后端完整分离的情况下,vue.js的认证与权限相关的痛点,已在本人的多个项目中集成使用。 | 613 | PHP | 01/08 |
| 64 | [lizhichao/one](https://github.com/lizhichao/one) | 一个极简高性能php框架,支持[swoole \| php-fpm ]环境 | 595 | PHP | 01/03 |
| 65 | [zencodex/composer-mirror](https://github.com/zencodex/composer-mirror) | Composer 全量镜像发布于2017年3月,至今已不间断运行2年多。这个开源有助于理解 Composer 镜像的工作原理 | 593 | PHP | 09/27 |
| 66 | [zoujingli/wechat-php-sdk](https://github.com/zoujingli/wechat-php-sdk) | PHP微信SDK(微信平台 + 微信支付) | 579 | PHP | 10/10 |
| 67 | [easychen/LazyPHP](https://github.com/easychen/LazyPHP) | 轻框架。包含一个前端控制器,20个常用函数和用于页面布局的Layout系统,10分钟即可学会。LP采用BSD开源协议,在代码内保留框架名即可随意商用。 | 577 | PHP | 07/13 |
| 68 | [Beipy/BeipyVideoResolution](https://github.com/Beipy/BeipyVideoResolution) | 北漂鱼解析开源视频播放框架,响应式布局! | 576 | PHP | 06/12 |
| 69 | [poetries/mywiki](https://github.com/poetries/mywiki) | :books:收集整理日常发现的好资源、前端资源汇总 | 565 | PHP | 01/12 |
| 70 | [insoxin/API](https://github.com/insoxin/API) | 姬长信API For Docker 一个基于多种编程语言开源免费不限制提供生活常用,出行服务,开发工具,金融服务,通讯服务和公益大数据的平台. | 550 | PHP | 10/08 |
| 71 | [xu42/pay](https://github.com/xu42/pay) | 个人网站即时到账收款解决方案 / Personal website instant payment solution | 548 | PHP | 05/28 |
| 72 | [Acmesec/DoraBox](https://github.com/Acmesec/DoraBox) | DoraBox - 基础Web漏洞训练靶场 | 546 | PHP | 07/11 |
| 73 | [xiebruce/PicUploader](https://github.com/xiebruce/PicUploader) | 一个还不错的图床工具,支持Mac/Win/Linux服务器、支持压缩后上传、添加图片或文字水印、多文件同时上传、同时上传到多个云、右击任意文件上传、快捷键上传剪贴板截图、Web版上传、支持作为Mweb发布图片接口、作为PicGo、ShareX、uPic等的自定义图床,支持在服务器上部署作为图床接口,支持上传任意格式文件。目前支持的云有:七牛、阿里、腾讯、华为、网易、京东、百度、又拍、青云、Ucloud、sm.ms、Imgur、Github、Gitee(码云)、微博、Nextcloud、Cloudinary、Chevereto、Minio、Aws s3、金山、个人服务器(sftp)、本地(即Pi ... | 519 | PHP | 01/14 |
| 74 | [wanglelecc/laracms](https://github.com/wanglelecc/laracms) | LaraCMS 是在学习 laravel ( web 开发实战进阶 + 实战构架 API 服务器) 过程中产生的一个业余作品,试图通过简单的方式,快速构建一套基本的企业站同时保留很灵活的扩展能力和优雅的代码方式,当然这些都得益Laravel的优秀设计。同时LaraCMS 也是一个学习Laravel 不错的参考示例。 | 518 | PHP | 12/03 |
| 75 | [susers/Writeups](https://github.com/susers/Writeups) | 国内各大CTF赛题及writeup整理 | 517 | PHP | 11/02 |
| 76 | [Yurunsoft/PaySDK](https://github.com/Yurunsoft/PaySDK) | PHP 集成支付 SDK ,集成了支付宝、微信支付的支付接口和其它相关接口的操作。可以轻松嵌入支持 PHP >= 5.4 的任何系统中。宇润PHP全家桶技术支持群:17916227 | 505 | PHP | 01/06 |
| 77 | [ecjia/ecjia-daojia](https://github.com/ecjia/ecjia-daojia) | EC+(ecjia)到家是一款可开展O2O业务的移动电商系统。它包含:移动端APP,采用原生模式开发,覆盖使用iOS 及Android系统的移 动终端;后台系统,针对平台日常运营维护的平台后台,针对入驻店铺管理的商家后台,独立并行;移动端H5,能够灵活部署于微信及其他APP、网页等。 | 498 | PHP | 01/06 |
| 78 | [zhuzhichao/ip-location-zh](https://github.com/zhuzhichao/ip-location-zh) | 获取 IP 地址的真实地理位置 | 495 | PHP | 11/14 |
| 79 | [bupt1987/html-parser](https://github.com/bupt1987/html-parser) | php html parser,类似与PHP Simple HTML DOM Parser,但是比它快好几倍 | 488 | PHP | 08/17 |
| 80 | [letwang/HookPHP](https://github.com/letwang/HookPHP) | HookPHP基于C扩展搭建内置AI编程的架构系统-支持微服务部署\|热插拔业务组件-集成业务模型\|权限模型\|UI组件库\|多模板\|多平台\|多域名\|多终端\|多语言-含常驻内存\|前后分离\|API平台\|LUA QQ群:679116380 | 485 | PHP | 11/26 |
| 81 | [l3m0n/pentest_tools](https://github.com/l3m0n/pentest_tools) | 收集一些小型实用的工具 | 480 | PHP | 01/22 |
| 82 | [nick-bai/snake](https://github.com/nick-bai/snake) | 🚀thinkphp5.1 + layui 实现的带rbac的基础管理后台,方便快速开发法使用 | 478 | PHP | 11/07 |
| 83 | [Yurunsoft/imi](https://github.com/Yurunsoft/imi) | imi 是基于 PHP 协程应用开发框架,它支持 HttpApi、WebSocket、TCP、UDP 应用开发。QQ群:17916227 | 466 | PHP | 01/17 |
| 84 | [72crm/72crm](https://github.com/72crm/72crm) | 悟空CRM-基于TP5.0+vue+ElementUI的前后端分离CRM系统 | 463 | PHP | 12/21 |
| 85 | [bingcool/swoolefy](https://github.com/bingcool/swoolefy) | swoolefy是一个基于swoole实现的轻量级、高性能、协程级、开放性的API应用服务框架 | 461 | PHP | 01/04 |
| 86 | [anerg2046/sns_auth](https://github.com/anerg2046/sns_auth) | 通用第三方登录SDK,支持微信,微信扫码,QQ,微博登录,支付宝登录,Facebook,Line,Twitter,Google | 460 | PHP | 11/11 |
| 87 | [jpush/jpush-api-php-client](https://github.com/jpush/jpush-api-php-client) | JPush's officially supported PHP client library for accessing JPush APIs. 极光推送官方支持的 PHP 版本服务器端 SDK。 | 453 | PHP | 11/26 |
| 88 | [mingyoung/dingtalk](https://github.com/mingyoung/dingtalk) | 🌈 EasyDingTalk - 钉钉 SDK | 445 | PHP | 12/06 |
| 89 | [lbbniu/WebWechat](https://github.com/lbbniu/WebWechat) | 网页微信PHP登录的实现 | 439 | PHP | 01/21 |
| 90 | [fucongcong/GroupCo](https://github.com/fucongcong/GroupCo) | 优雅的PHP异步协程框架,支持服务化调用,支持统一配置中心,适用于API、Http Server、Rpc Server、构建微服务、中间件。适用于高并发,io密集型场景 | 437 | PHP | 12/23 |
| 91 | [mojisrc/fashop](https://github.com/mojisrc/fashop) | php开源商城系统,基于swoole、easyswoole框架开发 | 432 | PHP | 07/09 |
| 92 | [HerbertKarajan/Fe-Interview-questions](https://github.com/HerbertKarajan/Fe-Interview-questions) | 目前最全的前端开发面试题及答案 | 429 | PHP | 10/31 |
| 93 | [toxmc/statistics](https://github.com/toxmc/statistics) | 一个运用php与swoole实现的统计监控系统 | 428 | PHP | 10/09 |
| 94 | [TarsPHP/TarsPHP](https://github.com/TarsPHP/TarsPHP) | 基础目录,聚合所有其他目录,包含文档和例子 | 427 | PHP | 12/21 |
| 95 | [jxlwqq/id-validator](https://github.com/jxlwqq/id-validator) | 中华人民共和国居民身份证、中华人民共和国港澳居民居住证以及中华人民共和国台湾居民居住证号码验证工具(PHP Composer 版) | 425 | PHP | 01/03 |
| 96 | [zblogcn/zblogphp](https://github.com/zblogcn/zblogphp) | Z-BlogPHP博客程序 | 422 | PHP | 01/17 |
| 97 | [xaboy/form-builder](https://github.com/xaboy/form-builder) | PHP表单生成器,快速生成现代化的form表单。包含复选框、单选框、输入框、下拉选择框等元素以及,省市区三级联动,时间选择,日期选择,颜色选择,文件/图片上传等功能。 | 421 | PHP | 01/16 |
| 98 | [jacobcyl/Aliyun-oss-storage](https://github.com/jacobcyl/Aliyun-oss-storage) | 阿里云OSS laravel storage Filesystem adapter, 打造Laravel最好的OSS Storage扩展. | 419 | PHP | 12/03 |
| 99 | [zzjzz9266a/91porn_php](https://github.com/zzjzz9266a/91porn_php) | 最简单的91porn爬虫php版本 | 418 | PHP | 12/29 |
| 100 | [chenlinzhong/face-login](https://github.com/chenlinzhong/face-login) | 基于mtcnn/facenet/tensorflow 实现人脸识别登录系统 | 410 | PHP | 05/18 |
| 101 | [itbdw/ip-database](https://github.com/itbdw/ip-database) | 免费IP数据库 (纯真IP库,已经格式为国家、省、市、县、运营商)❤️ 🇨🇳 | 404 | PHP | 08/20 |