forked from GrowingGit/GitHub-Chinese-Top-Charts
-
Notifications
You must be signed in to change notification settings - Fork 8
/
README.md
2153 lines (2088 loc) · 459 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月10日;
#### 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++ | 87.5k | Java | 01/09 |
| 2 | [jackfrued/Python-100-Days](https://github.com/jackfrued/Python-100-Days) | Python - 100天从新手到大师 | 75.5k | Jupyter Notebook | 01/08 |
| 3 | [justjavac/free-programming-books-zh_CN](https://github.com/justjavac/free-programming-books-zh_CN) | :books: 免费的计算机编程类中文书籍,欢迎投稿 | 62.2k | - | 12/29 |
| 4 | [xingshaocheng/architect-awesome](https://github.com/xingshaocheng/architect-awesome) | 后端架构师技术图谱 | 42.3k | - | 12/16 |
| 5 | [scutan90/DeepLearning-500-questions](https://github.com/scutan90/DeepLearning-500-questions) | 深度学习500问,以问答形式对常用的概率知识、线性代数、机器学习、深度学习、计算机视觉等热点问题进行阐述,以帮助自己及有需要的读者。 全书分为18个章节,50余万字。由于水平有限,书中不妥之处恳请广大读者批评指正。 未完待续............ 如有意合作,联系[email protected] 版权所有,违权必究 Tan 2018.06 | 36.1k | - | 01/07 |
| 6 | [bailicangdu/vue2-elm](https://github.com/bailicangdu/vue2-elm) | 基于 vue2 + vuex 构建一个具有 45 个页面的大型单页面应用 | 31.7k | Vue | 10/09 |
| 7 | [justjavac/awesome-wechat-weapp](https://github.com/justjavac/awesome-wechat-weapp) | 微信小程序开发资源汇总 :100: | 29.3k | - | 12/27 |
| 8 | [testerSunshine/12306](https://github.com/testerSunshine/12306) | 12306智能刷票,订票 | 27.7k | Python | 01/08 |
| 9 | [apachecn/AiLearning](https://github.com/apachecn/AiLearning) | AiLearning: 机器学习 - MachineLearning - ML、深度学习 - DeepLearning - DL、自然语言处理 NLP | 22.6k | Python | 01/03 |
| 10 | [lib-pku/libpku](https://github.com/lib-pku/libpku) | 贵校课程资料民间整理 | 21.8k | TeX | 01/07 |
| 11 | [sentsin/layui](https://github.com/sentsin/layui) | 采用自身模块规范编写的前端 UI 框架,遵循原生 HTML/CSS/JS 的书写形式,极低门槛,拿来即用。 | 20.8k | JavaScript | 01/08 |
| 12 | [geekcompany/ResumeSample](https://github.com/geekcompany/ResumeSample) | Resume template for Chinese programmers . 程序员简历模板系列。包括PHP程序员简历模板、iOS程序员简历模板、Android程序员简历模板、Web前端程序员简历模板、Java程序员简历模板、C/C++程序员简历模板、NodeJS程序员简历模板、架构师简历模板以及通用程序员简历模板 | 20.6k | - | 11/23 |
| 13 | [ityouknow/spring-boot-examples](https://github.com/ityouknow/spring-boot-examples) | about learning Spring Boot via examples. Spring Boot 教程、技术栈示例代码,快速简单上手教程。 | 20.4k | Java | 12/20 |
| 14 | [alibaba/druid](https://github.com/alibaba/druid) | 阿里巴巴数据库事业部出品,为监控而生的数据库连接池 | 20.0k | Java | 01/07 |
| 15 | [scwang90/SmartRefreshLayout](https://github.com/scwang90/SmartRefreshLayout) | 🔥下拉刷新、上拉加载、二级刷新、淘宝二楼、RefreshLayout、OverScroll,Android智能下拉刷新框架,支持越界回弹、越界拖动,具有极强的扩展性,集成了几十种炫酷的Header和 Footer。 | 19.8k | Java | 01/06 |
| 16 | [Tencent/wepy](https://github.com/Tencent/wepy) | 小程序组件化开发框架 | 19.6k | JavaScript | 01/09 |
| 17 | [littlecodersh/ItChat](https://github.com/littlecodersh/ItChat) | A complete and graceful API for Wechat. 微信个人号接口、微信机器人及命令行微信,三十行即可自定义个人号机器人。 | 19.5k | Python | 01/07 |
| 18 | [iikira/BaiduPCS-Go](https://github.com/iikira/BaiduPCS-Go) | 百度网盘客户端 - Go语言编写 | 19.5k | Go | 12/21 |
| 19 | [alibaba/flutter-go](https://github.com/alibaba/flutter-go) | flutter 开发者帮助 APP,包含 flutter 常用 140+ 组件的demo 演示与中文文档 | 19.4k | Dart | 01/03 |
| 20 | [Meituan-Dianping/mpvue](https://github.com/Meituan-Dianping/mpvue) | 基于 Vue.js 的小程序开发框架,从底层支持 Vue.js 语法和构建工具体系。 | 19.3k | JavaScript | 12/29 |
| 21 | [SwiftGGTeam/the-swift-programming-language-in-chinese](https://github.com/SwiftGGTeam/the-swift-programming-language-in-chinese) | 中文版 Apple 官方 Swift 教程《The Swift Programming Language》 | 19.1k | CSS | 12/27 |
| 22 | [alibaba/arthas](https://github.com/alibaba/arthas) | Alibaba Java Diagnostic Tool Arthas/Alibaba Java诊断利器Arthas | 19.1k | Java | 12/31 |
| 23 | [julycoding/The-Art-Of-Programming-By-July](https://github.com/julycoding/The-Art-Of-Programming-By-July) | 本项目曾冲到全球第一,干货集锦见本页面最底部,另完整精致的纸质版《编程之法:面试和算法心得》已在京东/当当上销售 | 18.5k | C | 12/27 |
| 24 | [formulahendry/955.WLB](https://github.com/formulahendry/955.WLB) | 955 不加班的公司名单 - 工作 955,work–life balance (工作与生活的平衡) | 18.4k | - | 12/19 |
| 25 | [jobbole/awesome-python-cn](https://github.com/jobbole/awesome-python-cn) | Python资源大全中文版,包括:Web框架、网络爬虫、模板引擎、数据库、数据可视化、图片处理等,由伯乐在线持续更新。 | 17.8k | Makefile | 01/02 |
| 26 | [googlehosts/hosts](https://github.com/googlehosts/hosts) | 镜像:https://coding.net/u/scaffrey/p/hosts/git | 17.1k | - | 01/08 |
| 27 | [ruanyf/jstraining](https://github.com/ruanyf/jstraining) | 全栈工程师培训材料 | 17.1k | - | 11/12 |
| 28 | [davideuler/architecture.of.internet-product](https://github.com/davideuler/architecture.of.internet-product) | 互联网公司技术架构,微信/淘宝/微博/腾讯/阿里/美团点评/百度/Google/Facebook/Amazon/eBay的架构,欢迎PR补充 | 16.8k | - | 04/13 |
| 29 | [reactnativecn/react-native-guide](https://github.com/reactnativecn/react-native-guide) | React Native指南汇集了各类react-native学习资源、开源App和组件 | 15.6k | - | 08/11 |
| 30 | [mqyqingfeng/Blog](https://github.com/mqyqingfeng/Blog) | 冴羽写博客的地方,预计写四个系列:JavaScript深入系列、JavaScript专题系列、ES6系列、React系列。 | 15.0k | - | 11/21 |
| 31 | [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 |
| 32 | [shuzheng/zheng](https://github.com/shuzheng/zheng) | 基于Spring+SpringMVC+Mybatis分布式敏捷开发系统架构,提供整套公共微服务服务模块:集中权限管理(单点登录)、内容管理、支付中心、用户管理(支持第三方登录)、微信平台、存储系统、配置中心、日志分析、任务和通知等,支持服务治理、监控和追踪,努力为中小型企业打造全方位J2EE企业级开发解决方案。 | 14.9k | Java | 11/13 |
| 33 | [judasn/IntelliJ-IDEA-Tutorial](https://github.com/judasn/IntelliJ-IDEA-Tutorial) | IntelliJ IDEA 简体中文专题教程 | 14.7k | - | 01/09 |
| 34 | [chaozh/awesome-blockchain-cn](https://github.com/chaozh/awesome-blockchain-cn) | 收集所有区块链(BlockChain)技术开发相关资料,包括Fabric和Ethereum开发资料 | 14.6k | JavaScript | 10/06 |
| 35 | [fengdu78/Coursera-ML-AndrewNg-Notes](https://github.com/fengdu78/Coursera-ML-AndrewNg-Notes) | 吴恩达老师的机器学习课程个人笔记 | 14.4k | HTML | 12/16 |
| 36 | [bannedbook/fanqiang](https://github.com/bannedbook/fanqiang) | 翻墙-科学上网 | 14.0k | JavaScript | 01/09 |
| 37 | [wangshub/wechat_jump_game](https://github.com/wangshub/wechat_jump_game) | 微信《跳一跳》Python 辅助 | 13.9k | Python | 12/17 |
| 38 | [Binaryify/NeteaseCloudMusicApi](https://github.com/Binaryify/NeteaseCloudMusicApi) | 网易云音乐 Node.js API service | 13.6k | JavaScript | 12/19 |
| 39 | [lenve/vhr](https://github.com/lenve/vhr) | 微人事是一个前后端分离的人力资源管理系统,项目采用SpringBoot+Vue开发。 | 13.4k | Java | 01/08 |
| 40 | [wangzheng0822/algo](https://github.com/wangzheng0822/algo) | 数据结构和算法必知必会的50个代码实现 | 13.2k | Python | 12/23 |
| 41 | [QSCTech/zju-icicles](https://github.com/QSCTech/zju-icicles) | 浙江大学课程攻略共享计划 | 15.2k | C | 12/07 |
| 42 | [hzlzh/Best-App](https://github.com/hzlzh/Best-App) | 收集&推荐优秀的 Apps/硬件/技巧/周边等 | 13.8k | - | 11/04 |
| 43 | [Awesome-HarmonyOS/HarmonyOS](https://github.com/Awesome-HarmonyOS/HarmonyOS) | A curated list of awesome things related to HarmonyOS. 华为鸿蒙操作系统。 | 13.4k | C | 09/09 |
| 44 | [YMFE/yapi](https://github.com/YMFE/yapi) | YApi 是一个可本地部署的、打通前后端及QA的、可视化的接口管理平台 | 13.4k | JavaScript | 01/02 |
| 45 | [didi/DoraemonKit](https://github.com/didi/DoraemonKit) | 简称 "DoKit" 。一款功能齐全的客户端( iOS 、Android、微信小程序 )研发助手,你值得拥有。 | 12.9k | Java | 01/09 |
| 46 | [CarGuo/GSYVideoPlayer](https://github.com/CarGuo/GSYVideoPlayer) | 视频播放器(IJKplayer、ExoPlayer、MediaPlayer),HTTPS,支持弹幕,外挂字幕,支持滤镜、水印、gif截图,片头广告、中间广告,多个同时播放,支持基本的拖动,声音、亮度调节,支持边播边缓存,支持视频自带rotation的旋转(90,270之类),重力旋转与手动旋转的同步支持,支持列表播放 ,列表全屏动画,视频加载速度,列表小窗口支持拖动,动画效果,调整比例,多分辨率切换,支持切换播放器,进度条小窗口预览,列表切换详情页面无缝播放,rtsp、concat、mpeg。 | 12.8k | Java | 01/07 |
| 47 | [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~ | 12.8k | Python | 01/08 |
| 48 | [syhyz1990/baiduyun](https://github.com/syhyz1990/baiduyun) | 🖖油猴脚本 一个脚本搞定百度网盘下载 https://www.baiduyun.wiki | 12.6k | JavaScript | 12/30 |
| 49 | [geeeeeeeeek/git-recipes](https://github.com/geeeeeeeeek/git-recipes) | 🥡 Git recipes in Chinese by Zhongyi Tong. 高质量的Git中文教程. | 12.6k | - | 03/05 |
| 50 | [dianping/cat](https://github.com/dianping/cat) | CAT 作为服务端项目基础组件,提供了 Java, C/C++, Node.js, Python, Go 等多语言客户端,已经在美团点评的基础架构中间件框架(MVC框架,RPC框架,数据库框架,缓存框架等,消息队列,配置系统等)深度集成,为美团点评各业务线提供系统丰富的性能指标、健康状况、实时告警等。 | 12.5k | Java | 12/26 |
| 51 | [dcloudio/mui](https://github.com/dcloudio/mui) | 最接近原生APP体验的高性能框架 | 12.4k | JavaScript | 11/18 |
| 52 | [wuyouzhuguli/SpringAll](https://github.com/wuyouzhuguli/SpringAll) | 循序渐进,学习Spring Boot、Spring Boot & Shiro、Spring Cloud、Spring Security & Spring Security OAuth2,博客Spring系列源码 | 12.4k | Java | 11/19 |
| 53 | [alibaba/easyexcel](https://github.com/alibaba/easyexcel) | 快速、简单避免OOM的java处理Excel工具 | 12.4k | Java | 01/03 |
| 54 | [alibaba/canal](https://github.com/alibaba/canal) | 阿里巴巴 MySQL binlog 增量订阅&消费组件 | 12.2k | Java | 01/04 |
| 55 | [kon9chunkit/GitHub-Chinese-Top-Charts](https://github.com/kon9chunkit/GitHub-Chinese-Top-Charts) | :cn: GitHub中文排行榜,帮助你发现高分优秀中文项目、更高效地吸收国人的优秀经验成果;榜单每周更新一次,敬请关注! | 12.2k | Python | 12/08 |
| 56 | [jobbole/awesome-java-cn](https://github.com/jobbole/awesome-java-cn) | Java资源大全中文版,包括开发库、开发工具、网站、博客、微信、微博等,由伯乐在线持续更新。 | 12.1k | - | 01/02 |
| 57 | [JeffLi1993/springboot-learning-example](https://github.com/JeffLi1993/springboot-learning-example) | spring boot 实践学习案例,是 spring boot 初学者及核心技术巩固的最佳实践。另外写博客,用 OpenWrite。 | 12.1k | Java | 10/15 |
| 58 | [xuxueli/xxl-job](https://github.com/xuxueli/xxl-job) | A distributed task scheduling framework.(分布式任务调度平台XXL-JOB) | 12.0k | Java | 01/06 |
| 59 | [brettwooldridge/HikariCP](https://github.com/brettwooldridge/HikariCP) | 光 HikariCP・A solid, high-performance, JDBC connection pool at last. | 12.0k | Java | 01/06 |
| 60 | [getlantern/download](https://github.com/getlantern/download) | Lantern官方版本下载 蓝灯 翻墙 科学上网 外网 加速器 梯子 路由 | 12.0k | - | 12/10 |
| 61 | [jumpserver/jumpserver](https://github.com/jumpserver/jumpserver) | Jumpserver是全球首款完全开源的堡垒机,是符合 4A 的专业运维审计系统。 | 11.9k | JavaScript | 01/09 |
| 62 | [PKUanonym/REKCARC-TSC-UHT](https://github.com/PKUanonym/REKCARC-TSC-UHT) | 清华大学计算机系课程攻略 Guidance for courses in Department of Computer Science and Technology, Tsinghua University | 11.8k | HTML | 01/08 |
| 63 | [facert/awesome-spider](https://github.com/facert/awesome-spider) | 爬虫集合 | 11.7k | - | 10/31 |
| 64 | [youfou/wxpy](https://github.com/youfou/wxpy) | 微信机器人 / 可能是最优雅的微信个人号 API ✨✨ | 11.6k | Python | 07/15 |
| 65 | [taizilongxu/interview_python](https://github.com/taizilongxu/interview_python) | 关于Python的面试题 | 11.6k | Shell | 10/25 |
| 66 | [jikexueyuanwiki/tensorflow-zh](https://github.com/jikexueyuanwiki/tensorflow-zh) | 谷歌全新开源人工智能系统TensorFlow官方文档中文版 | 11.6k | TeX | 08/04 |
| 67 | [youzan/vant-weapp](https://github.com/youzan/vant-weapp) | 轻量、可靠的小程序 UI 组件库 | 11.6k | JavaScript | 01/09 |
| 68 | [jaywcjlove/linux-command](https://github.com/jaywcjlove/linux-command) | Linux命令大全搜索工具,内容包含Linux命令手册、详解、学习、搜集。https://git.io/linux | 11.4k | HTML | 01/04 |
| 69 | [phobal/ivideo](https://github.com/phobal/ivideo) | 一个可以观看国内主流视频平台所有视频的客户端(Mac、Windows、Linux) A client that can watch video of domestic(China) mainstream video platform | 11.3k | JavaScript | 09/29 |
| 70 | [alibaba/ARouter](https://github.com/alibaba/ARouter) | 💪 A framework for assisting in the renovation of Android componentization (帮助 Android App 进行组件化改造的路由框架) | 11.3k | Java | 12/31 |
| 71 | [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 | 12/09 |
| 72 | [Curzibn/Luban](https://github.com/Curzibn/Luban) | Luban(鲁班)—Image compression with efficiency very close to WeChat Moments/可能是最接近微信朋友圈的图片压缩算法 | 11.3k | Java | 09/12 |
| 73 | [521xueweihan/git-tips](https://github.com/521xueweihan/git-tips) | :trollface:Git的奇技淫巧 | 11.2k | - | 10/26 |
| 74 | [pjialin/py12306](https://github.com/pjialin/py12306) | 🚂 12306 购票助手,支持集群,多账号,多任务购票以及 Web 页面管理 | 10.9k | Python | 01/07 |
| 75 | [ruanyf/weekly](https://github.com/ruanyf/weekly) | 科技爱好者周刊,每周五发布 | 10.8k | - | 01/03 |
| 76 | [linlinjava/litemall](https://github.com/linlinjava/litemall) | 又一个小商城。litemall = Spring Boot后端 + Vue管理员前端 + 微信小程序用户前端 + Vue用户移动端 | 10.8k | Java | 01/09 |
| 77 | [EastWorld/wechat-app-mall](https://github.com/EastWorld/wechat-app-mall) | 微信小程序商城,微信小程序微店 | 10.7k | JavaScript | 01/06 |
| 78 | [vnpy/vnpy](https://github.com/vnpy/vnpy) | 基于Python的开源量化交易平台开发框架 | 10.6k | C++ | 01/09 |
| 79 | [dyc87112/SpringBoot-Learning](https://github.com/dyc87112/SpringBoot-Learning) | Spring Boot基础教程,Spring Boot 2.x版本连载中!!! | 10.6k | - | 12/13 |
| 80 | [qyuhen/book](https://github.com/qyuhen/book) | 学习笔记 | 10.5k | - | 04/26 |
| 81 | [alibaba/Sentinel](https://github.com/alibaba/Sentinel) | A lightweight powerful flow control component enabling reliability and monitoring for microservices. (轻量级的流量控制、熔断降级 Java 库) | 10.5k | Java | 01/07 |
| 82 | [Tamsiree/RxTool](https://github.com/Tamsiree/RxTool) | Android开发人员不得不收集的工具类集合 \| 支付宝支付 \| 微信支付(统一下单) \| 微信分享 \| Zip4j压缩(支持分卷压缩与加密) \| 一键集成UCrop选择圆形头像 \| 一键集成二维码和条形码的扫描与生成 \| 常用Dialog \| WebView的封装可播放视频 \| 仿斗鱼滑动验证码 \| Toast封装 \| 震动 \| GPS \| Location定位 \| 图片缩放 \| Exif 图片添加地理位置信息(经纬度) \| 蛛网等级 \| 颜色选择器 \| ArcGis \| VTPK \| 编译运行一下说不定会找到惊喜 | 10.4k | Java | 12/28 |
| 83 | [Yixiaohan/show-me-the-code](https://github.com/Yixiaohan/show-me-the-code) | Python 练习册,每天一个小程序 | 10.4k | - | 11/11 |
| 84 | [thx/RAP](https://github.com/thx/RAP) | Web接口管理工具,开源免费,接口自动化,MOCK数据自动生成,自动化测试,企业级管理。阿里妈妈MUX团队出品!阿里巴巴都在用!1000+公司的选择!RAP2已发布请移步至https://github.com/thx/rap2-delos | 10.3k | JavaScript | 06/29 |
| 85 | [apachecn/awesome-algorithm](https://github.com/apachecn/awesome-algorithm) | 项目永久冻结,迁移至新地址: | 10.3k | Python | 07/17 |
| 86 | [hollischuang/toBeTopJavaer](https://github.com/hollischuang/toBeTopJavaer) | To Be Top Javaer - Java工程师成神之路 | 10.3k | Java | 01/06 |
| 87 | [shimohq/chinese-programmer-wrong-pronunciation](https://github.com/shimohq/chinese-programmer-wrong-pronunciation) | 中国程序员容易发音错误的单词 | 10.2k | - | 12/28 |
| 88 | [DIYgod/RSSHub](https://github.com/DIYgod/RSSHub) | 🍰 万物皆可 RSS | 10.2k | JavaScript | 01/09 |
| 89 | [zergtant/pytorch-handbook](https://github.com/zergtant/pytorch-handbook) | pytorch handbook是一本开源的书籍,目标是帮助那些希望和使用PyTorch进行深度学习开发和研究的朋友快速入门,其中包含的Pytorch教程全部通过测试保证可以成功运行 | 9.9k | Jupyter Notebook | 12/15 |
| 90 | [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 ... | 9.9k | Dart | 01/03 |
| 91 | [Tim9Liu9/TimLiu-iOS](https://github.com/Tim9Liu9/TimLiu-iOS) | iOS开发常用三方库、插件、知名博客等等 | 9.9k | - | 11/28 |
| 92 | [jeasonlzy/okhttp-OkGo](https://github.com/jeasonlzy/okhttp-OkGo) | OkGo - 3.0 震撼来袭,该库是基于 Http 协议,封装了 OkHttp 的网络请求框架,比 Retrofit 更简单易用,支持 RxJava,RxJava2,支持自定义缓存,支持批量断点下载管理和批量上传管理功能 | 9.8k | Java | 07/03 |
| 93 | [Jack-Cherish/python-spider](https://github.com/Jack-Cherish/python-spider) | :rainbow:Python3网络爬虫实战 | 9.8k | Python | 12/25 |
| 94 | [peterq/pan-light](https://github.com/peterq/pan-light) | 百度网盘不限速客户端, golang + qt5, 跨平台图形界面 | 9.7k | Go | 11/08 |
| 95 | [fengdu78/deeplearning_ai_books](https://github.com/fengdu78/deeplearning_ai_books) | deeplearning.ai(吴恩达老师的深度学习课程笔记及资源) | 9.7k | HTML | 12/02 |
| 96 | [leisurelicht/wtfpython-cn](https://github.com/leisurelicht/wtfpython-cn) | wtfpython的中文翻译/施工结束/ 能力有限,欢迎帮我改进翻译 | 9.7k | Python | 12/26 |
| 97 | [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 ... | 9.6k | Java | 01/09 |
| 98 | [ryanhanwu/How-To-Ask-Questions-The-Smart-Way](https://github.com/ryanhanwu/How-To-Ask-Questions-The-Smart-Way) | 本文原文由知名 Hacker Eric S. Raymond 所撰寫,教你如何正確的提出技術問題並獲得你滿意的答案。 | 9.6k | JavaScript | 10/16 |
| 99 | [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.4k | Java | 01/07 |
| 100 | [youth5201314/banner](https://github.com/youth5201314/banner) | Android广告图片轮播控件,支持无限循环和多种主题,可以灵活设置轮播样式、动画、轮播和切换时间、位置、图片加载框架等! | 9.3k | Java | 12/12 |
| 101 | [qianguyihao/Web](https://github.com/qianguyihao/Web) | 前端入门和进阶学习笔记,超详细的Web前端学习图文教程。从零开始学前端,做一名精致的前端工程师。持续更新... | 9.3k | JavaScript | 12/29 |
| 102 | [bailicangdu/node-elm](https://github.com/bailicangdu/node-elm) | 基于 node.js + Mongodb 构建的后台系统 | 9.3k | JavaScript | 12/28 |
| 103 | [haizlin/fe-interview](https://github.com/haizlin/fe-interview) | 前端面试每日 3+1,以面试题来驱动学习,提倡每日学习与思考,每天进步一点!每天早上5点纯手工发布面试题(死磕自己,愉悦大家) | 9.2k | JavaScript | 01/09 |
| 104 | [meolu/walle-web](https://github.com/meolu/walle-web) | walle - 瓦力 Devops开源项目代码部署平台 | 9.2k | Python | 01/03 |
| 105 | [JessYanCoding/AndroidAutoSize](https://github.com/JessYanCoding/AndroidAutoSize) | 🔥 A low-cost Android screen adaptation solution (今日头条屏幕适配方案终极版,一个极低成本的 Android 屏幕适配方案). | 9.1k | Java | 11/08 |
| 106 | [ruanyf/free-books](https://github.com/ruanyf/free-books) | 互联网上的免费书籍 | 8.8k | - | 01/09 |
| 107 | [jhao104/proxy_pool](https://github.com/jhao104/proxy_pool) | Python爬虫代理IP池(proxy pool) | 8.7k | Python | 01/09 |
| 108 | [cnodejs/nodeclub](https://github.com/cnodejs/nodeclub) | :baby_chick:Nodeclub 是使用 Node.js 和 MongoDB 开发的社区系统 | 8.7k | JavaScript | 01/03 |
| 109 | [pagehelper/Mybatis-PageHelper](https://github.com/pagehelper/Mybatis-PageHelper) | Mybatis通用分页插件 | 8.6k | Java | 12/24 |
| 110 | [AlloyTeam/Mars](https://github.com/AlloyTeam/Mars) | 腾讯移动 Web 前端知识库 | 8.6k | - | 01/11 |
| 111 | [bailicangdu/vue2-manage](https://github.com/bailicangdu/vue2-manage) | 基于 vue + element-ui 的后台管理系统 | 8.5k | Vue | 01/25 |
| 112 | [darknessomi/musicbox](https://github.com/darknessomi/musicbox) | 网易云音乐命令行版本 | 8.0k | Python | 12/21 |
| 113 | [stanzhai/be-a-professional-programmer](https://github.com/stanzhai/be-a-professional-programmer) | 成为专业程序员路上用到的各种优秀资料、神器及框架 | 8.0k | - | 12/20 |
| 114 | [LuckSiege/PictureSelector](https://github.com/LuckSiege/PictureSelector) | Picture Selector Library for Android or 图片选择器 | 7.9k | Java | 01/06 |
| 115 | [daniulive/SmarterStreaming](https://github.com/daniulive/SmarterStreaming) | 国内外为数不多致力于极致体验的超强全自研跨平台(windows/android/iOS)流媒体内核,通过模块化自由组合,支持实时RTMP推流、RTSP推流、RTMP播放器、RTSP播放器、录像、多路流媒体转发、音视频导播、动态视频合成、音频混音、直播互动、内置轻量级RTSP服务等,比快更快,业界真正靠谱的超低延迟直播SDK(1秒内,低延迟模式下200~400ms)。 | 7.8k | Java | 01/09 |
| 116 | [aalansehaiyang/technology-talk](https://github.com/aalansehaiyang/technology-talk) | 汇总java生态圈常用技术框架、开源中间件,系统架构、数据库、大公司架构案例、常用三方类库、项目管理、线上问题排查、个人成长、思考等知识 | 7.7k | - | 12/26 |
| 117 | [sikaozhe1997/Xin-Yue](https://github.com/sikaozhe1997/Xin-Yue) | 岳昕:致北大师生与北大外国语学院的一封公开信 | 7.7k | HTML | 05/05 |
| 118 | [frank-lam/fullstack-tutorial](https://github.com/frank-lam/fullstack-tutorial) | 🚀 fullstack tutorial 2019,后台技术栈/架构师之路/全栈开发社区,春招/秋招/校招/面试 | 7.5k | Java | 11/19 |
| 119 | [easychen/howto-make-more-money](https://github.com/easychen/howto-make-more-money) | 程序员如何优雅的挣零花钱 | 7.5k | - | 12/22 |
| 120 | [adobe-fonts/source-han-sans](https://github.com/adobe-fonts/source-han-sans) | Source Han Sans \| 思源黑体 \| 思源黑體 \| 思源黑體 香港 \| 源ノ角ゴシック \| 본고딕 | 7.5k | HolyC | 12/04 |
| 121 | [weilanwl/ColorUI](https://github.com/weilanwl/ColorUI) | 鲜亮的高饱和色彩,专注视觉的小程序组件库 | 7.4k | Vue | 12/17 |
| 122 | [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 |
| 123 | [paascloud/paascloud-master](https://github.com/paascloud/paascloud-master) | spring cloud + vue + oAuth2.0全家桶实战,前后端分离模拟商城,完整的购物流程、后端运营平台,可以实现快速搭建企业级微服务项目。支持微信登录等三方登录。 | 7.1k | Java | 11/13 |
| 124 | [icindy/wxParse](https://github.com/icindy/wxParse) | wxParse-微信小程序富文本解析自定义组件,支持HTML及markdown解析 | 7.0k | JavaScript | 05/05 |
| 125 | [hs-web/hsweb-framework](https://github.com/hs-web/hsweb-framework) | hsweb (haʊs wɛb) 是一个用于快速搭建企业后台管理系统的基础项目,集成一揽子便捷功能如:便捷的通用增删改查,强大的权限管理,动态多数据源,动态表单,在线数据库维护等. 基于 spring-boot,mybaits. | 7.0k | Java | 01/07 |
| 126 | [fangzesheng/free-api](https://github.com/fangzesheng/free-api) | 收集免费的接口服务,做一个api的搬运工 | 7.0k | - | 01/09 |
| 127 | [hoodiearon/w3-goto-world](https://github.com/hoodiearon/w3-goto-world) | 🍅冲出你的窗口,Git镜像、Clone 及AWS下载加速、FREE SS/SSR/VMESS、WireGuard配置分享、IPFS、暗网等其他资源存储库 | 6.9k | JavaScript | 12/01 |
| 128 | [banchichen/TZImagePickerController](https://github.com/banchichen/TZImagePickerController) | 一个支持多选、选原图和视频的图片选择器,同时有预览、裁剪功能,支持iOS6+。 A clone of UIImagePickerController, support picking multiple photos、original photo、video, also allow preview photo and video, support iOS6+ | 6.9k | Objective-C | 01/05 |
| 129 | [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 |
| 130 | [sylnsfar/qrcode](https://github.com/sylnsfar/qrcode) | artistic QR Code in Python (Animated GIF qr code)- Python 艺术二维码生成器 (GIF动态二维码、图片二维码) | 6.8k | Python | 11/27 |
| 131 | [hongyangAndroid/okhttputils](https://github.com/hongyangAndroid/okhttputils) | [停止维护]okhttp的辅助类 | 6.8k | Java | 12/09 |
| 132 | [opendigg/awesome-github-wechat-weapp](https://github.com/opendigg/awesome-github-wechat-weapp) | 微信小程序开源项目库汇总 | 6.8k | - | 06/15 |
| 133 | [h2y/Shadowrocket-ADBlock-Rules](https://github.com/h2y/Shadowrocket-ADBlock-Rules) | 提供多款 Shadowrocket 规则,带广告过滤功能。用于 iOS 未越狱设备选择性地自动翻墙。 | 6.8k | Python | 12/14 |
| 134 | [crazycodeboy/TakePhoto](https://github.com/crazycodeboy/TakePhoto) | 一款用于在Android设备上获取照片(拍照或从相册、文件中选择)、裁剪图片、压缩图片的开源工具库 | 6.7k | Java | 08/26 |
| 135 | [ShusenTang/Dive-into-DL-PyTorch](https://github.com/ShusenTang/Dive-into-DL-PyTorch) | 本项目将《动手学深度学习》(Dive into Deep Learning)原书中的MXNet实现改为PyTorch实现。 | 6.7k | Jupyter Notebook | 01/07 |
| 136 | [justauth/JustAuth](https://github.com/justauth/JustAuth) | :100: 史上最全的整合第三方登录的开源库。目前已支持Github、Gitee、微博、钉钉、百度、Coding、腾讯云开发者平台、OSChina、支付宝、QQ、微信、淘宝、Google、Facebook、抖音、领英、小米、微软、今日头条、Teambition、StackOverflow、Pinterest、人人、华为、企业微信、酷家乐、Gitlab、美团、饿了么和推特等第三方平台的授权登录。 Login, so easy! | 6.7k | Java | 01/07 |
| 137 | [mzlogin/awesome-adb](https://github.com/mzlogin/awesome-adb) | :lollipop: ADB Usage Complete / ADB 用法大全 | 6.7k | - | 11/01 |
| 138 | [modood/Administrative-divisions-of-China](https://github.com/modood/Administrative-divisions-of-China) | 中华人民共和国行政区划:省级(省份直辖市自治区)、 地级(城市)、 县级(区县)、 乡级(乡镇街道)、 村级(村委会居委会) ,中国省市区镇村二级三级四级五级联动地址数据 Node.js 爬虫。 | 6.7k | JavaScript | 10/29 |
| 139 | [inferjay/AndroidDevTools](https://github.com/inferjay/AndroidDevTools) | 收集整理Android开发所需的Android SDK、开发中用到的工具、Android开发教程、Android设计规范,免费的设计素材等。 | 6.6k | - | 12/24 |
| 140 | [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 |
| 141 | [bailicangdu/react-pxq](https://github.com/bailicangdu/react-pxq) | 一个 react + redux 的完整项目 和 个人总结 | 6.6k | JavaScript | 08/23 |
| 142 | [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.5k | Python | 12/17 |
| 143 | [open-power-workgroup/Hospital](https://github.com/open-power-workgroup/Hospital) | OpenPower工作组收集汇总的医院开放数据 | 6.5k | HTML | 06/07 |
| 144 | [Embedding/Chinese-Word-Vectors](https://github.com/Embedding/Chinese-Word-Vectors) | 100+ Chinese Word Vectors 上百种预训练中文词向量 | 6.5k | Python | 04/04 |
| 145 | [xirong/my-git](https://github.com/xirong/my-git) | Individual collecting material of learning git(有关 git 的学习资料) | 6.4k | - | 10/11 |
| 146 | [zhaoolee/ChineseBQB](https://github.com/zhaoolee/ChineseBQB) | 🇨🇳Chinese sticker pack,More joy / 表情包的博物馆, Github最有毒的仓库, 中国表情包大集合, 聚欢乐~ | 6.4k | CSS | 01/08 |
| 147 | [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 |
| 148 | [DeathKing/Learning-SICP](https://github.com/DeathKing/Learning-SICP) | MIT视频公开课《计算机程序的构造和解释》中文化项目及课程学习资料搜集。 | 6.3k | Ruby | 10/12 |
| 149 | [bingoogolapple/BGAQRCode-Android](https://github.com/bingoogolapple/BGAQRCode-Android) | QRCode 扫描二维码、扫描条形码、相册获取图片后识别、生成带 Logo 二维码、支持微博微信 QQ 二维码扫描样式 | 6.3k | C | 11/02 |
| 150 | [toutiaoio/awesome-architecture](https://github.com/toutiaoio/awesome-architecture) | 架构师技术图谱,助你早日成为架构师 | 6.3k | - | 01/08 |
| 151 | [seaswalker/spring-analysis](https://github.com/seaswalker/spring-analysis) | Spring源码阅读 | 6.3k | Java | 01/09 |
| 152 | [helloqingfeng/Awsome-Front-End-learning-resource](https://github.com/helloqingfeng/Awsome-Front-End-learning-resource) | :octocat:GitHub最全的前端资源汇总仓库(包括前端学习、开发资源、求职面试等) | 6.3k | PHP | 11/29 |
| 153 | [polaris1119/The-Golang-Standard-Library-by-Example](https://github.com/polaris1119/The-Golang-Standard-Library-by-Example) | Golang标准库。对于程序员而言,标准库与语言本身同样重要,它好比一个百宝箱,能为各种常见的任务提供完美的解决方案。以示例驱动的方式讲解Golang的标准库。 | 6.3k | Go | 10/14 |
| 154 | [haotian-wang/google-access-helper](https://github.com/haotian-wang/google-access-helper) | 谷歌访问助手破解版 | 6.2k | JavaScript | 06/09 |
| 155 | [XXApple/AndroidLibs](https://github.com/XXApple/AndroidLibs) | :fire:正在成为史上最全分类 Android 开源大全~~~~(长期更新 Star 一下吧) | 6.1k | - | 12/17 |
| 156 | [zhongyang219/TrafficMonitor](https://github.com/zhongyang219/TrafficMonitor) | 这是一个用于显示当前网速、CPU及内存利用率的桌面悬浮窗软件,并支持任务栏显示,支持更换皮肤。 | 6.1k | C++ | 12/28 |
| 157 | [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 |
| 158 | [luyishisi/Anti-Anti-Spider](https://github.com/luyishisi/Anti-Anti-Spider) | 越来越多的网站具有反爬虫特性,有的用图片隐藏关键数据,有的使用反人类的验证码,建立反反爬虫的代码仓库,通过与不同特性的网站做斗争(无恶意)提高技术。(欢迎提交难以采集的网站)(因工作原因,项目暂停) | 5.9k | Python | 09/24 |
| 159 | [renzifeng/ZFPlayer](https://github.com/renzifeng/ZFPlayer) | Support customization of any player SDK and control layer(支持定制任何播放器SDK和控制层) | 5.9k | Objective-C | 01/04 |
| 160 | [greatghoul/remote-working](https://github.com/greatghoul/remote-working) | 收集整理远程工作相关的资料 | 5.9k | Ruby | 01/07 |
| 161 | [tumobi/nideshop-mini-program](https://github.com/tumobi/nideshop-mini-program) | NideShop:基于Node.js+MySQL开发的开源微信小程序商城(微信小程序) | 5.8k | JavaScript | 09/19 |
| 162 | [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 |
| 163 | [deeplearning-ai/machine-learning-yearning-cn](https://github.com/deeplearning-ai/machine-learning-yearning-cn) | Machine Learning Yearning 中文版 - 《机器学习训练秘籍》 - Andrew Ng 著 | 5.6k | CSS | 10/16 |
| 164 | [xtyxtyx/sorry](https://github.com/xtyxtyx/sorry) | 在线制作`sorry 为所欲为`的gif | 5.6k | CSS | 04/08 |
| 165 | [CoolPhilChen/SJTU-Courses](https://github.com/CoolPhilChen/SJTU-Courses) | 上海交通大学课程资料分享 | 5.6k | - | 07/23 |
| 166 | [chyingp/nodejs-learning-guide](https://github.com/chyingp/nodejs-learning-guide) | Nodejs学习笔记以及经验总结,公众号"程序猿小卡" | 5.5k | Ruby | 12/22 |
| 167 | [alibaba/otter](https://github.com/alibaba/otter) | 阿里巴巴分布式数据库同步系统(解决中美异地机房) | 5.5k | Java | 12/05 |
| 168 | [smuyyh/BookReader](https://github.com/smuyyh/BookReader) | :closed_book: "任阅" 网络小说阅读器,3D翻页效果、txt/pdf/epub书籍阅读、Wifi传书~ | 5.5k | Java | 06/25 |
| 169 | [DuGuQiuBai/Java](https://github.com/DuGuQiuBai/Java) | 27天成为Java大神 | 5.7k | Java | 10/31 |
| 170 | [xcatliu/typescript-tutorial](https://github.com/xcatliu/typescript-tutorial) | TypeScript 入门教程 | 5.7k | JavaScript | 01/09 |
| 171 | [chokcoco/CSS-Inspiration](https://github.com/chokcoco/CSS-Inspiration) | CSS Inspiration,在这里找到写 CSS 的灵感! | 5.2k | JavaScript | 12/24 |
| 172 | [dyc87112/SpringCloud-Learning](https://github.com/dyc87112/SpringCloud-Learning) | Spring Cloud基础教程,持续连载更新中 | 5.2k | Java | 12/13 |
| 173 | [nusr/hacker-laws-zh](https://github.com/nusr/hacker-laws-zh) | 💻📖对开发人员有用的定律、理论、原则和模式。(Laws, Theories, Principles and Patterns that developers will find useful.) | 5.2k | - | 01/02 |
| 174 | [yifeikong/reverse-interview-zh](https://github.com/yifeikong/reverse-interview-zh) | 技术面试最后反问面试官的话 | 5.2k | - | 10/23 |
| 175 | [Meituan-Dianping/walle](https://github.com/Meituan-Dianping/walle) | Android Signature V2 Scheme签名下的新一代渠道包打包神器 | 5.1k | Java | 12/23 |
| 176 | [crownpku/Awesome-Chinese-NLP](https://github.com/crownpku/Awesome-Chinese-NLP) | A curated list of resources for Chinese NLP 中文自然语言处理相关资料 | 5.1k | - | 12/19 |
| 177 | [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.3k | Java | 01/05 |
| 178 | [hyb1996/Auto.js](https://github.com/hyb1996/Auto.js) | A UiAutomator on android, does not need root access(安卓平台上的JavaScript自动化工具) | 5.3k | Java | 12/01 |
| 179 | [yanue/V2rayU](https://github.com/yanue/V2rayU) | V2rayU,基于v2ray核心的mac版客户端,用于科学上网,使用swift编写,支持vmess,shadowsocks,socks5等服务协议,支持订阅, 支持二维码,剪贴板导入,手动配置,二维码分享等 | 5.3k | Swift | 12/27 |
| 180 | [TalkingData/iview-weapp](https://github.com/TalkingData/iview-weapp) | 一套高质量的微信小程序 UI 组件库 | 5.3k | CSS | 12/25 |
| 181 | [OpenFlutter/Flutter-Notebook](https://github.com/OpenFlutter/Flutter-Notebook) | 日更的FlutterDemo合集,今天你fu了吗 | 5.0k | Dart | 12/30 |
| 182 | [houtianze/bypy](https://github.com/houtianze/bypy) | Python client for Baidu Yun (Personal Cloud Storage) 百度云/百度网盘Python客户端 | 5.0k | Python | 11/16 |
| 183 | [opsnull/follow-me-install-kubernetes-cluster](https://github.com/opsnull/follow-me-install-kubernetes-cluster) | 和我一步步部署 kubernetes 集群 | 5.0k | Shell | 01/06 |
| 184 | [heibaiying/BigData-Notes](https://github.com/heibaiying/BigData-Notes) | 大数据入门指南 :star: | 5.0k | Java | 01/02 |
| 185 | [fex-team/ueditor](https://github.com/fex-team/ueditor) | rich text 富文本编辑器 | 5.0k | JavaScript | 07/23 |
| 186 | [1c7/Crash-Course-Computer-Science-Chinese](https://github.com/1c7/Crash-Course-Computer-Science-Chinese) | :computer: 计算机速成课 \| Crash Course 字幕组 (全40集 2018-5-1 精校完成) | 4.9k | JavaScript | 10/28 |
| 187 | [giantray/stackoverflow-java-top-qa](https://github.com/giantray/stackoverflow-java-top-qa) | stackoverflow上Java相关回答整理翻译 | 4.9k | - | 09/17 |
| 188 | [zouzg/mybatis-generator-gui](https://github.com/zouzg/mybatis-generator-gui) | mybatis-generator界面工具,让你生成代码更简单更快捷 | 4.9k | Java | 10/10 |
| 189 | [sohutv/cachecloud](https://github.com/sohutv/cachecloud) | 搜狐视频(sohu tv)Redis私有云平台 | 4.8k | Java | 11/14 |
| 190 | [ityouknow/spring-cloud-examples](https://github.com/ityouknow/spring-cloud-examples) | Spring Cloud 学习案例,服务发现、服务治理、链路追踪、服务监控等 | 4.8k | Java | 01/03 |
| 191 | [liyifeng1994/ssm](https://github.com/liyifeng1994/ssm) | 手把手教你整合最优雅SSM框架:SpringMVC + Spring + MyBatis | 4.8k | Java | 12/22 |
| 192 | [TwoWater/Python](https://github.com/TwoWater/Python) | 最良心的 Python 教程: | 4.7k | - | 12/17 |
| 193 | [HcySunYang/vue-design](https://github.com/HcySunYang/vue-design) | 📖 master分支:《渲染器》 elegant分支:逐行级别的源码分析 | 4.6k | JavaScript | 11/28 |
| 194 | [Exrick/xmall](https://github.com/Exrick/xmall) | 基于SOA架构的分布式电商购物商城 前后端分离 前台商城:Vue全家桶 后台管理系统:Dubbo/SSM/Elasticsearch/Redis/MySQL/ActiveMQ/Shiro/Zookeeper等 | 4.6k | Java | 12/26 |
| 195 | [PeterDing/iScript](https://github.com/PeterDing/iScript) | 各种脚本 -- 关于 虾米 xiami.com, 百度网盘 pan.baidu.com, 115网盘 115.com, 网易音乐 music.163.com, 百度音乐 music.baidu.com, 360网盘/云盘 yunpan.cn, 视频解析 flvxz.com, bt torrent ↔ magnet, ed2k 搜索, tumblr 图片下载, unzip | 4.6k | Python | 10/11 |
| 196 | [guodongxiaren/README](https://github.com/guodongxiaren/README) | README文件语法解读,即Github Flavored Markdown语法介绍 | 4.6k | - | 11/01 |
| 197 | [yezihaohao/react-admin](https://github.com/yezihaohao/react-admin) | :sparkles: react-admin system solution : react 后台管理系统解决方案 | 4.6k | TypeScript | 01/07 |
| 198 | [wklken/k-vim](https://github.com/wklken/k-vim) | vim配置 | 4.6k | Vim script | 11/18 |
| 199 | [easzlab/kubeasz](https://github.com/easzlab/kubeasz) | 使用Ansible脚本安装K8S集群,介绍组件交互原理,方便直接,不受国内网络环境影响 | 4.6k | Shell | 01/07 |
| 200 | [LiuBoyu/blockchain](https://github.com/LiuBoyu/blockchain) | 区块链 - 中文资源 | 4.6k | - | 07/01 |
⬆ [回到目录](#目录)
<br/>
## Java
| # | Repository | Description | Stars | Language | Updated |
| ---- | ------------------------------------------------------------ | ------------------------------------------------------------ | ----- | -------- | ------- |
| 1 | [CyC2018/CS-Notes](https://github.com/CyC2018/CS-Notes) | :books: 技术面试必备基础知识、Leetcode、计算机操作系统、计算机网络、系统设计、Java、Python、C++ | 87.5k | Java | 01/09 |
| 2 | [MisterBooo/LeetCodeAnimation](https://github.com/MisterBooo/LeetCodeAnimation) | Demonstrate all the questions on LeetCode in the form of animation.(用动画的形式呈现解LeetCode题目的思路) | 47.9k | Java | 01/09 |
| 3 | [doocs/advanced-java](https://github.com/doocs/advanced-java) | 😮 互联网 Java 工程师进阶知识完全扫盲:涵盖高并发、分布式、高可用、微服务、海量数据处理等领域知识,后端同学必看,前端同学也可学习 | 37.6k | Java | 01/05 |
| 4 | [macrozheng/mall](https://github.com/macrozheng/mall) | mall项目是一套电商系统,包括前台商城系统及后台管理系统,基于SpringBoot+MyBatis实现,采用Docker容器化部署。 前台商城系统包含首页门户、商品推荐、商品搜索、商品展示、购物车、订单流程、会员中心、客户服务、帮助中心等模块。 后台管理系统包含商品管理、订单管理、会员管理、促销管理、运营管理、内容管理、统计报表、财务管理、权限管理、设置等模块。 | 28.4k | Java | 01/08 |
| 5 | [proxyee-down-org/proxyee-down](https://github.com/proxyee-down-org/proxyee-down) | http下载工具,基于http代理,支持多连接分块下载 | 25.4k | Java | 10/09 |
| 6 | [ityouknow/spring-boot-examples](https://github.com/ityouknow/spring-boot-examples) | about learning Spring Boot via examples. Spring Boot 教程、技术栈示例代码,快速简单上手教程。 | 20.4k | Java | 12/20 |
| 7 | [alibaba/druid](https://github.com/alibaba/druid) | 阿里巴巴数据库事业部出品,为监控而生的数据库连接池 | 20.0k | Java | 01/07 |
| 8 | [scwang90/SmartRefreshLayout](https://github.com/scwang90/SmartRefreshLayout) | 🔥下拉刷新、上拉加载、二级刷新、淘宝二楼、RefreshLayout、OverScroll,Android智能下拉刷新框架,支持越界回弹、越界拖动,具有极强的扩展性,集成了几十种炫酷的Header和 Footer。 | 19.8k | Java | 01/06 |
| 9 | [ctripcorp/apollo](https://github.com/ctripcorp/apollo) | Apollo(阿波罗)是携程框架部门研发的分布式配置中心,能够集中化管理应用不同环境、不同集群的配置,配置修改后能够实时推送到应用端,并且具备规范的权限、流程治理等特性,适用于微服务配置管理场景。 | 19.2k | Java | 01/08 |
| 10 | [alibaba/arthas](https://github.com/alibaba/arthas) | Alibaba Java Diagnostic Tool Arthas/Alibaba Java诊断利器Arthas | 19.1k | Java | 12/31 |
| 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.4k | Java | 01/08 |
| 13 | [didi/DoraemonKit](https://github.com/didi/DoraemonKit) | 简称 "DoKit" 。一款功能齐全的客户端( iOS 、Android、微信小程序 )研发助手,你值得拥有。 | 12.9k | Java | 01/09 |
| 14 | [CarGuo/GSYVideoPlayer](https://github.com/CarGuo/GSYVideoPlayer) | 视频播放器(IJKplayer、ExoPlayer、MediaPlayer),HTTPS,支持弹幕,外挂字幕,支持滤镜、水印、gif截图,片头广告、中间广告,多个同时播放,支持基本的拖动,声音、亮度调节,支持边播边缓存,支持视频自带rotation的旋转(90,270之类),重力旋转与手动旋转的同步支持,支持列表播放 ,列表全屏动画,视频加载速度,列表小窗口支持拖动,动画效果,调整比例,多分辨率切换,支持切换播放器,进度条小窗口预览,列表切换详情页面无缝播放,rtsp、concat、mpeg。 | 12.8k | Java | 01/07 |
| 15 | [dianping/cat](https://github.com/dianping/cat) | CAT 作为服务端项目基础组件,提供了 Java, C/C++, Node.js, Python, Go 等多语言客户端,已经在美团点评的基础架构中间件框架(MVC框架,RPC框架,数据库框架,缓存框架等,消息队列,配置系统等)深度集成,为美团点评各业务线提供系统丰富的性能指标、健康状况、实时告警等。 | 12.5k | Java | 12/26 |
| 16 | [wuyouzhuguli/SpringAll](https://github.com/wuyouzhuguli/SpringAll) | 循序渐进,学习Spring Boot、Spring Boot & Shiro、Spring Cloud、Spring Security & Spring Security OAuth2,博客Spring系列源码 | 12.4k | Java | 11/19 |
| 17 | [alibaba/easyexcel](https://github.com/alibaba/easyexcel) | 快速、简单避免OOM的java处理Excel工具 | 12.4k | Java | 01/03 |
| 18 | [alibaba/canal](https://github.com/alibaba/canal) | 阿里巴巴 MySQL binlog 增量订阅&消费组件 | 12.2k | Java | 01/04 |
| 19 | [xuxueli/xxl-job](https://github.com/xuxueli/xxl-job) | A distributed task scheduling framework.(分布式任务调度平台XXL-JOB) | 12.0k | Java | 01/06 |
| 20 | [brettwooldridge/HikariCP](https://github.com/brettwooldridge/HikariCP) | 光 HikariCP・A solid, high-performance, JDBC connection pool at last. | 12.0k | Java | 01/06 |
| 21 | [alibaba/ARouter](https://github.com/alibaba/ARouter) | 💪 A framework for assisting in the renovation of Android componentization (帮助 Android App 进行组件化改造的路由框架) | 11.3k | Java | 12/31 |
| 22 | [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 | 12/09 |
| 23 | [Curzibn/Luban](https://github.com/Curzibn/Luban) | Luban(鲁班)—Image compression with efficiency very close to WeChat Moments/可能是最接近微信朋友圈的图片压缩算法 | 11.3k | Java | 09/12 |
| 24 | [linlinjava/litemall](https://github.com/linlinjava/litemall) | 又一个小商城。litemall = Spring Boot后端 + Vue管理员前端 + 微信小程序用户前端 + Vue用户移动端 | 10.8k | Java | 01/09 |
| 25 | [alibaba/Sentinel](https://github.com/alibaba/Sentinel) | A lightweight powerful flow control component enabling reliability and monitoring for microservices. (轻量级的流量控制、熔断降级 Java 库) | 10.5k | Java | 01/07 |
| 26 | [Tamsiree/RxTool](https://github.com/Tamsiree/RxTool) | Android开发人员不得不收集的工具类集合 \| 支付宝支付 \| 微信支付(统一下单) \| 微信分享 \| Zip4j压缩(支持分卷压缩与加密) \| 一键集成UCrop选择圆形头像 \| 一键集成二维码和条形码的扫描与生成 \| 常用Dialog \| WebView的封装可播放视频 \| 仿斗鱼滑动验证码 \| Toast封装 \| 震动 \| GPS \| Location定位 \| 图片缩放 \| Exif 图片添加地理位置信息(经纬度) \| 蛛网等级 \| 颜色选择器 \| ArcGis \| VTPK \| 编译运行一下说不定会找到惊喜 | 10.4k | Java | 12/28 |
| 27 | [hollischuang/toBeTopJavaer](https://github.com/hollischuang/toBeTopJavaer) | To Be Top Javaer - Java工程师成神之路 | 10.3k | Java | 01/06 |
| 28 | [Tencent/QMUI_Android](https://github.com/Tencent/QMUI_Android) | 提高 Android UI 开发效率的 UI 库 | 9.9k | Java | 01/07 |
| 29 | [jeasonlzy/okhttp-OkGo](https://github.com/jeasonlzy/okhttp-OkGo) | OkGo - 3.0 震撼来袭,该库是基于 Http 协议,封装了 OkHttp 的网络请求框架,比 Retrofit 更简单易用,支持 RxJava,RxJava2,支持自定义缓存,支持批量断点下载管理和批量上传管理功能 | 9.8k | Java | 07/03 |
| 30 | [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 ... | 9.6k | Java | 01/09 |
| 31 | [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.4k | Java | 01/07 |
| 32 | [youth5201314/banner](https://github.com/youth5201314/banner) | Android广告图片轮播控件,支持无限循环和多种主题,可以灵活设置轮播样式、动画、轮播和切换时间、位置、图片加载框架等! | 9.3k | Java | 12/12 |
| 33 | [JessYanCoding/AndroidAutoSize](https://github.com/JessYanCoding/AndroidAutoSize) | 🔥 A low-cost Android screen adaptation solution (今日头条屏幕适配方案终极版,一个极低成本的 Android 屏幕适配方案). | 9.1k | Java | 11/08 |
| 34 | [pagehelper/Mybatis-PageHelper](https://github.com/pagehelper/Mybatis-PageHelper) | Mybatis通用分页插件 | 8.6k | Java | 12/24 |
| 35 | [bilibili/DanmakuFlameMaster](https://github.com/bilibili/DanmakuFlameMaster) | Android开源弹幕引擎·烈焰弹幕使 ~ | 8.3k | Java | 11/02 |
| 36 | [LuckSiege/PictureSelector](https://github.com/LuckSiege/PictureSelector) | Picture Selector Library for Android or 图片选择器 | 7.9k | Java | 01/06 |
| 37 | [daniulive/SmarterStreaming](https://github.com/daniulive/SmarterStreaming) | 国内外为数不多致力于极致体验的超强全自研跨平台(windows/android/iOS)流媒体内核,通过模块化自由组合,支持实时RTMP推流、RTSP推流、RTMP播放器、RTSP播放器、录像、多路流媒体转发、音视频导播、动态视频合成、音频混音、直播互动、内置轻量级RTSP服务等,比快更快,业界真正靠谱的超低延迟直播SDK(1秒内,低延迟模式下200~400ms)。 | 7.8k | Java | 01/09 |
| 38 | [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 |
| 39 | [GcsSloop/AndroidNote](https://github.com/GcsSloop/AndroidNote) | 安卓学习笔记 | 7.6k | Java | 04/29 |
| 40 | [frank-lam/fullstack-tutorial](https://github.com/frank-lam/fullstack-tutorial) | 🚀 fullstack tutorial 2019,后台技术栈/架构师之路/全栈开发社区,春招/秋招/校招/面试 | 7.5k | Java | 11/19 |
| 41 | [paascloud/paascloud-master](https://github.com/paascloud/paascloud-master) | spring cloud + vue + oAuth2.0全家桶实战,前后端分离模拟商城,完整的购物流程、后端运营平台,可以实现快速搭建企业级微服务项目。支持微信登录等三方登录。 | 7.1k | Java | 11/13 |
| 42 | [hs-web/hsweb-framework](https://github.com/hs-web/hsweb-framework) | hsweb (haʊs wɛb) 是一个用于快速搭建企业后台管理系统的基础项目,集成一揽子便捷功能如:便捷的通用增删改查,强大的权限管理,动态多数据源,动态表单,在线数据库维护等. 基于 spring-boot,mybaits. | 7.0k | Java | 01/07 |
| 43 | [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 |
| 44 | [hongyangAndroid/okhttputils](https://github.com/hongyangAndroid/okhttputils) | [停止维护]okhttp的辅助类 | 6.8k | Java | 12/09 |
| 45 | [crazycodeboy/TakePhoto](https://github.com/crazycodeboy/TakePhoto) | 一款用于在Android设备上获取照片(拍照或从相册、文件中选择)、裁剪图片、压缩图片的开源工具库 | 6.7k | Java | 08/26 |
| 46 | [justauth/JustAuth](https://github.com/justauth/JustAuth) | :100: 史上最全的整合第三方登录的开源库。目前已支持Github、Gitee、微博、钉钉、百度、Coding、腾讯云开发者平台、OSChina、支付宝、QQ、微信、淘宝、Google、Facebook、抖音、领英、小米、微软、今日头条、Teambition、StackOverflow、Pinterest、人人、华为、企业微信、酷家乐、Gitlab、美团、饿了么和推特等第三方平台的授权登录。 Login, so easy! | 6.7k | Java | 01/07 |
| 47 | [elunez/eladmin](https://github.com/elunez/eladmin) | 项目基于 Spring Boot 2.1.0 、 Jpa、 Spring Security、redis、Vue的前后端分离的后台管理系统,项目采用分模块开发方式, 权限控制采用 RBAC,支持数据字典与数据权限管理,支持一键生成前后端代码,支持动态路由 | 6.3k | Java | 12/22 |
| 48 | [seaswalker/spring-analysis](https://github.com/seaswalker/spring-analysis) | Spring源码阅读 | 6.3k | Java | 01/09 |
| 49 | [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 |
| 50 | [DuGuQiuBai/Java](https://github.com/DuGuQiuBai/Java) | 27天成为Java大神 | 5.7k | Java | 10/31 |
| 51 | [alibaba/otter](https://github.com/alibaba/otter) | 阿里巴巴分布式数据库同步系统(解决中美异地机房) | 5.5k | Java | 12/05 |
| 52 | [smuyyh/BookReader](https://github.com/smuyyh/BookReader) | :closed_book: "任阅" 网络小说阅读器,3D翻页效果、txt/pdf/epub书籍阅读、Wifi传书~ | 5.5k | Java | 06/25 |
| 53 | [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.3k | Java | 01/05 |
| 54 | [NLPchina/ansj_seg](https://github.com/NLPchina/ansj_seg) | ansj分词.ict的真正java实现.分词效果速度都超过开源版的ict. 中文分词,人名识别,词性标注,用户自定义词典 | 5.3k | Java | 11/17 |
| 55 | [hyb1996/Auto.js](https://github.com/hyb1996/Auto.js) | A UiAutomator on android, does not need root access(安卓平台上的JavaScript自动化工具) | 5.3k | Java | 12/01 |
| 56 | [dyc87112/SpringCloud-Learning](https://github.com/dyc87112/SpringCloud-Learning) | Spring Cloud基础教程,持续连载更新中 | 5.2k | Java | 12/13 |
| 57 | [knightliao/disconf](https://github.com/knightliao/disconf) | Distributed Configuration Management Platform(分布式配置管理平台) | 5.1k | Java | 01/29 |
| 58 | [Meituan-Dianping/walle](https://github.com/Meituan-Dianping/walle) | Android Signature V2 Scheme签名下的新一代渠道包打包神器 | 5.1k | Java | 12/23 |
| 59 | [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 |
| 60 | [heibaiying/BigData-Notes](https://github.com/heibaiying/BigData-Notes) | 大数据入门指南 :star: | 5.0k | Java | 01/02 |
| 61 | [zouzg/mybatis-generator-gui](https://github.com/zouzg/mybatis-generator-gui) | mybatis-generator界面工具,让你生成代码更简单更快捷 | 4.9k | Java | 10/10 |
| 62 | [sohutv/cachecloud](https://github.com/sohutv/cachecloud) | 搜狐视频(sohu tv)Redis私有云平台 | 4.8k | Java | 11/14 |
| 63 | [ityouknow/spring-cloud-examples](https://github.com/ityouknow/spring-cloud-examples) | Spring Cloud 学习案例,服务发现、服务治理、链路追踪、服务监控等 | 4.8k | Java | 01/03 |
| 64 | [liyifeng1994/ssm](https://github.com/liyifeng1994/ssm) | 手把手教你整合最优雅SSM框架:SpringMVC + Spring + MyBatis | 4.8k | Java | 12/22 |
| 65 | [Exrick/xmall](https://github.com/Exrick/xmall) | 基于SOA架构的分布式电商购物商城 前后端分离 前台商城:Vue全家桶 后台管理系统:Dubbo/SSM/Elasticsearch/Redis/MySQL/ActiveMQ/Shiro/Zookeeper等 | 4.6k | Java | 12/26 |
| 66 | [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、日志存储、百亿数据实时去重、监控告警)分享。 | 4.6k | Java | 01/06 |
| 67 | [goldze/MVVMHabit](https://github.com/goldze/MVVMHabit) | 👕基于谷歌最新AAC架构,MVVM设计模式的一套快速开发库,整合Okhttp+RxJava+Retrofit+Glide等主流模块,满足日常开发需求。使用该框架可以快速开发一个高质量、易维护的Android应用。 | 4.6k | Java | 12/20 |
| 68 | [wildfirechat/server](https://github.com/wildfirechat/server) | 即时通讯(IM)系统 | 4.5k | Java | 01/08 |
| 69 | [yipianfengye/android-zxingLibrary](https://github.com/yipianfengye/android-zxingLibrary) | 几行代码快速集成二维码扫描功能 | 4.5k | Java | 10/14 |
| 70 | [yanzhenjie/SwipeRecyclerView](https://github.com/yanzhenjie/SwipeRecyclerView) | :melon: RecyclerView侧滑菜单,Item拖拽,滑动删除Item,自动加载更多,HeaderView,FooterView,Item分组黏贴。 | 4.5k | Java | 04/12 |
| 71 | [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 |
| 72 | [crossoverJie/cim](https://github.com/crossoverJie/cim) | 📲cim(cross IM) 适用于开发者的分布式即时通讯系统 | 4.5k | Java | 01/08 |
| 73 | [TommyLemon/Android-ZBLibrary](https://github.com/TommyLemon/Android-ZBLibrary) | 🔥Android MVP快速开发框架,做国内 「Demo最全面」「注释最详细」「使用最简单」「代码最严谨」的Android开源UI框架 | 4.4k | Java | 11/01 |
| 74 | [mcxiaoke/packer-ng-plugin](https://github.com/mcxiaoke/packer-ng-plugin) | 下一代Android打包工具,100个渠道包只需要10秒钟 | 4.4k | Java | 11/26 |
| 75 | [gedoor/MyBookshelf](https://github.com/gedoor/MyBookshelf) | 阅读是一款可以自定义来源阅读网络内容的工具,为广大网络文学爱好者提供一种方便、快捷舒适的试读体验。 | 4.4k | Java | 01/09 |
| 76 | [changmingxie/tcc-transaction](https://github.com/changmingxie/tcc-transaction) | tcc-transaction是TCC型事务java实现 | 4.3k | Java | 12/25 |
| 77 | [zhanghai/Douya](https://github.com/zhanghai/Douya) | 开源的 Material Design 豆瓣客户端(A Material Design app for douban.com) | 4.3k | Java | 01/09 |
| 78 | [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 |
| 79 | [SplashCodes/JAViewer](https://github.com/SplashCodes/JAViewer) | 更优雅的驾车体验 | 4.1k | Java | 12/01 |
| 80 | [youlookwhat/CloudReader](https://github.com/youlookwhat/CloudReader) | 云阅:一款基于网易云音乐UI,使用玩安卓、Gank.Io及时光网api开发的符合Google Material Design的Android客户端。项目采取的是MVVM-DataBinding架构开发,主要包括:玩安卓区、干货区和电影区三个子模块。 | 4.1k | Java | 01/03 |
| 81 | [DingMouRen/LayoutManagerGroup](https://github.com/DingMouRen/LayoutManagerGroup) | :point_right: Customize the LayoutManager of RecyclerView(自定义LayoutManager) | 4.1k | Java | 10/05 |
| 82 | [lenve/VBlog](https://github.com/lenve/VBlog) | V部落,Vue+SpringBoot实现的多用户博客管理平台! | 4.1k | Java | 11/09 |
| 83 | [pili-engineering/PLDroidPlayer](https://github.com/pili-engineering/PLDroidPlayer) | PLDroidPlayer 是七牛推出的一款免费的适用于 Android 平台的播放器 SDK,采用全自研的跨平台播放内核,拥有丰富的功能和优异的性能,可高度定制化和二次开发。 | 4.1k | Java | 10/31 |
| 84 | [bingoogolapple/BGARefreshLayout-Android](https://github.com/bingoogolapple/BGARefreshLayout-Android) | 多种下拉刷新效果、上拉加载更多、可配置自定义头部广告位 | 4.1k | Java | 11/12 |
| 85 | [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.0k | Java | 12/28 |
| 86 | [Tencent/Shadow](https://github.com/Tencent/Shadow) | 零反射全动态Android插件框架 | 4.0k | Java | 12/28 |
| 87 | [jeasonlzy/ImagePicker](https://github.com/jeasonlzy/ImagePicker) | 完全仿微信的图片选择,并且提供了多种图片加载接口,选择图片后可以旋转,可以裁剪成矩形或圆形,可以配置各种其他的参数 | 4.0k | Java | 11/15 |
| 88 | [hugeterry/CoordinatorTabLayout](https://github.com/hugeterry/CoordinatorTabLayout) | Combination of TabLayout and CoordinatorLayout./TabLayout和CoordinatorLayout相结合的折叠控件 | 3.9k | Java | 12/25 |
| 89 | [macrozheng/mall-learning](https://github.com/macrozheng/mall-learning) | mall学习教程,架构、业务、技术要点全方位解析。mall项目(25k+star)是一套电商系统,使用现阶段主流技术实现。 涵盖了SpringBoot2.1.3、MyBatis3.4.6、Elasticsearch6.2.2、RabbitMQ3.7.15、Redis3.2、Mongodb3.2、Mysql5.7等技术,采用Docker容器化部署。 | 3.9k | Java | 01/05 |
| 90 | [huangyanbin/smartTable](https://github.com/huangyanbin/smartTable) | 一款android自动生成表格框架---An Android automatically generated table framework | 3.8k | Java | 02/13 |
| 91 | [li-xiaojun/XPopup](https://github.com/li-xiaojun/XPopup) | 🔥功能强大,UI简洁,交互优雅的通用弹窗!可以替代Dialog,PopupWindow,PopupMenu,BottomSheet,DrawerLayout,Spinner等组件,自带十几种效果良好的动画, 支持完全的UI和动画自定义!(Powerful and Beautiful Popup,can absolutely replace Dialog,PopupWindow,PopupMenu,BottomSheet,DrawerLayout,Spinner. With built-in animators , very easy to custom popup view.) | 3.8k | Java | 11/10 |
| 92 | [ZXZxin/ZXBlog](https://github.com/ZXZxin/ZXBlog) | 记录各种学习笔记(算法、Java、数据库、并发......) | 3.8k | Java | 12/16 |
| 93 | [bingoogolapple/BGABanner-Android](https://github.com/bingoogolapple/BGABanner-Android) | 引导界面滑动导航 + 大于等于1页时无限轮播 + 各种切换动画轮播效果 | 3.7k | Java | 11/10 |
| 94 | [ffay/lanproxy](https://github.com/ffay/lanproxy) | lanproxy是一个将局域网个人电脑、服务器代理到公网的内网穿透工具,支持tcp流量转发,可支持任何tcp上层协议(访问内网网站、本地支付接口调试、ssh访问、远程桌面...)。目前市面上提供类似服务的有花生壳、TeamView、GoToMyCloud等等,但要使用第三方的公网服务器就必须为第三方付费,并且这些服务都有各种各样的限制,此外,由于数据包会流经第三方,因此对数据安全也是一大隐患。技术交流QQ群 946273429 | 3.7k | Java | 10/28 |
| 95 | [qstumn/BadgeView](https://github.com/qstumn/BadgeView) | 支持自由定制外观、拖拽消除的MaterialDesign风格Android BadgeView | 3.6k | Java | 09/22 |
| 96 | [razerdp/BasePopup](https://github.com/razerdp/BasePopup) | 亲,还在为PopupWindow烦恼吗?不如试试BasePopup,你会爱上他的~ | 3.6k | Java | 11/24 |
| 97 | [techGay/v9porn](https://github.com/techGay/v9porn) | 9*Porn Android 客户端,突破游客每天观看10次视频的限制,还可以下载视频 | 3.4k | Java | 01/04 |
| 98 | [AriaLyy/Aria](https://github.com/AriaLyy/Aria) | 下载可以很简单 | 3.4k | Java | 12/30 |
| 99 | [hustcc/JS-Sorting-Algorithm](https://github.com/hustcc/JS-Sorting-Algorithm) | 一本关于排序算法的 GitBook 在线书籍 《十大经典排序算法》,多语言实现。 | 3.3k | Java | 10/09 |
| 100 | [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 |
| 101 | [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.3k | Java | 01/09 |
| 102 | [oldmanpushcart/greys-anatomy](https://github.com/oldmanpushcart/greys-anatomy) | Java诊断工具 | 3.3k | Java | 12/02 |
| 103 | [JZ-Darkal/AndroidHttpCapture](https://github.com/JZ-Darkal/AndroidHttpCapture) | AndroidHttpCapture网络诊断工具 是一款Android手机抓包软件 主要功能包括:手机端抓包、PING/DNS/TraceRoute诊断、抓包HAR数据上传分享。你也可以看成是Android版的"Fiddler" \(^o^)/~ | 2.9k | Java | 09/05 |
| 104 | [ittianyu/BottomNavigationViewEx](https://github.com/ittianyu/BottomNavigationViewEx) | An android lib for enhancing BottomNavigationView. 一个增强BottomNavigationView的安卓库。 | 2.9k | Java | 06/05 |
| 105 | [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 |
| 106 | [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 |
| 107 | [Dromara/hmily](https://github.com/Dromara/hmily) | 高性能异步分布式事务TCC框架 | 2.7k | Java | 01/02 |
| 108 | [zhou-you/RxEasyHttp](https://github.com/zhou-you/RxEasyHttp) | 本库是一款基于RxJava2+Retrofit2实现简单易用的网络请求框架,结合android平台特性的网络封装库,采用api链式调用一点到底,集成cookie管理,多种缓存模式,极简https配置,上传下载进度显示,请求错误自动重试,请求携带token、时间戳、签名sign动态配置,自动登录成功后请求重发功能,3种层次的参数设置默认全局局部,默认标准ApiResult同时可以支持自定义的数据结构,已经能满足现在的大部分网络请求。 | 2.6k | Java | 06/27 |
| 109 | [zaaach/CityPicker](https://github.com/zaaach/CityPicker) | :fire::fire::fire:城市选择、定位、搜索及右侧字母导航,类似美团 百度糯米 饿了么等APP选择城市功能 | 2.6k | Java | 12/04 |
| 110 | [promeG/TinyPinyin](https://github.com/promeG/TinyPinyin) | 适用于Java和Android的快速、低内存占用的汉字转拼音库。 | 2.6k | Java | 04/22 |
| 111 | [stylefeng/Guns](https://github.com/stylefeng/Guns) | Guns基于SpringBoot 2,致力于做更简洁的后台管理系统,完美整合springmvc + shiro + mybatis-plus + beetl!Guns项目代码简洁,注释丰富,上手容易,同时Guns包含许多基础模块(用户管理,角色管理,部门管理,字典管理等10个模块),可以直接作为一个后台管理系统的脚手架! | 2.6k | Java | 11/29 |
| 112 | [FinalTeam/RxGalleryFinal](https://github.com/FinalTeam/RxGalleryFinal) | 图片选择库,单选/多选、拍照、裁剪、压缩,自定义。包括视频选择和录制。 | 2.6k | Java | 12/05 |
| 113 | [AweiLoveAndroid/CommonDevKnowledge](https://github.com/AweiLoveAndroid/CommonDevKnowledge) | :octocat::fire: :star2::star::star::star: :star: 史上最全的BAT大厂Android面试题汇集,以及常用的Android开发的一些技能点,冷门知识点汇总,开发中遇到的坑汇总等干货。 | 2.6k | Java | 11/05 |
| 114 | [liuyubobobo/Play-with-Algorithms](https://github.com/liuyubobobo/Play-with-Algorithms) | Codes of my MOOC Course <Play with Algorithms>, Both in C++ and Java language. Updated contents and practices are also included. 我在慕课网上的课程《算法与数据结构》示例代码,包括C++和Java版本。课程的更多更新内容及辅助练习也将逐步添加进这个代码仓。 | 2.5k | Java | 12/10 |
| 115 | [huburt-Hu/NewbieGuide](https://github.com/huburt-Hu/NewbieGuide) | Android 快速实现新手引导层的库,通过简洁链式调用,一行代码实现引导层的显示 | 2.5k | Java | 11/14 |
| 116 | [jaydenxiao2016/AndroidFire](https://github.com/jaydenxiao2016/AndroidFire) | AndroidFire,一款新闻阅读 App框架,基于 Material Design + MVP + RxJava + Retrofit + Glide,基本涵盖了当前 Android 端开发最常用的主流框架,基于此框架可以快速开发一个app。 | 2.4k | Java | 08/17 |
| 117 | [Exrick/xboot](https://github.com/Exrick/xboot) | 基于Spring Boot 2.x的前后端分离开发平台XBoot 前端:Vue+iView Admin 后端:Spring Boot 2.x/Spring Security/JWT/Spring Data JPA+Mybatis-Plus/Redis/Elasticsearch/Activiti 分布式限流/同步锁/验证码/SnowFlake雪花算法ID生成 动态权限管理 数据权限 工作流 代码生成 定时任务 社交账号、短信登录 单点登录 OAuth2开放平台 | 2.4k | Java | 01/07 |
| 118 | [jdsjlzx/LRecyclerView](https://github.com/jdsjlzx/LRecyclerView) | RecyclerView下拉刷新,自动加载更多;仿IOS侧滑Item删除菜单(盼望大家扩展更多功能) | 2.4k | Java | 06/27 |
| 119 | [Nepxion/Discovery](https://github.com/Nepxion/Discovery) | 🐳 Nepxion Discovery is an enhancement for Spring Cloud Discovery with gray release, router, weight, limitation, circuit breaker, degrade, isolation, monitor, tracing 灰度发布、路由、权重、限流、熔断、降级、隔离、监控、追踪 | 2.4k | Java | 01/09 |
| 120 | [mxdldev/android-mvp-mvvm-flytour](https://github.com/mxdldev/android-mvp-mvvm-flytour) | 🔥🔥🔥 FlyTour是Android组件化+MVVM+MVP+RxJava+Retrofit+Dagger2组成的双架构框架,工程架构采用gradle配置实现组件化,模块的架构采用典型的MVVM+MVP架构,MVVM和MVP根据自己的项目实际需求去决定使用,该框架是Android组件化、Android MVVM架构、Android MVP架构的集大成者,帮助你快速的搭建自己的App项目开发框架,以便把主要的精力放在自己的项目的业务功能实现上,另外在长期的工作实践中总结整理大量的实用工具类在项目lib_common组件的util包当中方便大家调用。 | 2.3k | Java | 09/01 |
| 121 | [zjw-swun/AppMethodOrder](https://github.com/zjw-swun/AppMethodOrder) | 一个能让你了解所有函数调用顺序以及函数耗时的Android库(无需侵入式代码) | 2.3k | Java | 04/22 |
| 122 | [oasisfeng/condom](https://github.com/oasisfeng/condom) | 一个超轻超薄的Android工具库,阻止三方SDK中常见的有害行为,而不影响应用自身的功能。(例如严重影响用户体验的『链式唤醒』) | 2.3k | Java | 12/10 |
| 123 | [CJT2325/CameraView](https://github.com/CJT2325/CameraView) | 仿微信拍照Android控件(轻触拍照,长按摄像) | 2.2k | Java | 06/18 |
| 124 | [tuguangquan/mybatis](https://github.com/tuguangquan/mybatis) | mybatis源码中文注释 | 2.2k | Java | 01/09 |
| 125 | [Heeexy/SpringBoot-Shiro-Vue](https://github.com/Heeexy/SpringBoot-Shiro-Vue) | 提供一套基于Spring Boot-Shiro-Vue的权限管理思路.前后端都加以控制,做到按钮/接口级别的权限 | 2.2k | Java | 10/30 |
| 126 | [JavaNoober/BackgroundLibrary](https://github.com/JavaNoober/BackgroundLibrary) | A framework for directly generating shape through Tags, no need to write shape.xml again(通过标签直接生成shape,无需再写shape.xml) | 2.2k | Java | 01/08 |
| 127 | [dingjikerbo/Android-BluetoothKit](https://github.com/dingjikerbo/Android-BluetoothKit) | Android BLE蓝牙通信库 | 2.2k | Java | 12/21 |
| 128 | [JingYeoh/FragmentRigger](https://github.com/JingYeoh/FragmentRigger) | :boom:A powerful library powered by AOP to manage Fragments.(一个基于AOP设计的Fragment管理框架) | 2.2k | Java | 09/18 |
| 129 | [hansonwang99/Spring-Boot-In-Action](https://github.com/hansonwang99/Spring-Boot-In-Action) | Spring Boot 系列实战合集 | 2.1k | Java | 09/22 |
| 130 | [nanchen2251/CompressHelper](https://github.com/nanchen2251/CompressHelper) | :fire: 压缩文件,压缩图片,压缩Bitmap,Compress, CompressImage, CompressFile, CompressBitmap:https://github.com/nanchen2251/AiYaCompressHelper | 2.1k | Java | 03/06 |
| 131 | [AlexLiuSheng/CheckVersionLib](https://github.com/AlexLiuSheng/CheckVersionLib) | 版本检测升级(更新)库。an auto check version library(app update) on Android | 2.1k | Java | 12/18 |
| 132 | [android-notes/Cockroach](https://github.com/android-notes/Cockroach) | 降低Android非必要crash | 2.1k | Java | 08/26 |
| 133 | [iMeiji/Toutiao](https://github.com/iMeiji/Toutiao) | 一款第三方今日头条客户端, MVP + RxJava + Retrofit | 2.1k | Java | 01/20 |
| 134 | [brianway/springmvc-mybatis-learning](https://github.com/brianway/springmvc-mybatis-learning) | SpringMVC 和 MyBatis 学习笔记,搭配示例,主要讲解一些基础的概念、用法和配置 | 2.3k | Java | 05/14 |
| 135 | [BaronZ88/MinimalistWeather](https://github.com/BaronZ88/MinimalistWeather) | Android 平台开源天气 App,采用 MVP、RxJava、Retrofit2、OKHttp3、Dagger2、RetroLambda 等开源库来实现。 | 2.2k | Java | 01/06 |
| 136 | [dueeeke/DKVideoPlayer](https://github.com/dueeeke/DKVideoPlayer) | Android Video Player. 安卓视频播放器,封装MediaPlayer、ExoPlayer、IjkPlayer。模仿抖音并实现预加载,列表播放,悬浮播放,广告播放,弹幕 | 2.1k | Java | 01/09 |
| 137 | [LuckyJayce/LargeImage](https://github.com/LuckyJayce/LargeImage) | Android 加载大图 可以高清显示10000*10000像素的图片,轻松实现微博长图功能 | 2.1k | Java | 03/23 |
| 138 | [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 |
| 139 | [Hitomis/transferee](https://github.com/Hitomis/transferee) | 一个帮助您完成从缩略图到原图无缝过渡转变的神奇组件 | 2.0k | Java | 11/19 |
| 140 | [liyiorg/weixin-popular](https://github.com/liyiorg/weixin-popular) | 微信SDK JAVA (公众平台、开放平台、 商户平台、 服务商平台) | 2.0k | Java | 12/20 |
| 141 | [l123456789jy/Lazy](https://github.com/l123456789jy/Lazy) | The android tools 自己整理的常用的工具类 | 2.0k | Java | 08/02 |
| 142 | [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 |
| 143 | [Qihoo360/ArgusAPM](https://github.com/Qihoo360/ArgusAPM) | Powerful, comprehensive (Android) application performance management platform. 360线上移动性能检测平台 | 2.0k | Java | 05/09 |
| 144 | [OCNYang/Android-Animation-Set](https://github.com/OCNYang/Android-Animation-Set) | :books: Android 所有动画系列详尽教程。 Explain all animations in Android. | 1.9k | Java | 03/19 |
| 145 | [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 |
| 146 | [vivian8725118/TimeLine](https://github.com/vivian8725118/TimeLine) | 瀑布流式的时间轴 | 1.9k | Java | 01/20 |
| 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.8k | Java | 01/09 |
| 148 | [xingda920813/HelloDaemon](https://github.com/xingda920813/HelloDaemon) | Android 服务保活/常驻 (Android service daemon using JobScheduler) | 1.8k | Java | 03/30 |
| 149 | [ctripcorp/C-OCR](https://github.com/ctripcorp/C-OCR) | C-OCR是携程自研的OCR项目,主要包括身份证、护照、火车票、签证等旅游相关证件、材料的识别。 项目包含4个部分,拒识、检测、识别、后处理。 | 1.8k | Java | 05/08 |
| 150 | [Luosunce/material-design-data](https://github.com/Luosunce/material-design-data) | 关于 Material Design 的一切资料都在这里 | 1.8k | Java | 10/26 |
| 151 | [wangdan/AisenWeiBo](https://github.com/wangdan/AisenWeiBo) | 新浪微博第三方Android客户端 | 1.8k | Java | 06/19 |
| 152 | [xtuhcy/gecco](https://github.com/xtuhcy/gecco) | Easy to use lightweight web crawler(易用的轻量化网络爬虫) | 1.8k | Java | 09/05 |
| 153 | [qunarcorp/bistoury](https://github.com/qunarcorp/bistoury) | Bistoury是去哪儿网的java应用生产问题诊断工具,提供了一站式的问题诊断方案 | 1.8k | Java | 01/01 |
| 154 | [bingoogolapple/BGAPhotoPicker-Android](https://github.com/bingoogolapple/BGAPhotoPicker-Android) | Android 图片选择、预览、九宫格图片控件、拖拽排序九宫格图片控件 | 1.8k | Java | 11/16 |
| 155 | [YunaiV/onemall](https://github.com/YunaiV/onemall) | mall 商城,基于微服务的思想,构建在 B2C 电商场景下的项目实战。核心技术栈,是 Spring Boot + Dubbo 。未来,会重构成 Spring Cloud Alibaba 。 | 1.8k | Java | 11/22 |
| 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 | 12/05 |
| 158 | [saysky/ForestBlog](https://github.com/saysky/ForestBlog) | 一个简单漂亮的SSM(Spring+SpringMVC+Mybatis)博客系统 | 1.7k | Java | 12/16 |
| 159 | [Pay-Group/best-pay-sdk](https://github.com/Pay-Group/best-pay-sdk) | 可能是最好的支付SDK | 1.7k | Java | 01/09 |
| 160 | [xuexiangjys/XUI](https://github.com/xuexiangjys/XUI) | 💍一个简洁而优雅的Android原生UI框架,解放你的双手! | 1.7k | Java | 01/09 |
| 161 | [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 |
| 162 | [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 |
| 163 | [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 |
| 164 | [xiaojinzi123/Component](https://github.com/xiaojinzi123/Component) | 🔥🔥🔥A powerful componentized framework.一个最强大、100% 兼容、支持 AndroidX、支持 Kotlin的组件化框架. 吊打 ARouter, 点击后面链接查看比较结果 | 1.7k | Java | 01/09 |
| 165 | [alibaba/yugong](https://github.com/alibaba/yugong) | 阿里巴巴去Oracle数据迁移同步工具(全量+增量,目标支持MySQL/DRDS) | 1.6k | Java | 12/05 |
| 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.6k | Java | 01/03 |
| 167 | [caiyonglong/MusicLake](https://github.com/caiyonglong/MusicLake) | 音乐播放器,可播在线音乐,qq音乐,百度音乐,虾米音乐,网易云音乐,YouTuBe | 1.6k | Java | 11/20 |
| 168 | [sunfusheng/GlideImageView](https://github.com/sunfusheng/GlideImageView) | 基于Glide V4.9.0封装的图片加载库,可以监听加载图片时的进度 | 1.6k | Java | 04/30 |
| 169 | [JeremyLiao/LiveEventBus](https://github.com/JeremyLiao/LiveEventBus) | :mailbox_with_mail:EventBus for Android,消息总线,基于LiveData,具有生命周期感知能力,支持Sticky,支持AndroidX,支持跨进程,支持跨APP | 1.6k | Java | 11/08 |
| 170 | [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 |
| 171 | [HpWens/MeiWidgetView](https://github.com/HpWens/MeiWidgetView) | 🔥一款汇总了郭霖,鸿洋,以及自己平时收集的自定义控件集合库(小红书) | 1.6k | Java | 08/12 |
| 172 | [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 |
| 173 | [wenmingvs/NotifyUtil](https://github.com/wenmingvs/NotifyUtil) | 通知工具类 | 1.6k | Java | 01/08 |
| 174 | [xwjie/PLMCodeTemplate](https://github.com/xwjie/PLMCodeTemplate) | 给部门制定的代码框架模板 | 1.6k | Java | 01/12 |
| 175 | [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 |
| 176 | [meituan/WMRouter](https://github.com/meituan/WMRouter) | WMRouter是一款Android路由框架,基于组件化的设计思路,有功能灵活、使用简单的特点。 | 1.6k | Java | 11/05 |
| 177 | [rememberber/WePush](https://github.com/rememberber/WePush) | 专注批量推送的小而美的工具,目前支持:模板消息-公众号、模板消息-小程序、微信客服消息、微信企业号/企业微信消息、阿里云短信、阿里大于模板短信 、腾讯云短信、云片网短信、E-Mail、HTTP请求、钉钉、华为云短信、百度云短信、又拍云短信、七牛云短信 | 1.6k | Java | 12/16 |
| 178 | [doggycoder/AndroidOpenGLDemo](https://github.com/doggycoder/AndroidOpenGLDemo) | Android OpenGL ES从零开始的Demo | 1.6k | Java | 01/13 |
| 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 | 09/19 |
| 181 | [Sunzxyong/Recovery](https://github.com/Sunzxyong/Recovery) | a crash recovery framework.(一个App异常恢复框架) | 1.6k | Java | 02/17 |
| 182 | [bz51/SpringBoot-Dubbo-Docker-Jenkins](https://github.com/bz51/SpringBoot-Dubbo-Docker-Jenkins) | 基于SpringBoot+Dubbo的微服务框架(借助Docker+Jenkins实现自动化、容器化部署) | 1.6k | Java | 11/13 |
| 183 | [limpoxe/Android-Plugin-Framework](https://github.com/limpoxe/Android-Plugin-Framework) | Android插件框架,免安装运行插件APK ,支持独立插件和非独立插件 | 1.5k | Java | 12/15 |
| 184 | [jmdhappy/xxpay-master](https://github.com/jmdhappy/xxpay-master) | XxPay聚合支付使用Java开发,包括spring-cloud、dubbo、spring-boot三个架构版本,已接入微信、支付宝等主流支付渠道,可直接用于生产环境 | 1.5k | Java | 11/25 |
| 185 | [xuhuisheng/lemon](https://github.com/xuhuisheng/lemon) | 开源OA | 1.5k | Java | 06/28 |
| 186 | [ren93/RecyclerBanner](https://github.com/ren93/RecyclerBanner) | 用RecyclerView实现无限轮播图,有普通版和3d版 | 1.5k | Java | 07/10 |
| 187 | [huaban/jieba-analysis](https://github.com/huaban/jieba-analysis) | 结巴分词(java版) | 1.5k | Java | 12/31 |
| 188 | [luckybilly/SmartSwipe](https://github.com/luckybilly/SmartSwipe) | An android library to make swipe more easier and more powerful. 关于侧滑,有这一个就够了 | 1.5k | Java | 01/04 |
| 189 | [scalad/Note](https://github.com/scalad/Note) | 常规Java工具,算法,加密,数据库,面试题,源代码分析,解决方案 | 1.4k | Java | 04/07 |
| 190 | [wuyr/PathLayoutManager](https://github.com/wuyr/PathLayoutManager) | RecyclerView的LayoutManager,轻松实现各种炫酷、特殊效果,再也不怕产品经理为难! | 1.4k | Java | 01/30 |
| 191 | [qiujiayu/AutoLoadCache](https://github.com/qiujiayu/AutoLoadCache) | AutoLoadCache 是基于AOP+Annotation等技术实现的高效的缓存管理解决方案,实现缓存与业务逻辑的解耦,并增加异步刷新及“拿来主义机制”,以适应高并发环境下的使用。 | 1.4k | Java | 12/06 |
| 192 | [chinashiyu/gfw.press](https://github.com/chinashiyu/gfw.press) | GFW.Press新一代军用级高强度加密抗干扰网络数据高速传输软件 | 1.4k | Java | 12/15 |
| 193 | [ysc/word](https://github.com/ysc/word) | Java分布式中文分词组件 - word分词 | 1.4k | Java | 09/04 |
| 194 | [chenenyu/Router](https://github.com/chenenyu/Router) | 🍭灵活的组件化路由框架. | 1.4k | Java | 07/15 |
| 195 | [liujingxing/okhttp-RxHttp](https://github.com/liujingxing/okhttp-RxHttp) | RxJava2 + OkHttp 30秒上手,新一代OkHttp请求神器,史上最优雅的实现文件上传/下载/进度监听、动态/多域名、缓存;支持第三方数据解析工具、自定义请求、自动关闭请求等等 | 1.4k | Java | 01/09 |
| 196 | [yuzhiqiang1993/zxing](https://github.com/yuzhiqiang1993/zxing) | 基于zxing的扫一扫,优化了扫描二维码速度,集成最新版本的jar包(zxing-core.jar 3.3.3),集成简单,速度快,可配置颜色,还有闪光灯,解析二维码图片,生成二维码等功能 | 1.4k | Java | 01/04 |
| 197 | [lygttpod/AndroidCustomView](https://github.com/lygttpod/AndroidCustomView) | 带你在实战中学习自定义view,通过几个完整的例子带你走进自定义View的美妙世界 | 1.4k | Java | 08/14 |
| 198 | [macrozheng/mall-swarm](https://github.com/macrozheng/mall-swarm) | mall-swarm是一套微服务商城系统,采用了 Spring Cloud Greenwich、Spring Boot 2、MyBatis、Docker、Elasticsearch等核心技术,同时提供了基于Vue的管理后台方便快速搭建系统。mall-swarm在电商业务的基础集成了注册中心、配置中心、监控中心、网关等系统功能。文档齐全,附带全套Spring Cloud教程。 | 1.4k | Java | 01/04 |
| 199 | [saiwu-bigkoo/Android-AlertView](https://github.com/saiwu-bigkoo/Android-AlertView) | 仿iOS的AlertViewController | 1.4k | Java | 12/25 |
| 200 | [chaychan/TouTiao](https://github.com/chaychan/TouTiao) | 精仿今日头条 | 1.4k | Java | 12/02 |
⬆ [回到目录](#目录)
<br/>
## Python
| # | Repository | Description | Stars | Language | Updated |
| ---- | ------------------------------------------------------------ | ------------------------------------------------------------ | ----- | -------- | ------- |
| 1 | [testerSunshine/12306](https://github.com/testerSunshine/12306) | 12306智能刷票,订票 | 27.7k | Python | 01/08 |
| 2 | [apachecn/AiLearning](https://github.com/apachecn/AiLearning) | AiLearning: 机器学习 - MachineLearning - ML、深度学习 - DeepLearning - DL、自然语言处理 NLP | 22.6k | Python | 01/03 |
| 3 | [fxsjy/jieba](https://github.com/fxsjy/jieba) | 结巴中文分词 | 21.5k | Python | 01/09 |
| 4 | [littlecodersh/ItChat](https://github.com/littlecodersh/ItChat) | A complete and graceful API for Wechat. 微信个人号接口、微信机器人及命令行微信,三十行即可自定义个人号机器人。 | 19.5k | Python | 01/07 |
| 5 | [fighting41love/funNLP](https://github.com/fighting41love/funNLP) | 中英文敏感词、语言检测、中外手机/电话归属地/运营商查询、名字推断性别、手机号抽取、身份证抽取、邮箱抽取、中日文人名库、中文缩写库、拆字词典、词汇情感值、停用词、反动词表、暴恐词表、繁简体转换、英文模拟中文发音、汪峰歌词生成器、职业名称词库、同义词库、反义词库、否定词库、汽车品牌词库、汽车零件词库、连续英文切割、各种中文词向量、公司名字大全、古诗词库、IT词库、财经词库、成语词库、地名词库、历史名人词库、诗词词库、医学词库、饮食词库、法律词库、汽车词库、动物词库、中文聊天语料、中文谣言数据、百度中文问答数据集、句子相似度匹配算法集合、bert资源、文本生成&摘要相关工具、cocoNLP信息抽取 ... | 16.1k | Python | 01/08 |
| 6 | [wangshub/wechat_jump_game](https://github.com/wangshub/wechat_jump_game) | 微信《跳一跳》Python 辅助 | 13.9k | Python | 12/17 |
| 7 | [wangzheng0822/algo](https://github.com/wangzheng0822/algo) | 数据结构和算法必知必会的50个代码实现 | 13.2k | Python | 12/23 |
| 8 | [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~ | 12.8k | Python | 01/08 |
| 9 | [kon9chunkit/GitHub-Chinese-Top-Charts](https://github.com/kon9chunkit/GitHub-Chinese-Top-Charts) | :cn: GitHub中文排行榜,帮助你发现高分优秀中文项目、更高效地吸收国人的优秀经验成果;榜单每周更新一次,敬请关注! | 12.2k | Python | 12/08 |
| 10 | [youfou/wxpy](https://github.com/youfou/wxpy) | 微信机器人 / 可能是最优雅的微信个人号 API ✨✨ | 11.6k | Python | 07/15 |
| 11 | [pjialin/py12306](https://github.com/pjialin/py12306) | 🚂 12306 购票助手,支持集群,多账号,多任务购票以及 Web 页面管理 | 10.9k | Python | 01/07 |
| 12 | [Jack-Cherish/python-spider](https://github.com/Jack-Cherish/python-spider) | :rainbow:Python3网络爬虫实战 | 9.8k | Python | 12/25 |
| 13 | [leisurelicht/wtfpython-cn](https://github.com/leisurelicht/wtfpython-cn) | wtfpython的中文翻译/施工结束/ 能力有限,欢迎帮我改进翻译 | 9.7k | Python | 12/26 |
| 14 | [jhao104/proxy_pool](https://github.com/jhao104/proxy_pool) | Python爬虫代理IP池(proxy pool) | 8.7k | Python | 01/09 |
| 15 | [USTC-Resource/USTC-Course](https://github.com/USTC-Resource/USTC-Course) | :heart:中国科学技术大学课程资源 | 8.3k | Python | 12/24 |
| 16 | [darknessomi/musicbox](https://github.com/darknessomi/musicbox) | 网易云音乐命令行版本 | 8.0k | Python | 12/21 |
| 17 | [sylnsfar/qrcode](https://github.com/sylnsfar/qrcode) | artistic QR Code in Python (Animated GIF qr code)- Python 艺术二维码生成器 (GIF动态二维码、图片二维码) | 6.8k | Python | 11/27 |
| 18 | [h2y/Shadowrocket-ADBlock-Rules](https://github.com/h2y/Shadowrocket-ADBlock-Rules) | 提供多款 Shadowrocket 规则,带广告过滤功能。用于 iOS 未越狱设备选择性地自动翻墙。 | 6.8k | Python | 12/14 |
| 19 | [pwxcoo/chinese-xinhua](https://github.com/pwxcoo/chinese-xinhua) | :orange_book: 中华新华字典数据库。包括歇后语,成语,词语,汉字。 | 6.7k | Python | 08/11 |
| 20 | [wangshub/Douyin-Bot](https://github.com/wangshub/Douyin-Bot) | 😍 Python 抖音机器人,论如何在抖音上找到漂亮小姐姐? | 6.5k | Python | 11/03 |
| 21 | [Urinx/WeixinBot](https://github.com/Urinx/WeixinBot) | 网页版微信API,包含终端版微信及微信机器人 | 6.5k | Python | 11/27 |
| 22 | [Embedding/Chinese-Word-Vectors](https://github.com/Embedding/Chinese-Word-Vectors) | 100+ Chinese Word Vectors 上百种预训练中文词向量 | 6.5k | Python | 04/04 |
| 23 | [luyishisi/Anti-Anti-Spider](https://github.com/luyishisi/Anti-Anti-Spider) | 越来越多的网站具有反爬虫特性,有的用图片隐藏关键数据,有的使用反人类的验证码,建立反反爬虫的代码仓库,通过与不同特性的网站做斗争(无恶意)提高技术。(欢迎提交难以采集的网站)(因工作原因,项目暂停) | 5.9k | Python | 09/24 |
| 24 | [vipstone/faceai](https://github.com/vipstone/faceai) | 一款入门级的人脸、视频、文字检测以及识别的项目. | 5.7k | Python | 07/11 |
| 25 | [houtianze/bypy](https://github.com/houtianze/bypy) | Python client for Baidu Yun (Personal Cloud Storage) 百度云/百度网盘Python客户端 | 5.0k | Python | 11/16 |
| 26 | [jindongwang/transferlearning](https://github.com/jindongwang/transferlearning) | Everything about Transfer Learning and Domain Adaptation--迁移学习 | 4.6k | Python | 01/07 |
| 27 | [PeterDing/iScript](https://github.com/PeterDing/iScript) | 各种脚本 -- 关于 虾米 xiami.com, 百度网盘 pan.baidu.com, 115网盘 115.com, 网易音乐 music.163.com, 百度音乐 music.baidu.com, 360网盘/云盘 yunpan.cn, 视频解析 flvxz.com, bt torrent ↔ magnet, ed2k 搜索, tumblr 图片下载, unzip | 4.6k | Python | 10/11 |
| 28 | [lancopku/pkuseg-python](https://github.com/lancopku/pkuseg-python) | pkuseg多领域中文分词工具; The pkuseg toolkit for multi-domain Chinese word segmentation | 4.5k | Python | 11/25 |
| 29 | [warmheartli/ChatBotCourse](https://github.com/warmheartli/ChatBotCourse) | 自己动手做聊天机器人教程 | 4.3k | Python | 01/04 |
| 30 | [chyroc/WechatSogou](https://github.com/chyroc/WechatSogou) | 基于搜狗微信搜索的微信公众号爬虫接口 | 4.2k | Python | 10/23 |
| 31 | [Linzaer/Ultra-Light-Fast-Generic-Face-Detector-1MB](https://github.com/Linzaer/Ultra-Light-Fast-Generic-Face-Detector-1MB) | 💎1MB lightweight face detection model (1MB轻量级人脸检测模型) | 4.2k | Python | 01/09 |
| 32 | [wb14123/seq2seq-couplet](https://github.com/wb14123/seq2seq-couplet) | Play couplet with seq2seq model. 用深度学习对对联。 | 3.9k | Python | 10/09 |
| 33 | [WenDesi/lihang_book_algorithm](https://github.com/WenDesi/lihang_book_algorithm) | 致力于将李航博士《统计学习方法》一书中所有算法实现一遍 | 3.8k | Python | 04/29 |
| 34 | [shidenggui/easytrader](https://github.com/shidenggui/easytrader) | 提供银河/国金/华泰客户端/同花顺客户端/雪球的基金、股票自动程序化交易以及自动打新,支持跟踪 joinquant /ricequant 模拟交易 和 实盘雪球组合, 量化交易组件 | 3.4k | Python | 01/07 |
| 35 | [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 |
| 36 | [QUANTAXIS/QUANTAXIS](https://github.com/QUANTAXIS/QUANTAXIS) | QUANTAXIS 支持任务调度 分布式部署的 股票/期货/自定义市场 数据/回测/模拟/交易/可视化 纯本地PAAS量化解决方案 | 3.1k | Python | 01/04 |
| 37 | [apachecn/sklearn-doc-zh](https://github.com/apachecn/sklearn-doc-zh) | :book: [译] scikit-learn(sklearn) 中文文档 | 3.0k | Python | 12/27 |
| 38 | [huyingxi/Synonyms](https://github.com/huyingxi/Synonyms) | 中文近义词工具包 | 2.6k | Python | 06/11 |
| 39 | [ownthink/KnowledgeGraphData](https://github.com/ownthink/KnowledgeGraphData) | 史上最大规模1.4亿中文知识图谱开源下载 | 2.6k | Python | 11/22 |
| 40 | [ysrc/xunfeng](https://github.com/ysrc/xunfeng) | 巡风是一款适用于企业内网的漏洞快速应急,巡航扫描系统。 | 2.5k | Python | 11/14 |
| 41 | [liangliangyy/DjangoBlog](https://github.com/liangliangyy/DjangoBlog) | 🍺基于Django的博客系统 | 2.4k | Python | 01/09 |
| 42 | [nl8590687/ASRT_SpeechRecognition](https://github.com/nl8590687/ASRT_SpeechRecognition) | A Deep-Learning-Based Chinese Speech Recognition System 基于深度学习的中文语音识别系统 | 2.4k | Python | 11/15 |
| 43 | [mozillazg/python-pinyin](https://github.com/mozillazg/python-pinyin) | 汉字转拼音(pypinyin) | 2.4k | Python | 01/01 |
| 44 | [Jack-Lee-Hiter/AlgorithmsByPython](https://github.com/Jack-Lee-Hiter/AlgorithmsByPython) | 算法/数据结构/Python/剑指offer/机器学习/leetcode | 2.2k | Python | 10/13 |
| 45 | [ymcui/Chinese-BERT-wwm](https://github.com/ymcui/Chinese-BERT-wwm) | Pre-Training with Whole Word Masking for Chinese BERT(中文BERT-wwm系列模型) | 2.2k | Python | 01/02 |
| 46 | [wistbean/learn_python3_spider](https://github.com/wistbean/learn_python3_spider) | python爬虫教程系列、从0到1学习python爬虫,包括浏览器抓包,手机APP抓包,如 fiddler、mitmproxy,各种爬虫涉及的模块的使用,如:requests、beautifulSoup、selenium、appium、scrapy等,以及IP代理,验证码识别,Mysql,MongoDB数据库的python使用,多线程多进程爬虫的使用,css 爬虫加密逆向破解,JS爬虫逆向,分布式爬虫,爬虫项目实战实例等 | 2.2k | Python | 11/10 |
| 47 | [zhaipro/easy12306](https://github.com/zhaipro/easy12306) | 使用机器学习算法完成对12306验证码的自动识别 | 2.3k | Python | 01/02 |
| 48 | [guohongze/adminset](https://github.com/guohongze/adminset) | 自动化运维平台:CMDB、CD、DevOps、资产管理、任务编排、持续交付、系统监控、运维管理、配置管理 | 2.3k | Python | 07/29 |
| 49 | [Alivon/Panda-Learning](https://github.com/Alivon/Panda-Learning) | 学习强国 xuexiqiangguo 全网最好用学习强国助手:Panda_Learning 萌萌的熊猫帮你搞定学习强国 | 2.1k | Python | 09/07 |
| 50 | [YongHaoWu/NeteaseCloudMusicFlac](https://github.com/YongHaoWu/NeteaseCloudMusicFlac) | 根据网易云音乐的歌单, 下载flac无损音乐到本地. Download the FLAC music from Internet according to your NeteaseCloudMusic playlist. | 2.1k | Python | 09/12 |
| 51 | [WhaleShark-Team/cobra](https://github.com/WhaleShark-Team/cobra) | Source Code Security Audit (源代码安全审计) | 2.1k | Python | 10/30 |
| 52 | [welliamcao/OpsManage](https://github.com/welliamcao/OpsManage) | 自动化运维平台: 代码及应用部署CI/CD、资产管理CMDB、计划任务管理平台、SQL审核\|回滚、任务调度、站内WIKI | 2.1k | Python | 01/03 |
| 53 | [momosecurity/aswan](https://github.com/momosecurity/aswan) | 陌陌风控系统静态规则引擎,零基础简易便捷的配置多种复杂规则,实时高效管控用户异常行为。 | 2.0k | Python | 12/13 |
| 54 | [qq547276542/Agriculture_KnowledgeGraph](https://github.com/qq547276542/Agriculture_KnowledgeGraph) | 农业知识图谱(AgriKG):农业领域的信息检索,命名实体识别,关系抽取,智能问答,辅助决策 | 2.0k | Python | 01/07 |
| 55 | [XuShaohua/bcloud](https://github.com/XuShaohua/bcloud) | 百度网盘的linux桌面客户端 | 2.0k | Python | 06/17 |
| 56 | [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 |
| 57 | [lanbing510/DouBanSpider](https://github.com/lanbing510/DouBanSpider) | 豆瓣读书的爬虫 | 1.9k | Python | 07/03 |
| 58 | [apachecn/pytorch-doc-zh](https://github.com/apachecn/pytorch-doc-zh) | Pytorch 中文文档 | 1.8k | Python | 01/09 |
| 59 | [shidenggui/easyquotation](https://github.com/shidenggui/easyquotation) | 实时获取新浪 / 腾讯 的免费股票行情 / 集思路的分级基金行情 | 1.8k | Python | 01/02 |
| 60 | [howie6879/owllook](https://github.com/howie6879/owllook) | owllook-在线网络小说阅读网站&小说搜索引擎&小说推荐系统[搜索、追书、收藏、追更、小说API] | 1.8k | Python | 01/02 |
| 61 | [0xHJK/music-dl](https://github.com/0xHJK/music-dl) | search and download music 从网易云音乐、QQ音乐、酷狗音乐、百度音乐、虾米音乐、咪咕音乐等搜索和下载歌曲 | 1.8k | Python | 11/18 |
| 62 | [PyQt5/PyQt](https://github.com/PyQt5/PyQt) | PyQt Examples(PyQt各种测试和例子) PyQt4 PyQt5 | 1.7k | Python | 11/08 |
| 63 | [opendevops-cn/opendevops](https://github.com/opendevops-cn/opendevops) | CODO是一款为用户提供企业多混合云、一站式DevOps、自动化运维、完全开源的云管理平台、自动化运维平台 | 1.7k | Python | 11/13 |
| 64 | [xiaofengShi/CHINESE-OCR](https://github.com/xiaofengShi/CHINESE-OCR) | [python3.6] 运用tf实现自然场景文字检测,keras/pytorch实现ctpn+crnn+ctc实现不定长场景文字OCR识别 | 1.7k | Python | 08/13 |
| 65 | [airingursb/bilibili-user](https://github.com/airingursb/bilibili-user) | 🍥 Bilibili 用户爬虫 | 1.7k | Python | 01/24 |
| 66 | [Ehco1996/django-sspanel](https://github.com/Ehco1996/django-sspanel) | 用diango开发的全新的shadowsocks网络面板 | 1.7k | Python | 01/09 |
| 67 | [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 |
| 68 | [wzpan/wukong-robot](https://github.com/wzpan/wukong-robot) | 🤖 wukong-robot 是一个简单、灵活、优雅的中文语音对话机器人/智能音箱项目,还可能是首个支持脑机交互的开源智能音箱项目。 | 1.7k | Python | 12/29 |
| 69 | [shidenggui/easyquant](https://github.com/shidenggui/easyquant) | 股票量化框架,支持行情获取以及交易 | 1.6k | Python | 09/17 |
| 70 | [Dod-o/Statistical-Learning-Method_Code](https://github.com/Dod-o/Statistical-Learning-Method_Code) | 手写实现李航《统计学习方法》书中全部算法 | 1.6k | Python | 12/08 |
| 71 | [Roujack/mathAI](https://github.com/Roujack/mathAI) | 一个拍照做题程序。输入一张包含数学计算题的图片,输出识别出的数学计算式以及计算结果。This is a mathematic expression recognition project. | 1.6k | Python | 09/15 |
| 72 | [makelove/OpenCV-Python-Tutorial](https://github.com/makelove/OpenCV-Python-Tutorial) | OpenCV问答群,QQ群号:187436093 | 1.6k | Python | 11/22 |
| 73 | [TheKingOfDuck/fuzzDicts](https://github.com/TheKingOfDuck/fuzzDicts) | Web Pentesting Fuzz 字典,一个就够了。 | 1.5k | Python | 01/06 |
| 74 | [jumper2014/lianjia-beike-spider](https://github.com/jumper2014/lianjia-beike-spider) | 链家网和贝壳网房价爬虫,采集北京上海广州深圳等21个中国主要城市的房价数据(小区,二手房,出租房,新房),稳定可靠快速!支持csv,MySQL, MongoDB,Excel, json存储,支持Python2和3,图表展示数据,注释丰富 🚁,点星支持 | 1.5k | Python | 07/24 |
| 75 | [yoyoyo-yo/Gasyori100knock](https://github.com/yoyoyo-yo/Gasyori100knock) | 画像処理100本ノックして画像処理を画像処理して画像処理するためのもの For Japanese, English and Chinese | 1.5k | Python | 12/21 |
| 76 | [loadchange/amemv-crawler](https://github.com/loadchange/amemv-crawler) | 🙌Easily download all the videos from TikTok(amemv).下载指定的 抖音(Douyin) 号的视频,抖音爬虫 | 1.5k | Python | 11/28 |
| 77 | [junerain123/JAV-Scraper-and-Rename-local-files](https://github.com/junerain123/JAV-Scraper-and-Rename-local-files) | JAV影片信息整理工具,抓取元数据nfo,自定义重命名文件(夹),下载fanart裁剪poster,为emby、kodi、极影派铺路。jav-scrapy 老司机 javbus | 1.4k | Python | 01/01 |
| 78 | [FeeiCN/GSIL](https://github.com/FeeiCN/GSIL) | GitHub Sensitive Information Leakage(GitHub敏感信息泄露监控) | 1.4k | Python | 10/13 |
| 79 | [nghuyong/WeiboSpider](https://github.com/nghuyong/WeiboSpider) | This is a sina weibo spider built by scrapy[微博爬虫/持续维护] | 1.4k | Python | 11/02 |
| 80 | [jackzhenguo/python-small-examples](https://github.com/jackzhenguo/python-small-examples) | Python有趣的小例子一网打尽。Python基础、Python坑点、Python字符串和正则、Python绘图、Python日期和文件、Web开发、数据科学、机器学习、深度学习、TensorFlow、Pytorch,一切都是简单易懂的小例子。 | 1.4k | Python | 01/09 |
| 81 | [dataabc/weiboSpider](https://github.com/dataabc/weiboSpider) | 新浪微博爬虫,用python爬取新浪微博数据 | 1.3k | Python | 01/09 |
| 82 | [Skyexu/TopSup](https://github.com/Skyexu/TopSup) | 答题辅助决策:头号英雄等答题类游戏 | 1.3k | Python | 12/15 |
| 83 | [EvilCult/Video-Downloader](https://github.com/EvilCult/Video-Downloader) | 下载youku,letv,sohu,tudou,bilibili,acfun,iqiyi等网站分段视频文件,提供mac&win独立App。 | 1.3k | Python | 07/21 |
| 84 | [moyuanz/DevilYuan](https://github.com/moyuanz/DevilYuan) | DevilYuan可视化股票量化系统,支持选股,历史数据自动下载,策略回测及参数优化,实盘交易和常用的统计功能 | 1.3k | Python | 01/08 |
| 85 | [KubeOperator/KubeOperator](https://github.com/KubeOperator/KubeOperator) | KubeOperator 是一个开源项目,通过 Web UI 在 VMware、OpenStack 和物理机上规划、部署和运营生产级别的 Kubernetes 集群。支持内网离线环境、支持 GPU、内置应用商店,已通过 CNCF 的 Kubernetes 软件一致性认证。 | 1.3k | Python | 01/09 |
| 86 | [aaPanel/BaoTa](https://github.com/aaPanel/BaoTa) | 宝塔Linux面板 - 简单好用的服务器运维面板 | 1.3k | Python | 01/09 |
| 87 | [HuberTRoy/leetCode](https://github.com/HuberTRoy/leetCode) | :pencil2: 算法相关知识储备 LeetCode with Python :books: | 1.3k | Python | 08/11 |
| 88 | [leeguandong/Interview-code-practice-python](https://github.com/leeguandong/Interview-code-practice-python) | 面试题 | 1.3k | Python | 10/28 |
| 89 | [littlecodersh/itchatmp](https://github.com/littlecodersh/itchatmp) | A complete and graceful API for wechat mp. 完备优雅的微信公众号接口,原生支持同步、协程使用。 | 1.3k | Python | 09/26 |
| 90 | [zhaoyingjun/chatbot](https://github.com/zhaoyingjun/chatbot) | 一个可以自己进行训练的中文聊天机器人, 根据自己的语料训练出自己想要的聊天机器人,可以用于智能客服、在线问答、智能聊天等场景。目前包含seq2seq、seqGAN版本和tf2.0版本。 | 1.3k | Python | 12/16 |
| 91 | [dingdang-robot/dingdang-robot](https://github.com/dingdang-robot/dingdang-robot) | 🤖 叮当是一款可以工作在 Raspberry Pi 上的中文语音对话机器人/智能音箱项目。 | 1.2k | Python | 02/05 |
| 92 | [hhyo/Archery](https://github.com/hhyo/Archery) | SQL 审核查询平台 | 1.2k | Python | 01/05 |
| 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 | 07/01 |
| 95 | [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 |
| 96 | [Lucifer1993/struts-scan](https://github.com/Lucifer1993/struts-scan) | Python2编写的struts2漏洞全版本检测和利用工具 | 1.1k | Python | 05/07 |
| 97 | [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/07 |
| 98 | [kingname/GeneralNewsExtractor](https://github.com/kingname/GeneralNewsExtractor) | 新闻网页正文通用抽取器 Beta 版. | 1.1k | Python | 01/04 |
| 99 | [cn/GB2260](https://github.com/cn/GB2260) | 中华人民共和国国家标准 GB/T 2260 行政区划代码 | 1.1k | Python | 09/24 |
| 100 | [abbeyokgo/PyOne](https://github.com/abbeyokgo/PyOne) | PyOne-一款给力的onedrive文件管理、分享程序 | 1.1k | Python | 09/13 |
| 101 | [Lucifer1993/AngelSword](https://github.com/Lucifer1993/AngelSword) | Python3编写的CMS漏洞检测框架 | 1.1k | Python | 04/20 |
| 102 | [marchtea/scrapy_doc_chs](https://github.com/marchtea/scrapy_doc_chs) | scrapy中文翻译文档 | 1.1k | Python | 09/12 |
| 103 | [DropsDevopsOrg/ECommerceCrawlers](https://github.com/DropsDevopsOrg/ECommerceCrawlers) | 实战🐍多种网站、电商数据爬虫🕷。包含🕸:淘宝商品、微信公众号、大众点评、招聘网站、闲鱼、阿里任务、博客园、微博、百度贴吧、豆瓣电影、包图网、全景网、豆瓣音乐、某省药监局、搜狐新闻、机器学习文本采集、fofa资产采集、汽车之家、国家统计局、百度关键词收录数、蜘蛛泛目录、今日头条、豆瓣影评、携程、小米应用商店❤️❤️❤️。微信爬虫展示项目: | 1.0k | Python | 12/28 |
| 104 | [shmilylty/OneForAll](https://github.com/shmilylty/OneForAll) | OneForAll是一款功能强大的子域收集工具 | 1.0k | Python | 01/08 |
| 105 | [Yinzo/SmartQQBot](https://github.com/Yinzo/SmartQQBot) | 基于SmartQQ的自动机器人框架 | 1.0k | Python | 02/11 |
| 106 | [InsaneLife/ChineseNLPCorpus](https://github.com/InsaneLife/ChineseNLPCorpus) | 中文自然语言处理数据集,平时做做实验的材料。欢迎补充提交合并。 | 1.0k | Python | 12/22 |
| 107 | [Lam1360/YOLOv3-model-pruning](https://github.com/Lam1360/YOLOv3-model-pruning) | 在 oxford hand 数据集上对 YOLOv3 做模型剪枝(network slimming) | 998 | Python | 08/26 |
| 108 | [shinnytech/tqsdk-python](https://github.com/shinnytech/tqsdk-python) | 天勤量化开发包, 期货量化, 实时行情/历史数据/实盘交易 | 989 | Python | 01/09 |
| 109 | [Adyzng/jd-autobuy](https://github.com/Adyzng/jd-autobuy) | Python爬虫,京东自动登录,在线抢购商品 | 987 | Python | 08/19 |
| 110 | [HuberTRoy/MusicBox](https://github.com/HuberTRoy/MusicBox) | :blush: :musical_note: MusicPlayer 一站式收听多平台音乐(网易云, 虾米, QQ)的跨平台音乐播放器,尽情享受吧~:sparkles: | 982 | Python | 11/19 |
| 111 | [duoergun0729/nlp](https://github.com/duoergun0729/nlp) | 兜哥出品 <一本开源的NLP入门书籍> | 980 | Python | 11/04 |
| 112 | [yangxuanxc/wechat_friends](https://github.com/yangxuanxc/wechat_friends) | 微信好友信息分析并可视化以及自动回复微信消息 | 973 | Python | 11/10 |
| 113 | [dragen1860/Deep-Learning-with-PyTorch-Tutorials](https://github.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials) | 深度学习与PyTorch入门实战视频教程 配套源代码和PPT | 966 | Python | 11/17 |
| 114 | [ly0/baidupcsapi](https://github.com/ly0/baidupcsapi) | 百度网盘api | 960 | Python | 02/15 |
| 115 | [zwczou/weixin-python](https://github.com/zwczou/weixin-python) | 微信SDK - 包括微信支付,微信公众号,微信登陆,微信消息处理等 | 957 | Python | 12/31 |
| 116 | [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 | 948 | Python | 01/08 |
| 117 | [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. | 948 | Python | 01/09 |
| 118 | [al0ne/Vxscan](https://github.com/al0ne/Vxscan) | python3写的综合扫描工具,主要用来存活验证,敏感文件探测(目录扫描/js泄露接口/html注释泄露),WAF/CDN识别,端口扫描,指纹/服务识别,操作系统识别,POC扫描,SQL注入,绕过CDN,查询旁站等功能,主要用来甲方自测或乙方授权测试,请勿用来搞破坏。 | 916 | Python | 01/02 |
| 119 | [crownpku/Rasa_NLU_Chi](https://github.com/crownpku/Rasa_NLU_Chi) | Turn Chinese natural language into structured data 中文自然语言理解 | 902 | Python | 12/19 |
| 120 | [brightmart/roberta_zh](https://github.com/brightmart/roberta_zh) | RoBERTa中文预训练模型: RoBERTa for Chinese | 897 | Python | 10/12 |
| 121 | [LyleMi/Learn-Web-Hacking](https://github.com/LyleMi/Learn-Web-Hacking) | Study Notes For Web Hacking / Web安全学习笔记 | 896 | Python | 01/07 |
| 122 | [EugeneLiu/translationCSAPP](https://github.com/EugeneLiu/translationCSAPP) | 为 CSAPP 视频课程提供字幕,翻译 PPT,Lab。 | 893 | 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 | 892 | Python | 12/02 |
| 124 | [snowkylin/TensorFlow-cn](https://github.com/snowkylin/TensorFlow-cn) | 简单粗暴 TensorFlow (1.X) \| A Concise Handbook of TensorFlow (1.X) | 869 | Python | 08/23 |
| 125 | [Henryhaohao/Bilibili_video_download](https://github.com/Henryhaohao/Bilibili_video_download) | :rainbow:Bilibili_video_download-B站视频下载 | 830 | Python | 11/04 |
| 126 | [msgi/nlp-journey](https://github.com/msgi/nlp-journey) | NLP 相关的一些文档、论文及代码, 包括主题模型(Topic Model)、词向量(Word Embedding)、命名实体识别(Named Entity Recognition)、文本分类(Text Classificatin)、文本生成(Text Generation)、文本相似性(Text Similarity)计算、机器翻译(Machine Translation)等,涉及到各种与nlp相关的算法,基于tensorflow 2.0。 | 826 | Python | 12/23 |
| 127 | [anbai-inc/Kibana_Hanization](https://github.com/anbai-inc/Kibana_Hanization) | Kibana 中文汉化 | 826 | Python | 05/10 |
| 128 | [fzlee/alipay](https://github.com/fzlee/alipay) | Python Alipay(支付宝) SDK with SHA1/SHA256 support | 821 | Python | 12/18 |
| 129 | [Acmesec/CTFCrackTools](https://github.com/Acmesec/CTFCrackTools) | China's first CTFTools framework.中国国内首个CTF工具框架,旨在帮助CTFer快速攻克难关 | 820 | Python | 01/07 |
| 130 | [heucoder/dimensionality_reduction_alo_codes](https://github.com/heucoder/dimensionality_reduction_alo_codes) | 特征提取/数据降维:PCA、LDA、MDS、LLE、TSNE等降维算法的python实现 | 817 | Python | 11/17 |
| 131 | [rainx/pytdx](https://github.com/rainx/pytdx) | Python tdx数据接口 | 817 | Python | 12/06 |
| 132 | [jachinlin/geektime_dl](https://github.com/jachinlin/geektime_dl) | 把极客时间装进 Kindle | 814 | Python | 01/08 |
| 133 | [ex2tron/OpenCV-Python-Tutorial](https://github.com/ex2tron/OpenCV-Python-Tutorial) | OpenCV-Python图像处理教程 | 811 | Python | 01/08 |
| 134 | [NewFuture/DDNS](https://github.com/NewFuture/DDNS) | :triangular_flag_on_post: 自动更新域名解析到本机IP(支持dnspod,阿里DNS,CloudFlare,DNSCOM...) | 811 | Python | 12/26 |
| 135 | [seisman/how-to-write-makefile](https://github.com/seisman/how-to-write-makefile) | 跟我一起写Makefile重制版 | 786 | Python | 11/06 |
| 136 | [drcoms/drcom-generic](https://github.com/drcoms/drcom-generic) | Dr.COM/DrCOM 现已覆盖 d p x三版。 | 765 | Python | 10/21 |
| 137 | [yoshiko2/AV_Data_Capture](https://github.com/yoshiko2/AV_Data_Capture) | 日本电影元数据刮削器,配合kodi,emby等本地媒体管理工具使用 | 764 | Python | 01/02 |
| 138 | [FutunnOpen/futuquant](https://github.com/FutunnOpen/futuquant) | 富途开放API Python SDK(因更名废弃, 转到 py-futu-api ) | 748 | Python | 01/22 |
| 139 | [githublitao/api_automation_test](https://github.com/githublitao/api_automation_test) | 接口自动化测试平台,已停止维护,看心情改改 | 748 | Python | 12/14 |
| 140 | [iceyhexman/onlinetools](https://github.com/iceyhexman/onlinetools) | 在线cms识别\|信息泄露\|工控\|系统\|物联网安全\|cms漏洞扫描\|nmap端口扫描\|子域名获取\|待续.. | 701 | Python | 11/06 |
| 141 | [wkunzhi/Python3-Spider](https://github.com/wkunzhi/Python3-Spider) | Python爬虫实战 - 模拟登陆各大网站 包含但不限于:滑块验证、拼多多、美团、百度、bilibili、大众点评、淘宝,如果喜欢请start ❤️ | 698 | Python | 01/08 |
| 142 | [shunliz/Machine-Learning](https://github.com/shunliz/Machine-Learning) | 机器学习原理 | 678 | Python | 08/20 |
| 143 | [terrifyzhao/bert-utils](https://github.com/terrifyzhao/bert-utils) | 一行代码使用BERT生成句向量,BERT做文本分类、文本相似度计算 | 677 | Python | 10/14 |
| 144 | [yhangf/PythonCrawler](https://github.com/yhangf/PythonCrawler) | :heartpulse:用python编写的爬虫项目集合 | 673 | Python | 05/09 |
| 145 | [PKUJohnson/OpenData](https://github.com/PKUJohnson/OpenData) | 开源的金融投资数据提取工具,专注在各类网站上爬取数据,并通过简单易用的API方式使用 | 671 | Python | 10/30 |
| 146 | [sczhengyabin/Image-Downloader](https://github.com/sczhengyabin/Image-Downloader) | Download images from Google, Bing, Baidu. 谷歌、百度、必应图片下载. | 671 | Python | 04/03 |
| 147 | [whyliam/whyliam.workflows.youdao](https://github.com/whyliam/whyliam.workflows.youdao) | 使用有道翻译你想知道的单词和语句 | 670 | Python | 12/10 |
| 148 | [zeruniverse/QQRobot](https://github.com/zeruniverse/QQRobot) | QQBot, QQ机器人(群聊小黄鸡) LINUX挂机版, SmartQQ协议。 | 665 | Python | 06/11 |
| 149 | [Hackxiaoya/CuteOne](https://github.com/Hackxiaoya/CuteOne) | 这大概是最好的onedrive挂载程序了吧,我猜。 | 664 | Python | 10/22 |
| 150 | [649453932/Chinese-Text-Classification-Pytorch](https://github.com/649453932/Chinese-Text-Classification-Pytorch) | 中文文本分类,TextCNN,TextRNN,FastText,TextRCNN,BiLSTM_Attention,DPCNN,Transformer,基于pytorch,开箱即用。 | 662 | Python | 12/25 |
| 151 | [mtianyan/FunpySpiderSearchEngine](https://github.com/mtianyan/FunpySpiderSearchEngine) | 借鉴自慕课网-2019.06.19更新【Scrapy 1.6.0爬取数据 + ElasticSearch6.8.0+Django2.2搜索引擎】【爬虫端】(知乎 & 拉勾(暂不可用) & 伯乐) | 662 | Python | 11/16 |
| 152 | [libai3/masr](https://github.com/libai3/masr) | 中文语音识别,高识别率预训练模型,支持docker快速安装 Chinese Speech Recognition; Mandarin Automatic Speech Recognition; | 646 | Python | 01/02 |
| 153 | [EvilCult/moviecatcher](https://github.com/EvilCult/moviecatcher) | 电影美剧搜索及在线观看离线下载软件,集成热门资源站,借助百度云实现离线下载以及在线播放功能。 | 643 | Python | 12/24 |
| 154 | [gusibi/python-weixin](https://github.com/gusibi/python-weixin) | 微信(weixin\|wechat) Python SDK 支持开放平台和公众平台 支持微信小程序云开发 | 637 | Python | 10/31 |
| 155 | [CaoZ/JD-Coin](https://github.com/CaoZ/JD-Coin) | 自动登录京东,打卡领钢镚,签到领京豆 | 635 | Python | 10/14 |
| 156 | [ZSAIm/iqiyi-parser](https://github.com/ZSAIm/iqiyi-parser) | 解析下载爱奇艺、哔哩哔哩、腾讯视频 | 635 | Python | 01/07 |
| 157 | [buppt/ChineseNER](https://github.com/buppt/ChineseNER) | 中文命名实体识别,实体抽取,tensorflow,pytorch,BiLSTM+CRF | 632 | Python | 11/24 |
| 158 | [lemonhu/stock-knowledge-graph](https://github.com/lemonhu/stock-knowledge-graph) | 利用网络上公开的数据构建一个小型的证券知识图谱/知识库 | 632 | Python | 07/09 |
| 159 | [sinall/StrategyEase-Python-SDK](https://github.com/sinall/StrategyEase-Python-SDK) | 策略易(StrategyEase)Python SDK,策略自动化交易 API 及量化平台。 | 628 | Python | 12/27 |
| 160 | [httprunner/HttpRunnerManager](https://github.com/httprunner/HttpRunnerManager) | 基于 HttpRunner 的 Web 测试平台,已停止维护。 | 624 | Python | 07/11 |
| 161 | [blackholll/loonflow](https://github.com/blackholll/loonflow) | 基于django的工作流引擎,工单(a workflow engine base on django python) | 621 | Python | 12/08 |
| 162 | [SimmerChan/KG-demo-for-movie](https://github.com/SimmerChan/KG-demo-for-movie) | 从无到有构建一个电影知识图谱,并基于该KG,开发一个简易的KBQA程序。 | 616 | Python | 05/16 |
| 163 | [HaddyYang/django2.0-course](https://github.com/HaddyYang/django2.0-course) | Django2.0视频教程相关代码(杨仕航) | 610 | Python | 11/01 |
| 164 | [Timthony/self_drive](https://github.com/Timthony/self_drive) | 基于树莓派的自动驾驶小车,利用树莓派和tensorflow实现小车在赛道的自动驾驶。(Self-driving car based on raspberry pi(tensorflow)) | 598 | Python | 06/02 |
| 165 | [Dawnnnnnn/bilibili-live-tools](https://github.com/Dawnnnnnn/bilibili-live-tools) | python实现的bilibili直播助手 | 597 | Python | 01/02 |
| 166 | [twtrubiks/docker-tutorial](https://github.com/twtrubiks/docker-tutorial) | Docker 基本教學 - 從無到有 Docker-Beginners-Guide 教你用 Docker 建立 Django + PostgreSQL 📝 | 595 | Python | 11/15 |
| 167 | [youyuge34/Anime-InPainting](https://github.com/youyuge34/Anime-InPainting) | An application tool of edge-connect, which can do anime inpainting and drawing. 动漫人物图片自动修复,去马赛克,填补,去瑕疵 | 594 | Python | 03/27 |
| 168 | [lzjun567/note](https://github.com/lzjun567/note) | 学习笔记 | 594 | Python | 06/19 |
| 169 | [joe011/python](https://github.com/joe011/python) | python常用脚本 | 594 | Python | 04/16 |
| 170 | [iqiyi/FASPell](https://github.com/iqiyi/FASPell) | 产学界最强(SOTA)的简繁中文拼写检查工具:FASPell Chinese Spell Checker (Chinese Spell Check / 中文拼写检错 / 中文拼写纠错 / 中文拼写检查) | 593 | Python | 11/05 |
| 171 | [ls0f/phone](https://github.com/ls0f/phone) | 手机号码归属地库 | 591 | Python | 06/03 |
| 172 | [lovelyyoshino/Shadowsocks-Hosts-or-V2ray](https://github.com/lovelyyoshino/Shadowsocks-Hosts-or-V2ray) | 利用 hosts 、 Shadowsocks (影梭)、V2ray科学上网 | 588 | Python | 12/21 |
| 173 | [HatBoy/Struts2-Scan](https://github.com/HatBoy/Struts2-Scan) | Struts2全漏洞扫描利用工具 | 587 | Python | 09/10 |
| 174 | [ProHiryu/bert-chinese-ner](https://github.com/ProHiryu/bert-chinese-ner) | 使用预训练语言模型BERT做中文NER | 586 | Python | 10/16 |
| 175 | [Entromorgan/Autoticket](https://github.com/Entromorgan/Autoticket) | 大麦网自动抢票工具 | 567 | Python | 01/08 |
| 176 | [FeeiCN/ESD](https://github.com/FeeiCN/ESD) | Enumeration sub domains(枚举子域名) | 564 | Python | 07/05 |
| 177 | [WyAtu/Perun](https://github.com/WyAtu/Perun) | Perun是一款主要适用于乙方安服、渗透测试人员和甲方RedTeam红队人员的网络资产漏洞扫描器/扫描框架 | 557 | Python | 04/25 |
| 178 | [SnakeHacker/QA-Snake](https://github.com/SnakeHacker/QA-Snake) | 基于多搜索引擎和深度学习技术的自动问答 | 543 | Python | 04/06 |
| 179 | [JeziL/caj2pdf](https://github.com/JeziL/caj2pdf) | Convert CAJ (China Academic Journals) files to PDF. 转换中国知网 CAJ 格式文献为 PDF。佛系转换,成功与否,皆是玄学。 | 542 | Python | 09/15 |
| 180 | [richardchien/nonebot](https://github.com/richardchien/nonebot) | 基于 酷Q 的 Python 异步 QQ 机器人框架 | 539 | Python | 12/23 |
| 181 | [ChestnutHeng/Wudao-dict](https://github.com/ChestnutHeng/Wudao-dict) | 有道词典的命令行版本,支持英汉互查和在线查询。 | 535 | Python | 11/27 |
| 182 | [HatBoy/Pcap-Analyzer](https://github.com/HatBoy/Pcap-Analyzer) | Python编写的可视化的离线数据包分析器 | 533 | Python | 11/14 |
| 183 | [yongzhuo/nlp_xiaojiang](https://github.com/yongzhuo/nlp_xiaojiang) | 自然语言处理(nlp),小姜机器人(闲聊检索式chatbot),BERT句向量-相似度(Sentence Similarity),XLNET句向量-相似度(text xlnet embedding),文本分类(Text classification), 实体提取(ner,bert+bilstm+crf),数据增强(text augment, data enhance),同义句同义词生成,句子主干提取(mainpart),中文汉语短文本相似度,文本特征工程,keras-http-service调用 | 531 | Python | 11/12 |
| 184 | [zhongyiio/crack-geetest](https://github.com/zhongyiio/crack-geetest) | 滑动验证码破解示例,仅供学习使用。 | 525 | Python | 11/03 |
| 185 | [fendouai/PyTorchDocs](https://github.com/fendouai/PyTorchDocs) | PyTorch 官方中文教程包含 60 分钟快速入门教程,强化教程,计算机视觉,自然语言处理,生成对抗网络,强化学习。欢迎 Star,Fork! | 520 | Python | 11/25 |
| 186 | [tp4a/teleport](https://github.com/tp4a/teleport) | Teleport是一款简单易用的堡垒机系统。 | 516 | Python | 12/23 |
| 187 | [ownthink/KnowledgeGraph](https://github.com/ownthink/KnowledgeGraph) | 史上最大规模1.4亿知识图谱数据免费下载,知识图谱,通用知识图谱,融合了两千五百多万的实体,拥有亿级别的实体属性关系。 | 515 | Python | 10/09 |
| 188 | [gavin66/proxy_list](https://github.com/gavin66/proxy_list) | 爬取免费可用代理,供爬虫等工具使用 | 515 | Python | 04/01 |
| 189 | [smilelight/lightNLP](https://github.com/smilelight/lightNLP) | 基于Pytorch和torchtext的自然语言处理深度学习框架,包含序列标注、文本分类、句子关系、文本生成、结构分析、五大功能模块,已实现了命名实体识别、中文分词、词性标注、语义角色标注、情感分析、关系抽取、语言模型、文本相似度、文本蕴含、依存句法分析、词向量训练、聊天机器人、机器翻译、文本摘要等功能。框架功能丰富,开箱可用,极易上手!基本都是学习他人实现然后自己修改融合到框架中,没有细致调参,且有不少Bug~ | 514 | Python | 12/31 |
| 190 | [smileboywtu/MillionHeroAssistant](https://github.com/smileboywtu/MillionHeroAssistant) | 百万 / 冲顶 / 芝士 / UC / 万能 答题助手(知识图谱更加专业,自动推荐答案, Android手机自动屏幕适配,模拟器支持,多开) | 525 | Python | 01/08 |
| 191 | [ldqk/new-pac](https://github.com/ldqk/new-pac) | 科学上网专用 | 502 | Python | 12/29 |
| 192 | [pig6/wxrobot](https://github.com/pig6/wxrobot) | 基于python的微信机器人 | 502 | Python | 12/15 |
| 193 | [Hopetree/izone](https://github.com/Hopetree/izone) | django+bootstrap4 个人博客 | 501 | Python | 12/22 |
| 194 | [mlouielu/twstock](https://github.com/mlouielu/twstock) | 台灣股市股票價格擷取 (含即時股票資訊) - Taiwan Stock Opendata with realtime | 500 | Python | 08/20 |
| 195 | [open-cmdb/cmdb](https://github.com/open-cmdb/cmdb) | CMDB 配置管理系统 资产管理系统 | 496 | Python | 02/22 |
| 196 | [airob0t/idcardgenerator](https://github.com/airob0t/idcardgenerator) | 身份证图片生成工具 generate an id card picture | 496 | Python | 11/25 |
| 197 | [aoii103/DarkNet_ChineseTrading](https://github.com/aoii103/DarkNet_ChineseTrading) | 🚇暗网中文网监控爬虫(DEEPMIX)[站点已更新,请等待最新推送] | 495 | Python | 11/07 |
| 198 | [osroom/osroom](https://github.com/osroom/osroom) | Python Flask开源网站, CMF, 个人,企业网站,多用户网站.提供Restful Api,App,小程序调用 | 488 | Python | 12/17 |
| 199 | [SpikeKing/keras-yolo3-detection](https://github.com/SpikeKing/keras-yolo3-detection) | YOLO v3 物体检测算法 | 486 | Python | 01/03 |
| 200 | [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: 干货满满的全栈开发速学速查手册集锦 | 485 | Python | 01/09 |
⬆ [回到目录](#目录)
<br/>
## Go
| # | Repository | Description | Stars | Language | Updated |
| ---- | ------------------------------------------------------------ | ------------------------------------------------------------ | ----- | -------- | ------- |
| 1 | [iikira/BaiduPCS-Go](https://github.com/iikira/BaiduPCS-Go) | 百度网盘客户端 - Go语言编写 | 19.4k | 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.2k | Go | 01/07 |
| 3 | [cnlh/nps](https://github.com/cnlh/nps) | 一款轻量级、功能强大的内网穿透代理服务器。支持tcp、udp流量转发,支持内网http代理、内网socks5代理,同时支持snappy压缩、站点保护、加密传输、多路复用、header修改等。支持web图形化管理,集成多用户模式。 | 10.0k | Go | 01/07 |
| 4 | [peterq/pan-light](https://github.com/peterq/pan-light) | 百度网盘不限速客户端, golang + qt5, 跨平台图形界面 | 9.7k | Go | 11/08 |
| 5 | [bilibili/kratos](https://github.com/bilibili/kratos) | Kratos是bilibili开源的一套Go微服务框架,包含大量微服务相关框架及工具。 | 7.8k | Go | 01/06 |
| 6 | [snail007/goproxy](https://github.com/snail007/goproxy) | Proxy是高性能全功能的http代理、https代理、socks5代理、内网穿透、内网穿透p2p、内网穿透代理、内网穿透反向代理、内网穿透服务器、Websocket代理、TCP代理、UDP代理、DNS代理、DNS加密代理,代理API认证,全能跨平台代理服务器。 | 7.7k | Go | 12/23 |
| 7 | [polaris1119/The-Golang-Standard-Library-by-Example](https://github.com/polaris1119/The-Golang-Standard-Library-by-Example) | Golang标准库。对于程序员而言,标准库与语言本身同样重要,它好比一个百宝箱,能为各种常见的任务提供完美的解决方案。以示例驱动的方式讲解Golang的标准库。 | 6.2k | 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.2k | 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.4k | Go | 01/06 |
| 12 | [Tencent/bk-cmdb](https://github.com/Tencent/bk-cmdb) | 蓝鲸智云配置平台(BlueKing CMDB) | 3.2k | Go | 01/07 |
| 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 | 12/21 |
| 14 | [chaosblade-io/chaosblade](https://github.com/chaosblade-io/chaosblade) | An easy to use and powerful chaos engineering experiment toolkit.(阿里巴巴开源的一款简单易用、功能强大的混沌实验注入工具) | 2.3k | Go | 01/03 |
| 15 | [gwuhaolin/livego](https://github.com/gwuhaolin/livego) | 纯 Go 写的直播服务器 | 2.2k | 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 cloud operating system(企业应用云操作系统) | 2.1k | Go | 01/06 |
| 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/05 |
| 24 | [aceld/zinx](https://github.com/aceld/zinx) | 基于Golang轻量级TCP并发服务器框架 | 1.9k | Go | 12/27 |
| 25 | [xmge/gonote](https://github.com/xmge/gonote) | 欢迎各位gopher一起来完善这份笔记,让更多的人能够了解go,学习go,使用go,热爱go. :thumbsup: | 1.8k | Go | 11/26 |
| 26 | [xiaoming2028/Free-PAC](https://github.com/xiaoming2028/Free-PAC) | 科学上网/梯子/自由上网/翻墙 SS/SSR/V2Ray/Brook 搭建教程 | 1.8k | Go | 12/11 |
| 27 | [liangdas/mqant](https://github.com/liangdas/mqant) | mqant是一款基于Golang语言的简洁,高效,高性能的分布式游戏服务器框架 | 1.8k | Go | 01/02 |
| 28 | [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 |
| 29 | [silenceper/wechat](https://github.com/silenceper/wechat) | WeChat SDK for Go (微信SDK:简单、易用) | 1.7k | Go | 01/07 |
| 30 | [ysrc/yulong-hids](https://github.com/ysrc/yulong-hids) | 一款由 YSRC 开源的主机入侵检测系统 | 1.6k | Go | 10/18 |
| 31 | [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.6k | Go | 11/28 |
| 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/07 |
| 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 | 12/03 |
| 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.2k | Go | 01/07 |
| 40 | [bilibili/overlord](https://github.com/bilibili/overlord) | Overlord是哔哩哔哩基于Go语言编写的memcache和redis&cluster的代理及集群管理功能,致力于提供自动化高可用的缓存服务解决方案。 | 1.2k | Go | 11/27 |
| 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/06 |
| 42 | [linclin/gopub](https://github.com/linclin/gopub) | vue.js(element框架)+golang(beego框架)开发的运维发布系统,支持git,jenkins版本发布,go ssh,BT两种文件传输方式选择,支持部署前准备任务和部署后任务钩子函数 | 1.2k | Go | 01/06 |
| 43 | [overnote/over-golang](https://github.com/overnote/over-golang) | Golang笔记:[进度80%]Go语法、Go并发思想、Go与web开发、Go微服务设施等 | 1.1k | Go | 01/07 |
| 44 | [phachon/mm-wiki](https://github.com/phachon/mm-wiki) | MM-Wiki 一个轻量级的企业知识分享与团队协同软件,可用于快速构建企业 Wiki 和团队知识分享平台。部署方便,使用简单,帮助团队构建一个信息共享、文档管理的协作环境。 | 1.1k | Go | 12/28 |
| 45 | [micro-in-cn/tutorials](https://github.com/micro-in-cn/tutorials) | Micro 中文示例、教程、资料,源码解读 | 1.0k | Go | 01/07 |
| 46 | [xormplus/xorm](https://github.com/xormplus/xorm) | xorm是一个简单而强大的Go语言ORM库,通过它可以使数据库操作非常简便。本库是基于原版xorm的定制增强版本,为xorm提供类似ibatis的配置文件及动态SQL支持,支持AcitveRecord操作 | 1.0k | Go | 11/14 |
| 47 | [davyxu/tabtoy](https://github.com/davyxu/tabtoy) | 跨平台的高性能便捷电子表格导出器 | 1.0k | Go | 01/03 |
| 48 | [Jinnrry/getAwayBSG](https://github.com/Jinnrry/getAwayBSG) | 逃离北上广 | 973 | Go | 09/05 |
| 49 | [yanyiwu/gojieba](https://github.com/yanyiwu/gojieba) | "结巴"中文分词的Golang版本 | 943 | Go | 10/24 |
| 50 | [opensec-cn/kunpeng](https://github.com/opensec-cn/kunpeng) | kunpeng是一个Golang编写的开源POC框架/库,以动态链接库的形式提供各种语言调用,通过此项目可快速开发漏洞检测类的系统。 | 943 | Go | 12/16 |
| 51 | [george518/PPGo_Job](https://github.com/george518/PPGo_Job) | PPGo_Job是一款可视化的、多人多权限的、一任务多机执行的定时任务管理系统,采用golang开发,安装方便,资源消耗少,支持大并发,可同时管理多台服务器上的定时任务。 | 920 | Go | 11/21 |
| 52 | [40t/go-sniffer](https://github.com/40t/go-sniffer) | 🔎Sniffing and parsing mysql,redis,http,mongodb etc protocol. 抓包截取项目中的数据库请求并解析成相应的语句。 | 902 | Go | 10/09 |
| 53 | [alibaba/RedisShake](https://github.com/alibaba/RedisShake) | Redis-shake is a tool for synchronizing data between two redis databases. Redis-shake是一个用于在两个redis之间同步数据的工具,满足用户非常灵活的同步、迁移需求。 | 884 | Go | 12/31 |
| 54 | [qcrao/Go-Questions](https://github.com/qcrao/Go-Questions) | 从问题切入,串连 Go 语言相关的所有知识,融会贯通。 | 880 | Go | 01/07 |
| 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更好的性能。 | 871 | Go | 12/11 |
| 56 | [henson/proxypool](https://github.com/henson/proxypool) | Golang实现的IP代理池 | 865 | Go | 12/24 |
| 57 | [MiSecurity/x-patrol](https://github.com/MiSecurity/x-patrol) | github泄露扫描系统 | 861 | Go | 10/18 |
| 58 | [iwannay/jiacrontab](https://github.com/iwannay/jiacrontab) | 简单可信赖的任务管理工具 | 817 | Go | 01/05 |
| 59 | [smallnest/dive-to-gosync-workshop](https://github.com/smallnest/dive-to-gosync-workshop) | 深入Go并发编程研讨课 | 806 | Go | 07/25 |
| 60 | [qiniu/qshell](https://github.com/qiniu/qshell) | qshell是利用七牛文档上公开的API实现的一个方便开发者测试和使用七牛API服务的命令行工具。 | 796 | Go | 01/04 |
| 61 | [xianlubird/mydocker](https://github.com/xianlubird/mydocker) | <<自己动手写docker>> 源码 | 777 | Go | 09/10 |
| 62 | [wuYin/blog](https://github.com/wuYin/blog) | 个人博客 | 769 | Go | 11/09 |
| 63 | [alberliu/gim](https://github.com/alberliu/gim) | golang写的IM服务器 | 765 | Go | 01/06 |
| 64 | [qiniu/qlang](https://github.com/qiniu/qlang) | Q Language (Q语言) - A script language for Go | 761 | Go | 09/07 |
| 65 | [smartwalle/alipay](https://github.com/smartwalle/alipay) | 支付宝 AliPay SDK for Go, 集成简单,功能完善,持续更新,支持公钥证书和普通公钥进行签名和验签。 | 740 | Go | 12/24 |
| 66 | [chai2010/awesome-go-zh](https://github.com/chai2010/awesome-go-zh) | :books: Go资源精选中文版(含中文图书大全) | 732 | Go | 09/23 |
| 67 | [Go-zh/tour](https://github.com/Go-zh/tour) | Go 语言官方教程中文版 | 729 | Go | 05/15 |
| 68 | [caixw/apidoc](https://github.com/caixw/apidoc) | RESTful API 文档生成工具,支持 Go、Java、Swift、JavaScript、Rust、PHP、Python 和 Ruby 等大部分语言。 | 727 | Go | 01/05 |
| 69 | [yoki123/ncmdump](https://github.com/yoki123/ncmdump) | netease cloud music copyright protection file dump(golang版本网易云音乐ncm文件格式转换) | 724 | Go | 11/05 |
| 70 | [bilibili/sniper](https://github.com/bilibili/sniper) | 轻量级 go 业务框架。 | 708 | Go | 08/23 |
| 71 | [GameXG/TcpRoute2](https://github.com/GameXG/TcpRoute2) | TcpRoute , TCP 层的路由器。对于 TCP 连接自动从多个线路(电信、联通、移动)、多个域名解析结果中选择最优线路。 | 695 | Go | 03/21 |
| 72 | [3xxx/engineercms](https://github.com/3xxx/engineercms) | 工程师知识管理系统:基于golang go语言(beego框架)。每个行业都有自己的知识管理系统,engineercms旨在为土木工程师们打造一款适用的基于web的知识管理系统。它既可以用于管理个人的项目资料,也可以用于管理项目团队资料;它既可以运行于个人电脑,也可以放到服务器上。支持onlyoffice实时文档协作,直接在线编辑dwg文件、office文档,阅览PDF文件。通用的业务流程设置。手机端配套小程序,微信搜索“珠三角设代”或“青少儿书画”即可呼出小程序。 | 688 | Go | 12/18 |
| 73 | [xluohome/phonedata](https://github.com/xluohome/phonedata) | 手机号码归属地信息库、手机号归属地查询 phone.dat 最后更新:2019年11月 | 680 | Go | 11/16 |
| 74 | [gobyexample-cn/gobyexample](https://github.com/gobyexample-cn/gobyexample) | Go by Example 通过例子学 Golang | 675 | Go | 12/26 |
| 75 | [owenliang/go-push](https://github.com/owenliang/go-push) | 用GO做推送 | 671 | Go | 11/09 |
| 76 | [mozillazg/go-pinyin](https://github.com/mozillazg/go-pinyin) | 汉字转拼音 | 629 | Go | 12/12 |
| 77 | [wangsongyan/wblog](https://github.com/wangsongyan/wblog) | 基于gin+gorm开发的个人博客项目 | 614 | Go | 07/12 |
| 78 | [bobohume/gonet](https://github.com/bobohume/gonet) | go分布式服务器,基于内存mmo | 608 | Go | 01/04 |
| 79 | [wendal/gor](https://github.com/wendal/gor) | Golang编写的静态博客引擎 | 590 | Go | 09/04 |
| 80 | [itcloudy/ERP](https://github.com/itcloudy/ERP) | 基于beego的进销存系统 | 574 | Go | 10/15 |
| 81 | [ixre/go2o](https://github.com/ixre/go2o) | 基于DDD的o2o的业务模型及基础, 使用Golang+Thrift实现 | 572 | Go | 12/28 |
| 82 | [liushuchun/wechatcmd](https://github.com/liushuchun/wechatcmd) | 提供微信终端版本、微信命令行版本聊天功能、微信机器人 | 561 | Go | 04/22 |
| 83 | [Gourouting/singo](https://github.com/Gourouting/singo) | Gin+Gorm开发Golang API快速开发脚手架 | 553 | Go | 11/06 |
| 84 | [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的集群复制工具,可以满足迁移和同步的需求,进一步实现灾备和多活功能。 | 548 | Go | 01/06 |
| 85 | [yangwenmai/learning-golang](https://github.com/yangwenmai/learning-golang) | Go 学习之路:Go 开发者博客、Go 微信公众号、Go 学习资料(文档、书籍、视频) | 548 | Go | 05/06 |
| 86 | [getlantern/lantern](https://github.com/getlantern/lantern) | Lantern官方版本下载 蓝灯 翻墙 科学上网 外网 加速器 梯子 路由 lantern censorship-circumvention censorship gfw vpn accelerator | 536 | Go | 01/01 |
| 87 | [winterssy/mxget](https://github.com/winterssy/mxget) | 优雅的一站式音乐搜索、下载试听服务,支持国内所有音乐平台 | 535 | Go | 01/07 |
| 88 | [wyh267/FalconEngine](https://github.com/wyh267/FalconEngine) | 一个go语言实现的简单搜索引擎 | 534 | Go | 02/19 |
| 89 | [qiniu/httptest](https://github.com/qiniu/httptest) | Qiniu httptest package - 七牛HTTP测试工具包 | 514 | Go | 09/11 |
| 90 | [hanchuanchuan/goInception](https://github.com/hanchuanchuan/goInception) | 一个集审核、执行、备份及生成回滚语句于一身的MySQL运维工具 | 505 | Go | 01/07 |
| 91 | [lhtzbj12/sdrms](https://github.com/lhtzbj12/sdrms) | 基于Beego开发的易用、易扩展、界面友好的轻量级功能权限管理系统 | 487 | Go | 07/01 |
| 92 | [jiajunhuang/blog](https://github.com/jiajunhuang/blog) | Jiajun的编程随想 | 479 | Go | 01/07 |
| 93 | [sevenelevenlee/go-patterns](https://github.com/sevenelevenlee/go-patterns) | Golang 设计模式 | 473 | Go | 11/24 |
| 94 | [unknwon/building-web-applications-in-go](https://github.com/unknwon/building-web-applications-in-go) | Go 语言 Web 应用开发系列教程,从新手到双手残废 | 468 | Go | 12/14 |
| 95 | [medivhzhan/weapp](https://github.com/medivhzhan/weapp) | GO 微信小程序 SDK | 468 | Go | 11/08 |
| 96 | [Golangltd/codeclass](https://github.com/Golangltd/codeclass) | Golang语言社区--腾讯课堂、网易云课堂、字节教育课程PPT及代码 | 431 | Go | 05/09 |
| 97 | [duolatech/xapimanager](https://github.com/duolatech/xapimanager) | XAPI MANAGER -专业实用的开源接口管理平台,为程序开发者提供一个灵活,方便,快捷的API管理工具,让API管理变的更加清晰、明朗。如果你觉得xApi对你有用的话,别忘了给我们点个赞哦^_^ ! | 428 | Go | 08/30 |
| 98 | [thinkeridea/go-extend](https://github.com/thinkeridea/go-extend) | go语言扩展包,收集一些常用的操作函数,辅助更快的完成开发工作,并减少重复代码 | 423 | Go | 01/06 |
| 99 | [godcong/fate](https://github.com/godcong/fate) | fate 命运 起名 算命 宝宝起名 | 395 | Go | 01/06 |
| 100 | [TeaWeb/build](https://github.com/TeaWeb/build) | TeaWeb-可视化的Web代理服务。DEMO: http://teaos.cn:7777 | 395 | Go | 12/14 |
| 101 | [hidu/mysql-schema-sync](https://github.com/hidu/mysql-schema-sync) | mysql表结构自动同步工具(目前只支持字段、索引的同步,分区等高级功能暂不支持) | 392 | Go | 01/01 |
| 102 | [guonaihong/gout](https://github.com/guonaihong/gout) | gout to become the Swiss Army Knife of the http client @^^@---> gout 是http client领域的瑞士军刀,小巧,强大,犀利。具体用法可看文档,如使用迷惑或者API用得不爽都可提issues | 390 | Go | 01/06 |
| 103 | [33cn/chain33](https://github.com/33cn/chain33) | 高度模块化, 遵循 KISS原则的区块链开发框架 | 388 | Go | 01/07 |
| 104 | [silenceper/pool](https://github.com/silenceper/pool) | Golang 通用网络连接池 | 388 | Go | 11/05 |
| 105 | [didi/falcon-log-agent](https://github.com/didi/falcon-log-agent) | 用于监控系统的日志采集agent,可无缝对接open-falcon | 382 | Go | 08/09 |
| 106 | [cnbattle/douyin](https://github.com/cnbattle/douyin) | 抖音推荐列表视频爬虫方案,基于app(虚拟机或真机) 相关技术 golang adb nodejs anyproxy | 381 | Go | 09/11 |
| 107 | [hb-go/echo-web](https://github.com/hb-go/echo-web) | Go web framework Echo example. 在线演示☞迁移ing❌ | 375 | Go | 05/29 |
| 108 | [wiatingpub/MTBSystem](https://github.com/wiatingpub/MTBSystem) | 使用go-micro微服务实现的在线电影院订票系统 | 373 | Go | 08/02 |
| 109 | [piexlmax/gin-vue-admin](https://github.com/piexlmax/gin-vue-admin) | 基于gin+gorm+vue搭建的快速后台管理系统模板,包含jwt鉴权,权限管理,动态路由,分页封装,上传下载等基础功能,更多功能正在开发中,欢迎iss,欢迎pr;Based on gin+gorm+vue, the quick project template includes basic functions such as jwt authentication, rights management, dynamic routing, paging encapsulation, uploading and downloading, more functions are under devel ... | 356 | Go | 01/07 |
| 110 | [jemygraw/TechDoc](https://github.com/jemygraw/TechDoc) | 自己编写的技术文档汇总 | 350 | Go | 07/04 |
| 111 | [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群获取。) | 344 | Go | 12/30 |
| 112 | [bitepeng/b0pass](https://github.com/bitepeng/b0pass) | 百灵快传:基于Go语言的高性能 "手机电脑超大文件传输神器"、"局域网共享文件服务器"。LAN large file transfer tool。 | 339 | Go | 11/29 |
| 113 | [tjfoc/gmsm](https://github.com/tjfoc/gmsm) | GM SM2/3/4 library based on Golang (基于Go语言的国密SM2/SM3/SM4算法库) | 337 | Go | 01/02 |
| 114 | [Echosong/beego_blog](https://github.com/Echosong/beego_blog) | beego+layui go入门开发 简洁美观的个人博客系统 | 334 | Go | 10/30 |
| 115 | [silenceper/gowatch](https://github.com/silenceper/gowatch) | go程序热编译工具,提升开发效率 | 332 | Go | 12/10 |
| 116 | [objcoding/wxpay](https://github.com/objcoding/wxpay) | 微信支付(WeChat Pay) SDK for Golang | 331 | Go | 08/15 |
| 117 | [zgs225/alfred-youdao](https://github.com/zgs225/alfred-youdao) | 有道词典 for Alfred | 331 | Go | 04/30 |
| 118 | [wumansgy/GoAndBlockChainStudy](https://github.com/wumansgy/GoAndBlockChainStudy) | go and blockchain study note,欢迎各位志同道合的朋友一起完善,让更多的go或者区块链开发者能够有一份不错的学习资料 | 323 | Go | 01/15 |
| 119 | [snowlyg/IrisAdminApi](https://github.com/snowlyg/IrisAdminApi) | iris 框架的后台api项目 | 322 | Go | 01/07 |
| 120 | [qit-team/snow](https://github.com/qit-team/snow) | 简洁易用的Go业务框架 | 316 | Go | 12/13 |
| 121 | [geph-official/geph2](https://github.com/geph-official/geph2) | Geph (迷霧通) is a modular Internet censorship circumvention system designed specifically to deal with national filtering. | 313 | Go | 01/06 |
| 122 | [it234/goapp](https://github.com/it234/goapp) | Gin + GORM + Casbin + vue-element-admin 实现的权限管理系统(golang) | 300 | Go | 12/15 |
| 123 | [hb-go/micro](https://github.com/hb-go/micro) | go-micro 微服务实践,更多请关注Micro中国站☞ | 300 | Go | 10/19 |
| 124 | [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 环境 | 297 | Go | 01/02 |
| 125 | [Gourouting/giligili](https://github.com/Gourouting/giligili) | gin+gorm开发的视频网站示例 | 286 | Go | 09/04 |
| 126 | [zc2638/go-standard](https://github.com/zc2638/go-standard) | Go常用规范定义,标准库方法使用示例,请注意这不是Go的中文版标准库(内含传送门) | 284 | Go | 12/17 |
| 127 | [EndlessCheng/mahjong-helper](https://github.com/EndlessCheng/mahjong-helper) | 日本麻将助手:牌效+防守+记牌(支持雀魂、天凤) | 283 | Go | 12/31 |
| 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。 | 281 | Go | 12/03 |
| 129 | [ego008/goyoubbs](https://github.com/ego008/goyoubbs) | golang 实现的youBBS,自动安装、更新HTTPS | 273 | Go | 11/29 |
| 130 | [chai2010/gopherchina2018-cgo-talk](https://github.com/chai2010/gopherchina2018-cgo-talk) | :book: GopherChina2018: 深入CGO编程 - 最新修订 | 268 | Go | 06/19 |
| 131 | [Golangltd/LollipopGo](https://github.com/Golangltd/LollipopGo) | Golang语言社区 全球服游戏服务器框架,目前协议支持websocket、http及RPC,采用状态同步,愿景:打造竞技实时【比赛】对战游戏平台框架! 功能持续更新中... ... | 268 | Go | 07/02 |
| 132 | [xxjwxc/gormt](https://github.com/xxjwxc/gormt) | mysql database to golang gorm struct , golang gorm 数据库映射工具 | 261 | Go | 01/05 |
| 133 | [indes/flowerss-bot](https://github.com/indes/flowerss-bot) | A telegram bot for rss reader. 一个支持应用内阅读的 Telegram RSS Bot。 | 261 | Go | 01/04 |
| 134 | [qiniu/arch](https://github.com/qiniu/arch) | 极客时间专栏《许式伟的架构课》相关的源代码:冯诺伊曼结构 | 258 | Go | 02/10 |
| 135 | [kplcloud/kplcloud](https://github.com/kplcloud/kplcloud) | 基于Kubernetes的应用管理平台 | 258 | Go | 12/26 |
| 136 | [Terry-Ye/im](https://github.com/Terry-Ye/im) | 纯go实现的分布式im即时通讯系统,各层可单独部署,之间通过rpc通讯 | 254 | Go | 11/23 |
| 137 | [ma6254/FictionDown](https://github.com/ma6254/FictionDown) | 小说下载\|小说爬取\|起点\|笔趣阁\|导出Markdown\|导出txt\|转换epub\|广告过滤\|自动校对 | 253 | Go | 05/15 |
| 138 | [hr3lxphr6j/bililive-go](https://github.com/hr3lxphr6j/bililive-go) | 一个直播录制工具 | 252 | Go | 11/14 |
| 139 | [childe/gohangout](https://github.com/childe/gohangout) | golang版本的hangout, 希望能省些内存. 使用了自己写的Kafka lib .. 虚. 不过我们在生产环境已经使用近1年, kafka 版本从0.9.0.1到2.0都在使用, 目前情况稳定. 吞吐量在每天2000亿条以上. | 246 | Go | 12/24 |
| 140 | [dengsgo/fileboy](https://github.com/dengsgo/fileboy) | fileboy,文件变更监听通知系统,使用 Go 编写。Fileboy, File Change Monitoring Notification System, written with Go. | 243 | Go | 01/05 |
| 141 | [withlin/canal-go](https://github.com/withlin/canal-go) | Alibaba mysql database binlog incremental subscription & consumer components Canal's golang client[阿里巴巴mysql数据库binlog的增量订阅&消费组件 Canal 的 go 客户端 ] https://github.com/alibaba/canal | 242 | Go | 12/12 |
| 142 | [xinliangnote/go-gin-api](https://github.com/xinliangnote/go-gin-api) | 基于 Gin 进行模块化设计的 API 框架,封装了常用功能,使用简单,致力于进行快速的业务研发。比如,validator.v9 参数验证、签名验证中间件、日志记录中间件、异常捕获中间件、jaeger 链路追踪、gRPC 的使用 等等。 | 242 | Go | 11/16 |
| 143 | [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 分析,以及自动化重构等。 | 237 | Go | 01/07 |
| 144 | [idoubi/gonews](https://github.com/idoubi/gonews) | golang每日新闻检索平台 | 233 | Go | 11/13 |
| 145 | [jaywcjlove/golang-tutorial](https://github.com/jaywcjlove/golang-tutorial) | Go语言快速入门 | 233 | Go | 02/08 |
| 146 | [wxbool/video-srt-windows](https://github.com/wxbool/video-srt-windows) | 这是一个可以识别视频语音自动生成字幕SRT文件的开源 Windows-GUI 软件工具。 | 231 | Go | 12/29 |
| 147 | [esap/wechat](https://github.com/esap/wechat) | 微信SDK的golang实现,短小精悍,同时兼容【企业号/服务号/订阅号/小程序】 | 230 | Go | 07/24 |
| 148 | [esrrhs/pingtunnel](https://github.com/esrrhs/pingtunnel) | a tool that advertises tcp/udp/socks5 traffic as icmp traffic for forwarding.流量转发工具. | 229 | Go | 01/06 |
| 149 | [zboya/golang_runtime_reading](https://github.com/zboya/golang_runtime_reading) | golang 1.10.2 runtime code reading - golang runtime源码分析。只有思考过,你才会印象深刻。 | 229 | Go | 07/22 |
| 150 | [qieguo2016/algorithm](https://github.com/qieguo2016/algorithm) | 常用算法和数据结构讲解,面试算法题/leetcode解题,提供golang/js版本 | 227 | Go | 12/22 |
| 151 | [Leslie1sMe/golang](https://github.com/Leslie1sMe/golang) | Golang的实战项目,学习笔记,代码例程汇总。 | 225 | Go | 12/24 |
| 152 | [lifei6671/interview-go](https://github.com/lifei6671/interview-go) | golang面试题集合 | 218 | Go | 08/19 |
| 153 | [chanyipiaomiao/devops-api](https://github.com/chanyipiaomiao/devops-api) | Golang + Beego 编写 提供开发/运维常用操作的HTTP API接口: 手机归属地查询、IP地址查询、工作日节假日判断、微信报警、钉钉报警、2步验证、密码存储、发送邮件、生成随机密码等功能 | 216 | Go | 04/02 |
| 154 | [magiclvzs/antnet](https://github.com/magiclvzs/antnet) | A game server net framework in Golang go(Golang)游戏服务器网络框架 | 214 | Go | 12/26 |
| 155 | [link1st/gowebsocket](https://github.com/link1st/gowebsocket) | golang基于websocket单台机器支持百万连接分布式聊天(IM)系统 | 214 | Go | 12/03 |
| 156 | [deepzz0/goblog](https://github.com/deepzz0/goblog) | beego框架开发的博客,采用mongodb数据库,markdown编辑文章,集成评论、友情链接,云标签功能,带后台管理、站长验证、feed、sitemap,提供邮件报错,静态文件七牛云存储。我的博客: | 209 | Go | 12/28 |
| 157 | [pingguoxueyuan/gostudy](https://github.com/pingguoxueyuan/gostudy) | gostudy是关于golang的学习教程,采用通俗易懂、实践和理论相结合的方式,阐述golang各个方面的特性,尽快让初学者通过项目实践,快速的上手并成为经验丰富的golang开发者 | 207 | Go | 12/22 |
| 158 | [milkbobo/gopay](https://github.com/milkbobo/gopay) | golang支付:微信公众号,微信app,微信小程序,微信企业支付,支付宝网页版,支付宝app,支付宝企业支付 | 206 | Go | 08/27 |
| 159 | [micro-in-cn/all-in-one](https://github.com/micro-in-cn/all-in-one) | micro 特性全合一项目示例 [归档] 移步至:https://github.com/micro-in-cn/tutorials | 203 | Go | 07/28 |
| 160 | [countstarlight/homo](https://github.com/countstarlight/homo) | 一个基于离线唤醒,自然语言理解和情感分析的开源自然交互系统 | 200 | Go | 12/17 |
| 161 | [go-spring/go-spring](https://github.com/go-spring/go-spring) | 基于 IoC 的 Go 后端一站式开发框架 🚀 | 200 | Go | 01/06 |
| 162 | [yanjunhui/chat](https://github.com/yanjunhui/chat) | 微信企业号发送监控 for OpenFalcon | 192 | Go | 02/27 |
| 163 | [knownsec/gsm](https://github.com/knownsec/gsm) | 使用树莓派配合硬件来进行短信转发 | 190 | Go | 05/08 |
| 164 | [Tencent/bk-bcs](https://github.com/Tencent/bk-bcs) | 蓝鲸智云容器管理平台(BlueKing Container Service) | 188 | Go | 01/06 |
| 165 | [brokercap/Bifrost](https://github.com/brokercap/Bifrost) | Bifrost ---- 面向生产环境的 MySQL 同步到Redis,MongoDB等服务的异构中间件 | 186 | Go | 12/08 |
| 166 | [islenbo/autossh](https://github.com/islenbo/autossh) | No password ssh client for Mac/Linux, one key login remote server. 一个SSH远程客户端,可一键登录远程服务器,主要用来弥补Mac/Linux Terminal SSH无法保存密码的不足。 | 185 | Go | 08/22 |
| 167 | [pibigstar/go-demo](https://github.com/pibigstar/go-demo) | Go语言实例教程从入门到进阶,包括基础库使用、设计模式、面试易错点、工具类、对接第三方等 | 185 | Go | 01/03 |
| 168 | [hequan2017/go-admin](https://github.com/hequan2017/go-admin) | go web api,包含gin+gorm+jwt+rbac等。 | 185 | Go | 12/30 |
| 169 | [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 | 183 | Go | 04/11 |
| 170 | [tuotoo/qrcode](https://github.com/tuotoo/qrcode) | qrcode scanner ( decoder ) by golang 二维码扫描识别 | 182 | Go | 07/11 |
| 171 | [micro-plat/hydra](https://github.com/micro-plat/hydra) | 后端全栈式服务框架,提供接口服务器、web服务器、websocket服务器,RPC服务器、统一调度服务器、消息消费服务器 | 181 | Go | 01/07 |
| 172 | [silsuer/golang-design-patterns](https://github.com/silsuer/golang-design-patterns) | 使用golang实现各种设计模式 | 179 | Go | 02/11 |
| 173 | [lianxiangcloud/linkchain](https://github.com/lianxiangcloud/linkchain) | 享云链-郑和版本,由链享云打造的专注于数字经济创新业务的公链。 | 178 | Go | 01/03 |
| 174 | [Allenxuxu/microservices](https://github.com/Allenxuxu/microservices) | micro 微服务实例教程,包含JWT鉴权、熔断、监控、链路追踪、健康检查、跨域等 | 177 | Go | 12/27 |
| 175 | [issue9/identicon](https://github.com/issue9/identicon) | Go 语言版 identicon 头像产生工具 | 175 | Go | 09/06 |
| 176 | [geektutu/7days-golang](https://github.com/geektutu/7days-golang) | 7 days Golang web framework from scratch (7天用Go动手写Web框架Gee[从零实现]) | 174 | Go | 11/30 |
| 177 | [afocus/captcha](https://github.com/afocus/captcha) | simple captcha for golang (go验证码生成器) | 173 | Go | 10/10 |
| 178 | [Shitaibin/golang_step_by_step](https://github.com/Shitaibin/golang_step_by_step) | Golang入门教程的文章、示例代码,喜欢就star,订阅就watch | 173 | Go | 12/12 |
| 179 | [nange/gospider](https://github.com/nange/gospider) | golang实现的爬虫框架,使用者只需关心页面规则,提供web管理界面。基于colly开发。 | 173 | Go | 10/22 |
| 180 | [yehux/Coot](https://github.com/yehux/Coot) | 玩转 IFTTT 体验极客生活,互联网自动化神器 | 171 | Go | 08/15 |
| 181 | [Leon2012/gimg](https://github.com/Leon2012/gimg) | golang实现的zimg | 168 | Go | 10/23 |
| 182 | [sinksmell/lanblog](https://github.com/sinksmell/lanblog) | 懒人博客,前后端分离,Vue+Beego Restful api 开箱即用,部署简单,后台管理系统简洁美观。 | 166 | Go | 10/12 |
| 183 | [antlinker/go-dirtyfilter](https://github.com/antlinker/go-dirtyfilter) | Golang基于DFA算法实现的敏感词过滤 | 164 | Go | 09/23 |
| 184 | [mattn/goemon](https://github.com/mattn/goemon) | 五右衛門 | 163 | Go | 09/24 |
| 185 | [freshcn/qqwry](https://github.com/freshcn/qqwry) | 纯真ip库的golang服务 | 163 | Go | 05/20 |
| 186 | [Tinywan/golang-tutorial](https://github.com/Tinywan/golang-tutorial) | :bouquet: Golang 系列教程(译) | 161 | Go | 11/13 |
| 187 | [isucon/isucon7-qualify](https://github.com/isucon/isucon7-qualify) | ISUCON7 予選問題の参照実装とベンチマーカー | 160 | Go | 12/19 |
| 188 | [mydevc/go-gin-mvc](https://github.com/mydevc/go-gin-mvc) | 基于框架gin+xorm搭建的MVC项目架子,适合初学者 | 158 | Go | 02/22 |
| 189 | [Gopusher/gateway](https://github.com/Gopusher/gateway) | 🚀构建分布式即时聊天、消息推送系统。 Building distributed instant messaging, push notification systems. | 156 | Go | 09/24 |
| 190 | [wumansgy/goEncrypt](https://github.com/wumansgy/goEncrypt) | go语言封装的各种对称加密和非对称加密,可以直接使用,包括3重DES,AES的CBC和CTR模式,还有RSA非对称加密,ECC椭圆曲线的加密和数字签名 | 155 | Go | 08/22 |
| 191 | [gfandada/gserver](https://github.com/gfandada/gserver) | 通用的实时流golang框架,可以方便的创建游戏服务/聊天服务等 | 153 | Go | 04/16 |
| 192 | [ItsWewin/go-chat](https://github.com/ItsWewin/go-chat) | Golang 高并发聊天程序/go chat room | 151 | Go | 12/18 |
| 193 | [Comdex/imgo](https://github.com/Comdex/imgo) | golang图像处理工具库(golang image process lib) | 148 | Go | 12/22 |
| 194 | [lifei6671/go-git-webhook](https://github.com/lifei6671/go-git-webhook) | Golang 实现的自动化部署和运维工具,支持:Github / GitLab / GitOsc。 | 147 | Go | 06/14 |
| 195 | [importcjj/sensitive](https://github.com/importcjj/sensitive) | 敏感词查找,验证,过滤和替换 🤓 FindAll, Validate, Filter and Replace words. | 146 | Go | 01/06 |
| 196 | [imroc/ontts](https://github.com/imroc/ontts) | 科大讯飞语音linux在线语音合成后台服务 | 145 | Go | 03/01 |
| 197 | [broqiang/mdblog](https://github.com/broqiang/mdblog) | 用来显示 markdown 文档的,基于 gin 框架的, go 语言开发的博客 | 144 | Go | 11/19 |
| 198 | [hellobike/amazonriver](https://github.com/hellobike/amazonriver) | amazonriver 是一个将postgresql的实时数据同步到es或kafka的服务 | 144 | Go | 12/03 |
| 199 | [dwg255/landlord](https://github.com/dwg255/landlord) | 斗地主 | 144 | Go | 06/28 |
| 200 | [Hentioe/sorry-generator](https://github.com/Hentioe/sorry-generator) | 王境泽/偷车贼/为所欲为等字幕梗生成器 for Golang | 142 | Go | 05/03 |
⬆ [回到目录](#目录)
<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.3k | 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/05 |
| 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.5k | 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/06 |
| 8 | [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 |
| 9 | [cloudreve/Cloudreve](https://github.com/cloudreve/Cloudreve) | 🌈支持多家云存储的云盘系统 (A project helps you build your own cloud in minutes) | 3.0k | PHP | 12/29 |
| 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 | 10/09 |
| 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 | 12/03 |
| 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 | 12/01 |
| 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 | [zoujingli/ThinkAdmin](https://github.com/zoujingli/ThinkAdmin) | 基于 ThinkPHP 5.1 基础开发平台(登录账号密码都是 admin ) | 1.5k | PHP | 01/07 |
| 22 | [Qsnh/meedu](https://github.com/Qsnh/meedu) | 基于Laravel开发的在线点播系统。 | 1.4k | PHP | 01/06 |
| 23 | [SwooleDistributed/SwooleDistributed](https://github.com/SwooleDistributed/SwooleDistributed) | swoole 分布式全栈框架 | 1.4k | PHP | 04/30 |
| 24 | [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 |
| 25 | [honraytech/VueThink](https://github.com/honraytech/VueThink) | VueThink是一套基于Vue全家桶(Vue2.x + Vue-router2.x + Vuex)+ ThinkPHP5的前后端分离框架。 | 1.3k | PHP | 03/05 |
| 26 | [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 |
| 27 | [hightman/xunsearch](https://github.com/hightman/xunsearch) | 免费开源的中文搜索引擎,采用 C/C++ 编写 (基于 xapian 和 scws),提供 PHP 的开发接口和丰富文档 | 1.3k | PHP | 11/01 |
| 28 | [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.2k | PHP | 12/04 |
| 29 | [hui-ho/WebStack-Laravel](https://github.com/hui-ho/WebStack-Laravel) | 一个开源的网址导航网站项目,您可以拿来制作自己的网址导航。 | 1.2k | PHP | 12/23 |
| 30 | [helloxz/imgurl](https://github.com/helloxz/imgurl) | ImgURL是一个简单、纯粹的图床程序,让个人图床多一个选择。 | 1.2k | PHP | 09/02 |
| 31 | [zorlan/skycaiji](https://github.com/zorlan/skycaiji) | 蓝天采集器是一款免费的数据采集发布爬虫软件,采用php+mysql开发,可部署在云服务器,几乎能采集所有类型的网页,无缝对接各类CMS建站程序,免登录实时发布数据,全自动无需人工干预!是大数据、云时代网站数据自动化采集的最佳云端爬虫软件 | 1.2k | PHP | 09/25 |
| 32 | [zhanghuanchong/icon-workshop](https://github.com/zhanghuanchong/icon-workshop) | 图标工场 - 移动应用图标生成工具,一键生成所有尺寸的应用图标和启动图 | 1.1k | PHP | 09/03 |
| 33 | [SegmentFault/HyperDown](https://github.com/SegmentFault/HyperDown) | 一个结构清晰的,易于维护的,现代的PHP Markdown解析器 | 1.1k | PHP | 11/18 |
| 34 | [luofei614/SocketLog](https://github.com/luofei614/SocketLog) | 微信调试、API调试和AJAX的调试的工具,能将日志通过WebSocket输出到Chrome浏览器的console中 | 1.1k | PHP | 10/09 |
| 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 | [mashirozx/Sakura](https://github.com/mashirozx/Sakura) | A Wonderful WordPress Theme: 樱花庄的白猫博客主题 | 1.0k | PHP | 01/07 |
| 37 | [Tai7sy/card-system](https://github.com/Tai7sy/card-system) | 个人在线发卡系统,高效安全的发卡平台 | 998 | PHP | 12/04 |
| 38 | [EleTeam/Shop-PHP-Yii2](https://github.com/EleTeam/Shop-PHP-Yii2) | EleTeam开源项目-电商全套解决方案之PHP版-Shop-for-PHP-Yii2。一个类似京东/天猫/淘宝的商城,有对应的APP支持,由EleTeam团队维护! | 993 | PHP | 09/24 |
| 39 | [TideSec/WDScanner](https://github.com/TideSec/WDScanner) | WDScanner平台目前实现了如下功能:分布式web漏洞扫描、客户管理、漏洞定期扫描、子域名枚举、端口扫描、网站爬虫、暗链检测、坏链检测、网站指纹搜集、专项漏洞检测、代理搜集及部署等功能。 | 966 | PHP | 07/04 |
| 40 | [thenbsp/wechat](https://github.com/thenbsp/wechat) | 微信公众平台第三方 SDK 开发包,优雅、健壮,可扩展,遵循 PSR 开发规范。 | 964 | PHP | 01/18 |
| 41 | [geesondog/rhaphp](https://github.com/geesondog/rhaphp) | RhaPHP是微信第三方管理平台,微信公众号管理系统,支持多公众号管理,CRM会员管理,小程序开发,APP接口开发、几乎集合微信功能,简洁、快速上手、快速开发微信各种各样应用。简洁、好用、快速、项目开发快几倍 。 | 918 | PHP | 12/28 |
| 42 | [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. | 909 | PHP | 11/17 |
| 43 | [overtrue/api.yike.io](https://github.com/overtrue/api.yike.io) | 一刻社区后端 API 源码 | 892 | PHP | 01/01 |
| 44 | [MoeNetwork/Tieba-Cloud-Sign](https://github.com/MoeNetwork/Tieba-Cloud-Sign) | 百度贴吧云签到,在服务器上配置好就无需进行任何操作便可以实现贴吧的全自动签到。配合插件使用还可实现云灌水、点赞、封禁、删帖、审查等功能 | 873 | PHP | 12/20 |
| 45 | [bowu678/php_bugs](https://github.com/bowu678/php_bugs) | PHP代码审计分段讲解 | 852 | PHP | 06/04 |
| 46 | [Leslin/thinkphp5-restfulapi](https://github.com/Leslin/thinkphp5-restfulapi) | restful-api风格接口 APP接口 APP接口权限 oauth2.0 接口版本管理 接口鉴权 | 849 | PHP | 07/10 |
| 47 | [typecho-fans/plugins](https://github.com/typecho-fans/plugins) | Typecho开源插件集群 | 846 | PHP | 12/24 |
| 48 | [gongfuxiang/shopxo](https://github.com/gongfuxiang/shopxo) | ShopXO商城系统、国内领先企业级B2C免费开源电商系统,包含PC、h5、微信小程序、支付宝小程序、百度小程序、头条&抖音小程序、QQ小程序,遵循Apache2开源协议发布、基于ThinkPHP5.1框架研发 | 844 | PHP | 01/06 |
| 49 | [ZhuFaner/shadowsocks-manage-system](https://github.com/ZhuFaner/shadowsocks-manage-system) | 科学上网管理系统 | 825 | PHP | 03/15 |
| 50 | [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 | 823 | PHP | 09/12 |
| 51 | [osgochina/Donkey](https://github.com/osgochina/Donkey) | 基于swoole的定时器程序,支持秒级处理 | 777 | PHP | 12/02 |
| 52 | [jianyan74/rageframe2](https://github.com/jianyan74/rageframe2) | 一个基于Yii2高级框架的快速开发应用引擎 | 777 | PHP | 01/06 |
| 53 | [peinhu/AetherUpload-Laravel](https://github.com/peinhu/AetherUpload-Laravel) | A Laravel package to upload large files 上传大文件的Laravel扩展包 | 734 | PHP | 11/18 |
| 54 | [yansongda/laravel-pay](https://github.com/yansongda/laravel-pay) | 可能是我用过的最优雅的 Alipay 和 WeChat 的 laravel 支付扩展包了 | 712 | PHP | 12/18 |
| 55 | [mylxsw/wizard](https://github.com/mylxsw/wizard) | Wizard是基于Laravel开发框架开发的一款开源项目(API)文档管理工具。 | 697 | PHP | 01/06 |
| 56 | [dedemao/alipay](https://github.com/dedemao/alipay) | 一个PHP文件搞定支付宝支付系列,包括电脑网站支付,手机网站支付,现金红包、扫码支付,JSAPI支付、单笔转账到支付宝账户、交易结算(分账、分润)、网页授权获取用户信息等 | 665 | PHP | 11/21 |
| 57 | [kevinyan815/Learning_Laravel_Kernel](https://github.com/kevinyan815/Learning_Laravel_Kernel) | Laravel核心代码学习 | 661 | PHP | 12/11 |
| 58 | [l3m0n/Bypass_Disable_functions_Shell](https://github.com/l3m0n/Bypass_Disable_functions_Shell) | 一个各种方式突破Disable_functions达到命令执行的shell | 660 | PHP | 06/18 |
| 59 | [hongriSec/PHP-Audit-Labs](https://github.com/hongriSec/PHP-Audit-Labs) | 一个关于PHP的代码审计项目 | 649 | PHP | 09/17 |
| 60 | [zhuifengshaonianhanlu/pikachu](https://github.com/zhuifengshaonianhanlu/pikachu) | 一个好玩的Web安全-漏洞测试平台 | 649 | PHP | 12/16 |
| 61 | [gongwalker/ApiManager](https://github.com/gongwalker/ApiManager) | 接口文档管理工具 | 640 | PHP | 01/10 |
| 62 | [assimon/shanhufaka](https://github.com/assimon/shanhufaka) | 珊瑚发卡系统 (专注一站式自动发货体系) | 636 | PHP | 12/03 |
| 63 | [dedemao/weixinPay](https://github.com/dedemao/weixinPay) | 微信支付单文件版。一个PHP文件搞定微信支付系列。包括原生支付(扫码支付),H5支付,公众号支付,现金红包、企业付款到零钱等 | 630 | PHP | 11/05 |
| 64 | [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的认证与权限相关的痛点,已在本人的多个项目中集成使用。 | 607 | PHP | 01/05 |
| 65 | [zencodex/composer-mirror](https://github.com/zencodex/composer-mirror) | Composer 全量镜像发布于2017年3月,至今已不间断运行2年多。这个开源有助于理解 Composer 镜像的工作原理 | 593 | PHP | 09/27 |
| 66 | [lizhichao/one](https://github.com/lizhichao/one) | 一个极简高性能php框架,支持[swoole \| php-fpm ]环境 | 586 | PHP | 01/03 |
| 67 | [zoujingli/wechat-php-sdk](https://github.com/zoujingli/wechat-php-sdk) | PHP微信SDK(微信平台 + 微信支付) | 575 | PHP | 10/10 |
| 68 | [easychen/LazyPHP](https://github.com/easychen/LazyPHP) | 轻框架。包含一个前端控制器,20个常用函数和用于页面布局的Layout系统,10分钟即可学会。LP采用BSD开源协议,在代码内保留框架名即可随意商用。 | 575 | PHP | 07/13 |
| 69 | [Beipy/BeipyVideoResolution](https://github.com/Beipy/BeipyVideoResolution) | 北漂鱼解析开源视频播放框架,响应式布局! | 574 | PHP | 06/12 |
| 70 | [poetries/mywiki](https://github.com/poetries/mywiki) | :books:收集整理日常发现的好资源、前端资源汇总 | 563 | PHP | 12/21 |
| 71 | [xu42/pay](https://github.com/xu42/pay) | 个人网站即时到账收款解决方案 / Personal website instant payment solution | 547 | PHP | 05/28 |
| 72 | [Acmesec/DoraBox](https://github.com/Acmesec/DoraBox) | DoraBox - 基础Web漏洞训练靶场 | 544 | PHP | 07/11 |
| 73 | [insoxin/API](https://github.com/insoxin/API) | 姬长信API For Docker 一个基于多种编程语言开源免费不限制提供生活常用,出行服务,开发工具,金融服务,通讯服务和公益大数据的平台. | 543 | PHP | 10/08 |
| 74 | [wanglelecc/laracms](https://github.com/wanglelecc/laracms) | LaraCMS 是在学习 laravel ( web 开发实战进阶 + 实战构架 API 服务器) 过程中产生的一个业余作品,试图通过简单的方式,快速构建一套基本的企业站同时保留很灵活的扩展能力和优雅的代码方式,当然这些都得益Laravel的优秀设计。同时LaraCMS 也是一个学习Laravel 不错的参考示例。 | 514 | PHP | 12/03 |
| 75 | [susers/Writeups](https://github.com/susers/Writeups) | 国内各大CTF赛题及writeup整理 | 512 | PHP | 11/02 |
| 76 | [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 ... | 506 | PHP | 01/07 |
| 77 | [Yurunsoft/PaySDK](https://github.com/Yurunsoft/PaySDK) | PHP 集成支付 SDK ,集成了支付宝、微信支付的支付接口和其它相关接口的操作。可以轻松嵌入支持 PHP >= 5.4 的任何系统中。宇润PHP全家桶技术支持群:17916227 | 502 | PHP | 01/06 |
| 78 | [ecjia/ecjia-daojia](https://github.com/ecjia/ecjia-daojia) | EC+(ecjia)到家是一款可开展O2O业务的移动电商系统。它包含:移动端APP,采用原生模式开发,覆盖使用iOS 及Android系统的移 动终端;后台系统,针对平台日常运营维护的平台后台,针对入驻店铺管理的商家后台,独立并行;移动端H5,能够灵活部署于微信及其他APP、网页等。 | 495 | PHP | 01/06 |
| 79 | [zhuzhichao/ip-location-zh](https://github.com/zhuzhichao/ip-location-zh) | 获取 IP 地址的真实地理位置 | 492 | PHP | 11/14 |
| 80 | [bupt1987/html-parser](https://github.com/bupt1987/html-parser) | php html parser,类似与PHP Simple HTML DOM Parser,但是比它快好几倍 | 489 | PHP | 08/17 |
| 81 | [letwang/HookPHP](https://github.com/letwang/HookPHP) | HookPHP基于C扩展搭建内置AI编程的架构系统-支持微服务部署\|热插拔业务组件-集成业务模型\|权限模型\|UI组件库\|多模板\|多平台\|多域名\|多终端\|多语言-含常驻内存\|前后分离\|API平台\|LUA QQ群:679116380 | 478 | PHP | 11/26 |
| 82 | [nick-bai/snake](https://github.com/nick-bai/snake) | 🚀thinkphp5.1 + layui 实现的带rbac的基础管理后台,方便快速开发法使用 | 477 | PHP | 11/07 |
| 83 | [l3m0n/pentest_tools](https://github.com/l3m0n/pentest_tools) | 收集一些小型实用的工具 | 477 | PHP | 01/22 |
| 84 | [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。 | 451 | PHP | 11/26 |
| 85 | [mingyoung/dingtalk](https://github.com/mingyoung/dingtalk) | 🌈 EasyDingTalk - 钉钉 SDK | 440 | PHP | 12/06 |
| 86 | [lbbniu/WebWechat](https://github.com/lbbniu/WebWechat) | 网页微信PHP登录的实现 | 437 | PHP | 01/21 |
| 87 | [fucongcong/GroupCo](https://github.com/fucongcong/GroupCo) | 优雅的PHP异步协程框架,支持服务化调用,支持统一配置中心,适用于API、Http Server、Rpc Server、构建微服务、中间件。适用于高并发,io密集型场景 | 435 | PHP | 12/23 |
| 88 | [toxmc/statistics](https://github.com/toxmc/statistics) | 一个运用php与swoole实现的统计监控系统 | 430 | PHP | 10/09 |
| 89 | [HerbertKarajan/Fe-Interview-questions](https://github.com/HerbertKarajan/Fe-Interview-questions) | 目前最全的前端开发面试题及答案 | 427 | PHP | 10/31 |
| 90 | [TarsPHP/TarsPHP](https://github.com/TarsPHP/TarsPHP) | 基础目录,聚合所有其他目录,包含文档和例子 | 426 | PHP | 12/21 |
| 91 | [mojisrc/fashop](https://github.com/mojisrc/fashop) | php开源商城系统,基于swoole、easyswoole框架开发 | 425 | PHP | 07/09 |
| 92 | [jxlwqq/id-validator](https://github.com/jxlwqq/id-validator) | 中华人民共和国居民身份证、中华人民共和国港澳居民居住证以及中华人民共和国台湾居民居住证号码验证工具(PHP Composer 版) | 422 | PHP | 01/03 |
| 93 | [zblogcn/zblogphp](https://github.com/zblogcn/zblogphp) | Z-BlogPHP博客程序 | 420 | PHP | 01/07 |
| 94 | [jacobcyl/Aliyun-oss-storage](https://github.com/jacobcyl/Aliyun-oss-storage) | 阿里云OSS laravel storage Filesystem adapter, 打造Laravel最好的OSS Storage扩展. | 417 | PHP | 12/03 |
| 95 | [xaboy/form-builder](https://github.com/xaboy/form-builder) | PHP表单生成器,快速生成现代化的form表单。包含复选框、单选框、输入框、下拉选择框等元素以及,省市区三级联动,时间选择,日期选择,颜色选择,文件/图片上传等功能。 | 413 | PHP | 12/07 |
| 96 | [zzjzz9266a/91porn_php](https://github.com/zzjzz9266a/91porn_php) | 最简单的91porn爬虫php版本 | 404 | PHP | 12/29 |
| 97 | [chenlinzhong/face-login](https://github.com/chenlinzhong/face-login) | 基于mtcnn/facenet/tensorflow 实现人脸识别登录系统 | 401 | PHP | 05/18 |
| 98 | [iiYii/getyii](https://github.com/iiYii/getyii) | Yii2 community 请访问 | 388 | PHP | 10/17 |
| 99 | [chenlinzhong/php-delayqueue](https://github.com/chenlinzhong/php-delayqueue) | 基于redis实现高可用,易拓展,接入方便,生产环境稳定运行的延迟队列 | 388 | PHP | 01/07 |
| 100 | [lkeme/BiliHelper](https://github.com/lkeme/BiliHelper) | (Bilibili)B 站自动领瓜子、直播助手、直播挂机脚本、主站助手 - PHP 版 | 383 | PHP | 12/11 |
| 101 | [DavidNineRoc/monday-shop](https://github.com/DavidNineRoc/monday-shop) | 网上在线商城、综合网上购物平台 | 383 | PHP | 09/13 |