forked from liuzhuoling2011/GitHub-Chinese-Top-Charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.md
2151 lines (2088 loc) · 460 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个总榜(所有语言项目汇总排名)、17个分榜(单个语言项目排名);
#### 榜单入选规则
- 一个小小的基础:项目的 Description 和 README.md 需要包含中文说明;
- 更新越持续越好:最近一年内有更新过的项目才有机会入选(拥抱活跃,远离僵尸);
- Stars 越多越好:各榜根据 Stars 对项目进行排序 ,在满足持续更新条件的项目中,取前200名上榜;
- 其他规则:后续会结合其他指标进行综合排名,有待优化;
#### 榜单更新频率
- 每周更新一次,最近更新时间为10月9日,上班快乐 :tada:;
#### 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)
<br/>
## All Language
| # | Repository | Description | Stars | Language | Updated |
| ---- | ------------------------------------------------------------ | ------------------------------------------------------------ | ----- | ---------------- | ------- |
| 1 | [CyC2018/CS-Notes](https://github.com/CyC2018/CS-Notes) | :books: Tech Interview Guide 技术面试必备基础知识、Leetcode 题解、Java、C++、Python、后端面试、操作系统、计算机网络、系统设计 | 79.6k | Java | 10/05 |
| 2 | [jackfrued/Python-100-Days](https://github.com/jackfrued/Python-100-Days) | Python - 100天从新手到大师 | 62.6k | Jupyter Notebook | 10/03 |
| 3 | [Snailclimb/JavaGuide](https://github.com/Snailclimb/JavaGuide) | 【Java学习+面试指南】 一份涵盖大部分Java程序员所需要掌握的核心知识。 | 56.8k | Java | 10/09 |
| 4 | [justjavac/free-programming-books-zh_CN](https://github.com/justjavac/free-programming-books-zh_CN) | :books: 免费的计算机编程类中文书籍,欢迎投稿 | 56.3k | - | 09/23 |
| 5 | [getlantern/lantern](https://github.com/getlantern/lantern) | 蓝灯Windows下载 https://raw.githubusercontent.com/getlantern/lantern-binaries/master/lantern-installer.exe 蓝灯安卓下载 https://raw.githubusercontent.com/getlantern/lantern-binaries/master/lantern-installer.apk | 45.5k | Go | 10/09 |
| 6 | [MisterBooo/LeetCodeAnimation](https://github.com/MisterBooo/LeetCodeAnimation) | Demonstrate all the questions on LeetCode in the form of animation.(用动画的形式呈现解LeetCode题目的思路) | 41.9k | Java | 10/09 |
| 7 | [xingshaocheng/architect-awesome](https://github.com/xingshaocheng/architect-awesome) | 后端架构师技术图谱 | 37.8k | - | 09/29 |
| 8 | [scutan90/DeepLearning-500-questions](https://github.com/scutan90/DeepLearning-500-questions) | 深度学习500问,以问答形式对常用的概率知识、线性代数、机器学习、深度学习、计算机视觉等热点问题进行阐述,以帮助自己及有需要的读者。 全书分为18个章节,50余万字。由于水平有限,书中不妥之处恳请广大读者批评指正。 未完待续............ 如有意合作,联系[email protected] 版权所有,违权必究 Tan 2018.06 | 33.8k | - | 09/29 |
| 9 | [doocs/advanced-java](https://github.com/doocs/advanced-java) | 😮 互联网 Java 工程师进阶知识完全扫盲:涵盖高并发、分布式、高可用、微服务等领域知识,后端同学必看,前端同学也可学习 | 31.9k | Java | 10/08 |
| 10 | [bailicangdu/vue2-elm](https://github.com/bailicangdu/vue2-elm) | 基于 vue2 + vuex 构建一个具有 45 个页面的大型单页面应用 | 29.9k | Vue | 10/09 |
| 11 | [justjavac/awesome-wechat-weapp](https://github.com/justjavac/awesome-wechat-weapp) | 微信小程序开发资源汇总 :100: | 27.1k | - | 09/30 |
| 12 | [imhuay/Algorithm_Interview_Notes-Chinese](https://github.com/imhuay/Algorithm_Interview_Notes-Chinese) | 2018/2019/校招/春招/秋招/算法/机器学习(Machine Learning)/深度学习(Deep Learning)/自然语言处理(NLP)/C/C++/Python/面试笔记 | 27.0k | Python | 07/23 |
| 13 | [proxyee-down-org/proxyee-down](https://github.com/proxyee-down-org/proxyee-down) | http下载工具,基于http代理,支持多连接分块下载 | 25.1k | Java | 10/09 |
| 14 | [xitu/gold-miner](https://github.com/xitu/gold-miner) | 🥇掘金翻译计划,可能是世界最大最好的英译中技术社区,最懂读者和译者的翻译平台: | 24.1k | - | 10/09 |
| 15 | [shengxinjing/programmer-job-blacklist](https://github.com/shengxinjing/programmer-job-blacklist) | :see_no_evil:程序员找工作黑名单,换工作和当技术合伙人需谨慎啊 更新有赞 | 24.0k | Shell | 04/09 |
| 16 | [macrozheng/mall](https://github.com/macrozheng/mall) | mall项目是一套电商系统,包括前台商城系统及后台管理系统,基于SpringBoot+MyBatis实现。 前台商城系统包含首页门户、商品推荐、商品搜索、商品展示、购物车、订单流程、会员中心、客户服务、帮助中心等模块。 后台管理系统包含商品管理、订单管理、会员管理、促销管理、运营管理、内容管理、统计报表、财务管理、权限管理、设置等模块。 | 22.5k | Java | 10/08 |
| 17 | [NervJS/taro](https://github.com/NervJS/taro) | 多端统一开发框架,支持用 React 的开发方式编写一次代码,生成能运行在微信/百度/支付宝/字节跳动/ QQ 小程序、快应用、H5、React Native 等的应用。 https://taro.jd.com/ | 22.0k | JavaScript | 10/09 |
| 18 | [houshanren/hangzhou_house_knowledge](https://github.com/houshanren/hangzhou_house_knowledge) | 2017年买房经历总结出来的买房购房知识分享给大家,希望对大家有所帮助。买房不易,且买且珍惜。Sharing the knowledge of buy an own house that according to the experience at hangzhou in 2017 to all the people. It's not easy to buy a own house, so I hope that it would be useful to everyone. | 21.5k | CSS | 09/02 |
| 19 | [lib-pku/libpku](https://github.com/lib-pku/libpku) | 贵校课程资料民间整理 | 20.8k | TeX | 08/15 |
| 20 | [fxsjy/jieba](https://github.com/fxsjy/jieba) | 结巴中文分词 | 20.3k | Python | 09/26 |
| 21 | [chinese-poetry/chinese-poetry](https://github.com/chinese-poetry/chinese-poetry) | 最全中华古诗词数据库, 唐宋两朝近一万四千古诗人, 接近5.5万首唐诗加26万宋诗. 两宋时期1564位词人,21050首词。 | 20.3k | JavaScript | 10/09 |
| 22 | [azl397985856/leetcode](https://github.com/azl397985856/leetcode) | LeetCode Solutions: A Record of My Problem Solving Journey.( leetcode题解,记录自己的leetcode解题之路。) | 20.1k | JavaScript | 10/02 |
| 23 | [apachecn/AiLearning](https://github.com/apachecn/AiLearning) | AiLearning: 机器学习 - MachineLearning - ML、深度学习 - DeepLearning - DL、自然语言处理 NLP | 19.8k | Python | 10/09 |
| 24 | [sentsin/layui](https://github.com/sentsin/layui) | 采用自身模块规范编写的前端 UI 框架,遵循原生 HTML/CSS/JS 的书写形式,极低门槛,拿来即用。 | 19.8k | JavaScript | 10/08 |
| 25 | [0voice/interview_internal_reference](https://github.com/0voice/interview_internal_reference) | 2019年最新总结,阿里,腾讯,百度,美团,头条等技术面试题目,以及答案,专家出题人分析汇总。 | 19.7k | Python | 10/09 |
| 26 | [geekcompany/ResumeSample](https://github.com/geekcompany/ResumeSample) | Resume template for Chinese programmers . 程序员简历模板系列。包括PHP程序员简历模板、iOS程序员简历模板、Android程序员简历模板、Web前端程序员简历模板、Java程序员简历模板、C/C++程序员简历模板、NodeJS程序员简历模板、架构师简历模板以及通用程序员简历模板 | 19.7k | - | 02/22 |
| 27 | [Tencent/wepy](https://github.com/Tencent/wepy) | 小程序组件化开发框架 | 19.0k | JavaScript | 10/09 |
| 28 | [SwiftGGTeam/the-swift-programming-language-in-chinese](https://github.com/SwiftGGTeam/the-swift-programming-language-in-chinese) | 中文版 Apple 官方 Swift 教程《The Swift Programming Language》 | 18.9k | CSS | 10/09 |
| 29 | [scwang90/SmartRefreshLayout](https://github.com/scwang90/SmartRefreshLayout) | 🔥下拉刷新、上拉加载、二级刷新、淘宝二楼、RefreshLayout、OverScroll,Android智能下拉刷新框架,支持越界回弹、越界拖动,具有极强的扩展性,集成了几十种炫酷的Header和 Footer。 | 18.9k | Java | 09/26 |
| 30 | [ityouknow/spring-boot-examples](https://github.com/ityouknow/spring-boot-examples) | about learning Spring Boot via examples. Spring Boot 教程、技术栈示例代码,快速简单上手教程。 | 18.8k | Java | 09/11 |
| 31 | [alibaba/druid](https://github.com/alibaba/druid) | 阿里巴巴数据库事业部出品,为监控而生的数据库连接池。阿里云Data Lake Analytics(https://www.aliyun.com/product/datalakeanalytics )、DRDS、TDDL 连接池powered by Druid | 18.8k | Java | 10/08 |
| 32 | [littlecodersh/ItChat](https://github.com/littlecodersh/ItChat) | A complete and graceful API for Wechat. 微信个人号接口、微信机器人及命令行微信,三十行即可自定义个人号机器人。 | 18.8k | Python | 08/27 |
| 33 | [Meituan-Dianping/mpvue](https://github.com/Meituan-Dianping/mpvue) | 基于 Vue.js 的小程序开发框架,从底层支持 Vue.js 语法和构建工具体系。 | 18.7k | JavaScript | 09/29 |
| 34 | [FallibleInc/security-guide-for-developers](https://github.com/FallibleInc/security-guide-for-developers) | Security Guide for Developers (实用性开发人员安全须知) | 18.5k | - | 05/28 |
| 35 | [unknwon/the-way-to-go_ZH_CN](https://github.com/unknwon/the-way-to-go_ZH_CN) | 《The Way to Go》中文译本,中文正式名《Go 入门指南》 | 17.7k | Go | 10/09 |
| 36 | [alibaba/flutter-go](https://github.com/alibaba/flutter-go) | flutter 开发者帮助 APP,包含 flutter 常用 140+ 组件的demo 演示与中文文档 | 17.4k | Dart | 10/09 |
| 37 | [ctripcorp/apollo](https://github.com/ctripcorp/apollo) | Apollo(阿波罗)是携程框架部门研发的分布式配置中心,能够集中化管理应用不同环境、不同集群的配置,配置修改后能够实时推送到应用端,并且具备规范的权限、流程治理等特性,适用于微服务配置管理场景。 | 17.4k | Java | 10/09 |
| 38 | [iikira/BaiduPCS-Go](https://github.com/iikira/BaiduPCS-Go) | 百度网盘客户端 - Go语言编写 | 17.3k | Go | 09/21 |
| 39 | [formulahendry/955.WLB](https://github.com/formulahendry/955.WLB) | 955 不加班的公司名单 - 工作 955,work–life balance (工作与生活的平衡) | 17.1k | - | 08/31 |
| 40 | [ruanyf/es6tutorial](https://github.com/ruanyf/es6tutorial) | 《ECMAScript 6入门》是一本开源的 JavaScript 语言教程,全面介绍 ECMAScript 6 新增的语法特性。 | 16.9k | JavaScript | 10/06 |
| 41 | [alibaba/arthas](https://github.com/alibaba/arthas) | Alibaba Java Diagnostic Tool Arthas/Alibaba Java诊断利器Arthas | 16.9k | Java | 10/09 |
| 42 | [jobbole/awesome-python-cn](https://github.com/jobbole/awesome-python-cn) | Python资源大全中文版,包括:Web框架、网络爬虫、模板引擎、数据库、数据可视化、图片处理等,由伯乐在线持续更新。 | 16.6k | Makefile | 08/25 |
| 43 | [testerSunshine/12306](https://github.com/testerSunshine/12306) | 12306智能刷票,订票 | 16.6k | Python | 10/09 |
| 44 | [davideuler/architecture.of.internet-product](https://github.com/davideuler/architecture.of.internet-product) | 互联网公司技术架构,微信/淘宝/微博/腾讯/阿里/美团点评/百度/Google/Facebook/Amazon/eBay的架构,欢迎PR补充 | 16.3k | - | 04/13 |
| 45 | [521xueweihan/HelloGitHub](https://github.com/521xueweihan/HelloGitHub) | :octocat: Find pearls on open-source seashore 分享 GitHub 上有趣、入门级的开源项目 | 15.9k | Python | 09/28 |
| 46 | [b3log/baidu-netdisk-downloaderx](https://github.com/b3log/baidu-netdisk-downloaderx) | ⚡️ 一款图形界面的百度网盘不限速下载器,支持 Windows、Linux 和 Mac。 | 15.9k | JavaScript | 10/07 |
| 47 | [googlehosts/hosts](https://github.com/googlehosts/hosts) | 镜像:https://coding.net/u/scaffrey/p/hosts/git | 15.8k | - | 10/07 |
| 48 | [TeamStuQ/skill-map](https://github.com/TeamStuQ/skill-map) | 程序员技能图谱 | 15.8k | HTML | 08/01 |
| 49 | [reactnativecn/react-native-guide](https://github.com/reactnativecn/react-native-guide) | React Native指南汇集了各类react-native学习资源、开源App和组件 | 15.3k | - | 08/11 |
| 50 | [alsotang/node-lessons](https://github.com/alsotang/node-lessons) | :closed_book:《Node.js 包教不包会》 by alsotang | 15.2k | JavaScript | 05/28 |
| 51 | [JacksonTian/fks](https://github.com/JacksonTian/fks) | 前端技能汇总 Frontend Knowledge Structure | 15.1k | JavaScript | 06/27 |
| 52 | [hankcs/HanLP](https://github.com/hankcs/HanLP) | 自然语言处理 中文分词 词性标注 命名实体识别 依存句法分析 新词发现 关键词短语提取 自动摘要 文本分类聚类 拼音简繁 | 15.1k | Java | 10/03 |
| 53 | [Advanced-Frontend/Daily-Interview-Question](https://github.com/Advanced-Frontend/Daily-Interview-Question) | 我是木易杨,公众号「高级前端进阶」作者,每天搞定一道前端大厂面试题,祝大家天天进步,一年后会看到不一样的自己。 | 14.7k | JavaScript | 09/17 |
| 54 | [shuzheng/zheng](https://github.com/shuzheng/zheng) | 基于Spring+SpringMVC+Mybatis分布式敏捷开发系统架构,提供整套公共微服务服务模块:集中权限管理(单点登录)、内容管理、支付中心、用户管理(支持第三方登录)、微信平台、存储系统、配置中心、日志分析、任务和通知等,支持服务治理、监控和追踪,努力为中小型企业打造全方位J2EE企业级开发解决方案。 | 14.3k | Java | 09/25 |
| 55 | [QSCTech/zju-icicles](https://github.com/QSCTech/zju-icicles) | 浙江大学课程攻略共享计划 | 14.2k | C | 10/08 |
| 56 | [MLEveryday/100-Days-Of-ML-Code](https://github.com/MLEveryday/100-Days-Of-ML-Code) | 100-Days-Of-ML-Code中文版 | 14.0k | Jupyter Notebook | 08/22 |
| 57 | [mqyqingfeng/Blog](https://github.com/mqyqingfeng/Blog) | 冴羽写博客的地方,预计写四个系列:JavaScript深入系列、JavaScript专题系列、ES6系列、React系列。 | 14.0k | - | 07/08 |
| 58 | [chaozh/awesome-blockchain-cn](https://github.com/chaozh/awesome-blockchain-cn) | 收集所有区块链(BlockChain)技术开发相关资料,包括Fabric和Ethereum开发资料 | 14.0k | JavaScript | 10/06 |
| 59 | [1c7/chinese-independent-developer](https://github.com/1c7/chinese-independent-developer) | 👩🏿💻👨🏾💻👩🏼💻👨🏽💻👩🏻💻中国独立开发者项目列表 -- 分享大家都在做什么 | 14.0k | - | 10/07 |
| 60 | [alibaba/ice](https://github.com/alibaba/ice) | 🚀Simple and friendly front-end development system(飞冰,简单而友好的前端研发体系 ) | 14.0k | JavaScript | 09/27 |
| 61 | [wangshub/wechat_jump_game](https://github.com/wangshub/wechat_jump_game) | 微信《跳一跳》Python 辅助 | 13.9k | Python | 08/28 |
| 62 | [nswbmw/N-blog](https://github.com/nswbmw/N-blog) | 《一起学 Node.js》 | 13.9k | JavaScript | 08/20 |
| 63 | [judasn/IntelliJ-IDEA-Tutorial](https://github.com/judasn/IntelliJ-IDEA-Tutorial) | IntelliJ IDEA 简体中文专题教程 | 13.7k | - | 10/05 |
| 64 | [nostalgic-css/NES.css](https://github.com/nostalgic-css/NES.css) | NES-style CSS Framework \| ファミコン風CSSフレームワーク | 13.6k | CSS | 10/05 |
| 65 | [d2l-ai/d2l-zh](https://github.com/d2l-ai/d2l-zh) | 《动手学深度学习》:面向中文读者、能运行、可讨论。英文版即伯克利“深度学习导论”教材。 | 13.6k | Python | 10/01 |
| 66 | [hzlzh/Best-App](https://github.com/hzlzh/Best-App) | 收集&推荐优秀的 Apps/硬件/技巧/周边等 | 13.4k | - | 05/24 |
| 67 | [dcloudio/uni-app](https://github.com/dcloudio/uni-app) | uni-app 是使用 Vue 语法开发小程序、H5、App的统一框架 | 13.3k | JavaScript | 10/09 |
| 68 | [fighting41love/funNLP](https://github.com/fighting41love/funNLP) | 中英文敏感词、语言检测、中外手机/电话归属地/运营商查询、名字推断性别、手机号抽取、身份证抽取、邮箱抽取、中日文人名库、中文缩写库、拆字词典、词汇情感值、停用词、反动词表、暴恐词表、繁简体转换、英文模拟中文发音、汪峰歌词生成器、职业名称词库、同义词库、反义词库、否定词库、汽车品牌词库、汽车零件词库、连续英文切割、各种中文词向量、公司名字大全、古诗词库、IT词库、财经词库、成语词库、地名词库、历史名人词库、诗词词库、医学词库、饮食词库、法律词库、汽车词库、动物词库、中文聊天语料、中文谣言数据、百度中文问答数据集、句子相似度匹配算法集合、bert资源、文本生成&摘要相关工具、cocoNLP信息抽取 ... | 13.1k | Python | 08/31 |
| 69 | [Awesome-HarmonyOS/HarmonyOS](https://github.com/Awesome-HarmonyOS/HarmonyOS) | A curated list of awesome things related to HarmonyOS. 华为鸿蒙操作系统。 | 13.1k | C | 09/09 |
| 70 | [b3log/symphony](https://github.com/b3log/symphony) | 🎶 一款用 Java 实现的现代化社区(论坛/BBS/社交网络/博客)平台。 | 12.8k | Java | 10/07 |
| 71 | [fengdu78/Coursera-ML-AndrewNg-Notes](https://github.com/fengdu78/Coursera-ML-AndrewNg-Notes) | 吴恩达老师的机器学习课程个人笔记 | 12.6k | HTML | 09/24 |
| 72 | [komeiji-satori/Dress](https://github.com/komeiji-satori/Dress) | 好耶 是女装 | 12.3k | Standard ML | 10/09 |
| 73 | [bannedbook/fanqiang](https://github.com/bannedbook/fanqiang) | 翻墙-科学上网 | 12.2k | JavaScript | 08/02 |
| 74 | [geeeeeeeeek/git-recipes](https://github.com/geeeeeeeeek/git-recipes) | 🥡 Git recipes in Chinese by Zhongyi Tong. 高质量的Git中文教程. | 12.2k | - | 03/05 |
| 75 | [CarGuo/GSYVideoPlayer](https://github.com/CarGuo/GSYVideoPlayer) | 视频播放器(IJKplayer、ExoPlayer、MediaPlayer),HTTPS,支持弹幕,支持滤镜、水印、gif截图,片头广告、中间广告,多个同时播放,支持基本的拖动,声音、亮度调节,支持边播边缓存,支持视频自带rotation的旋转(90,270之类),重力旋转与手动旋转的同步支持,支持列表播放 ,列表全屏动画,视频加载速度,列表小窗口支持拖动,动画效果,调整比例,多分辨率切换,支持切换播放器,进度条小窗口预览,列表切换详情页面无缝播放,rtsp、concat、mpeg。 | 11.9k | Java | 09/30 |
| 76 | [Binaryify/NeteaseCloudMusicApi](https://github.com/Binaryify/NeteaseCloudMusicApi) | 网易云音乐 Node.js API service | 11.9k | JavaScript | 09/26 |
| 77 | [b3log/solo](https://github.com/b3log/solo) | 🎸 一款小而美的博客系统,专为程序员设计。 | 11.8k | Java | 10/07 |
| 78 | [YMFE/yapi](https://github.com/YMFE/yapi) | YApi 是一个可本地部署的、打通前后端及QA的、可视化的接口管理平台 | 11.6k | JavaScript | 10/03 |
| 79 | [dianping/cat](https://github.com/dianping/cat) | CAT 作为服务端项目基础组件,提供了 Java, C/C++, Node.js, Python, Go 等多语言客户端,已经在美团点评的基础架构中间件框架(MVC框架,RPC框架,数据库框架,缓存框架等,消息队列,配置系统等)深度集成,为美团点评各业务线提供系统丰富的性能指标、健康状况、实时告警等。 | 11.6k | Java | 10/08 |
| 80 | [jobbole/awesome-java-cn](https://github.com/jobbole/awesome-java-cn) | Java资源大全中文版,包括开发库、开发工具、网站、博客、微信、微博等,由伯乐在线持续更新。 | 11.6k | - | 08/08 |
| 81 | [jikexueyuanwiki/tensorflow-zh](https://github.com/jikexueyuanwiki/tensorflow-zh) | 谷歌全新开源人工智能系统TensorFlow官方文档中文版 | 11.3k | TeX | 08/04 |
| 82 | [brettwooldridge/HikariCP](https://github.com/brettwooldridge/HikariCP) | 光 HikariCP・A solid, high-performance, JDBC connection pool at last. | 11.2k | Java | 10/02 |
| 83 | [JeffLi1993/springboot-learning-example](https://github.com/JeffLi1993/springboot-learning-example) | spring boot 实践学习案例,是 spring boot 初学者及核心技术巩固的最佳实践。另外写博客,用 OpenWrite。 | 11.2k | Java | 09/22 |
| 84 | [phobal/ivideo](https://github.com/phobal/ivideo) | 一个可以观看国内主流视频平台所有视频的客户端(Mac、Windows、Linux) A client that can watch video of domestic(China) mainstream video platform | 11.1k | JavaScript | 09/29 |
| 85 | [qiurunze123/miaosha](https://github.com/qiurunze123/miaosha) | ⭐⭐⭐⭐秒杀系统设计与实现.互联网工程师进阶与分析🙋🐓 | 11.1k | Java | 08/14 |
| 86 | [taizilongxu/interview_python](https://github.com/taizilongxu/interview_python) | 关于Python的面试题 | 10.9k | Shell | 07/29 |
| 87 | [syhyz1990/baiduyun](https://github.com/syhyz1990/baiduyun) | 🖖油猴脚本 一个脚本搞定百度网盘下载 https://www.baiduyun.wiki | 10.8k | JavaScript | 10/08 |
| 88 | [alibaba/canal](https://github.com/alibaba/canal) | 阿里巴巴 MySQL binlog 增量订阅&消费组件 | 10.8k | Java | 10/09 |
| 89 | [alibaba/ARouter](https://github.com/alibaba/ARouter) | 💪 A framework for assisting in the renovation of Android componentization (帮助 Android App 进行组件化改造的路由框架) | 10.8k | Java | 09/18 |
| 90 | [Curzibn/Luban](https://github.com/Curzibn/Luban) | Luban(鲁班)—Image compression with efficiency very close to WeChat Moments/可能是最接近微信朋友圈的图片压缩算法 | 10.8k | Java | 09/12 |
| 91 | [PKUanonym/REKCARC-TSC-UHT](https://github.com/PKUanonym/REKCARC-TSC-UHT) | 清华大学计算机系课程攻略 Guidance for courses in Department of Computer Science and Technology, Tsinghua University | 10.8k | HTML | 09/29 |
| 92 | [Bigkoo/Android-PickerView](https://github.com/Bigkoo/Android-PickerView) | This is a picker view for android , support linkage effect, timepicker and optionspicker.(时间选择器、省市区三级联动) | 10.8k | Java | 08/02 |
| 93 | [521xueweihan/git-tips](https://github.com/521xueweihan/git-tips) | :trollface:Git的奇技淫巧 | 10.7k | - | 07/30 |
| 94 | [youfou/wxpy](https://github.com/youfou/wxpy) | 微信机器人 / 可能是最优雅的微信个人号 API ✨✨ | 10.7k | Python | 07/15 |
| 95 | [forezp/SpringCloudLearning](https://github.com/forezp/SpringCloudLearning) | 《史上最简单的Spring Cloud教程源码》 | 10.6k | Java | 10/03 |
| 96 | [youzan/vant-weapp](https://github.com/youzan/vant-weapp) | 轻量、可靠的小程序 UI 组件库 | 10.6k | JavaScript | 09/30 |
| 97 | [jumpserver/jumpserver](https://github.com/jumpserver/jumpserver) | Jumpserver是全球首款完全开源的堡垒机,是符合 4A 的专业运维审计系统。 | 10.5k | JavaScript | 10/09 |
| 98 | [facert/awesome-spider](https://github.com/facert/awesome-spider) | 爬虫集合 | 10.5k | - | 09/11 |
| 99 | [lenve/vhr](https://github.com/lenve/vhr) | 微人事是一个前后端分离的人力资源管理系统,项目采用SpringBoot+Vue开发。 | 10.5k | Java | 10/08 |
| 100 | [apachecn/awesome-algorithm](https://github.com/apachecn/awesome-algorithm) | 项目永久冻结,迁移至新地址: | 10.4k | Python | 07/17 |
| 101 | [getlantern/download](https://github.com/getlantern/download) | 蓝灯Windows下载 https://raw.githubusercontent.com/getlantern/lantern-binaries/master/lantern-installer.exe 蓝灯安卓下载 https://raw.githubusercontent.com/getlantern/lantern-binaries/master/lantern-installer.apk | 10.3k | - | 07/06 |
| 102 | [xuxueli/xxl-job](https://github.com/xuxueli/xxl-job) | A lightweight distributed task scheduling framework.(分布式任务调度平台XXL-JOB) | 10.3k | Java | 10/09 |
| 103 | [didi/DoraemonKit](https://github.com/didi/DoraemonKit) | 简称 "DoKit" 。一款功能齐全的客户端( iOS 、Android、微信小程序 )研发助手,你值得拥有。 | 10.3k | Java | 10/09 |
| 104 | [jaywcjlove/linux-command](https://github.com/jaywcjlove/linux-command) | Linux命令大全搜索工具,内容包含Linux命令手册、详解、学习、搜集。https://git.io/linux | 10.2k | HTML | 09/30 |
| 105 | [thx/RAP](https://github.com/thx/RAP) | Web接口管理工具,开源免费,接口自动化,MOCK数据自动生成,自动化测试,企业级管理。阿里妈妈MUX团队出品!阿里巴巴都在用!1000+公司的选择!RAP2已发布请移步至https://github.com/thx/rap2-delos | 10.2k | JavaScript | 06/29 |
| 106 | [qyuhen/book](https://github.com/qyuhen/book) | 学习笔记 | 10.1k | - | 04/26 |
| 107 | [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~ | 10.1k | Python | 09/27 |
| 108 | [hehonghui/android-tech-frontier](https://github.com/hehonghui/android-tech-frontier) | 【停止维护】一个定期翻译国外Android优质的技术、开源库、软件架构设计、测试等文章的开源项目 | 10.1k | - | 08/22 |
| 109 | [PaddlePaddle/Paddle](https://github.com/PaddlePaddle/Paddle) | PArallel Distributed Deep LEarning (『飞桨』核心框架,高性能单机、分布式训练和跨平台部署) | 10.0k | C++ | 10/09 |
| 110 | [wangzheng0822/algo](https://github.com/wangzheng0822/algo) | 数据结构和算法必知必会的50个代码实现 | 10.0k | Python | 09/27 |
| 111 | [vnpy/vnpy](https://github.com/vnpy/vnpy) | 基于Python的开源量化交易平台开发框架 | 10.0k | C++ | 10/09 |
| 112 | [Kr1s77/awesome-python-login-model](https://github.com/Kr1s77/awesome-python-login-model) | 😮python模拟登陆一些大型网站,还有一些简单的爬虫,希望对你们有所帮助❤️,如果喜欢记得给个star哦🌟 | 10.0k | Python | 09/03 |
| 113 | [dyc87112/SpringBoot-Learning](https://github.com/dyc87112/SpringBoot-Learning) | Spring Boot基础教程,Spring Boot 2.x版本连载中!!! | 9.9k | - | 10/08 |
| 114 | [Tamsiree/RxTool](https://github.com/Tamsiree/RxTool) | Android开发人员不得不收集的工具类集合 \| 支付宝支付 \| 微信支付(统一下单) \| 微信分享 \| Zip4j压缩(支持分卷压缩与加密) \| 一键集成UCrop选择圆形头像 \| 一键集成二维码和条形码的扫描与生成 \| 常用Dialog \| WebView的封装可播放视频 \| 仿斗鱼滑动验证码 \| Toast封装 \| 震动 \| GPS \| Location定位 \| 图片缩放 \| Exif 图片添加地理位置信息(经纬度) \| 蛛网等级 \| 颜色选择器 \| ArcGis \| VTPK \| 编译运行一下说不定会找到惊喜 | 9.9k | Java | 08/01 |
| 115 | [shimohq/chinese-programmer-wrong-pronunciation](https://github.com/shimohq/chinese-programmer-wrong-pronunciation) | 中国程序员容易发音错误的单词 | 9.9k | - | 08/31 |
| 116 | [Yixiaohan/show-me-the-code](https://github.com/Yixiaohan/show-me-the-code) | Python 练习册,每天一个小程序 | 9.9k | - | 08/22 |
| 117 | [EastWorld/wechat-app-mall](https://github.com/EastWorld/wechat-app-mall) | 微信小程序商城,微信小程序微店 | 9.8k | JavaScript | 09/05 |
| 118 | [Tencent/omi](https://github.com/Tencent/omi) | Front End Cross-Frameworks Framework - 前端跨框架跨平台框架 | 9.8k | JavaScript | 10/09 |
| 119 | [lipangit/JiaoZiVideoPlayer](https://github.com/lipangit/JiaoZiVideoPlayer) | Android VideoPlayer MediaPlayer VideoView MediaView Float View And Fullscreen.高度自定义的开源安卓视频框架 | 9.8k | Java | 08/18 |
| 120 | [alibaba/easyexcel](https://github.com/alibaba/easyexcel) | 快速、简单避免OOM的java处理Excel工具 | 9.7k | Java | 10/09 |
| 121 | [Tim9Liu9/TimLiu-iOS](https://github.com/Tim9Liu9/TimLiu-iOS) | iOS开发常用三方库、插件、知名博客等等 | 9.7k | - | 10/09 |
| 122 | [jeasonlzy/okhttp-OkGo](https://github.com/jeasonlzy/okhttp-OkGo) | OkGo - 3.0 震撼来袭,该库是基于 Http 协议,封装了 OkHttp 的网络请求框架,比 Retrofit 更简单易用,支持 RxJava,RxJava2,支持自定义缓存,支持批量断点下载管理和批量上传管理功能 | 9.6k | Java | 07/03 |
| 123 | [nndl/nndl.github.io](https://github.com/nndl/nndl.github.io) | 《神经网络与深度学习》 Neural Network and Deep Learning | 9.6k | HTML | 10/07 |
| 124 | [linlinjava/litemall](https://github.com/linlinjava/litemall) | 又一个小商城。litemall = Spring Boot后端 + Vue管理员前端 + 微信小程序用户前端 + Vue用户移动端 | 9.5k | Java | 10/09 |
| 125 | [stephentian/33-js-concepts](https://github.com/stephentian/33-js-concepts) | :scroll: 每个 JavaScript 工程师都应懂的33个概念 @leonardomso | 9.5k | JavaScript | 07/24 |
| 126 | [wuyouzhuguli/SpringAll](https://github.com/wuyouzhuguli/SpringAll) | 循序渐进,学习Spring Boot、Spring Boot & Shiro、Spring Cloud、Spring Security & Spring Security OAuth2,博客Spring系列源码 | 9.5k | Java | 08/01 |
| 127 | [chai2010/advanced-go-programming-book](https://github.com/chai2010/advanced-go-programming-book) | :books: 《Go语言高级编程》开源图书,涵盖CGO、Go汇编语言、RPC实现、Protobuf插件实现、Web框架实现、分布式系统等高阶主题(完稿) | 9.3k | Go | 10/05 |
| 128 | [datawhalechina/pumpkin-book](https://github.com/datawhalechina/pumpkin-book) | 《机器学习》(西瓜书)公式推导解析,在线阅读地址:https://datawhalechina.github.io/pumpkin-book | 9.2k | - | 09/29 |
| 129 | [Tencent/QMUI_Android](https://github.com/Tencent/QMUI_Android) | 提高 Android UI 开发效率的 UI 库 | 9.1k | Java | 09/30 |
| 130 | [DIYgod/RSSHub](https://github.com/DIYgod/RSSHub) | 🍰 万物皆可 RSS | 9.1k | JavaScript | 10/09 |
| 131 | [alibaba/Sentinel](https://github.com/alibaba/Sentinel) | A lightweight powerful flow control component enabling reliability and monitoring for microservices. (轻量级的流量控制、熔断降级 Java 库) | 9.0k | Java | 10/08 |
| 132 | [halo-dev/halo](https://github.com/halo-dev/halo) | ✍ Halo 一款现代化的个人独立博客系统 | 8.9k | Java | 10/04 |
| 133 | [Jack-Cherish/python-spider](https://github.com/Jack-Cherish/python-spider) | :rainbow:Python3网络爬虫实战:VIP视频破解助手;GEETEST验证码破解;小说、动漫下载;手机APP爬取;财务报表入库;火车票抢票;抖音APP视频下载;百万英雄辅助;网易云音乐下载;B站视频和弹幕下载;京东晒单图下载 | 8.9k | Python | 09/16 |
| 134 | [ruanyf/weekly](https://github.com/ruanyf/weekly) | 科技爱好者周刊,每周五发布 | 8.9k | - | 10/04 |
| 135 | [youth5201314/banner](https://github.com/youth5201314/banner) | Android广告图片轮播控件,支持无限循环和多种主题,可以灵活设置轮播样式、动画、轮播和切换时间、位置、图片加载框架等! | 8.9k | Java | 10/09 |
| 136 | [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://gith ... | 8.8k | Dart | 09/30 |
| 137 | [hollischuang/toBeTopJavaer](https://github.com/hollischuang/toBeTopJavaer) | To Be Top Javaer - Java工程师成神之路 | 8.8k | Java | 08/29 |
| 138 | [bailicangdu/node-elm](https://github.com/bailicangdu/node-elm) | 基于 node.js + Mongodb 构建的后台系统 | 8.7k | JavaScript | 04/24 |
| 139 | [meolu/walle-web](https://github.com/meolu/walle-web) | walle - 瓦力 Devops开源项目代码部署平台 | 8.6k | Python | 09/23 |
| 140 | [fengdu78/deeplearning_ai_books](https://github.com/fengdu78/deeplearning_ai_books) | deeplearning.ai(吴恩达老师的深度学习课程笔记及资源) | 8.6k | HTML | 10/06 |
| 141 | [cnodejs/nodeclub](https://github.com/cnodejs/nodeclub) | :baby_chick:Nodeclub 是使用 Node.js 和 MongoDB 开发的社区系统 | 8.5k | JavaScript | 10/06 |
| 142 | [wangfupeng1988/wangEditor](https://github.com/wangfupeng1988/wangEditor) | wangEditor —— 轻量级web富文本框 | 8.5k | JavaScript | 09/09 |
| 143 | [AlloyTeam/Mars](https://github.com/AlloyTeam/Mars) | 腾讯移动 Web 前端知识库 | 8.4k | - | 01/11 |
| 144 | [JessYanCoding/AndroidAutoSize](https://github.com/JessYanCoding/AndroidAutoSize) | 🔥 A low-cost Android screen adaptation solution (今日头条屏幕适配方案终极版,一个极低成本的 Android 屏幕适配方案). | 8.4k | Java | 09/24 |
| 145 | [cnlh/nps](https://github.com/cnlh/nps) | 一款轻量级、功能强大的内网穿透代理服务器。支持tcp、udp流量转发,支持内网http代理、内网socks5代理,同时支持snappy压缩、站点保护、加密传输、多路复用、header修改等。支持web图形化管理,集成多用户模式。 | 8.2k | Go | 10/08 |
| 146 | [bilibili/DanmakuFlameMaster](https://github.com/bilibili/DanmakuFlameMaster) | Android开源弹幕引擎·烈焰弹幕使 ~ | 8.1k | Java | 04/29 |
| 147 | [open-android/Android](https://github.com/open-android/Android) | GitHub上最火的Android开源项目,所有开源项目都有详细资料和配套视频 | 8.1k | - | 09/17 |
| 148 | [0voice/from_coder_to_expert](https://github.com/0voice/from_coder_to_expert) | 2019年最新总结,从程序员到CTO,从专业走向卓越,分享大牛企业内部pdf与PPT | 8.1k | - | 08/02 |
| 149 | [yujiangshui/A-Programmers-Guide-to-English](https://github.com/yujiangshui/A-Programmers-Guide-to-English) | 专为程序员编写的英语学习指南 v1.2。在线版本请点 -> | 8.1k | - | 09/03 |
| 150 | [ryanhanwu/How-To-Ask-Questions-The-Smart-Way](https://github.com/ryanhanwu/How-To-Ask-Questions-The-Smart-Way) | 本文原文由知名 Hacker Eric S. Raymond 所撰寫,教你如何正確的提出技術問題並獲得你滿意的答案。 | 8.1k | JavaScript | 08/07 |
| 151 | [pagehelper/Mybatis-PageHelper](https://github.com/pagehelper/Mybatis-PageHelper) | Mybatis通用分页插件 | 8.1k | Java | 10/06 |
| 152 | [dxcweb/high-speed-downloader](https://github.com/dxcweb/high-speed-downloader) | 百度网盘不限速下载 支持Windows和Mac 2018年1月16日更新 | 8.0k | - | 06/14 |
| 153 | [ChenYilong/iOSInterviewQuestions](https://github.com/ChenYilong/iOSInterviewQuestions) | iOS interview questions;iOS面试题集锦(附答案)--学习qq群或 Telegram 群交流 https://github.com/ChenYilong/iOSBlog/issues/21 | 8.0k | Objective-C | 09/16 |
| 154 | [soulmachine/leetcode](https://github.com/soulmachine/leetcode) | LeetCode题解,151道题完整版 | 8.0k | TeX | 01/10 |
| 155 | [darknessomi/musicbox](https://github.com/darknessomi/musicbox) | 网易云音乐命令行版本 | 7.9k | Python | 09/01 |
| 156 | [opendigg/awesome-github-vue](https://github.com/opendigg/awesome-github-vue) | Vue相关开源项目库汇总 | 7.8k | - | 08/02 |
| 157 | [answershuto/learnVue](https://github.com/answershuto/learnVue) | :octocat:Vue.js 源码解析 | 7.8k | JavaScript | 08/17 |
| 158 | [jobbole/awesome-programming-books](https://github.com/jobbole/awesome-programming-books) | 经典编程书籍大全,涵盖:计算机系统与网络、系统架构、算法与数据结构、前端开发、后端开发、移动开发、数据库、测试、项目与团队、程序员职业修炼、求职面试等 | 7.8k | - | 02/20 |
| 159 | [USTC-Resource/USTC-Course](https://github.com/USTC-Resource/USTC-Course) | :heart:中国科学技术大学课程资源 | 7.8k | Python | 07/02 |
| 160 | [zergtant/pytorch-handbook](https://github.com/zergtant/pytorch-handbook) | pytorch handbook是一本开源的书籍,目标是帮助那些希望和使用PyTorch进行深度学习开发和研究的朋友快速入门,其中包含的Pytorch教程全部通过测试保证可以成功运行 | 7.8k | Jupyter Notebook | 10/08 |
| 161 | [stanzhai/be-a-professional-programmer](https://github.com/stanzhai/be-a-professional-programmer) | 成为专业程序员路上用到的各种优秀资料、神器及框架 | 7.8k | - | 09/24 |
| 162 | [sikaozhe1997/Xin-Yue](https://github.com/sikaozhe1997/Xin-Yue) | 岳昕:致北大师生与北大外国语学院的一封公开信 | 7.8k | HTML | 05/05 |
| 163 | [bailicangdu/vue2-manage](https://github.com/bailicangdu/vue2-manage) | 基于 vue + element-ui 的后台管理系统 | 7.7k | Vue | 01/25 |
| 164 | [huihut/interview](https://github.com/huihut/interview) | 📚 C/C++ 技术面试基础知识总结,包括语言、程序库、数据结构、算法、系统、网络、链接装载库等知识及面试经验、招聘、内推等信息。 | 7.7k | C++ | 10/07 |
| 165 | [sentsin/layer](https://github.com/sentsin/layer) | 丰富多样的 Web 弹出层组件,可轻松实现 Alert/Confirm/Prompt/ 普通提示/页面区块/iframe/tips等等几乎所有的弹出交互。目前已成为最多人使用的弹层解决方案 | 7.7k | JavaScript | 09/09 |
| 166 | [jhao104/proxy_pool](https://github.com/jhao104/proxy_pool) | Python爬虫代理IP池(proxy pool) | 7.6k | Python | 10/08 |
| 167 | [qianguyihao/Web](https://github.com/qianguyihao/Web) | 前端入门和进阶学习笔记,超详细的Web前端学习图文教程。从零开始学前端,做一名精致的前端工程师。持续更新... | 7.6k | JavaScript | 10/08 |
| 168 | [trazyn/ieaseMusic](https://github.com/trazyn/ieaseMusic) | 网易云音乐第三方 | 7.4k | JavaScript | 07/30 |
| 169 | [dt-fe/weekly](https://github.com/dt-fe/weekly) | 前端精读周刊 | 7.4k | - | 10/08 |
| 170 | [daniulive/SmarterStreaming](https://github.com/daniulive/SmarterStreaming) | 国内外为数不多致力于极致体验的超强全自研跨平台(windows/android/iOS)流媒体内核,通过模块化自由组合,支持实时RTMP推流、RTSP推流、RTMP播放器、RTSP播放器、录像、多路流媒体转发、音视频导播、动态视频合成、音频混音、直播互动、内置轻量级RTSP服务等,比快更快,业界真正靠谱的超低延迟直播SDK(1秒内,低延迟模式下200~400ms)。 | 7.4k | Java | 09/20 |
| 171 | [GcsSloop/AndroidNote](https://github.com/GcsSloop/AndroidNote) | 安卓学习笔记 | 7.4k | Java | 04/29 |
| 172 | [fengdu78/lihang-code](https://github.com/fengdu78/lihang-code) | 《统计学习方法》的代码实现 | 7.3k | Jupyter Notebook | 09/30 |
| 173 | [pjialin/py12306](https://github.com/pjialin/py12306) | 🚂 12306 购票助手,支持集群,多账号,多任务购票以及 Web 页面管理 | 7.2k | Python | 10/01 |
| 174 | [LuckSiege/PictureSelector](https://github.com/LuckSiege/PictureSelector) | Picture Selector Library for Android or 多图片选择器 | 7.2k | Java | 09/23 |
| 175 | [aalansehaiyang/technology-talk](https://github.com/aalansehaiyang/technology-talk) | 汇总java生态圈常用技术框架、开源中间件,系统架构、数据库、大公司架构案例、常用三方类库、项目管理、线上问题排查、个人成长、思考等知识 | 7.1k | - | 08/09 |
| 176 | [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.1k | Java | 09/30 |
| 177 | [adobe-fonts/source-han-sans](https://github.com/adobe-fonts/source-han-sans) | Source Han Sans \| 思源黑体 \| 思源黑體 \| 思源黑體 香港 \| 源ノ角ゴシック \| 본고딕 | 7.1k | Scala | 04/09 |
| 178 | [top-think/think](https://github.com/top-think/think) | ThinkPHP Framework ——十年匠心的高性能PHP框架 | 7.0k | PHP | 10/07 |
| 179 | [yygmind/blog](https://github.com/yygmind/blog) | 我是木易杨,公众号「高级前端进阶」作者,跟着我每周重点攻克一个前端面试重难点。接下来让我带你走进高级前端的世界,在进阶的路上,共勉! | 7.0k | - | 09/29 |
| 180 | [thinkgem/jeesite](https://github.com/thinkgem/jeesite) | JeeSite 是一个企业信息化开发基础平台,Java企业应用开源框架,Java EE(J2EE)快速开发框架,使用经典技术组合(Spring、Spring MVC、Apache Shiro、MyBatis、Bootstrap UI),包括核心模块如:组织机构、角色用户、权限授权、数据权限、内容管理、工作流等。 | 7.0k | JavaScript | 09/07 |
| 181 | [233boy/v2ray](https://github.com/233boy/v2ray) | 最好用的 V2Ray 一键安装脚本 & 管理脚本 | 6.9k | Shell | 10/07 |
| 182 | [CodeTips/BaiduNetdiskPlugin-macOS](https://github.com/CodeTips/BaiduNetdiskPlugin-macOS) | For macOS.百度网盘 破解SVIP、下载速度限制~ | 6.9k | Objective-C | 01/25 |
| 183 | [easychen/howto-make-more-money](https://github.com/easychen/howto-make-more-money) | 程序员如何优雅的挣零花钱 | 6.9k | - | 08/24 |
| 184 | [haizlin/fe-interview](https://github.com/haizlin/fe-interview) | 前端面试每日 3+1,以面试题来驱动学习,提倡每日学习与思考,每天进步一点!每天早上5点纯手工发布面试题(死磕自己,愉悦大家) | 6.9k | JavaScript | 10/09 |
| 185 | [hackware1993/MagicIndicator](https://github.com/hackware1993/MagicIndicator) | A powerful, customizable and extensible ViewPager indicator framework. As the best alternative of ViewPagerIndicator, TabLayout and PagerSlidingTabStrip —— 强大、可定制、易扩展的 ViewPager 指示器框架。是ViewPagerIndicator、TabLayout、PagerSlidingTabStrip的最佳替代品。支持角标,更支持在非ViewPager场景下使用(使用hide()、show()切换Fragment或使用se ... | 6.9k | Java | 03/21 |
| 186 | [litten/hexo-theme-yilia](https://github.com/litten/hexo-theme-yilia) | 一个简洁优雅的hexo主题 A simple and elegant theme for hexo. | 6.9k | JavaScript | 10/09 |
| 187 | [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.8k | Java | 01/25 |
| 188 | [icindy/wxParse](https://github.com/icindy/wxParse) | wxParse-微信小程序富文本解析自定义组件,支持HTML及markdown解析 | 6.7k | JavaScript | 05/05 |
| 189 | [bilibili/kratos](https://github.com/bilibili/kratos) | Kratos是bilibili开源的一套Go微服务框架,包含大量微服务相关框架及工具。 | 6.7k | Go | 10/09 |
| 190 | [unknwon/go-fundamental-programming](https://github.com/unknwon/go-fundamental-programming) | 《Go 编程基础》是一套针对 Google 出品的 Go 语言的视频语音教程,主要面向新手级别的学习者。 | 6.7k | Go | 09/18 |
| 191 | [banchichen/TZImagePickerController](https://github.com/banchichen/TZImagePickerController) | 一个支持多选、选原图和视频的图片选择器,同时有预览、裁剪功能,支持iOS6+。 A clone of UIImagePickerController, support picking multiple photos、original photo、video, also allow preview photo and video, support iOS6+ | 6.7k | Objective-C | 09/26 |
| 192 | [didi/chameleon](https://github.com/didi/chameleon) | 🦎 一套代码运行多端,一端所见即多端所见 | 6.7k | JavaScript | 10/09 |
| 193 | [hs-web/hsweb-framework](https://github.com/hs-web/hsweb-framework) | hsweb (haʊs wɛb) 是一个用于快速搭建企业后台管理系统的基础项目,集成一揽子便捷功能如:便捷的通用增删改查,强大的权限管理,动态多数据源,动态表单,在线数据库维护等. 基于 spring-boot,mybaits. | 6.7k | Java | 09/30 |
| 194 | [hoodiearon/w3-goto-world](https://github.com/hoodiearon/w3-goto-world) | 🍅冲出你的窗口,Git镜像、Clone 及AWS下载加速、FREE SS/SSR/VMESS、WireGuard配置分享、IPFS、暗网等其他资源存储库 | 6.6k | Ruby | 10/07 |
| 195 | [chokcoco/iCSS](https://github.com/chokcoco/iCSS) | 不止于 CSS | 6.6k | - | 09/26 |
| 196 | [crazycodeboy/TakePhoto](https://github.com/crazycodeboy/TakePhoto) | 一款用于在Android设备上获取照片(拍照或从相册、文件中选择)、裁剪图片、压缩图片的开源工具库 | 6.6k | Java | 08/26 |
| 197 | [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 | - | 04/07 |
| 198 | [EtherDream/jsproxy](https://github.com/EtherDream/jsproxy) | 一个基于浏览器端 JS 实现的在线代理 | 6.6k | Shell | 09/29 |
| 199 | [inferjay/AndroidDevTools](https://github.com/inferjay/AndroidDevTools) | 收集整理Android开发所需的Android SDK、开发中用到的工具、Android开发教程、Android设计规范,免费的设计素材等。 | 6.5k | - | 10/04 |
| 200 | [snail007/goproxy](https://github.com/snail007/goproxy) | Proxy is a high performance HTTP(S), websocket,TCP, UDP,Secure DNS,Socks5 proxy server .Chain-style proxies,nat forwarding in different lan,TCP/UDP port forwarding, SSH forwarding ,ipv4 and ipv6 supporting .Proxy是golang实现的高性能http,https,websocket,tcp,防污染DNS,socks5代理服务器,支持内网穿透,链式代理,通讯加密,智能HTTP,SOCKS5代 ... | 6.5k | Go | 10/08 |
⬆ [回到目录](#目录)
<br/>
## Java
| # | Repository | Description | Stars | Language | Updated |
| ---- | ------------------------------------------------------------ | ------------------------------------------------------------ | ----- | -------- | ------- |
| 1 | [CyC2018/CS-Notes](https://github.com/CyC2018/CS-Notes) | :books: Tech Interview Guide 技术面试必备基础知识、Leetcode 题解、Java、C++、Python、后端面试、操作系统、计算机网络、系统设计 | 79.6k | Java | 10/05 |
| 2 | [Snailclimb/JavaGuide](https://github.com/Snailclimb/JavaGuide) | 【Java学习+面试指南】 一份涵盖大部分Java程序员所需要掌握的核心知识。 | 56.8k | Java | 10/09 |
| 3 | [MisterBooo/LeetCodeAnimation](https://github.com/MisterBooo/LeetCodeAnimation) | Demonstrate all the questions on LeetCode in the form of animation.(用动画的形式呈现解LeetCode题目的思路) | 41.9k | Java | 10/09 |
| 4 | [doocs/advanced-java](https://github.com/doocs/advanced-java) | 😮 互联网 Java 工程师进阶知识完全扫盲:涵盖高并发、分布式、高可用、微服务等领域知识,后端同学必看,前端同学也可学习 | 31.9k | Java | 10/08 |
| 5 | [proxyee-down-org/proxyee-down](https://github.com/proxyee-down-org/proxyee-down) | http下载工具,基于http代理,支持多连接分块下载 | 25.1k | Java | 10/09 |
| 6 | [macrozheng/mall](https://github.com/macrozheng/mall) | mall项目是一套电商系统,包括前台商城系统及后台管理系统,基于SpringBoot+MyBatis实现。 前台商城系统包含首页门户、商品推荐、商品搜索、商品展示、购物车、订单流程、会员中心、客户服务、帮助中心等模块。 后台管理系统包含商品管理、订单管理、会员管理、促销管理、运营管理、内容管理、统计报表、财务管理、权限管理、设置等模块。 | 22.5k | Java | 10/08 |
| 7 | [scwang90/SmartRefreshLayout](https://github.com/scwang90/SmartRefreshLayout) | 🔥下拉刷新、上拉加载、二级刷新、淘宝二楼、RefreshLayout、OverScroll,Android智能下拉刷新框架,支持越界回弹、越界拖动,具有极强的扩展性,集成了几十种炫酷的Header和 Footer。 | 18.9k | Java | 09/26 |
| 8 | [ityouknow/spring-boot-examples](https://github.com/ityouknow/spring-boot-examples) | about learning Spring Boot via examples. Spring Boot 教程、技术栈示例代码,快速简单上手教程。 | 18.8k | Java | 09/11 |
| 9 | [alibaba/druid](https://github.com/alibaba/druid) | 阿里巴巴数据库事业部出品,为监控而生的数据库连接池。阿里云Data Lake Analytics(https://www.aliyun.com/product/datalakeanalytics )、DRDS、TDDL 连接池powered by Druid | 18.8k | Java | 10/08 |
| 10 | [ctripcorp/apollo](https://github.com/ctripcorp/apollo) | Apollo(阿波罗)是携程框架部门研发的分布式配置中心,能够集中化管理应用不同环境、不同集群的配置,配置修改后能够实时推送到应用端,并且具备规范的权限、流程治理等特性,适用于微服务配置管理场景。 | 17.4k | Java | 10/09 |
| 11 | [alibaba/arthas](https://github.com/alibaba/arthas) | Alibaba Java Diagnostic Tool Arthas/Alibaba Java诊断利器Arthas | 16.9k | Java | 10/09 |
| 12 | [hankcs/HanLP](https://github.com/hankcs/HanLP) | 自然语言处理 中文分词 词性标注 命名实体识别 依存句法分析 新词发现 关键词短语提取 自动摘要 文本分类聚类 拼音简繁 | 15.1k | Java | 10/03 |
| 13 | [shuzheng/zheng](https://github.com/shuzheng/zheng) | 基于Spring+SpringMVC+Mybatis分布式敏捷开发系统架构,提供整套公共微服务服务模块:集中权限管理(单点登录)、内容管理、支付中心、用户管理(支持第三方登录)、微信平台、存储系统、配置中心、日志分析、任务和通知等,支持服务治理、监控和追踪,努力为中小型企业打造全方位J2EE企业级开发解决方案。 | 14.3k | Java | 09/25 |
| 14 | [b3log/symphony](https://github.com/b3log/symphony) | 🎶 一款用 Java 实现的现代化社区(论坛/BBS/社交网络/博客)平台。 | 12.8k | Java | 10/07 |
| 15 | [CarGuo/GSYVideoPlayer](https://github.com/CarGuo/GSYVideoPlayer) | 视频播放器(IJKplayer、ExoPlayer、MediaPlayer),HTTPS,支持弹幕,支持滤镜、水印、gif截图,片头广告、中间广告,多个同时播放,支持基本的拖动,声音、亮度调节,支持边播边缓存,支持视频自带rotation的旋转(90,270之类),重力旋转与手动旋转的同步支持,支持列表播放 ,列表全屏动画,视频加载速度,列表小窗口支持拖动,动画效果,调整比例,多分辨率切换,支持切换播放器,进度条小窗口预览,列表切换详情页面无缝播放,rtsp、concat、mpeg。 | 11.9k | Java | 09/30 |
| 16 | [b3log/solo](https://github.com/b3log/solo) | 🎸 一款小而美的博客系统,专为程序员设计。 | 11.8k | Java | 10/07 |
| 17 | [dianping/cat](https://github.com/dianping/cat) | CAT 作为服务端项目基础组件,提供了 Java, C/C++, Node.js, Python, Go 等多语言客户端,已经在美团点评的基础架构中间件框架(MVC框架,RPC框架,数据库框架,缓存框架等,消息队列,配置系统等)深度集成,为美团点评各业务线提供系统丰富的性能指标、健康状况、实时告警等。 | 11.6k | Java | 10/08 |
| 18 | [brettwooldridge/HikariCP](https://github.com/brettwooldridge/HikariCP) | 光 HikariCP・A solid, high-performance, JDBC connection pool at last. | 11.2k | Java | 10/02 |
| 19 | [JeffLi1993/springboot-learning-example](https://github.com/JeffLi1993/springboot-learning-example) | spring boot 实践学习案例,是 spring boot 初学者及核心技术巩固的最佳实践。另外写博客,用 OpenWrite。 | 11.2k | Java | 09/22 |
| 20 | [qiurunze123/miaosha](https://github.com/qiurunze123/miaosha) | ⭐⭐⭐⭐秒杀系统设计与实现.互联网工程师进阶与分析🙋🐓 | 11.1k | Java | 08/14 |
| 21 | [alibaba/canal](https://github.com/alibaba/canal) | 阿里巴巴 MySQL binlog 增量订阅&消费组件 | 10.8k | Java | 10/09 |
| 22 | [alibaba/ARouter](https://github.com/alibaba/ARouter) | 💪 A framework for assisting in the renovation of Android componentization (帮助 Android App 进行组件化改造的路由框架) | 10.8k | Java | 09/18 |
| 23 | [Curzibn/Luban](https://github.com/Curzibn/Luban) | Luban(鲁班)—Image compression with efficiency very close to WeChat Moments/可能是最接近微信朋友圈的图片压缩算法 | 10.8k | Java | 09/12 |
| 24 | [Bigkoo/Android-PickerView](https://github.com/Bigkoo/Android-PickerView) | This is a picker view for android , support linkage effect, timepicker and optionspicker.(时间选择器、省市区三级联动) | 10.8k | Java | 08/02 |
| 25 | [forezp/SpringCloudLearning](https://github.com/forezp/SpringCloudLearning) | 《史上最简单的Spring Cloud教程源码》 | 10.6k | Java | 10/03 |
| 26 | [lenve/vhr](https://github.com/lenve/vhr) | 微人事是一个前后端分离的人力资源管理系统,项目采用SpringBoot+Vue开发。 | 10.5k | Java | 10/08 |
| 27 | [xuxueli/xxl-job](https://github.com/xuxueli/xxl-job) | A lightweight distributed task scheduling framework.(分布式任务调度平台XXL-JOB) | 10.3k | Java | 10/09 |
| 28 | [didi/DoraemonKit](https://github.com/didi/DoraemonKit) | 简称 "DoKit" 。一款功能齐全的客户端( iOS 、Android、微信小程序 )研发助手,你值得拥有。 | 10.3k | Java | 10/09 |
| 29 | [Tamsiree/RxTool](https://github.com/Tamsiree/RxTool) | Android开发人员不得不收集的工具类集合 \| 支付宝支付 \| 微信支付(统一下单) \| 微信分享 \| Zip4j压缩(支持分卷压缩与加密) \| 一键集成UCrop选择圆形头像 \| 一键集成二维码和条形码的扫描与生成 \| 常用Dialog \| WebView的封装可播放视频 \| 仿斗鱼滑动验证码 \| Toast封装 \| 震动 \| GPS \| Location定位 \| 图片缩放 \| Exif 图片添加地理位置信息(经纬度) \| 蛛网等级 \| 颜色选择器 \| ArcGis \| VTPK \| 编译运行一下说不定会找到惊喜 | 9.9k | Java | 08/01 |
| 30 | [lipangit/JiaoZiVideoPlayer](https://github.com/lipangit/JiaoZiVideoPlayer) | Android VideoPlayer MediaPlayer VideoView MediaView Float View And Fullscreen.高度自定义的开源安卓视频框架 | 9.8k | Java | 08/18 |
| 31 | [alibaba/easyexcel](https://github.com/alibaba/easyexcel) | 快速、简单避免OOM的java处理Excel工具 | 9.7k | Java | 10/09 |
| 32 | [jeasonlzy/okhttp-OkGo](https://github.com/jeasonlzy/okhttp-OkGo) | OkGo - 3.0 震撼来袭,该库是基于 Http 协议,封装了 OkHttp 的网络请求框架,比 Retrofit 更简单易用,支持 RxJava,RxJava2,支持自定义缓存,支持批量断点下载管理和批量上传管理功能 | 9.6k | Java | 07/03 |
| 33 | [linlinjava/litemall](https://github.com/linlinjava/litemall) | 又一个小商城。litemall = Spring Boot后端 + Vue管理员前端 + 微信小程序用户前端 + Vue用户移动端 | 9.5k | Java | 10/09 |
| 34 | [wuyouzhuguli/SpringAll](https://github.com/wuyouzhuguli/SpringAll) | 循序渐进,学习Spring Boot、Spring Boot & Shiro、Spring Cloud、Spring Security & Spring Security OAuth2,博客Spring系列源码 | 9.5k | Java | 08/01 |
| 35 | [Tencent/QMUI_Android](https://github.com/Tencent/QMUI_Android) | 提高 Android UI 开发效率的 UI 库 | 9.1k | Java | 09/30 |
| 36 | [alibaba/Sentinel](https://github.com/alibaba/Sentinel) | A lightweight powerful flow control component enabling reliability and monitoring for microservices. (轻量级的流量控制、熔断降级 Java 库) | 9.0k | Java | 10/08 |
| 37 | [halo-dev/halo](https://github.com/halo-dev/halo) | ✍ Halo 一款现代化的个人独立博客系统 | 8.9k | Java | 10/04 |
| 38 | [youth5201314/banner](https://github.com/youth5201314/banner) | Android广告图片轮播控件,支持无限循环和多种主题,可以灵活设置轮播样式、动画、轮播和切换时间、位置、图片加载框架等! | 8.9k | Java | 10/09 |
| 39 | [JessYanCoding/MVPArms](https://github.com/JessYanCoding/MVPArms) | ⚔️ A common architecture for Android applications developing based on MVP, integrates many open source projects, to make your developing quicker and easier (一个整合了大量主流开源项目高度可配置化的 Android MVP 快速集成框架). | 8.8k | Java | 10/01 |
| 40 | [hollischuang/toBeTopJavaer](https://github.com/hollischuang/toBeTopJavaer) | To Be Top Javaer - Java工程师成神之路 | 8.8k | Java | 08/29 |
| 41 | [JessYanCoding/AndroidAutoSize](https://github.com/JessYanCoding/AndroidAutoSize) | 🔥 A low-cost Android screen adaptation solution (今日头条屏幕适配方案终极版,一个极低成本的 Android 屏幕适配方案). | 8.4k | Java | 09/24 |
| 42 | [bilibili/DanmakuFlameMaster](https://github.com/bilibili/DanmakuFlameMaster) | Android开源弹幕引擎·烈焰弹幕使 ~ | 8.1k | Java | 04/29 |
| 43 | [pagehelper/Mybatis-PageHelper](https://github.com/pagehelper/Mybatis-PageHelper) | Mybatis通用分页插件 | 8.1k | Java | 10/06 |
| 44 | [daniulive/SmarterStreaming](https://github.com/daniulive/SmarterStreaming) | 国内外为数不多致力于极致体验的超强全自研跨平台(windows/android/iOS)流媒体内核,通过模块化自由组合,支持实时RTMP推流、RTSP推流、RTMP播放器、RTSP播放器、录像、多路流媒体转发、音视频导播、动态视频合成、音频混音、直播互动、内置轻量级RTSP服务等,比快更快,业界真正靠谱的超低延迟直播SDK(1秒内,低延迟模式下200~400ms)。 | 7.4k | Java | 09/20 |
| 45 | [GcsSloop/AndroidNote](https://github.com/GcsSloop/AndroidNote) | 安卓学习笔记 | 7.4k | Java | 04/29 |
| 46 | [LuckSiege/PictureSelector](https://github.com/LuckSiege/PictureSelector) | Picture Selector Library for Android or 多图片选择器 | 7.2k | Java | 09/23 |
| 47 | [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.1k | Java | 09/30 |
| 48 | [hackware1993/MagicIndicator](https://github.com/hackware1993/MagicIndicator) | A powerful, customizable and extensible ViewPager indicator framework. As the best alternative of ViewPagerIndicator, TabLayout and PagerSlidingTabStrip —— 强大、可定制、易扩展的 ViewPager 指示器框架。是ViewPagerIndicator、TabLayout、PagerSlidingTabStrip的最佳替代品。支持角标,更支持在非ViewPager场景下使用(使用hide()、show()切换Fragment或使用se ... | 6.9k | Java | 03/21 |
| 49 | [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.8k | Java | 01/25 |
| 50 | [hs-web/hsweb-framework](https://github.com/hs-web/hsweb-framework) | hsweb (haʊs wɛb) 是一个用于快速搭建企业后台管理系统的基础项目,集成一揽子便捷功能如:便捷的通用增删改查,强大的权限管理,动态多数据源,动态表单,在线数据库维护等. 基于 spring-boot,mybaits. | 6.7k | Java | 09/30 |
| 51 | [crazycodeboy/TakePhoto](https://github.com/crazycodeboy/TakePhoto) | 一款用于在Android设备上获取照片(拍照或从相册、文件中选择)、裁剪图片、压缩图片的开源工具库 | 6.6k | Java | 08/26 |
| 52 | [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 ... | 6.4k | Java | 10/05 |
| 53 | [zhangdaiscott/jeecg-boot](https://github.com/zhangdaiscott/jeecg-boot) | 一款基于代码生成器的JAVA快速开发平台!采用最新技术,前后端分离架构:SpringBoot 2.x,Ant Design&Vue,Mybatis,Shiro,JWT。强大的代码生成器让前后端代码一键生成,无需写任何代码,绝对是全栈开发福音!! JeecgBoot的宗旨是提高UI能力的同时,降低前后分离的开发成本,JeecgBoot还独创在线开发模式,No代码概念,一系列在线智能开发:在线配置表单、在线配置报表、在线设计流程等等。 | 6.2k | Java | 10/03 |
| 54 | [frank-lam/fullstack-tutorial](https://github.com/frank-lam/fullstack-tutorial) | 🚀 fullstack tutorial 2019,后台技术栈/架构师之路/全栈开发社区,春招/秋招/校招/面试 | 6.1k | Java | 09/19 |
| 55 | [paascloud/paascloud-master](https://github.com/paascloud/paascloud-master) | spring cloud + vue + oAuth2.0全家桶实战,前后端分离模拟商城,完整的购物流程、后端运营平台,可以实现快速搭建企业级微服务项目。支持微信登录等三方登录。 | 5.8k | Java | 08/27 |
| 56 | [huanghaibin-dev/CalendarView](https://github.com/huanghaibin-dev/CalendarView) | Android上一个优雅、万能自定义UI、支持周视图、自定义周起始、性能高效的日历控件,支持热插拔实现的UI定制!支持标记、自定义颜色、农历、自定义月视图各种显示模式等。Canvas绘制,速度快、占用内存低,你真的想不到日历居然还可以如此优雅!An elegant, highly customized and high-performance Calendar Widget on Android. | 5.6k | Java | 08/14 |
| 57 | [lihengming/spring-boot-api-project-seed](https://github.com/lihengming/spring-boot-api-project-seed) | :seedling::rocket:一个基于Spring Boot & MyBatis的种子项目,用于快速构建中小型API、RESTful API项目~ | 5.4k | Java | 04/22 |
| 58 | [smuyyh/BookReader](https://github.com/smuyyh/BookReader) | :closed_book: "任阅" 网络小说阅读器,3D翻页效果、txt/pdf/epub书籍阅读、Wifi传书~ | 5.4k | Java | 06/25 |
| 59 | [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 | 10/08 |
| 60 | [hongyangAndroid/FlowLayout](https://github.com/hongyangAndroid/FlowLayout) | [不再维护]Android流式布局,支持单选、多选等,适合用于产品标签等。 | 5.2k | Java | 05/22 |
| 61 | [NLPchina/ansj_seg](https://github.com/NLPchina/ansj_seg) | ansj分词.ict的真正java实现.分词效果速度都超过开源版的ict. 中文分词,人名识别,词性标注,用户自定义词典 | 5.2k | Java | 07/16 |
| 62 | [alibaba/otter](https://github.com/alibaba/otter) | 阿里巴巴分布式数据库同步系统(解决中美异地机房) | 5.1k | Java | 09/07 |
| 63 | [seaswalker/spring-analysis](https://github.com/seaswalker/spring-analysis) | Spring源码阅读 | 5.1k | Java | 02/19 |
| 64 | [justauth/JustAuth](https://github.com/justauth/JustAuth) | :100: 史上最全的整合第三方登录的开源库。目前已支持Github、Gitee、微博、钉钉、百度、Coding、腾讯云开发者平台、OSChina、支付宝、QQ、微信、淘宝、Google、Facebook、抖音、领英、小米、微软、今日头条、Teambition、StackOverflow、Pinterest、人人、华为、企业微信、酷家乐、Gitlab、美团和饿了么等第三方平台的授权登录。 Login, so easy! | 5.0k | Java | 10/09 |
| 65 | [knightliao/disconf](https://github.com/knightliao/disconf) | Distributed Configuration Management Platform(分布式配置管理平台) | 5.0k | Java | 01/29 |
| 66 | [izzyleung/ZhihuDailyPurify](https://github.com/izzyleung/ZhihuDailyPurify) | Purified version of Zhihu Daily - 更纯净的知乎日报 | 5.0k | Java | 10/05 |
| 67 | [Meituan-Dianping/walle](https://github.com/Meituan-Dianping/walle) | Android Signature V2 Scheme签名下的新一代渠道包打包神器 | 4.9k | Java | 06/28 |
| 68 | [dyc87112/SpringCloud-Learning](https://github.com/dyc87112/SpringCloud-Learning) | Spring Cloud基础教程,持续连载更新中 | 4.8k | Java | 09/22 |
| 69 | [jpush/aurora-imui](https://github.com/jpush/aurora-imui) | General IM UI components. Android/iOS/RectNative ready. 通用 IM 聊天 UI 组件,已经同时支持 Android/iOS/RN。 | 4.8k | Java | 08/27 |
| 70 | [gzu-liyujiang/AndroidPicker](https://github.com/gzu-liyujiang/AndroidPicker) | 安卓选择器类库,包括日期选择器、时间选择器、单项选择器、双项选择器、城市地址选择器、车牌号选择器、数字选择器、星座选择器、生肖选择器、颜色选择器、文件选择器、目录选择器等……WheelPicker/DateTimePicker/DatePicker/TimePicker/SinglePicker/NumberPicker/DoublePicker/LinkagePicker/AddressPicker/CalendarPicker/ColorPicker/FilePicker etc. | 4.8k | Java | 09/17 |
| 71 | [zouzg/mybatis-generator-gui](https://github.com/zouzg/mybatis-generator-gui) | mybatis-generator界面工具,让你生成代码更简单更快捷 | 4.6k | Java | 10/09 |
| 72 | [liyifeng1994/ssm](https://github.com/liyifeng1994/ssm) | 手把手教你整合最优雅SSM框架:SpringMVC + Spring + MyBatis | 4.5k | Java | 09/10 |
| 73 | [sohutv/cachecloud](https://github.com/sohutv/cachecloud) | 搜狐视频(sohu tv)Redis私有云平台 | 4.5k | Java | 04/24 |
| 74 | [ityouknow/spring-cloud-examples](https://github.com/ityouknow/spring-cloud-examples) | Spring Cloud 学习案例,服务发现、服务治理、链路追踪、服务监控等 | 4.4k | Java | 09/17 |
| 75 | [yipianfengye/android-zxingLibrary](https://github.com/yipianfengye/android-zxingLibrary) | 几行代码快速集成二维码扫描功能 | 4.3k | Java | 10/09 |
| 76 | [yanzhenjie/SwipeRecyclerView](https://github.com/yanzhenjie/SwipeRecyclerView) | :melon: RecyclerView侧滑菜单,Item拖拽,滑动删除Item,自动加载更多,HeaderView,FooterView,Item分组黏贴。 | 4.3k | Java | 04/12 |
| 77 | [zhanghai/Douya](https://github.com/zhanghai/Douya) | 开源的 Material Design 豆瓣客户端(A Material Design app for douban.com) | 4.3k | Java | 09/29 |
| 78 | [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.3k | Java | 09/01 |
| 79 | [TommyLemon/Android-ZBLibrary](https://github.com/TommyLemon/Android-ZBLibrary) | 🔥Android MVP快速开发框架,做国内 「Demo最全面」「注释最详细」「使用最简单」「代码最严谨」的Android开源UI框架 | 4.2k | Java | 09/04 |
| 80 | [Exrick/xmall](https://github.com/Exrick/xmall) | 基于SOA架构的分布式电商购物商城 前后端分离 前台商城:Vue全家桶 后台管理系统:Dubbo/SSM/Elasticsearch/Redis/MySQL/ActiveMQ/Shiro/Zookeeper等 | 4.2k | Java | 10/06 |
| 81 | [changmingxie/tcc-transaction](https://github.com/changmingxie/tcc-transaction) | tcc-transaction是TCC型事务java实现 | 4.1k | Java | 09/21 |
| 82 | [goldze/MVVMHabit](https://github.com/goldze/MVVMHabit) | 👕基于谷歌最新AAC架构,MVVM设计模式的一套快速开发库,整合Okhttp+RxJava+Retrofit+Glide等主流模块,满足日常开发需求。使用该框架可以快速开发一个高质量、易维护的Android应用。 | 4.1k | Java | 09/30 |
| 83 | [wildfirechat/server](https://github.com/wildfirechat/server) | 即时通讯(IM)系统 | 4.1k | Java | 10/09 |
| 84 | [crossoverJie/cim](https://github.com/crossoverJie/cim) | 📲cim(cross IM) 适用于开发者的分布式即时通讯系统 | 4.0k | Java | 10/08 |
| 85 | [pili-engineering/PLDroidPlayer](https://github.com/pili-engineering/PLDroidPlayer) | PLDroidPlayer 是七牛推出的一款免费的适用于 Android 平台的播放器 SDK,采用全自研的跨平台播放内核,拥有丰富的功能和优异的性能,可高度定制化和二次开发。 | 4.0k | Java | 06/12 |
| 86 | [SplashCodes/JAViewer](https://github.com/SplashCodes/JAViewer) | 更优雅的驾车体验 | 4.0k | Java | 09/20 |
| 87 | [youlookwhat/CloudReader](https://github.com/youlookwhat/CloudReader) | 云阅:一款基于网易云音乐UI,使用玩安卓、Gank.Io及时光网api开发的符合Google Material Design的Android客户端。项目采取的是MVVM-DataBinding架构开发,主要包括:玩安卓区、干货区和电影区三个子模块。 | 3.9k | Java | 10/08 |
| 88 | [jeasonlzy/ImagePicker](https://github.com/jeasonlzy/ImagePicker) | 完全仿微信的图片选择,并且提供了多种图片加载接口,选择图片后可以旋转,可以裁剪成矩形或圆形,可以配置各种其他的参数 | 3.9k | Java | 02/21 |
| 89 | [DingMouRen/LayoutManagerGroup](https://github.com/DingMouRen/LayoutManagerGroup) | :point_right: Customize the LayoutManager of RecyclerView(自定义LayoutManager) | 3.9k | Java | 10/05 |
| 90 | [elunez/eladmin](https://github.com/elunez/eladmin) | 项目基于 Spring Boot 2.1.0 、 Jpa、 Spring Security、redis、Vue的前后端分离的后台管理系统,项目采用分模块开发方式, 权限控制采用 RBAC,支持数据字典与数据权限管理,支持一键生成前后端代码,支持动态路由 | 3.8k | Java | 09/30 |
| 91 | [huangyanbin/smartTable](https://github.com/huangyanbin/smartTable) | 一款android自动生成表格框架---An Android automatically generated table framework | 3.7k | Java | 02/13 |
| 92 | [bingoogolapple/BGABanner-Android](https://github.com/bingoogolapple/BGABanner-Android) | 引导界面滑动导航 + 大于等于1页时无限轮播 + 各种切换动画轮播效果 | 3.6k | Java | 04/13 |
| 93 | [gedoor/MyBookshelf](https://github.com/gedoor/MyBookshelf) | 阅读是一款可以自定义来源阅读网络内容的工具,为广大网络文学爱好者提供一种方便、快捷舒适的试读体验。 | 3.6k | Java | 10/05 |
| 94 | [qstumn/BadgeView](https://github.com/qstumn/BadgeView) | 支持自由定制外观、拖拽消除的MaterialDesign风格Android BadgeView | 3.5k | Java | 09/22 |
| 95 | [Tencent/Shadow](https://github.com/Tencent/Shadow) | 零反射全动态Android插件框架 | 3.5k | Java | 09/29 |
| 96 | [wuyouzhuguli/FEBS-Shiro](https://github.com/wuyouzhuguli/FEBS-Shiro) | Spring Boot 2.1.8,Shiro1.4.0 & Layui 2.5.5 权限管理系统。预览地址:https://shiro.mrbird.cn:8080 | 3.5k | Java | 10/08 |
| 97 | [ZXZxin/ZXBlog](https://github.com/ZXZxin/ZXBlog) | 记录各种学习笔记(算法、Java、数据库、并发......) | 3.5k | Java | 09/16 |
| 98 | [ffay/lanproxy](https://github.com/ffay/lanproxy) | lanproxy是一个将局域网个人电脑、服务器代理到公网的内网穿透工具,目前仅支持tcp流量转发,可支持任何tcp上层协议(访问内网网站、本地支付接口调试、ssh访问、远程桌面...)。目前市面上提供类似服务的有花生壳、TeamView、GoToMyCloud等等,但要使用第三方的公网服务器就必须为第三方付费,并且这些服务都有各种各样的限制,此外,由于数据包会流经第三方,因此对数据安全也是一大隐患。 | 3.4k | Java | 07/24 |
| 99 | [dengyuhan/magnetW](https://github.com/dengyuhan/magnetW) | 磁力搜网页版 - 磁力链接聚合搜索 - https://biedian.me | 3.4k | Java | 10/02 |
| 100 | [razerdp/BasePopup](https://github.com/razerdp/BasePopup) | 亲,还在为PopupWindow烦恼吗?不如试试BasePopup,你会爱上他的~ | 3.4k | Java | 10/09 |
| 101 | [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.4k | Java | 09/21 |
| 102 | [hyb1996/Auto.js](https://github.com/hyb1996/Auto.js) | A UiAutomator on android, does not need root access(安卓平台上的JavaScript自动化工具) | 3.4k | Java | 07/13 |
| 103 | [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 |
| 104 | [brianway/java-learning](https://github.com/brianway/java-learning) | 旨在打造在线最佳的 Java 学习笔记,含博客讲解和源码实例,包括 Java SE 和 Java Web | 3.2k | Java | 06/25 |
| 105 | [sunfusheng/MarqueeView](https://github.com/sunfusheng/MarqueeView) | 俗名:可垂直跑、可水平跑的跑马灯;学名:可垂直翻、可水平翻的翻页公告 | 3.2k | Java | 09/10 |
| 106 | [zzhoujay/RichText](https://github.com/zzhoujay/RichText) | Android平台下的富文本解析器,支持Html和Markdown | 3.1k | Java | 05/14 |
| 107 | [luckybilly/CC](https://github.com/luckybilly/CC) | 业界首个支持渐进式组件化改造的Android组件化开源框架,支持跨进程调用。Componentize your android project gradually. | 3.1k | Java | 05/03 |
| 108 | [techGay/v9porn](https://github.com/techGay/v9porn) | 9*Porn Android 客户端,突破游客每天观看10次视频的限制,还可以下载视频 | 3.1k | Java | 09/17 |
| 109 | [hustcc/JS-Sorting-Algorithm](https://github.com/hustcc/JS-Sorting-Algorithm) | 一本关于排序算法的 GitBook 在线书籍 《十大经典排序算法》,多语言实现。 | 3.1k | Java | 10/09 |
| 110 | [yhaolpz/FloatWindow](https://github.com/yhaolpz/FloatWindow) | Andorid 任意界面悬浮窗,实现悬浮窗如此简单 | 3.1k | Java | 09/18 |
| 111 | [ming1016/study](https://github.com/ming1016/study) | 学习记录 | 3.0k | Java | 08/02 |
| 112 | [binIoter/GuideView](https://github.com/binIoter/GuideView) | 东半球最好用的新手引导库,能够快速为任何一个View创建一个遮罩层,支持单个页面,多个引导串联展示,支持为高亮区域设置不同的图形,支持引导动画,方便扩展,良好支持fragment | 3.0k | Java | 08/03 |
| 113 | [pqpo/SmartCropper](https://github.com/pqpo/SmartCropper) | 🔥 A library for cropping image in a smart way that can identify the border and correct the cropped image. 智能图片裁剪框架。自动识别边框,手动调节选区,使用透视变换裁剪并矫正选区;适用于身份证,名片,文档等照片的裁剪。 | 3.0k | Java | 08/01 |
| 114 | [roncoo/roncoo-pay](https://github.com/roncoo/roncoo-pay) | 龙果支付系统(roncoo-pay)是国内首款开源的互联网支付系统,拥有独立的账户体系、用户体系、支付接入体系、支付交易体系、对账清结算体系。目标是打造一款集成主流支付方式且轻量易用的支付收款系统,满足互联网业务系统打通支付通道实现支付收款和业务资金管理等功能。 | 3.0k | Java | 09/27 |
| 115 | [zwwill/yanxuan-weex-demo](https://github.com/zwwill/yanxuan-weex-demo) | :art: High quality pure Weex demo / 网易严选 App 感受 Weex 开发 | 3.0k | Java | 02/14 |
| 116 | [hope-for/hope-boot](https://github.com/hope-for/hope-boot) | 🌱🚀一款现代化的脚手架项目。企业开发?接外包?赚外快?还是学习?这都能满足你,居家必备,值得拥有:beers:整合Springboot2,单点登陆+tk.mybatis+shiro+redis+thymeleaf+maven+swagger前后端分离接口管理+代码生成+定时任务+数据库版本管理flyway+hutool工具包,等实用技术。 | 3.0k | Java | 08/30 |
| 117 | [guolindev/giffun](https://github.com/guolindev/giffun) | 一款开源的GIF在线分享App,乐趣就要和世界分享。 | 3.0k | Java | 09/20 |
| 118 | [GitLqr/LQRWeChat](https://github.com/GitLqr/LQRWeChat) | 本项目仿最新版微信6.5.7(除图片选择器外),基于融云SDK,使用目前较火的 Rxjava+Retrofit+MVP+Glide 技术开发。相比上个版本,加入发送位置消息,红包消息等功能。 | 2.9k | Java | 03/07 |
| 119 | [527515025/springBoot](https://github.com/527515025/springBoot) | springboot 框架与其它组件结合如 jpa、mybatis、websocket、security、shiro、cache等 | 2.9k | Java | 09/04 |
| 120 | [zhanglei-workspace/shopping-management-system](https://github.com/zhanglei-workspace/shopping-management-system) | 该项目为多个小项目的集合(持续更新中...)。内容类似淘宝、京东等网购管理系统以及图书管理、超市管理等系统。目的在于便于Java初级爱好者在学习完某一部分Java知识后有一个合适的项目锻炼、运用所学知识,完善知识体系。适用人群:Java基础到入门的爱好者。 | 2.8k | Java | 09/27 |
| 121 | [alipay/SoloPi](https://github.com/alipay/SoloPi) | SoloPi 自动化测试工具 | 2.8k | Java | 09/25 |
| 122 | [mpusher/mpush](https://github.com/mpusher/mpush) | MPush开源实时消息推送系统 | 2.8k | Java | 06/26 |
| 123 | [AriaLyy/Aria](https://github.com/AriaLyy/Aria) | 下载可以很简单 | 2.8k | Java | 09/05 |
| 124 | [ittianyu/BottomNavigationViewEx](https://github.com/ittianyu/BottomNavigationViewEx) | An android lib for enhancing BottomNavigationView. 一个增强BottomNavigationView的安卓库。 | 2.7k | Java | 06/05 |
| 125 | [macrozheng/mall-learning](https://github.com/macrozheng/mall-learning) | mall学习教程,架构、业务、技术要点全方位解析。mall项目(20k+star)是一套电商系统,使用现阶段主流技术实现。 涵盖了SpringBoot2.1.3、MyBatis3.4.6、Elasticsearch6.2.2、RabbitMQ3.7.15、Redis3.2、Mongodb3.2、Mysql5.7等技术,采用Docker容器化部署。 | 2.7k | Java | 10/08 |
| 126 | [JZ-Darkal/AndroidHttpCapture](https://github.com/JZ-Darkal/AndroidHttpCapture) | AndroidHttpCapture网络诊断工具 是一款Android手机抓包软件 主要功能包括:手机端抓包、PING/DNS/TraceRoute诊断、抓包HAR数据上传分享。你也可以看成是Android版的"Fiddler" \(^o^)/~ | 2.7k | Java | 09/05 |
| 127 | [WVector/AppUpdate](https://github.com/WVector/AppUpdate) | 🚀 Android 版本更新 🚀 a library for android version update 🚀 | 2.7k | Java | 05/20 |
| 128 | [Exrick/xpay](https://github.com/Exrick/xpay) | XPay个人免签收款支付系统 完全免费 资金直接到达本人账号 支持 支付宝 微信 QQ 云闪付 无需备案 无需签约 无需挂机监控APP 无需插件 无需第三方支付SDK 无需营业执照身份证 只需收款码 搞定支付流程 现已支持移动端支付 | 2.6k | Java | 10/06 |
| 129 | [mercyblitz/tech-weekly](https://github.com/mercyblitz/tech-weekly) | 「小马哥技术周报」 | 2.6k | Java | 09/28 |
| 130 | [nanchen2251/RxJava2Examples](https://github.com/nanchen2251/RxJava2Examples) | :fire:RxJava2 Examples —— 这可能是从 RxJava1 跳到 RxJava2(学习 RxJava2 )最好的例子 Demo:https://github.com/nanchen2251/RxJava2Examples | 2.6k | Java | 03/06 |
| 131 | [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.6k | Java | 03/08 |
| 132 | [zhou-you/RxEasyHttp](https://github.com/zhou-you/RxEasyHttp) | 本库是一款基于RxJava2+Retrofit2实现简单易用的网络请求框架,结合android平台特性的网络封装库,采用api链式调用一点到底,集成cookie管理,多种缓存模式,极简https配置,上传下载进度显示,请求错误自动重试,请求携带token、时间戳、签名sign动态配置,自动登录成功后请求重发功能,3种层次的参数设置默认全局局部,默认标准ApiResult同时可以支持自定义的数据结构,已经能满足现在的大部分网络请求。 | 2.5k | Java | 06/27 |
| 133 | [Dromara/hmily](https://github.com/Dromara/hmily) | 高性能异步分布式事务TCC框架 | 2.5k | Java | 08/13 |
| 134 | [zaaach/CityPicker](https://github.com/zaaach/CityPicker) | 城市选择、定位、搜索及右侧字母导航,类似美团 百度糯米 饿了么等APP选择城市功能 | 2.5k | Java | 04/02 |
| 135 | [FinalTeam/RxGalleryFinal](https://github.com/FinalTeam/RxGalleryFinal) | 图片选择库,单选/多选、拍照、裁剪、压缩,自定义。包括视频选择和录制。 | 2.5k | Java | 08/02 |
| 136 | [AweiLoveAndroid/CommonDevKnowledge](https://github.com/AweiLoveAndroid/CommonDevKnowledge) | :octocat::fire: :star2::star::star::star: :star: 史上最全的BAT大厂Android面试题汇集,以及常用的Android开发的一些技能点,冷门知识点汇总,开发中遇到的坑汇总等干货。 | 2.5k | Java | 08/22 |
| 137 | [crazyandcoder/citypicker](https://github.com/crazyandcoder/citypicker) | citypicker城市选择器,详细的省市区地址信息,支持仿iOS滚轮实现,仿京东样式,一级或者三级列表展示方式。 | 2.5k | Java | 09/26 |
| 138 | [ZHENFENG13/spring-boot-projects](https://github.com/ZHENFENG13/spring-boot-projects) | 该仓库中主要是 Spring Boot 的入门学习教程以及一些常用的 Spring Boot 实战项目教程,包括 Spring Boot 使用的各种示例代码,同时也包括一些实战项目的项目源码和效果展示,实战项目包括基本的 web 开发以及目前大家普遍使用的前后端分离实践项目,线上博客项目,企业大型商城系统等,摆脱各种 hello world 入门案例的束缚,真正的掌握 Spring Boot 开发。 | 2.5k | Java | 10/09 |
| 139 | [LuckyJayce/ViewPagerIndicator](https://github.com/LuckyJayce/ViewPagerIndicator) | Indicator 取代 tabhost,实现网易顶部tab,新浪微博主页底部tab,引导页,无限轮播banner等效果,高度自定义tab和特效,LazyFragment | 2.4k | Java | 06/26 |
| 140 | [promeG/TinyPinyin](https://github.com/promeG/TinyPinyin) | 适用于Java和Android的快速、低内存占用的汉字转拼音库。 | 2.4k | Java | 04/22 |
| 141 | [AbrahamCaiJin/CommonUtilLibrary](https://github.com/AbrahamCaiJin/CommonUtilLibrary) | 快速开发工具类收集,史上最全的开发工具类,欢迎Follow、Fork、Star | 2.4k | Java | 04/16 |
| 142 | [huburt-Hu/NewbieGuide](https://github.com/huburt-Hu/NewbieGuide) | Android 快速实现新手引导层的库,通过简洁链式调用,一行代码实现引导层的显示 | 2.4k | Java | 06/27 |
| 143 | [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.4k | Java | 08/13 |
| 144 | [jiajunhui/PlayerBase](https://github.com/jiajunhui/PlayerBase) | The basic library of Android player will process complex business components. The access is simple。Android播放器基础库,专注于播放视图组件的高复用性和组件间的低耦合,轻松处理复杂业务。 | 2.4k | Java | 03/26 |
| 145 | [jaydenxiao2016/AndroidFire](https://github.com/jaydenxiao2016/AndroidFire) | AndroidFire,一款新闻阅读 App框架,基于 Material Design + MVP + RxJava + Retrofit + Glide,基本涵盖了当前 Android 端开发最常用的主流框架,基于此框架可以快速开发一个app。 | 2.4k | Java | 08/17 |
| 146 | [jdsjlzx/LRecyclerView](https://github.com/jdsjlzx/LRecyclerView) | RecyclerView下拉刷新,自动加载更多;仿IOS侧滑Item删除菜单(盼望大家扩展更多功能) | 2.3k | Java | 06/27 |
| 147 | [javagrowing/JGrowing](https://github.com/javagrowing/JGrowing) | Java is Growing up but not only Java。Java成长路线,但学到不仅仅是Java。 | 2.3k | Java | 06/08 |
| 148 | [stylefeng/Guns](https://github.com/stylefeng/Guns) | Guns基于SpringBoot 2,致力于做更简洁的后台管理系统,完美整合springmvc + shiro + mybatis-plus + beetl!Guns项目代码简洁,注释丰富,上手容易,同时Guns包含许多基础模块(用户管理,角色管理,部门管理,字典管理等10个模块),可以直接作为一个后台管理系统的脚手架! | 2.3k | Java | 09/29 |
| 149 | [zjw-swun/AppMethodOrder](https://github.com/zjw-swun/AppMethodOrder) | 一个能让你了解所有函数调用顺序以及函数耗时的Android库(无需侵入式代码) | 2.2k | Java | 04/22 |
| 150 | [oasisfeng/condom](https://github.com/oasisfeng/condom) | 一个超轻超薄的Android工具库,阻止三方SDK中常见的有害行为,而不影响应用自身的功能。(例如严重影响用户体验的『链式唤醒』) | 2.2k | Java | 01/20 |
| 151 | [brianway/springmvc-mybatis-learning](https://github.com/brianway/springmvc-mybatis-learning) | SpringMVC 和 MyBatis 学习笔记,搭配示例,主要讲解一些基础的概念、用法和配置 | 2.2k | Java | 05/14 |
| 152 | [yangchong211/LifeHelper](https://github.com/yangchong211/LifeHelper) | 组件化综合案例,包含微信新闻,头条视频,美女图片,百度音乐,干活集中营,玩Android,豆瓣读书电影,知乎日报等等模块。架构模式:组件化+MVP+Rx+Retrofit+Desgin+Dagger2+阿里VLayout+腾讯X5+腾讯bugly。安装阿里编码规约插件,不断修正不合理代码和最大程度去除黄色警告!!!融合开发中需要的各种小案例! | 2.2k | Java | 06/04 |
| 153 | [BaronZ88/MinimalistWeather](https://github.com/BaronZ88/MinimalistWeather) | Android 平台开源天气 App,采用 MVP、RxJava、Retrofit2、OKHttp3、Dagger2、RetroLambda 等开源库来实现。 | 2.2k | Java | 07/01 |
| 154 | [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.2k | Java | 09/01 |
| 155 | [JessYanCoding/ProgressManager](https://github.com/JessYanCoding/ProgressManager) | ⏳ Listen the progress of downloading and uploading in Okhttp, compatible Retrofit and Glide (一行代码即可监听 App 中所有网络链接的上传以及下载进度, 包括 Glide 的图片加载进度). | 2.2k | Java | 09/27 |
| 156 | [CJT2325/CameraView](https://github.com/CJT2325/CameraView) | 仿微信拍照Android控件(轻触拍照,长按摄像) | 2.1k | Java | 06/18 |
| 157 | [JingYeoh/FragmentRigger](https://github.com/JingYeoh/FragmentRigger) | :boom:A powerful library powered by AOP to manage Fragments.(一个基于AOP设计的Fragment管理框架) | 2.1k | Java | 09/18 |
| 158 | [nanchen2251/CompressHelper](https://github.com/nanchen2251/CompressHelper) | :fire: 压缩文件,压缩图片,压缩Bitmap,Compress, CompressImage, CompressFile, CompressBitmap:https://github.com/nanchen2251/AiYaCompressHelper | 2.1k | Java | 03/06 |
| 159 | [AlexLiuSheng/CheckVersionLib](https://github.com/AlexLiuSheng/CheckVersionLib) | 版本检测升级(更新)库。an auto check version library(app update) on Android | 2.0k | Java | 09/24 |
| 160 | [dingjikerbo/Android-BluetoothKit](https://github.com/dingjikerbo/Android-BluetoothKit) | Android BLE蓝牙通信库 | 2.0k | Java | 01/24 |
| 161 | [iMeiji/Toutiao](https://github.com/iMeiji/Toutiao) | 一款第三方今日头条客户端, MVP + RxJava + Retrofit | 2.0k | Java | 01/20 |
| 162 | [LuckyJayce/LargeImage](https://github.com/LuckyJayce/LargeImage) | Android 加载大图 可以高清显示10000*10000像素的图片,轻松实现微博长图功能 | 2.0k | Java | 03/23 |
| 163 | [tuguangquan/mybatis](https://github.com/tuguangquan/mybatis) | mybatis源码中文注释 | 2.0k | Java | 03/04 |
| 164 | [xubinux/xbin-store](https://github.com/xubinux/xbin-store) | 模仿国内知名B2C网站,实现的一个分布式B2C商城 使用Spring Boot 自动配置 Dubbox / MVC / MyBatis / Druid / Solr / Redis 等。使用Spring Cloud版本请查看 | 2.0k | Java | 09/30 |
| 165 | [l123456789jy/Lazy](https://github.com/l123456789jy/Lazy) | The android tools 自己整理的常用的工具类 | 2.0k | Java | 08/02 |
| 166 | [liyiorg/weixin-popular](https://github.com/liyiorg/weixin-popular) | 微信SDK JAVA (公众平台、开放平台、 商户平台、 服务商平台) | 1.9k | Java | 08/27 |
| 167 | [android-notes/Cockroach](https://github.com/android-notes/Cockroach) | 降低Android非必要crash | 1.9k | Java | 08/26 |
| 168 | [bingoogolapple/BGASwipeBackLayout-Android](https://github.com/bingoogolapple/BGASwipeBackLayout-Android) | Android Activity 滑动返回。支持微信滑动返回样式、横屏滑动返回、全屏滑动返回 | 1.9k | Java | 05/28 |
| 169 | [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.(优雅地处理加载中,重试,无数据等) | 1.9k | Java | 08/30 |
| 170 | [Hitomis/transferee](https://github.com/Hitomis/transferee) | 一个帮助您完成从缩略图到原图无缝过渡转变的神奇组件 | 1.9k | Java | 08/19 |
| 171 | [mqzhangw/JIMU](https://github.com/mqzhangw/JIMU) | 一种简单有效的android组件化方案,支持组件的代码资源隔离、单独调试、集成调试、组件交互、UI跳转、生命周期等完整功能。 | 1.9k | Java | 03/18 |
| 172 | [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) | 1.9k | Java | 09/20 |
| 173 | [Qihoo360/ArgusAPM](https://github.com/Qihoo360/ArgusAPM) | Powerful, comprehensive (Android) application performance management platform. 360线上移动性能检测平台 | 1.9k | Java | 05/09 |
| 174 | [Exrick/x-boot](https://github.com/Exrick/x-boot) | 基于Spring Boot 2.x的前后端分离开发平台X-Boot 前端:Vue+iView Admin 后端:Spring Boot 2.x/Spring Security/JWT/Spring Data JPA+Mybatis-Plus/Redis/Elasticsearch/Activiti 分布式限流/同步锁/验证码/SnowFlake雪花算法ID生成 动态权限管理 数据权限 工作流 代码生成 日志记录 定时任务 第三方社交账号、短信登录 单点登录 | 1.9k | Java | 10/09 |
| 175 | [HiedaNaKan/FuckMFS](https://github.com/HiedaNaKan/FuckMFS) | 去他妈的取证 | 1.9k | Java | 06/30 |
| 176 | [QNJR-GROUP/EasyTransaction](https://github.com/QNJR-GROUP/EasyTransaction) | A distribute transaction solution(分布式事务) unified the usage of TCC , SAGA ,FMT (seata/fescar AutoCompensation), reliable message, compensate and so on; | 1.9k | Java | 10/08 |
| 177 | [qunarcorp/qmq](https://github.com/qunarcorp/qmq) | QMQ是去哪儿网内部广泛使用的消息中间件,自2012年诞生以来在去哪儿网所有业务场景中广泛的应用,包括跟交易息息相关的订单场景; 也包括报价搜索等高吞吐量场景。 | 1.8k | Java | 10/09 |
| 178 | [wangdan/AisenWeiBo](https://github.com/wangdan/AisenWeiBo) | 新浪微博第三方Android客户端 | 1.8k | Java | 06/19 |
| 179 | [zhangxd1989/spring-boot-cloud](https://github.com/zhangxd1989/spring-boot-cloud) | 基于 Spring Boot、Spring Cloud、Spring Oauth2 和 Spring Cloud Netflix 等框架构建的微服务项目 | 1.8k | Java | 09/10 |
| 180 | [Zhaoss/WeiXinRecordedDemo](https://github.com/Zhaoss/WeiXinRecordedDemo) | 仿微信视频拍摄UI, 基于ffmpeg的视频录制编辑 | 1.8k | Java | 09/24 |
| 181 | [JsonChao/Awesome-WanAndroid](https://github.com/JsonChao/Awesome-WanAndroid) | :zap:致力于打造一款极致体验的 http://www.wanandroid.com/ 客户端,知识和美是可以并存的哦QAQn(*≧▽≦*)n | 1.8k | Java | 03/13 |
| 182 | [Heeexy/SpringBoot-Shiro-Vue](https://github.com/Heeexy/SpringBoot-Shiro-Vue) | 提供一套基于Spring Boot-Shiro-Vue的权限管理思路.前后端都加以控制,做到按钮/接口级别的权限 | 1.8k | Java | 08/26 |
| 183 | [OCNYang/Android-Animation-Set](https://github.com/OCNYang/Android-Animation-Set) | :books: Android 所有动画系列详尽教程。 Explain all animations in Android. | 1.8k | Java | 03/19 |
| 184 | [Nepxion/Discovery](https://github.com/Nepxion/Discovery) | 🐳 Nepxion Discovery is a enhancement for Spring Cloud Discovery on Eureka + Consul + Zookeeper + Nacos with Nacos + Apollo config for gray release, router, weight, isolation 网关和服务灰度发布、路由、权重、隔离、调用链 | 1.7k | Java | 10/09 |
| 185 | [ZhaoKaiQiang/KLog](https://github.com/ZhaoKaiQiang/KLog) | 这是一个Android专用的LogCat工具,主要功能为打印行号、函数调用、Json解析、XML解析、点击跳转、Log信息保存等功能 | 1.7k | Java | 08/23 |
| 186 | [vivian8725118/TimeLine](https://github.com/vivian8725118/TimeLine) | 瀑布流式的时间轴 | 1.7k | Java | 01/20 |
| 187 | [xtuhcy/gecco](https://github.com/xtuhcy/gecco) | Easy to use lightweight web crawler(易用的轻量化网络爬虫) | 1.7k | Java | 09/05 |
| 188 | [xingda920813/HelloDaemon](https://github.com/xingda920813/HelloDaemon) | Android 服务保活/常驻 (Android service daemon using JobScheduler) | 1.7k | Java | 03/30 |
| 189 | [dueeeke/DKVideoPlayer](https://github.com/dueeeke/DKVideoPlayer) | Android Video Player. 安卓视频播放器,封装MediaPlayer、ExoPlayer、IjkPlayer。模仿抖音,悬浮播放,广告播放,列表播放,弹幕 | 1.7k | Java | 10/02 |
| 190 | [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.7k | Java | 09/10 |
| 191 | [zhoutaoo/SpringCloud](https://github.com/zhoutaoo/SpringCloud) | 基于SpringCloud2.0的微服务开发脚手架,整合了spring-security-oauth2、apollo、eureka、feign、hystrix、springcloud-gateway、springcloud-bus等。治理方面引入elasticsearch、skywalking、springboot-admin、zipkin等,让项目开发快速进入业务开发,而不需过多时间花费在架构搭建上。持续更新中 | 1.7k | Java | 09/30 |
| 192 | [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 |
| 193 | [ctripcorp/C-OCR](https://github.com/ctripcorp/C-OCR) | C-OCR是携程自研的OCR项目,主要包括身份证、护照、火车票、签证等旅游相关证件、材料的识别。 项目包含4个部分,拒识、检测、识别、后处理。 | 1.7k | Java | 05/08 |
| 194 | [zhangdaiscott/jeecg](https://github.com/zhangdaiscott/jeecg) | JEECG是一款基于代码生成器的J2EE快速开发平台,开源界“小普元”超越传统商业企业级开发平台。引领新的开发模式(Online Coding模式(自定义表单) - > 代码生成器模式 - > 手工MERGE智能开发), 可以帮助解决Java项目90%的重复工作,让开发更多关注业务逻辑。既能快速提高开发效率,帮助公司节省人力成本,同时又不失灵活性。具备:表单配置能力(无需编码)、移动配置能力、工作流配置能力、报表配置能力(支持移动端)、插件开发能力(可插拔) | 1.7k | Java | 09/07 |
| 195 | [2227324689/gpmall](https://github.com/2227324689/gpmall) | 【咕泡学院实战项目】-基于SpringBoot+Dubbo构建的电商平台-微服务架构、商城、电商、微服务、高并发、kafka、Elasticsearch | 1.7k | Java | 09/29 |
| 196 | [DingMouRen/PaletteImageView](https://github.com/DingMouRen/PaletteImageView) | 懂得智能配色的ImageView,还能给自己设置多彩的阴影哦。(Understand the intelligent color matching ImageView, but also to set their own colorful shadow Oh!) | 1.6k | Java | 07/08 |
| 197 | [Javen205/IJPay](https://github.com/Javen205/IJPay) | IJPay 让支付触手可及,封装了微信支付、QQ支付、支付宝支付、京东支付、银联支付常用的支付方式以及各种常用的接口。不依赖任何第三方 mvc 框架,仅仅作为工具使用简单快速完成支付模块的开发,可轻松嵌入到任何系统里。 | 1.6k | Java | 10/09 |
| 198 | [wenmingvs/NotifyUtil](https://github.com/wenmingvs/NotifyUtil) | 通知工具类 | 1.6k | Java | 07/01 |
| 199 | [sunfusheng/GlideImageView](https://github.com/sunfusheng/GlideImageView) | 基于Glide V4.9.0封装的图片加载库,可以监听加载图片时的进度 | 1.6k | Java | 04/30 |
| 200 | [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 | 09/13 |
⬆ [回到目录](#目录)
<br/>
## Python
| # | Repository | Description | Stars | Language | Updated |
| ---- | ------------------------------------------------------------ | ------------------------------------------------------------ | ----- | -------- | ------- |
| 1 | [imhuay/Algorithm_Interview_Notes-Chinese](https://github.com/imhuay/Algorithm_Interview_Notes-Chinese) | 2018/2019/校招/春招/秋招/算法/机器学习(Machine Learning)/深度学习(Deep Learning)/自然语言处理(NLP)/C/C++/Python/面试笔记 | 27.0k | Python | 07/23 |
| 2 | [fxsjy/jieba](https://github.com/fxsjy/jieba) | 结巴中文分词 | 20.3k | Python | 09/26 |
| 3 | [apachecn/AiLearning](https://github.com/apachecn/AiLearning) | AiLearning: 机器学习 - MachineLearning - ML、深度学习 - DeepLearning - DL、自然语言处理 NLP | 19.8k | Python | 10/09 |
| 4 | [0voice/interview_internal_reference](https://github.com/0voice/interview_internal_reference) | 2019年最新总结,阿里,腾讯,百度,美团,头条等技术面试题目,以及答案,专家出题人分析汇总。 | 19.7k | Python | 10/09 |
| 5 | [littlecodersh/ItChat](https://github.com/littlecodersh/ItChat) | A complete and graceful API for Wechat. 微信个人号接口、微信机器人及命令行微信,三十行即可自定义个人号机器人。 | 18.8k | Python | 08/27 |
| 6 | [testerSunshine/12306](https://github.com/testerSunshine/12306) | 12306智能刷票,订票 | 16.6k | Python | 10/09 |
| 7 | [521xueweihan/HelloGitHub](https://github.com/521xueweihan/HelloGitHub) | :octocat: Find pearls on open-source seashore 分享 GitHub 上有趣、入门级的开源项目 | 15.9k | Python | 09/28 |
| 8 | [wangshub/wechat_jump_game](https://github.com/wangshub/wechat_jump_game) | 微信《跳一跳》Python 辅助 | 13.9k | Python | 08/28 |
| 9 | [d2l-ai/d2l-zh](https://github.com/d2l-ai/d2l-zh) | 《动手学深度学习》:面向中文读者、能运行、可讨论。英文版即伯克利“深度学习导论”教材。 | 13.6k | Python | 10/01 |
| 10 | [fighting41love/funNLP](https://github.com/fighting41love/funNLP) | 中英文敏感词、语言检测、中外手机/电话归属地/运营商查询、名字推断性别、手机号抽取、身份证抽取、邮箱抽取、中日文人名库、中文缩写库、拆字词典、词汇情感值、停用词、反动词表、暴恐词表、繁简体转换、英文模拟中文发音、汪峰歌词生成器、职业名称词库、同义词库、反义词库、否定词库、汽车品牌词库、汽车零件词库、连续英文切割、各种中文词向量、公司名字大全、古诗词库、IT词库、财经词库、成语词库、地名词库、历史名人词库、诗词词库、医学词库、饮食词库、法律词库、汽车词库、动物词库、中文聊天语料、中文谣言数据、百度中文问答数据集、句子相似度匹配算法集合、bert资源、文本生成&摘要相关工具、cocoNLP信息抽取 ... | 13.1k | Python | 08/31 |
| 11 | [youfou/wxpy](https://github.com/youfou/wxpy) | 微信机器人 / 可能是最优雅的微信个人号 API ✨✨ | 10.7k | Python | 07/15 |
| 12 | [apachecn/awesome-algorithm](https://github.com/apachecn/awesome-algorithm) | 项目永久冻结,迁移至新地址: | 10.4k | Python | 07/17 |
| 13 | [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~ | 10.1k | Python | 09/27 |
| 14 | [wangzheng0822/algo](https://github.com/wangzheng0822/algo) | 数据结构和算法必知必会的50个代码实现 | 10.0k | Python | 09/27 |
| 15 | [Kr1s77/awesome-python-login-model](https://github.com/Kr1s77/awesome-python-login-model) | 😮python模拟登陆一些大型网站,还有一些简单的爬虫,希望对你们有所帮助❤️,如果喜欢记得给个star哦🌟 | 10.0k | Python | 09/03 |
| 16 | [Jack-Cherish/python-spider](https://github.com/Jack-Cherish/python-spider) | :rainbow:Python3网络爬虫实战:VIP视频破解助手;GEETEST验证码破解;小说、动漫下载;手机APP爬取;财务报表入库;火车票抢票;抖音APP视频下载;百万英雄辅助;网易云音乐下载;B站视频和弹幕下载;京东晒单图下载 | 8.9k | Python | 09/16 |
| 17 | [leisurelicht/wtfpython-cn](https://github.com/leisurelicht/wtfpython-cn) | wtfpython的中文翻译/施工结束/ 能力有限,欢迎帮我改进翻译 | 8.8k | Python | 08/13 |
| 18 | [meolu/walle-web](https://github.com/meolu/walle-web) | walle - 瓦力 Devops开源项目代码部署平台 | 8.6k | Python | 09/23 |
| 19 | [darknessomi/musicbox](https://github.com/darknessomi/musicbox) | 网易云音乐命令行版本 | 7.9k | Python | 09/01 |
| 20 | [USTC-Resource/USTC-Course](https://github.com/USTC-Resource/USTC-Course) | :heart:中国科学技术大学课程资源 | 7.8k | Python | 07/02 |
| 21 | [jhao104/proxy_pool](https://github.com/jhao104/proxy_pool) | Python爬虫代理IP池(proxy pool) | 7.6k | Python | 10/08 |
| 22 | [pjialin/py12306](https://github.com/pjialin/py12306) | 🚂 12306 购票助手,支持集群,多账号,多任务购票以及 Web 页面管理 | 7.2k | Python | 10/01 |
| 23 | [sylnsfar/qrcode](https://github.com/sylnsfar/qrcode) | artistic QR Code in Python (Animated GIF qr code)- Python 艺术二维码生成器 (GIF动态二维码、图片二维码) | 6.5k | Python | 01/22 |
| 24 | [Urinx/WeixinBot](https://github.com/Urinx/WeixinBot) | 网页版微信API,包含终端版微信及微信机器人 | 6.4k | Python | 06/25 |
| 25 | [sfyc23/EverydayWechat](https://github.com/sfyc23/EverydayWechat) | 微信助手:1.每日定时给好友发送定制消息。2.机器人自动回复好友。3.群助手功能(例如:查询垃圾分类、天气、日历、电影实时票房、快递物流、PM2.5等) | 6.3k | Python | 10/01 |
| 26 | [pwxcoo/chinese-xinhua](https://github.com/pwxcoo/chinese-xinhua) | :orange_book: 中华新华字典数据库。包括歇后语,成语,词语,汉字。 | 6.2k | Python | 08/11 |
| 27 | [wangshub/Douyin-Bot](https://github.com/wangshub/Douyin-Bot) | 😍 Python 抖音机器人,论如何在抖音上找到漂亮小姐姐? | 6.0k | Python | 07/02 |
| 28 | [Embedding/Chinese-Word-Vectors](https://github.com/Embedding/Chinese-Word-Vectors) | 100+ Chinese Word Vectors 上百种预训练中文词向量 | 5.8k | Python | 04/04 |
| 29 | [h2y/Shadowrocket-ADBlock-Rules](https://github.com/h2y/Shadowrocket-ADBlock-Rules) | 提供多款 Shadowrocket 规则,带广告过滤功能。用于 iOS 未越狱设备选择性地自动翻墙。 | 5.8k | Python | 10/07 |
| 30 | [luyishisi/Anti-Anti-Spider](https://github.com/luyishisi/Anti-Anti-Spider) | 越来越多的网站具有反爬虫特性,有的用图片隐藏关键数据,有的使用反人类的验证码,建立反反爬虫的代码仓库,通过与不同特性的网站做斗争(无恶意)提高技术。(欢迎提交难以采集的网站)(因工作原因,项目暂停) | 5.5k | Python | 09/24 |
| 31 | [bbfamily/abu](https://github.com/bbfamily/abu) | 阿布量化交易系统(股票,期权,期货,比特币,机器学习) 基于python的开源量化交易,量化投资架构 | 5.3k | Python | 09/22 |
| 32 | [vipstone/faceai](https://github.com/vipstone/faceai) | 一款入门级的人脸、视频、文字检测以及识别的项目. | 5.2k | Python | 07/11 |
| 33 | [houtianze/bypy](https://github.com/houtianze/bypy) | Python client for Baidu Yun (Personal Cloud Storage) 百度云/百度网盘Python客户端 | 4.8k | Python | 07/20 |
| 34 | [shengqiangzhang/examples-of-web-crawlers](https://github.com/shengqiangzhang/examples-of-web-crawlers) | 一些非常有趣的python爬虫例子,对新手比较友好,主要爬取淘宝、天猫、微信、豆瓣、QQ等网站。(Some interesting examples of python crawlers that are friendly to beginners. ) | 4.7k | Python | 08/24 |
| 35 | [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.5k | Python | 09/14 |
| 36 | [lining0806/PythonSpiderNotes](https://github.com/lining0806/PythonSpiderNotes) | Python入门网络爬虫之精华版 | 4.2k | Python | 07/07 |
| 37 | [chyroc/WechatSogou](https://github.com/chyroc/WechatSogou) | 基于搜狗微信搜索的微信公众号爬虫接口 | 4.0k | Python | 08/28 |
| 38 | [lancopku/pkuseg-python](https://github.com/lancopku/pkuseg-python) | pkuseg多领域中文分词工具; The pkuseg toolkit for multi-domain Chinese word segmentation | 4.0k | Python | 07/05 |
| 39 | [jindongwang/transferlearning](https://github.com/jindongwang/transferlearning) | Everything about Transfer Learning and Domain Adaptation--迁移学习 | 3.9k | Python | 10/09 |
| 40 | [injetlee/Python](https://github.com/injetlee/Python) | Python脚本。模拟登录知乎, 爬虫,操作excel,微信公众号,远程开机 | 3.8k | Python | 10/07 |
| 41 | [eastlakeside/interpy-zh](https://github.com/eastlakeside/interpy-zh) | 📘《Python进阶》(Intermediate Python 中文版) | 3.7k | Python | 02/11 |
| 42 | [hzy46/Deep-Learning-21-Examples](https://github.com/hzy46/Deep-Learning-21-Examples) | 《21个项目玩转深度学习———基于TensorFlow的实践详解》配套代码 | 3.6k | Python | 03/18 |
| 43 | [WenDesi/lihang_book_algorithm](https://github.com/WenDesi/lihang_book_algorithm) | 致力于将李航博士《统计学习方法》一书中所有算法实现一遍 | 3.4k | Python | 04/29 |
| 44 | [offu/WeRoBot](https://github.com/offu/WeRoBot) | WeRoBot 是一个微信公众号开发框架 | 3.2k | Python | 10/05 |
| 45 | [shidenggui/easytrader](https://github.com/shidenggui/easytrader) | 提供银河/国金/华泰客户端/同花顺客户端/雪球的基金、股票自动程序化交易以及自动打新,支持跟踪 joinquant /ricequant 模拟交易 和 实盘雪球组合, 量化交易组件 | 3.2k | Python | 09/17 |
| 46 | [PaddlePaddle/models](https://github.com/PaddlePaddle/models) | Pre-trained and Reproduced Deep Learning Models (『飞桨』官方模型库,包含多种学术前沿和工业场景验证的深度学习模型) | 2.9k | Python | 10/09 |
| 47 | [princewen/tensorflow_practice](https://github.com/princewen/tensorflow_practice) | tensorflow实战练习,包括强化学习、推荐系统、nlp等 | 2.9k | Python | 06/24 |
| 48 | [yuanxiaosc/DeepNude-an-Image-to-Image-technology](https://github.com/yuanxiaosc/DeepNude-an-Image-to-Image-technology) | DeepNude's algorithm and general image generation theory and practice research, including pix2pix, CycleGAN, UGATIT, DCGAN, and VAE models (TensorFlow2 implementation). DeepNude的算法以及通用GAN图像生成的理论与实践研究。 | 2.8k | Python | 08/27 |
| 49 | [QUANTAXIS/QUANTAXIS](https://github.com/QUANTAXIS/QUANTAXIS) | QUANTAXIS 支持任务调度 分布式部署的 股票/期货/自定义市场 数据/回测/模拟/交易/可视化 纯本地PAAS量化解决方案 | 2.8k | Python | 10/09 |
| 50 | [billryan/algorithm-exercise](https://github.com/billryan/algorithm-exercise) | Data Structure and Algorithm notes. 数据结构与算法/leetcode/lintcode题解/ | 2.8k | Python | 09/28 |
| 51 | [jinfagang/tensorflow_poems](https://github.com/jinfagang/tensorflow_poems) | 中文古诗自动作诗机器人,屌炸天,基于tensorflow1.10 api,正在积极维护升级中,快star,保持更新! | 2.7k | Python | 02/11 |
| 52 | [apachecn/sklearn-doc-zh](https://github.com/apachecn/sklearn-doc-zh) | :book: [译] scikit-learn(sklearn) 中文文档 | 2.7k | Python | 10/09 |
| 53 | [QingdaoU/OnlineJudge](https://github.com/QingdaoU/OnlineJudge) | open source online judge based on Vue, Django and Docker. \| 青岛大学开源 Online Judge \| QQ群 496710125 \| [email protected] | 2.6k | Python | 10/05 |
| 54 | [gaussic/text-classification-cnn-rnn](https://github.com/gaussic/text-classification-cnn-rnn) | CNN-RNN中文文本分类,基于TensorFlow | 2.5k | Python | 05/19 |
| 55 | [Kr1s77/Python-crawler-tutorial-starts-from-zero](https://github.com/Kr1s77/Python-crawler-tutorial-starts-from-zero) | python爬虫教程,带你从零到一,包含js逆向,selenium, tesseract OCR识别,mongodb的使用,以及scrapy框架 | 2.5k | Python | 05/15 |
| 56 | [huyingxi/Synonyms](https://github.com/huyingxi/Synonyms) | 中文近义词工具包 | 2.4k | Python | 06/11 |
| 57 | [ysrc/xunfeng](https://github.com/ysrc/xunfeng) | 巡风是一款适用于企业内网的漏洞快速应急,巡航扫描系统。 | 2.4k | Python | 09/26 |
| 58 | [SmirkCao/Lihang](https://github.com/SmirkCao/Lihang) | Statistical learning methods, 统计学习方法(第2版)[李航] [笔记, 代码, notebook, 参考文献, Errata, lihang] | 2.2k | Python | 06/27 |
| 59 | [guohongze/adminset](https://github.com/guohongze/adminset) | 自动化运维平台:CMDB、CD、DevOps、资产管理、任务编排、持续交付、系统监控、运维管理、配置管理 | 2.2k | Python | 07/29 |
| 60 | [mozillazg/python-pinyin](https://github.com/mozillazg/python-pinyin) | 汉字转拼音(pypinyin) | 2.1k | Python | 07/13 |
| 61 | [the0demiurge/ShadowSocksShare](https://github.com/the0demiurge/ShadowSocksShare) | Python爬虫/Flask网站/免费ShadowSocks账号/ssr订阅/json API | 2.1k | Python | 10/08 |
| 62 | [wb14123/seq2seq-couplet](https://github.com/wb14123/seq2seq-couplet) | Play couplet with seq2seq model. 用深度学习对对联。 | 2.1k | Python | 10/09 |
| 63 | [Alivon/Panda-Learning](https://github.com/Alivon/Panda-Learning) | 学习强国 xuexiqiangguo 全网最好用学习强国助手:Panda_Learning 萌萌的熊猫帮你搞定学习强国 | 2.1k | Python | 09/07 |
| 64 | [kon9chunkit/GitHub-Chinese-Top-Charts](https://github.com/kon9chunkit/GitHub-Chinese-Top-Charts) | :cn: GitHub中文排行榜,帮助你发现高分优秀中文项目、更高效地吸收国人的优秀经验成果;榜单每周更新一次,敬请关注!(最近更新于10月1日,国庆节快乐 :tada:) | 2.1k | Python | 10/01 |
| 65 | [liangliangyy/DjangoBlog](https://github.com/liangliangyy/DjangoBlog) | 🍺基于Django的博客系统 | 2.0k | Python | 10/09 |
| 66 | [Nyloner/Nyspider](https://github.com/Nyloner/Nyspider) | 各种爬虫 | 2.0k | Python | 06/23 |
| 67 | [Jack-Lee-Hiter/AlgorithmsByPython](https://github.com/Jack-Lee-Hiter/AlgorithmsByPython) | 算法/数据结构/Python/剑指offer/机器学习/leetcode | 2.0k | Python | 05/15 |
| 68 | [YongHaoWu/NeteaseCloudMusicFlac](https://github.com/YongHaoWu/NeteaseCloudMusicFlac) | 根据网易云音乐的歌单, 下载flac无损音乐到本地. Download the FLAC music from Internet according to your NeteaseCloudMusic playlist. | 2.0k | Python | 09/12 |
| 69 | [XuShaohua/bcloud](https://github.com/XuShaohua/bcloud) | 百度网盘的linux桌面客户端 | 2.0k | Python | 06/17 |
| 70 | [nl8590687/ASRT_SpeechRecognition](https://github.com/nl8590687/ASRT_SpeechRecognition) | A Deep-Learning-Based Chinese Speech Recognition System 基于深度学习的中文语音识别系统 | 1.9k | Python | 10/04 |
| 71 | [welliamcao/OpsManage](https://github.com/welliamcao/OpsManage) | 自动化运维平台: 代码及应用部署CI/CD、资产管理CMDB、计划任务管理平台、SQL审核\|回滚、任务调度、站内WIKI | 1.9k | Python | 09/27 |
| 72 | [oreilly-japan/deep-learning-from-scratch](https://github.com/oreilly-japan/deep-learning-from-scratch) | 『ゼロから作る Deep Learning』のリポジトリ | 1.9k | Python | 10/06 |
| 73 | [momosecurity/aswan](https://github.com/momosecurity/aswan) | 陌陌风控系统静态规则引擎,零基础简易便捷的配置多种复杂规则,实时高效管控用户异常行为。 | 1.9k | Python | 09/29 |
| 74 | [kekingcn/kkFileView](https://github.com/kekingcn/kkFileView) | 使用spring boot打造文件文档在线预览项目解决方案,支持doc、docx、ppt、pptx、xls、xlsx、zip、rar、mp4,mp3以及众多类文本如txt、html、xml、java、properties、sql、js、md、json、conf、ini、vue、php、py、bat、gitignore等文件在线预览 | 1.8k | Python | 09/16 |
| 75 | [lanbing510/DouBanSpider](https://github.com/lanbing510/DouBanSpider) | 豆瓣读书的爬虫 | 1.8k | Python | 07/03 |
| 76 | [qq547276542/Agriculture_KnowledgeGraph](https://github.com/qq547276542/Agriculture_KnowledgeGraph) | 农业知识图谱(AgriKG):农业领域的信息检索,命名实体识别,关系抽取,智能问答,辅助决策 | 1.7k | Python | 05/16 |
| 77 | [shidenggui/easyquotation](https://github.com/shidenggui/easyquotation) | 实时获取新浪 / 腾讯 的免费股票行情 / 集思路的分级基金行情 | 1.7k | Python | 09/17 |
| 78 | [XuefengHuang/lianjia-scrawler](https://github.com/XuefengHuang/lianjia-scrawler) | 链家二手房租房在线数据,存量房交易服务平台数据,详细数据分析教程 | 1.7k | Python | 08/15 |
| 79 | [TingsongYu/PyTorch_Tutorial](https://github.com/TingsongYu/PyTorch_Tutorial) | 《Pytorch模型训练实用教程》中配套代码 | 1.7k | Python | 09/11 |
| 80 | [INTERMT/Awesome-PyTorch-Chinese](https://github.com/INTERMT/Awesome-PyTorch-Chinese) | 【干货】史上最全的PyTorch学习资源汇总 | 1.7k | Python | 08/14 |
| 81 | [howie6879/owllook](https://github.com/howie6879/owllook) | owllook-在线网络小说阅读网站&小说搜索引擎&小说推荐系统[搜索、追书、收藏、追更、小说API] | 1.6k | Python | 09/30 |
| 82 | [Ehco1996/django-sspanel](https://github.com/Ehco1996/django-sspanel) | 用diango开发的全新的shadowsocks网络面板 | 1.6k | Python | 10/02 |
| 83 | [shidenggui/easyquant](https://github.com/shidenggui/easyquant) | 股票量化框架,支持行情获取以及交易 | 1.6k | Python | 09/17 |
| 84 | [airingursb/bilibili-user](https://github.com/airingursb/bilibili-user) | 🍥 Bilibili 用户爬虫 | 1.6k | Python | 01/24 |
| 85 | [ymcui/Chinese-BERT-wwm](https://github.com/ymcui/Chinese-BERT-wwm) | Pre-Training with Whole Word Masking for Chinese BERT(中文BERT-wwm预训练模型) | 1.5k | Python | 09/30 |
| 86 | [Roujack/mathAI](https://github.com/Roujack/mathAI) | 一个拍照做题程序。输入一张包含数学计算题的图片,输出识别出的数学计算式以及计算结果。This is a mathematic expression recognition project. | 1.5k | Python | 09/15 |
| 87 | [Determined22/zh-NER-TF](https://github.com/Determined22/zh-NER-TF) | A very simple BiLSTM-CRF model for Chinese Named Entity Recognition 中文命名实体识别 (TensorFlow) | 1.5k | Python | 09/14 |
| 88 | [Dod-o/Statistical-Learning-Method_Code](https://github.com/Dod-o/Statistical-Learning-Method_Code) | 手写实现李航《统计学习方法》书中全部算法 | 1.4k | Python | 08/24 |
| 89 | [0xHJK/music-dl](https://github.com/0xHJK/music-dl) | search and download music 从网易云音乐、QQ音乐、酷狗音乐、百度音乐、虾米音乐、咪咕音乐等搜索和下载歌曲 | 1.4k | Python | 09/15 |
| 90 | [apachecn/pytorch-doc-zh](https://github.com/apachecn/pytorch-doc-zh) | Pytorch 中文文档 | 1.4k | Python | 10/09 |
| 91 | [PyQt5/PyQt](https://github.com/PyQt5/PyQt) | PyQt Examples(PyQt各种测试和例子) PyQt4 PyQt5 | 1.4k | Python | 10/04 |
| 92 | [xiaofengShi/CHINESE-OCR](https://github.com/xiaofengShi/CHINESE-OCR) | [python3.6] 运用tf实现自然场景文字检测,keras/pytorch实现ctpn+crnn+ctc实现不定长场景文字OCR识别 | 1.4k | Python | 08/13 |
| 93 | [makelove/OpenCV-Python-Tutorial](https://github.com/makelove/OpenCV-Python-Tutorial) | OpenCV问答群,QQ群号:187436093 | 1.4k | Python | 06/25 |
| 94 | [xianhu/PSpider](https://github.com/xianhu/PSpider) | 简单易用的Python爬虫框架,QQ交流群:597510560 | 1.3k | Python | 07/29 |
| 95 | [zhaoolee/StarsAndClown](https://github.com/zhaoolee/StarsAndClown) | ☀️Github星聚弃疗榜, 让吃瓜群众也能享受Github带来的乐趣~Github StarsAndClown, Let the people who eat me can enjoy the fun of Github~ | 1.3k | Python | 08/25 |
| 96 | [wzpan/wukong-robot](https://github.com/wzpan/wukong-robot) | 🤖 wukong-robot 是一个简单、灵活、优雅的中文语音对话机器人/智能音箱项目。 | 1.3k | Python | 10/05 |
| 97 | [loadchange/amemv-crawler](https://github.com/loadchange/amemv-crawler) | 🙌Easily download all the videos from TikTok(amemv).下载指定的 抖音(Douyin) 号的视频,抖音爬虫 | 1.3k | Python | 10/02 |
| 98 | [crownpku/Information-Extraction-Chinese](https://github.com/crownpku/Information-Extraction-Chinese) | Chinese Named Entity Recognition with IDCNN/biLSTM+CRF, and Relation Extraction with biGRU+2ATT 中文实体识别与关系提取 | 1.3k | Python | 04/10 |
| 99 | [FeeiCN/GSIL](https://github.com/FeeiCN/GSIL) | GitHub Sensitive Information Leakage(GitHub敏感信息泄露监控) | 1.3k | Python | 05/14 |
| 100 | [EvilCult/Video-Downloader](https://github.com/EvilCult/Video-Downloader) | 下载youku,letv,sohu,tudou,bilibili,acfun,iqiyi等网站分段视频文件,提供mac&win独立App。 | 1.3k | Python | 07/21 |
| 101 | [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爬虫逆向,爬虫项目实战实例等 | 1.3k | Python | 08/02 |
| 102 | [zhaipro/easy12306](https://github.com/zhaipro/easy12306) | 使用机器学习算法完成对12306验证码的自动识别 | 1.3k | Python | 10/07 |
| 103 | [yoyoyo-yo/Gasyori100knock](https://github.com/yoyoyo-yo/Gasyori100knock) | 画像処理100本ノックして画像処理を画像処理して画像処理するためのもの For Japanese, English and Chinese | 1.3k | Python | 10/07 |
| 104 | [jumper2014/lianjia-beike-spider](https://github.com/jumper2014/lianjia-beike-spider) | 链家网和贝壳网房价爬虫,采集北京上海广州深圳等21个中国主要城市的房价数据(小区,二手房,出租房,新房),稳定可靠快速!支持csv,MySQL, MongoDB,Excel, json存储,支持Python2和3,图表展示数据,注释丰富 🚁,点星支持 | 1.2k | Python | 07/24 |
| 105 | [7sDream/zhihu-oauth](https://github.com/7sDream/zhihu-oauth) | 尝试解析出知乎官方未开放的 OAuth2 接口,并提供优雅的使用方式,作为 zhihu-py3 项目的替代者,目前还在实验阶段 | 1.2k | Python | 02/08 |
| 106 | [youyuge34/PI-REC](https://github.com/youyuge34/PI-REC) | :fire: PI-REC: Progressive Image Reconstruction Network With Edge and Color Domain. :fire: 图像翻译,条件GAN,AI绘画 | 1.2k | Python | 05/11 |
| 107 | [littlecodersh/itchatmp](https://github.com/littlecodersh/itchatmp) | A complete and graceful API for wechat mp. 完备优雅的微信公众号接口,原生支持同步、协程使用。 | 1.2k | Python | 09/26 |
| 108 | [moyuanz/DevilYuan](https://github.com/moyuanz/DevilYuan) | DevilYuan可视化股票量化系统,支持选股,历史数据自动下载,策略回测及参数优化,实盘交易和常用的统计功能 | 1.2k | Python | 08/04 |
| 109 | [osbzr/gooderp_addons](https://github.com/osbzr/gooderp_addons) | 可能是中国用户数最多的开源ERP | 1.2k | Python | 08/06 |
| 110 | [michaelliao/sinaweibopy](https://github.com/michaelliao/sinaweibopy) | 新浪微博Python SDK | 1.2k | Python | 05/02 |
| 111 | [guanguans/favorite-link](https://github.com/guanguans/favorite-link) | ❤️ 每日收集喜欢的开源项目 \| RSS 订阅 \| 快知 app 订阅 | 1.2k | Python | 10/09 |
| 112 | [nghuyong/WeiboSpider](https://github.com/nghuyong/WeiboSpider) | This is a sina weibo spider built by scrapy[微博爬虫/持续维护] | 1.2k | Python | 09/06 |
| 113 | [HuberTRoy/leetCode](https://github.com/HuberTRoy/leetCode) | :pencil2: 算法相关知识储备 LeetCode with Python :books: | 1.2k | Python | 08/11 |
| 114 | [leeguandong/Interview-code-practice-python](https://github.com/leeguandong/Interview-code-practice-python) | 面试题 | 1.2k | Python | 08/18 |
| 115 | [opendevops-cn/opendevops](https://github.com/opendevops-cn/opendevops) | CODO是一款为用户提供企业多混合云、一站式DevOps、自动化运维、完全开源的云管理平台、自动化运维平台 | 1.2k | Python | 09/09 |
| 116 | [dingdang-robot/dingdang-robot](https://github.com/dingdang-robot/dingdang-robot) | 🤖 叮当是一款可以工作在 Raspberry Pi 上的中文语音对话机器人/智能音箱项目。 | 1.1k | Python | 02/05 |
| 117 | [hankcs/pyhanlp](https://github.com/hankcs/pyhanlp) | 自然语言处理工具包HanLP的Python接口 | 1.1k | Python | 09/21 |
| 118 | [zpoint/CPython-Internals](https://github.com/zpoint/CPython-Internals) | Dive into CPython internals, trying to illustrate every detail of CPython implementation \| CPython 源码阅读笔记, 多图展示底层实现细节 | 1.1k | Python | 09/16 |
| 119 | [moranzcw/Computer-Networking-A-Top-Down-Approach-NOTES](https://github.com/moranzcw/Computer-Networking-A-Top-Down-Approach-NOTES) | 《计算机网络-自顶向下方法(原书第6版)》编程作业,Wireshark实验文档的翻译和解答。 | 1.1k | Python | 08/10 |
| 120 | [coffeehb/Some-PoC-oR-ExP](https://github.com/coffeehb/Some-PoC-oR-ExP) | 各种漏洞poc、Exp的收集或编写 | 1.1k | Python | 07/01 |
| 121 | [dataabc/weiboSpider](https://github.com/dataabc/weiboSpider) | 新浪微博爬虫,用python爬取新浪微博数据 | 1.1k | Python | 10/08 |
| 122 | [zhaoyingjun/chatbot](https://github.com/zhaoyingjun/chatbot) | 一个可以自己进行训练的中文聊天机器人, 根据自己的语料训练出自己想要的聊天机器人,可以用于智能客服、在线问答、智能聊天等场景。目前包含seq2seq和seqGAN版本,后续增加tf2.0版本。 | 1.1k | Python | 09/30 |
| 123 | [killgcd/chromego](https://github.com/killgcd/chromego) | ChromeGo 翻墙工具包 | 1.1k | Python | 07/29 |
| 124 | [cn/GB2260](https://github.com/cn/GB2260) | 中华人民共和国国家标准 GB/T 2260 行政区划代码 | 1.1k | Python | 09/24 |
| 125 | [frombeijingwithlove/dlcv_for_beginners](https://github.com/frombeijingwithlove/dlcv_for_beginners) | 《深度学习与计算机视觉》配套代码 | 1.1k | Python | 08/03 |
| 126 | [QuantFans/quantdigger](https://github.com/QuantFans/quantdigger) | 基于python的量化交易平台 | 1.0k | Python | 06/02 |
| 127 | [dongweiming/web_develop](https://github.com/dongweiming/web_develop) | 《Python Web开发实战》书中源码 | 1.0k | Python | 05/28 |
| 128 | [marchtea/scrapy_doc_chs](https://github.com/marchtea/scrapy_doc_chs) | scrapy中文翻译文档 | 1.0k | Python | 09/12 |
| 129 | [abbeyokgo/PyOne](https://github.com/abbeyokgo/PyOne) | PyOne-一款给力的onedrive文件管理、分享程序 | 1.0k | Python | 09/13 |
| 130 | [Lucifer1993/struts-scan](https://github.com/Lucifer1993/struts-scan) | Python2编写的struts2漏洞全版本检测和利用工具 | 1.0k | Python | 05/07 |
| 131 | [Yinzo/SmartQQBot](https://github.com/Yinzo/SmartQQBot) | 基于SmartQQ的自动机器人框架 | 1.0k | Python | 02/11 |
| 132 | [Lucifer1993/AngelSword](https://github.com/Lucifer1993/AngelSword) | Python3编写的CMS漏洞检测框架 | 999 | Python | 04/20 |
| 133 | [nickliqian/cnn_captcha](https://github.com/nickliqian/cnn_captcha) | use cnn recognize captcha by tensorflow. 本项目针对字符型图片验证码,使用tensorflow实现卷积神经网络,进行验证码识别。 | 989 | Python | 09/02 |
| 134 | [iBreaker/bjguahao](https://github.com/iBreaker/bjguahao) | 北京市预约挂号统一平台挂号小助手 | 967 | Python | 10/09 |
| 135 | [Adyzng/jd-autobuy](https://github.com/Adyzng/jd-autobuy) | Python爬虫,京东自动登录,在线抢购商品 | 953 | Python | 08/19 |
| 136 | [china-testing/python-api-tesing](https://github.com/china-testing/python-api-tesing) | python中文库-python人工智能大数据自动化接口测试开发。 书籍下载及python库汇总https://china-testing.github.io/ | 952 | Python | 08/24 |
| 137 | [ly0/baidupcsapi](https://github.com/ly0/baidupcsapi) | 百度网盘api | 940 | Python | 02/15 |
| 138 | [yangxuanxc/wechat_friends](https://github.com/yangxuanxc/wechat_friends) | 微信好友信息分析并可视化以及自动回复微信消息 | 934 | Python | 03/15 |
| 139 | [yzddmr6/webshell-venom](https://github.com/yzddmr6/webshell-venom) | 免杀webshell无限生成工具(利用随机异或无限免杀D盾) | 925 | Python | 10/04 |
| 140 | [HuberTRoy/MusicBox](https://github.com/HuberTRoy/MusicBox) | :blush: :musical_note: MusicPlayer 一站式收听多平台音乐(网易云, 虾米, QQ)的跨平台音乐播放器,尽情享受吧~:sparkles: | 920 | Python | 01/23 |
| 141 | [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、御剑。 | 914 | Python | 09/28 |
| 142 | [zwczou/weixin-python](https://github.com/zwczou/weixin-python) | 微信SDK - 包括微信支付,微信公众号,微信登陆,微信消息处理等 | 907 | Python | 09/06 |
| 143 | [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 | 903 | Python | 01/08 |
| 144 | [hhyo/Archery](https://github.com/hhyo/Archery) | SQL 审核查询平台 | 890 | Python | 10/08 |
| 145 | [duoergun0729/nlp](https://github.com/duoergun0729/nlp) | 兜哥出品 <一本开源的NLP入门书籍> | 866 | Python | 08/06 |
| 146 | [JushuangQiao/Python-Offer](https://github.com/JushuangQiao/Python-Offer) | 《剑指Offer》面试题Python实现 | 832 | Python | 03/09 |
| 147 | [newpanjing/simpleui](https://github.com/newpanjing/simpleui) | A modern theme based on vue+element-ui for django admin.一款基于vue+element-ui的django admin现代化主题。全球900+网站都在使用!喜欢可以点个star✨ | 826 | Python | 10/06 |
| 148 | [snowkylin/TensorFlow-cn](https://github.com/snowkylin/TensorFlow-cn) | 简单粗暴 TensorFlow (1.X) \| A Concise Handbook of TensorFlow (1.X) | 822 | Python | 08/23 |
| 149 | [Lam1360/YOLOv3-model-pruning](https://github.com/Lam1360/YOLOv3-model-pruning) | 在 oxford hand 数据集上对 YOLOv3 做模型剪枝(network slimming) | 811 | Python | 08/26 |
| 150 | [TheKingOfDuck/fuzzDicts](https://github.com/TheKingOfDuck/fuzzDicts) | Web Pentesting Fuzz 字典,一个就够了。 | 809 | Python | 10/08 |
| 151 | [EugeneLiu/translationCSAPP](https://github.com/EugeneLiu/translationCSAPP) | 为 CSAPP 视频课程提供字幕,翻译 PPT,Lab。 | 804 | Python | 09/24 |
| 152 | [anbai-inc/Kibana_Hanization](https://github.com/anbai-inc/Kibana_Hanization) | Kibana 中文汉化 | 787 | Python | 05/10 |
| 153 | [al0ne/Vxscan](https://github.com/al0ne/Vxscan) | python3写的综合扫描工具,主要用来存活验证,敏感文件探测(目录扫描/js泄露接口/html注释泄露),WAF/CDN识别,端口扫描,指纹/服务识别,操作系统识别,POC扫描,SQL注入,绕过CDN,查询旁站等功能,主要用来甲方自测或乙方授权测试,请勿用来搞破坏。 | 774 | Python | 10/09 |
| 154 | [LyleMi/Learn-Web-Hacking](https://github.com/LyleMi/Learn-Web-Hacking) | Study Notes For Web Hacking / Web安全学习笔记 | 770 | Python | 10/08 |
| 155 | [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 | 767 | Python | 09/29 |
| 156 | [audier/DeepSpeechRecognition](https://github.com/audier/DeepSpeechRecognition) | A Chinese Deep Speech Recognition System 包括基于深度学习的声学模型和基于深度学习的语言模型 | 753 | Python | 03/26 |
| 157 | [FutunnOpen/futuquant](https://github.com/FutunnOpen/futuquant) | 富途开放API Python SDK(因更名废弃, 转到 py-futu-api ) | 749 | Python | 01/22 |
| 158 | [fzlee/alipay](https://github.com/fzlee/alipay) | Python Alipay(支付宝) SDK with SHA1/SHA256 support | 747 | Python | 08/26 |
| 159 | [rainx/pytdx](https://github.com/rainx/pytdx) | Python tdx数据接口 | 747 | Python | 08/26 |
| 160 | [drcoms/drcom-generic](https://github.com/drcoms/drcom-generic) | Dr.COM/DrCOM 现已覆盖 d p x三版。 | 737 | Python | 09/18 |
| 161 | [laixintao/python-parallel-programming-cookbook-cn](https://github.com/laixintao/python-parallel-programming-cookbook-cn) | 📖《Python Parallel Programming Cookbook》中文版 | 732 | Python | 09/29 |
| 162 | [ownthink/Jiagu](https://github.com/ownthink/Jiagu) | Jiagu深度学习自然语言处理工具 知识图谱关系抽取 中文分词 词性标注 命名实体识别 情感分析 新词发现 关键词 文本摘要 文本聚类 | 728 | Python | 10/08 |
| 163 | [Acmesec/CTFCrackTools](https://github.com/Acmesec/CTFCrackTools) | China's first CTFTools framework.中国国内首个CTF工具框架,旨在帮助CTFer快速攻克难关 | 724 | Python | 10/07 |
| 164 | [ramsayleung/jd_spider](https://github.com/ramsayleung/jd_spider) | 两只蠢萌京东的分布式爬虫. | 717 | Python | 04/08 |
| 165 | [kerlomz/captcha_trainer](https://github.com/kerlomz/captcha_trainer) | [验证码识别-训练] This project is based on CNN5/ResNet+BLSTM/LSTM/GRU/SRU/BSRU+CTC to realize verification code identification. This project is only for training the model. | 712 | Python | 09/09 |
| 166 | [kevingo/system-design-primer-zh-tw](https://github.com/kevingo/system-design-primer-zh-tw) | system-design-primer 繁體中文翻譯計畫。原作者:https://github.com/donnemartin/system-design-primer | 707 | Python | 03/04 |
| 167 | [jachinlin/geektime_dl](https://github.com/jachinlin/geektime_dl) | 把极客时间装进Kindle | 707 | Python | 10/01 |
| 168 | [kingname/GeneralNewsExtractor](https://github.com/kingname/GeneralNewsExtractor) | 新闻网页正文通用抽取器 Alpha 版. | 706 | Python | 10/09 |
| 169 | [InsaneLife/ChineseNLPCorpus](https://github.com/InsaneLife/ChineseNLPCorpus) | 中文自然语言处理数据集,平时做做实验的材料。欢迎补充提交合并。 | 704 | Python | 06/23 |
| 170 | [seisman/how-to-write-makefile](https://github.com/seisman/how-to-write-makefile) | 跟我一起写Makefile重制版 | 699 | Python | 10/06 |
| 171 | [xiaolai/public-speaking-with-meaning](https://github.com/xiaolai/public-speaking-with-meaning) | 《我也有话要说》—— 普通人的当众讲话技能 | 690 | Python | 08/19 |
| 172 | [RicterZ/genpAss](https://github.com/RicterZ/genpAss) | 中国特色的弱口令生成器 | 687 | Python | 04/25 |
| 173 | [brightmart/albert_zh](https://github.com/brightmart/albert_zh) | A LITE BERT FOR SELF-SUPERVISED LEARNING OF LANGUAGE REPRESENTATIONS, 海量中文预训练ALBERT模型 | 681 | Python | 10/09 |
| 174 | [FinMind/FinMind](https://github.com/FinMind/FinMind) | Open Data, more than 50 financial data. 提供超過 50 個金融資料,每天更新 | 675 | Python | 10/08 |
| 175 | [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相关的算法,基于keras和tensorflow。 | 674 | Python | 10/03 |
| 176 | [brightmart/roberta_zh](https://github.com/brightmart/roberta_zh) | RoBERTa中文预训练模型: RoBERTa for Chinese | 669 | Python | 10/09 |
| 177 | [NewFuture/DDNS](https://github.com/NewFuture/DDNS) | :triangular_flag_on_post: 自动更新域名解析到本机IP(支持dnspod,阿里DNS,CloudFlare,DNSCOM...) | 661 | Python | 09/28 |
| 178 | [zeruniverse/QQRobot](https://github.com/zeruniverse/QQRobot) | QQBot, QQ机器人(群聊小黄鸡) LINUX挂机版, SmartQQ协议。 | 659 | Python | 06/11 |
| 179 | [nosarthur/gita](https://github.com/nosarthur/gita) | Manage multiple git repos side by side for sanity 不疯了似地管理多个git库 | 654 | Python | 09/05 |
| 180 | [githublitao/api_automation_test](https://github.com/githublitao/api_automation_test) | 接口自动化测试平台,已停止维护,看心情改改 | 652 | Python | 07/01 |
| 181 | [iceyhexman/onlinetools](https://github.com/iceyhexman/onlinetools) | 在线cms识别\|信息泄露\|工控\|系统\|物联网安全\|cms漏洞扫描\|nmap端口扫描\|子域名获取\|待续.. | 640 | Python | 08/05 |
| 182 | [shmilylty/OneForAll](https://github.com/shmilylty/OneForAll) | OneForAll是一款功能强大的子域收集工具 | 640 | Python | 09/27 |
| 183 | [mtianyan/FunpySpiderSearchEngine](https://github.com/mtianyan/FunpySpiderSearchEngine) | 借鉴自慕课网-2019.06.19更新【Scrapy 1.6.0爬取数据 + ElasticSearch6.8.0+Django2.2搜索引擎】【爬虫端】(知乎 & 拉勾(暂不可用) & 伯乐) | 639 | Python | 08/16 |
| 184 | [yhangf/PythonCrawler](https://github.com/yhangf/PythonCrawler) | :heartpulse:用python编写的爬虫项目集合 | 626 | Python | 05/09 |
| 185 | [dragen1860/Deep-Learning-with-PyTorch-Tutorials](https://github.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials) | 深度学习与PyTorch入门实战视频教程 配套源代码和PPT | 614 | Python | 10/02 |
| 186 | [shunliz/Machine-Learning](https://github.com/shunliz/Machine-Learning) | 机器学习原理 | 613 | Python | 08/20 |
| 187 | [Seedarchangel/TuChart](https://github.com/Seedarchangel/TuChart) | Tuchart is a visualization interface for the Chinese stock market. Tuchart supports candlestick charts, price charts, tick data, high-frequency data and distribution of top shareholders for individual stocks. Tuchart是一个基于pyqt和echarts的股票视觉化应用。Tuchart 支持日/月线,分笔,高频数据,前十股东分笔的视觉化 | 610 | Python | 08/25 |
| 188 | [sinall/StrategyEase-Python-SDK](https://github.com/sinall/StrategyEase-Python-SDK) | 策略易(StrategyEase)Python SDK,策略自动化交易 API 及量化平台。 | 608 | Python | 07/15 |
| 189 | [EvilCult/moviecatcher](https://github.com/EvilCult/moviecatcher) | 电影美剧搜索及在线观看离线下载软件,集成热门资源站,借助百度云实现离线下载以及在线播放功能。 | 608 | Python | 07/21 |
| 190 | [CaoZ/JD-Coin](https://github.com/CaoZ/JD-Coin) | 自动登录京东,打卡领钢镚,签到领京豆 | 604 | Python | 07/16 |
| 191 | [gusibi/python-weixin](https://github.com/gusibi/python-weixin) | 微信(weixin\|wechat) Python SDK 支持开放平台和公众平台 支持微信小程序云开发 | 602 | Python | 10/09 |
| 192 | [whyliam/whyliam.workflows.youdao](https://github.com/whyliam/whyliam.workflows.youdao) | 使用有道翻译你想知道的单词和语句 | 601 | Python | 07/20 |
| 193 | [httprunner/HttpRunnerManager](https://github.com/httprunner/HttpRunnerManager) | 基于 HttpRunner 的 Web 测试平台,已停止维护。 | 592 | Python | 07/11 |
| 194 | [Henryhaohao/Bilibili_video_download](https://github.com/Henryhaohao/Bilibili_video_download) | :rainbow:Bilibili_video_download-B站视频下载 | 592 | Python | 08/22 |
| 195 | [PKUJohnson/OpenData](https://github.com/PKUJohnson/OpenData) | 开源的金融投资数据提取工具,专注在各类网站上爬取数据,并通过简单易用的API方式使用 | 591 | Python | 10/09 |
| 196 | [lzjun567/note](https://github.com/lzjun567/note) | 学习笔记 | 590 | Python | 06/19 |
| 197 | [Hackxiaoya/CuteOne](https://github.com/Hackxiaoya/CuteOne) | 这大概是最好的onedrive挂载程序了吧,我猜。 | 589 | Python | 07/19 |
| 198 | [sczhengyabin/Image-Downloader](https://github.com/sczhengyabin/Image-Downloader) | Download images from Google, Bing, Baidu. 谷歌、百度、必应图片下载. | 588 | Python | 04/03 |
| 199 | [DropsDevopsOrg/ECommerceCrawlers](https://github.com/DropsDevopsOrg/ECommerceCrawlers) | 实战🐍多种网站、电商数据爬虫🕷。包含🕸:淘宝商品、微信公众号、大众点评、招聘网站、闲鱼、阿里任务、博客园、微博、百度贴吧、豆瓣电影、包图网、全景网、豆瓣音乐、某省药监局、搜狐新闻、机器学习文本采集、fofa资产采集、汽车之家、国家统计局、百度关键词收录数、蜘蛛泛目录、今日头条、豆瓣影评❤️❤️❤️。微信爬虫展示项目: | 582 | Python | 10/07 |
| 200 | [apachecn/python_data_analysis_and_mining_action](https://github.com/apachecn/python_data_analysis_and_mining_action) | 《python数据分析与挖掘实战》的代码笔记 | 573 | Python | 06/22 |
⬆ [回到目录](#目录)
<br/>
## Go
| # | Repository | Description | Stars | Language | Updated |
| ---- | ------------------------------------------------------------ | ------------------------------------------------------------ | ----- | -------- | ------- |
| 1 | [getlantern/lantern](https://github.com/getlantern/lantern) | 蓝灯Windows下载 https://raw.githubusercontent.com/getlantern/lantern-binaries/master/lantern-installer.exe 蓝灯安卓下载 https://raw.githubusercontent.com/getlantern/lantern-binaries/master/lantern-installer.apk | 45.6k | Go | 10/09 |
| 2 | [unknwon/the-way-to-go_ZH_CN](https://github.com/unknwon/the-way-to-go_ZH_CN) | 《The Way to Go》中文译本,中文正式名《Go 入门指南》 | 17.7k | Go | 10/10 |
| 3 | [iikira/BaiduPCS-Go](https://github.com/iikira/BaiduPCS-Go) | 百度网盘客户端 - Go语言编写 | 17.4k | Go | 10/09 |
| 4 | [chai2010/advanced-go-programming-book](https://github.com/chai2010/advanced-go-programming-book) | :books: 《Go语言高级编程》开源图书,涵盖CGO、Go汇编语言、RPC实现、Protobuf插件实现、Web框架实现、分布式系统等高阶主题(完稿) | 9.3k | Go | 10/10 |
| 5 | [peterq/pan-light](https://github.com/peterq/pan-light) | 百度网盘不限速客户端, golang + qt5, 跨平台图形界面 | 8.7k | Go | 10/08 |
| 6 | [cnlh/nps](https://github.com/cnlh/nps) | 一款轻量级、功能强大的内网穿透代理服务器。支持tcp、udp流量转发,支持内网http代理、内网socks5代理,同时支持snappy压缩、站点保护、加密传输、多路复用、header修改等。支持web图形化管理,集成多用户模式。 | 8.2k | Go | 10/08 |
| 7 | [bilibili/kratos](https://github.com/bilibili/kratos) | Kratos是bilibili开源的一套Go微服务框架,包含大量微服务相关框架及工具。 | 6.7k | Go | 10/10 |
| 8 | [unknwon/go-fundamental-programming](https://github.com/unknwon/go-fundamental-programming) | 《Go 编程基础》是一套针对 Google 出品的 Go 语言的视频语音教程,主要面向新手级别的学习者。 | 6.7k | Go | 09/18 |
| 9 | [snail007/goproxy](https://github.com/snail007/goproxy) | Proxy is a high performance HTTP(S), websocket,TCP, UDP,Secure DNS,Socks5 proxy server .Chain-style proxies,nat forwarding in different lan,TCP/UDP port forwarding, SSH forwarding ,ipv4 and ipv6 supporting .Proxy是golang实现的高性能http,https,websocket,tcp,防污染DNS,socks5代理服务器,支持内网穿透,链式代理,通讯加密,智能HTTP,SOCKS5代 ... | 6.5k | Go | 10/08 |
| 10 | [polaris1119/The-Golang-Standard-Library-by-Example](https://github.com/polaris1119/The-Golang-Standard-Library-by-Example) | Golang标准库。对于程序员而言,标准库与语言本身同样重要,它好比一个百宝箱,能为各种常见的任务提供完美的解决方案。以示例驱动的方式讲解Golang的标准库。 | 5.8k | Go | 09/01 |
| 11 | [developer-learning/night-reading-go](https://github.com/developer-learning/night-reading-go) | Go 夜读 > Share the related technical topics of Go every week through zoom online live broadcast, every day on the WeChat/Slack to communicate programming technology topics. 每周通过 zoom 在线直播的方式分享 Go 相关的技术话题,每天大家在微信/Slack 上及时沟通交流编程技术话题。 | 4.9k | Go | 09/26 |
| 12 | [b3log/pipe](https://github.com/b3log/pipe) | 🎷 一款小而美的博客平台,专为程序员设计。 | 3.5k | Go | 10/07 |
| 13 | [huichen/wukong](https://github.com/huichen/wukong) | 高度可定制的全文搜索引擎 | 3.4k | Go | 08/21 |
| 14 | [EasyDarwin/EasyDarwin](https://github.com/EasyDarwin/EasyDarwin) | open source、high performance、industrial rtsp streaming server,a lot of optimization on streaming relay,KeyFrame cache,RESTful,and web management,also EasyDarwin support distributed load balancing,a simple streaming media cloud platform architecture.高性能开源RTSP流媒体服务器,基于go语言研发,维护和优化:RTSP推模式转发、RTSP拉模式转发、 ... | 3.3k | Go | 09/11 |
| 15 | [lifei6671/mindoc](https://github.com/lifei6671/mindoc) | Golang实现的基于beego框架的接口在线文档管理系统 | 3.2k | Go | 09/29 |
| 16 | [tophubs/TopList](https://github.com/tophubs/TopList) | 今日热榜,一个获取各大热门网站热门头条的聚合网站,使用Go语言编写,多协程异步快速抓取信息,预览:https://www.printf520.com/hot.html | 3.0k | Go | 09/23 |
| 17 | [Tencent/bk-cmdb](https://github.com/Tencent/bk-cmdb) | 蓝鲸智云配置平台(BlueKing CMDB) | 2.9k | Go | 10/10 |
| 18 | [ffhelicopter/Go42](https://github.com/ffhelicopter/Go42) | 《Go语言四十二章经》详细讲述Go语言规范与语法细节及开发中常见的误区,通过研读标准库等经典代码设计模式,启发读者深刻理解Go语言的核心思维,进入Go语言开发的更高阶段。 | 2.9k | Go | 10/08 |
| 19 | [gwuhaolin/lightsocks](https://github.com/gwuhaolin/lightsocks) | ⚡️一个轻巧的网络混淆代理🌏 | 2.9k | Go | 04/28 |
| 20 | [unknwon/go-web-foundation](https://github.com/unknwon/go-web-foundation) | 《Go Web 基础》是一套针对 Google 出品的 Go 语言的视频语音教程,主要面向完成《Go 编程基础》教程后希望进一步了解有关 Go Web 开发的学习者。 | 2.4k | Go | 08/14 |
| 21 | [chaosblade-io/chaosblade](https://github.com/chaosblade-io/chaosblade) | An easy to use and powerful chaos engineering experiment toolkit.(阿里巴巴开源的一款简单易用、功能强大的混沌实验注入工具) | 1.9k | Go | 09/29 |
| 22 | [TruthHun/DocHub](https://github.com/TruthHun/DocHub) | 参考百度文库,使用Beego(Golang)开发的开源文库系统 | 1.9k | Go | 09/26 |
| 23 | [gwuhaolin/livego](https://github.com/gwuhaolin/livego) | 纯 Go 写的直播服务器 | 1.9k | Go | 10/10 |
| 24 | [goodrain/rainbond](https://github.com/goodrain/rainbond) | Enterprise application cloud operating system(企业应用云操作系统) | 1.9k | Go | 10/10 |
| 25 | [shen100/golang123](https://github.com/shen100/golang123) | golang123 是使用 vue、nuxt、node.js 和 golang 开发的知识分享系统 | 1.9k | Go | 10/10 |
| 26 | [360EntSecGroup-Skylar/ElasticHD](https://github.com/360EntSecGroup-Skylar/ElasticHD) | Elasticsearch 可视化DashBoard, 支持Es监控、实时搜索,Index template快捷替换修改,索引列表信息查看, SQL converts to DSL等 | 1.9k | Go | 05/15 |
| 27 | [aimerforreimu/auxpi](https://github.com/aimerforreimu/auxpi) | 🍭 集合多家 API 的新一代图床 | 1.9k | Go | 09/24 |
| 28 | [ouqiang/gocron](https://github.com/ouqiang/gocron) | 定时任务管理系统 | 1.9k | Go | 08/02 |
| 29 | [chanxuehong/wechat](https://github.com/chanxuehong/wechat) | weixin/wechat/微信公众平台/微信企业号/微信商户平台/微信支付 go/golang sdk | 1.8k | Go | 10/10 |
| 30 | [xmge/gonote](https://github.com/xmge/gonote) | 欢迎各位gopher一起来完善这份笔记,让更多的人能够了解go,学习go,使用go,热爱go. :thumbsup: | 1.7k | Go | 08/01 |
| 31 | [liangdas/mqant](https://github.com/liangdas/mqant) | mqant是一款基于Golang语言的简洁,高效,高性能的分布式游戏服务器框架 | 1.7k | Go | 09/30 |
| 32 | [gopl-zh/gopl-zh.github.com](https://github.com/gopl-zh/gopl-zh.github.com) | Go语言圣经中文版(只接收PR, Issue请提交到golang-china/gopl-zh) | 1.6k | Go | 09/09 |
| 33 | [chaitin/xray](https://github.com/chaitin/xray) | xray 安全评估工具 | 1.6k | Go | 10/10 |
| 34 | [ysrc/yulong-hids](https://github.com/ysrc/yulong-hids) | 一款由 YSRC 开源的主机入侵检测系统 | 1.6k | Go | 07/30 |
| 35 | [senghoo/golang-design-pattern](https://github.com/senghoo/golang-design-pattern) | 设计模式 Golang实现-《研磨设计模式》读书笔记 | 1.6k | Go | 10/08 |
| 36 | [aceld/zinx](https://github.com/aceld/zinx) | 基于Golang轻量级TCP并发服务器框架 | 1.6k | Go | 10/09 |
| 37 | [silenceper/wechat](https://github.com/silenceper/wechat) | WeChat SDK for Go (微信SDK:简单、易用) | 1.5k | Go | 10/10 |
| 38 | [dreamans/syncd](https://github.com/dreamans/syncd) | syncd是一款开源的代码部署工具,它具有简单、高效、易用等特点,可以提高团队的工作效率. | 1.5k | Go | 09/02 |
| 39 | [studygolang/studygolang](https://github.com/studygolang/studygolang) | Go 语言中文网 \| Golang中文社区 \| Go语言学习园地 源码 | 1.4k | Go | 10/07 |
| 40 | [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.3k | Go | 10/08 |
| 41 | [eyebluecn/tank](https://github.com/eyebluecn/tank) | 《蓝眼云盘》(Eyeblue Cloud Disk) | 1.3k | Go | 09/26 |
| 42 | [funny/link](https://github.com/funny/link) | Go语言网络层脚手架 | 1.3k | Go | 08/05 |
| 43 | [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.2k | Go | 10/10 |
| 44 | [TruthHun/BookStack](https://github.com/TruthHun/BookStack) | BookStack,基于MinDoc,使用Beego开发的在线文档管理系统,功能类似Gitbook和看云。 | 1.2k | Go | 10/03 |
| 45 | [hacklcx/HFish](https://github.com/hacklcx/HFish) | Extend the enterprise security test open source honeypot system , Record hacker attacks. 扩展企业安全测试主动诱导型开源蜜罐框架系统,记录黑客攻击手段 | 1.1k | Go | 09/16 |
| 46 | [go-ego/gse](https://github.com/go-ego/gse) | Go efficient text segmentation; support english, chinese, japanese and other. Go 语言高性能分词 | 1.1k | Go | 09/24 |
| 47 | [linclin/gopub](https://github.com/linclin/gopub) | vue.js(element框架)+golang(beego框架)开发的运维发布系统,支持git,jenkins版本发布,go ssh,BT两种文件传输方式选择,支持部署前准备任务和部署后任务钩子函数 | 1.1k | Go | 09/24 |
| 48 | [bilibili/overlord](https://github.com/bilibili/overlord) | Overlord是哔哩哔哩基于Go语言编写的memcache和redis&cluster的代理及集群管理功能,致力于提供自动化高可用的缓存服务解决方案。 | 1.1k | Go | 09/29 |
| 49 | [chai2010/go2-book](https://github.com/chai2010/go2-book) | :books: 《Go2编程指南》开源图书,重点讲解Go2新特性,以及Go1教程中较少涉及的特性 | 1.1k | Go | 08/08 |
| 50 | [shell909090/goproxy](https://github.com/shell909090/goproxy) | 基于go写的隧道代理服务器。 | 1.1k | Go | 09/18 |
| 51 | [halfrost/LeetCode-Go](https://github.com/halfrost/LeetCode-Go) | ✅ Solutions to LeetCode by Go, 100% test coverage. / LeetCode 题解 | 1.0k | Go | 10/10 |
| 52 | [davyxu/tabtoy](https://github.com/davyxu/tabtoy) | 跨平台的高性能便捷电子表格导出器 | 945 | Go | 09/06 |
| 53 | [xormplus/xorm](https://github.com/xormplus/xorm) | xorm是一个简单而强大的Go语言ORM库,通过它可以使数据库操作非常简便。本库是基于原版xorm的定制增强版本,为xorm提供类似ibatis的配置文件及动态SQL支持,支持AcitveRecord操作 | 939 | Go | 10/08 |
| 54 | [phachon/mm-wiki](https://github.com/phachon/mm-wiki) | MM-Wiki 一个轻量级的企业知识分享与团队协同软件,可用于快速构建企业 Wiki 和团队知识分享平台。部署方便,使用简单,帮助团队构建一个信息共享、文档管理的协作环境。 | 931 | Go | 08/27 |
| 55 | [Jinnrry/getAwayBSG](https://github.com/Jinnrry/getAwayBSG) | 逃离北上广 | 911 | Go | 09/05 |
| 56 | [overnote/over-golang](https://github.com/overnote/over-golang) | Golang笔记:[进度80%]Go语法、Go并发思想、Go与web开发、Go微服务设施等 | 869 | Go | 10/10 |
| 57 | [opensec-cn/kunpeng](https://github.com/opensec-cn/kunpeng) | kunpeng是一个Golang编写的开源POC框架/库,以动态链接库的形式提供各种语言调用,通过此项目可快速开发漏洞检测类的系统。 | 865 | Go | 09/12 |
| 58 | [yanyiwu/gojieba](https://github.com/yanyiwu/gojieba) | "结巴"中文分词的Golang版本 | 855 | Go | 09/29 |
| 59 | [greymd/ojichat](https://github.com/greymd/ojichat) | おじさんがLINEやメールで送ってきそうな文を生成する | 834 | Go | 07/18 |
| 60 | [MiSecurity/x-patrol](https://github.com/MiSecurity/x-patrol) | github泄露扫描系统 | 834 | Go | 05/13 |
| 61 | [george518/PPGo_Job](https://github.com/george518/PPGo_Job) | PPGo_Job是一款可视化的、多人多权限的、一任务多机执行的定时任务管理系统,采用golang开发,安装方便,资源消耗少,支持大并发,可同时管理多台服务器上的定时任务。 | 830 | Go | 10/01 |
| 62 | [40t/go-sniffer](https://github.com/40t/go-sniffer) | 🔎Sniffing and parsing mysql,redis,http,mongodb etc protocol. 抓包截取项目中的数据库请求并解析成相应的语句。 | 802 | Go | 10/09 |
| 63 | [henson/proxypool](https://github.com/henson/proxypool) | Golang实现的IP代理池 | 794 | Go | 08/11 |
| 64 | [smallnest/dive-to-gosync-workshop](https://github.com/smallnest/dive-to-gosync-workshop) | 深入Go并发编程研讨课 | 781 | Go | 07/25 |
| 65 | [qiniu/qshell](https://github.com/qiniu/qshell) | qshell是利用七牛文档上公开的API实现的一个方便开发者测试和使用七牛API服务的命令行工具。 | 777 | Go | 07/05 |
| 66 | [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更好的性能。 | 772 | Go | 09/02 |
| 67 | [hantmac/Mastering_Go_ZH_CN](https://github.com/hantmac/Mastering_Go_ZH_CN) | 《Mastering GO》中文译本,暂时命名为《玩转 GO》。 | 758 | Go | 08/18 |
| 68 | [iwannay/jiacrontab](https://github.com/iwannay/jiacrontab) | 简单可信赖的任务管理工具 | 758 | Go | 10/05 |
| 69 | [qiniu/qlang](https://github.com/qiniu/qlang) | Q Language (Q语言) - A script language for Go | 730 | Go | 09/07 |
| 70 | [wuYin/blog](https://github.com/wuYin/blog) | 个人博客 | 721 | Go | 09/20 |
| 71 | [zxh0/jvmgo-book](https://github.com/zxh0/jvmgo-book) | 《自己动手写Java虚拟机》源代码 | 714 | Go | 08/08 |
| 72 | [caixw/apidoc](https://github.com/caixw/apidoc) | RESTful API 文档生成工具,支持 Go、Java、Swift、JavaScript、Rust、PHP、Python 和 Ruby 等大部分语言。 | 703 | Go | 10/10 |
| 73 | [xianlubird/mydocker](https://github.com/xianlubird/mydocker) | <<自己动手写docker>> 源码 | 700 | Go | 09/10 |
| 74 | [fanux/sealos](https://github.com/fanux/sealos) | kubernetes高可用安装工具,一条命令,离线安装,包含所有依赖,内核负载不依赖haproxy keepalived,纯golang开发,99年证书,支持v1.16.0! | 684 | Go | 10/09 |
| 75 | [GameXG/TcpRoute2](https://github.com/GameXG/TcpRoute2) | TcpRoute , TCP 层的路由器。对于 TCP 连接自动从多个线路(电信、联通、移动)、多个域名解析结果中选择最优线路。 | 678 | Go | 03/21 |
| 76 | [bilibili/sniper](https://github.com/bilibili/sniper) | 轻量级 go 业务框架。 | 672 | Go | 08/23 |
| 77 | [micro-in-cn/tutorials](https://github.com/micro-in-cn/tutorials) | Micro 中文示例、教程、资料,源码解读 | 661 | Go | 10/10 |
| 78 | [smartwalle/alipay](https://github.com/smartwalle/alipay) | 支付宝 AliPay SDK for Go, 集成简单,功能完善,持续更新,已支持公钥证书签名和验签。 | 660 | Go | 10/08 |
| 79 | [chai2010/awesome-go-zh](https://github.com/chai2010/awesome-go-zh) | :books: Go资源精选中文版(含中文图书大全) | 658 | Go | 09/23 |
| 80 | [Go-zh/tour](https://github.com/Go-zh/tour) | Go 语言官方教程中文版 | 637 | Go | 05/15 |
| 81 | [owenliang/go-push](https://github.com/owenliang/go-push) | 用GO做推送 | 625 | Go | 01/28 |
| 82 | [xluohome/phonedata](https://github.com/xluohome/phonedata) | 手机号码归属地信息库、手机号归属地查询 phone.dat 最后更新:2019年9月 | 617 | Go | 09/02 |
| 83 | [yoki123/ncmdump](https://github.com/yoki123/ncmdump) | netease cloud music copyright protection file dump(golang版本网易云音乐ncm文件格式转换) | 610 | Go | 05/20 |
| 84 | [3xxx/engineercms](https://github.com/3xxx/engineercms) | 工程师知识管理系统:基于golang go语言(beego框架)。每个行业都有自己的知识管理系统,engineercms旨在为土木工程师们打造一款适用的基于web的知识管理系统。它既可以用于管理个人的项目资料,也可以用于管理项目团队资料;它既可以运行于个人电脑,也可以放到服务器上。支持onlyoffice实时文档协作,直接在线编辑dwg文件、office文档,阅览PDF文件。通用的业务流程设置。手机端配套小程序,微信搜索“珠三角设代”或“青少儿书画”即可呼出小程序。 | 609 | Go | 10/06 |
| 85 | [wendal/gor](https://github.com/wendal/gor) | Golang编写的静态博客引擎 | 589 | Go | 09/04 |
| 86 | [mozillazg/go-pinyin](https://github.com/mozillazg/go-pinyin) | 汉字转拼音 | 555 | Go | 04/06 |
| 87 | [wangsongyan/wblog](https://github.com/wangsongyan/wblog) | 基于gin+gorm开发的个人博客项目 | 554 | Go | 07/12 |
| 88 | [itcloudy/ERP](https://github.com/itcloudy/ERP) | 基于beego的进销存系统 | 551 | Go | 04/18 |
| 89 | [didi/go-spring](https://github.com/didi/go-spring) | 模仿 Java 的 Spring 全家桶实现的一套 GoLang 的应用程序框架 🚀 | 546 | Go | 10/10 |
| 90 | [ixre/go2o](https://github.com/ixre/go2o) | Golang基于DDD的o2o的业务模型及基础 | 544 | Go | 10/07 |
| 91 | [liushuchun/wechatcmd](https://github.com/liushuchun/wechatcmd) | 提供微信终端版本、微信命令行版本聊天功能、微信机器人 | 537 | Go | 04/22 |
| 92 | [bobohume/gonet](https://github.com/bobohume/gonet) | go分布式服务器,基于内存mmo | 537 | Go | 09/23 |
| 93 | [henrylee2cn/pholcus_lib](https://github.com/henrylee2cn/pholcus_lib) | 公共维护的Pholcus爬虫规则库 | 536 | Go | 09/08 |
| 94 | [gopcp/example.v2](https://github.com/gopcp/example.v2) | An example project for book 'Go Programming & Concurrency in Practice, 2nd edition' (《Go并发编程实战》第2版). | 528 | Go | 06/03 |
| 95 | [wyh267/FalconEngine](https://github.com/wyh267/FalconEngine) | 一个go语言实现的简单搜索引擎 | 516 | Go | 02/19 |
| 96 | [Allenxuxu/gev](https://github.com/Allenxuxu/gev) | 🇨🇳gev 是基于Reactor模式实现的轻量级,快速,非阻塞式TCP网络库。/ gev is a lightweight, fast non-blocking TCP network library based on Reactor mode. | 502 | Go | 10/08 |
| 97 | [alibaba/RedisShake](https://github.com/alibaba/RedisShake) | Redis-shake is a tool for synchronizing data between two redis databases. Redis-shake是一个用于在两个redis之间同步数据的工具,满足用户非常灵活的同步、迁移需求。 | 494 | Go | 10/09 |
| 98 | [qiniu/httptest](https://github.com/qiniu/httptest) | Qiniu httptest package - 七牛HTTP测试工具包 | 492 | Go | 09/11 |
| 99 | [winterssy/music-get](https://github.com/winterssy/music-get) | 只需一步,下载你喜欢的音乐到本地 | 471 | Go | 10/10 |
| 100 | [alibaba/MongoShake](https://github.com/alibaba/MongoShake) | MongoShake is a universal data replication platform based on MongoDB's oplog. Redundant replication and active-active replication are two most important functions. 基于mongodb oplog的集群复制工具,可以满足迁移和同步的需求,进一步实现灾备和多活功能。 | 462 | Go | 10/08 |
| 101 | [alberliu/goim](https://github.com/alberliu/goim) | golang写的IM服务器 | 458 | Go | 10/09 |
| 102 | [lhtzbj12/sdrms](https://github.com/lhtzbj12/sdrms) | 基于Beego开发的易用、易扩展、界面友好的轻量级功能权限管理系统 | 440 | Go | 07/01 |
| 103 | [gcpug/nouhau](https://github.com/gcpug/nouhau) | Google Cloud Platformのノウハウを共有するRepository | 431 | Go | 09/13 |
| 104 | [yangwenmai/learning-golang](https://github.com/yangwenmai/learning-golang) | Go 学习之路:Go 开发者博客、Go 微信公众号、Go 学习资料(文档、书籍、视频) | 419 | Go | 05/06 |
| 105 | [Golangltd/codeclass](https://github.com/Golangltd/codeclass) | Golang语言社区--腾讯课堂、网易云课堂、字节教育课程PPT及代码 | 414 | Go | 05/09 |
| 106 | [hanchuanchuan/goInception](https://github.com/hanchuanchuan/goInception) | 一个集审核、执行、备份及生成回滚语句于一身的MySQL运维工具 | 413 | Go | 10/10 |
| 107 | [duolatech/xapimanager](https://github.com/duolatech/xapimanager) | XAPI MANAGER -专业实用的开源接口管理平台,为程序开发者提供一个灵活,方便,快捷的API管理工具,让API管理变的更加清晰、明朗。如果你觉得xApi对你有用的话,别忘了给我们点个赞哦^_^ ! | 407 | Go | 08/30 |
| 108 | [medivhzhan/weapp](https://github.com/medivhzhan/weapp) | GO 微信小程序 SDK | 392 | Go | 09/16 |
| 109 | [Gourouting/singo](https://github.com/Gourouting/singo) | Gin+Gorm开发Golang API快速开发脚手架 | 374 | Go | 09/24 |
| 110 | [TeaWeb/build](https://github.com/TeaWeb/build) | TeaWeb-可视化的Web代理服务。DEMO: http://teaos.cn:7777 | 356 | Go | 10/09 |
| 111 | [hb-go/echo-web](https://github.com/hb-go/echo-web) | Go web framework Echo example. ❌在线演示☞ | 354 | Go | 05/29 |
| 112 | [silenceper/pool](https://github.com/silenceper/pool) | Golang 通用网络连接池 | 348 | Go | 05/01 |
| 113 | [jemygraw/TechDoc](https://github.com/jemygraw/TechDoc) | 自己编写的技术文档汇总 | 342 | Go | 07/04 |
| 114 | [sevenelevenlee/go-patterns](https://github.com/sevenelevenlee/go-patterns) | Golang 设计模式 | 339 | Go | 09/27 |
| 115 | [didi/falcon-log-agent](https://github.com/didi/falcon-log-agent) | 用于监控系统的日志采集agent,可无缝对接open-falcon | 337 | Go | 08/09 |
| 116 | [wiatingpub/MTBSystem](https://github.com/wiatingpub/MTBSystem) | 使用go-micro微服务实现的在线电影院订票系统 | 334 | Go | 08/02 |
| 117 | [cnbattle/douyin](https://github.com/cnbattle/douyin) | 抖音推荐列表视频爬虫方案,基于app(虚拟机或真机) 相关技术 golang adb nodejs anyproxy | 321 | Go | 09/11 |
| 118 | [zgs225/alfred-youdao](https://github.com/zgs225/alfred-youdao) | 有道词典 for Alfred | 318 | Go | 04/30 |
| 119 | [33cn/chain33](https://github.com/33cn/chain33) | 高度模块化, 遵循 KISS原则的区块链开发框架 | 317 | Go | 10/10 |
| 120 | [Echosong/beego_blog](https://github.com/Echosong/beego_blog) | beego+layui+mysql 开发 简洁美观的个人博客系统 | 311 | Go | 07/31 |
| 121 | [ying32/govcl](https://github.com/ying32/govcl) | 一个跨平台的Golang GUI库,底层绑定自Delphi VCL和Lazarus LCL。视频教程请加入QQ群获取(A Cross-platform Golang GUI library, Binding with Delphi VCL and Lazarus LCL.)。 | 311 | Go | 08/21 |
| 122 | [godcong/fate](https://github.com/godcong/fate) | fate 命运 起名 算命 宝宝起名 | 305 | Go | 10/08 |
| 123 | [otiai10/amesh](https://github.com/otiai10/amesh) | みんなだいすき東京アメッシュ! | 298 | Go | 08/21 |
| 124 | [tjfoc/gmsm](https://github.com/tjfoc/gmsm) | GM SM2/3/4 library based on Golang (基于Go语言的国密SM2/SM3/SM4算法库) | 295 | Go | 08/28 |
| 125 | [objcoding/wxpay](https://github.com/objcoding/wxpay) | 微信支付(WeChat Pay) SDK for Golang | 293 | Go | 08/15 |
| 126 | [qit-team/snow](https://github.com/qit-team/snow) | 简洁易用的Go业务框架 | 289 | Go | 10/08 |
| 127 | [wumansgy/GoAndBlockChainStudy](https://github.com/wumansgy/GoAndBlockChainStudy) | go and blockchain study note,欢迎各位志同道合的朋友一起完善,让更多的go或者区块链开发者能够有一份不错的学习资料 | 283 | Go | 01/15 |
| 128 | [b3log/gulu](https://github.com/b3log/gulu) | ⭕ Go 语言常用工具库,这个轱辘还算圆! | 277 | Go | 10/05 |
| 129 | [silenceper/gowatch](https://github.com/silenceper/gowatch) | go程序热编译工具,提升开发效率 | 267 | Go | 09/12 |
| 130 | [chai2010/gopherchina2018-cgo-talk](https://github.com/chai2010/gopherchina2018-cgo-talk) | :book: GopherChina2018: 深入CGO编程 - 最新修订 | 255 | Go | 06/19 |
| 131 | [ego008/goyoubbs](https://github.com/ego008/goyoubbs) | golang 实现的youBBS,自动安装、更新HTTPS | 252 | Go | 06/19 |
| 132 | [hb-go/micro](https://github.com/hb-go/micro) | go-micro 微服务实践 | 247 | Go | 07/31 |
| 133 | [zxh0/luago-book](https://github.com/zxh0/luago-book) | 《自己动手实现Lua》源代码 | 245 | Go | 07/12 |
| 134 | [Kevin-fqh/learning-k8s-source-code](https://github.com/Kevin-fqh/learning-k8s-source-code) | k8s、docker源码分析、读书笔记 | 244 | Go | 07/27 |
| 135 | [qiniu/arch](https://github.com/qiniu/arch) | 极客时间专栏《许式伟的架构课》相关的源代码:冯诺伊曼结构 | 243 | Go | 02/10 |
| 136 | [cookieY/Yearning-go](https://github.com/cookieY/Yearning-go) | Mysql web端sql审核平台 | 240 | Go | 09/12 |
| 137 | [EndlessCheng/mahjong-helper](https://github.com/EndlessCheng/mahjong-helper) | 日本麻将助手:牌效+防守+记牌(支持雀魂、天凤) | 239 | Go | 10/02 |
| 138 | [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 环境 | 236 | Go | 09/12 |
| 139 | [Golangltd/LollipopGo](https://github.com/Golangltd/LollipopGo) | Golang语言社区 全球服游戏服务器框架,目前协议支持websocket、http及RPC,采用状态同步,愿景:打造竞技实时【比赛】对战游戏平台框架! 功能持续更新中... ... | 231 | Go | 07/02 |
| 140 | [ma6254/FictionDown](https://github.com/ma6254/FictionDown) | 小说下载\|小说爬取\|起点\|笔趣阁\|导出Markdown\|导出txt\|转换epub\|广告过滤\|自动校对 | 228 | Go | 05/15 |
| 141 | [zc2638/go-standard](https://github.com/zc2638/go-standard) | Go标准库所有方法使用示例,请注意这不是Go的中文版标准库(内含传送门),持续更新example | 227 | Go | 09/06 |
| 142 | [iGoogle-ink/gopay](https://github.com/iGoogle-ink/gopay) | 微信(WeChat)、支付宝(AliPay)的Go版本SDK。【持续更新,望开发者及时升级】 | 226 | Go | 10/10 |
| 143 | [baiyutang/meetup](https://github.com/baiyutang/meetup) | 【❤️ 互联网最全大厂技术分享PPT 👍🏻 持续更新中!】🍻各大技术交流会、活动资料汇总 ,如 👉QCon👉全球运维技术大会 👉 GDG 👉 全球技术领导力峰会👉大前端大会👉架构师峰会👉敏捷开发DevOps👉OpenResty👉Elastic,欢迎 PR / Issues | 225 | Go | 09/30 |
| 144 | [idoubi/gonews](https://github.com/idoubi/gonews) | 基于go+vue实现的golang每日新闻可视化浏览检索平台 | 213 | Go | 07/25 |
| 145 | [hr3lxphr6j/bililive-go](https://github.com/hr3lxphr6j/bililive-go) | 一个直播录制工具 | 212 | Go | 10/08 |
| 146 | [childe/gohangout](https://github.com/childe/gohangout) | golang版本的hangout, 希望能省些内存. 使用了自己写的Kafka lib .. 虚. 不过我们在生产环境已经使用近1年, kafka 版本从0.9.0.1到2.0都在使用, 目前情况稳定. 吞吐量在每天2000亿条以上. | 210 | Go | 09/28 |
| 147 | [jaywcjlove/golang-tutorial](https://github.com/jaywcjlove/golang-tutorial) | Go语言快速入门 | 209 | Go | 02/08 |
| 148 | [Gourouting/giligili](https://github.com/Gourouting/giligili) | gin+gorm开发的视频网站示例 | 207 | Go | 09/04 |
| 149 | [magiclvzs/antnet](https://github.com/magiclvzs/antnet) | A game server net framework in Golang go(Golang)游戏服务器网络框架 | 205 | Go | 09/09 |
| 150 | [esap/wechat](https://github.com/esap/wechat) | 微信SDK的golang实现,短小精悍,同时兼容【企业号/服务号/订阅号/小程序】 | 203 | Go | 07/24 |
| 151 | [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 | 199 | Go | 10/10 |
| 152 | [micro-in-cn/all-in-one](https://github.com/micro-in-cn/all-in-one) | micro 特性全合一项目示例 [归档] 移步至:https://github.com/micro-in-cn/tutorials | 199 | Go | 07/28 |
| 153 | [chanyipiaomiao/devops-api](https://github.com/chanyipiaomiao/devops-api) | Golang + Beego 编写 提供开发/运维常用操作的HTTP API接口: 手机归属地查询、IP地址查询、工作日节假日判断、微信报警、钉钉报警、2步验证、密码存储、发送邮件、生成随机密码等功能 | 198 | Go | 04/02 |
| 154 | [Terry-Ye/im](https://github.com/Terry-Ye/im) | 纯go实现的分布式im即时通讯系统,各层可单独部署,之间通过rpc通讯 | 195 | Go | 03/23 |
| 155 | [dengsgo/fileboy](https://github.com/dengsgo/fileboy) | fileboy,文件变更监听通知系统,使用 Go 编写。Fileboy, File Change Monitoring Notification System, written with Go. | 189 | Go | 10/09 |
| 156 | [pingguoxueyuan/gostudy](https://github.com/pingguoxueyuan/gostudy) | gostudy是关于golang的学习教程,采用通俗易懂、实践和理论相结合的方式,阐述golang各个方面的特性,尽快让初学者通过项目实践,快速的上手并成为经验丰富的golang开发者 | 185 | Go | 06/30 |
| 157 | [Leslie1sMe/golang](https://github.com/Leslie1sMe/golang) | Golang的实战项目,学习笔记,代码例程汇总。 | 185 | Go | 04/03 |
| 158 | [it234/goapp](https://github.com/it234/goapp) | Gin + GORM + Casbin + vue-element-admin 实现的权限管理系统(golang) | 185 | Go | 09/11 |
| 159 | [qieguo2016/algorithm](https://github.com/qieguo2016/algorithm) | 常用算法和数据结构讲解,面试算法题/leetcode解题,提供golang/js版本 | 184 | Go | 10/07 |
| 160 | [yanjunhui/chat](https://github.com/yanjunhui/chat) | 微信企业号发送监控 for OpenFalcon | 184 | Go | 02/27 |
| 161 | [zboya/golang_runtime_reading](https://github.com/zboya/golang_runtime_reading) | golang 1.10.2 runtime code reading - golang runtime源码分析。只有思考过,你才会印象深刻。 | 180 | Go | 07/22 |
| 162 | [lifei6671/interview-go](https://github.com/lifei6671/interview-go) | golang面试题集合 | 175 | Go | 08/19 |
| 163 | [tuotoo/qrcode](https://github.com/tuotoo/qrcode) | qrcode scanner ( decoder ) by golang 二维码扫描识别 | 170 | Go | 07/11 |
| 164 | [countstarlight/homo](https://github.com/countstarlight/homo) | 一个基于离线唤醒,自然语言理解和情感分析的开源自然交互系统 | 169 | Go | 07/14 |
| 165 | [milkbobo/gopay](https://github.com/milkbobo/gopay) | golang支付:微信公众号,微信app,微信小程序,微信企业支付,支付宝网页版,支付宝app,支付宝企业支付 | 169 | Go | 08/27 |
| 166 | [b3log/lute](https://github.com/b3log/lute) | 🎼 一款结构化的 Markdown 引擎,支持 Go 和 JavaScript。 | 168 | Go | 10/10 |
| 167 | [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。 | 168 | Go | 09/29 |
| 168 | [issue9/identicon](https://github.com/issue9/identicon) | Go 语言版 identicon 头像产生工具 | 163 | Go | 09/06 |
| 169 | [mattn/goemon](https://github.com/mattn/goemon) | 五右衛門 | 161 | Go | 09/24 |
| 170 | [islenbo/autossh](https://github.com/islenbo/autossh) | No password ssh client for Mac/Linux, one key login remote server. 一个SSH远程客户端,可一键登录远程服务器,主要用来弥补Mac/Linux Terminal SSH无法保存密码的不足。 | 159 | Go | 08/22 |
| 171 | [isucon/isucon7-qualify](https://github.com/isucon/isucon7-qualify) | ISUCON7 予選問題の参照実装とベンチマーカー | 159 | Go | 08/31 |
| 172 | [indes/flowerss-bot](https://github.com/indes/flowerss-bot) | A telegram bot for rss reader. 一个支持应用内阅读的 Telegram RSS Bot。 | 158 | Go | 10/08 |
| 173 | [afocus/captcha](https://github.com/afocus/captcha) | simple captcha for golang (go验证码生成器) | 156 | Go | 10/10 |
| 174 | [guonaihong/gout](https://github.com/guonaihong/gout) | 做github最好用的流式http client库,让你体会到还没有爽完,活已经干玩 | 155 | Go | 10/10 |
| 175 | [yehux/Coot](https://github.com/yehux/Coot) | 玩转 IFTTT 体验极客生活,互联网自动化神器 | 152 | Go | 08/15 |
| 176 | [gfandada/gserver](https://github.com/gfandada/gserver) | 通用的实时流golang框架,可以方便的创建游戏服务/聊天服务等 | 151 | Go | 04/16 |
| 177 | [Tinywan/golang-tutorial](https://github.com/Tinywan/golang-tutorial) | :bouquet: Golang 系列教程(译) | 151 | Go | 09/19 |
| 178 | [knownsec/gsm](https://github.com/knownsec/gsm) | 使用树莓派配合硬件来进行短信转发 | 151 | Go | 05/08 |
| 179 | [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 | 151 | Go | 04/11 |
| 180 | [freshcn/qqwry](https://github.com/freshcn/qqwry) | 纯真ip库的golang服务 | 150 | Go | 05/20 |
| 181 | [Tencent/bk-bcs](https://github.com/Tencent/bk-bcs) | 蓝鲸智云容器管理平台(BlueKing Container Service) | 149 | Go | 10/10 |
| 182 | [antlinker/go-dirtyfilter](https://github.com/antlinker/go-dirtyfilter) | Golang基于DFA算法实现的敏感词过滤 | 148 | Go | 09/23 |
| 183 | [Gopusher/gateway](https://github.com/Gopusher/gateway) | 🚀构建分布式即时聊天、消息推送系统。 Building distributed instant messaging, push notification systems. | 148 | Go | 09/24 |
| 184 | [micro-plat/hydra](https://github.com/micro-plat/hydra) | 分布式微服务框架(用于快速开发http接口, web应用,rpc服务,websocket服务,定时任务,消息消费等) | 146 | Go | 10/09 |
| 185 | [silsuer/golang-design-patterns](https://github.com/silsuer/golang-design-patterns) | 使用golang实现各种设计模式 | 146 | Go | 02/11 |
| 186 | [Shitaibin/golang_step_by_step](https://github.com/Shitaibin/golang_step_by_step) | Golang入门教程的文章、示例代码,喜欢就star,订阅就watch | 145 | Go | 09/17 |
| 187 | [lianxiangcloud/linkchain](https://github.com/lianxiangcloud/linkchain) | 享云链-郑和版本 | 145 | Go | 10/10 |
| 188 | [sinksmell/lanblog](https://github.com/sinksmell/lanblog) | 懒人博客,前后端分离,Vue+Beego Restful api 开箱即用,部署简单,后台管理系统简洁美观。 | 144 | Go | 05/19 |
| 189 | [Comdex/imgo](https://github.com/Comdex/imgo) | golang图像处理工具库(golang image process lib) | 142 | Go | 01/21 |
| 190 | [brokercap/Bifrost](https://github.com/brokercap/Bifrost) | Bifrost ---- 将 MySQL 数据 实时同步 到 Redis , MongoDB 等服务的高性能异构中间件 | 142 | Go | 10/10 |
| 191 | [nange/gospider](https://github.com/nange/gospider) | golang实现的爬虫框架,使用者只需关心页面规则,提供web管理界面。基于colly开发。 | 142 | Go | 09/19 |
| 192 | [imroc/ontts](https://github.com/imroc/ontts) | 科大讯飞语音linux在线语音合成后台服务 | 140 | Go | 03/01 |
| 193 | [lifei6671/go-git-webhook](https://github.com/lifei6671/go-git-webhook) | Golang 实现的自动化部署和运维工具,支持:Github / GitLab / GitOsc。 | 136 | Go | 06/14 |
| 194 | [sundy-li/html2article](https://github.com/sundy-li/html2article) | 基于文本密度的html2article实现[golang] | 136 | Go | 04/05 |
| 195 | [Hentioe/sorry-generator](https://github.com/Hentioe/sorry-generator) | 王境泽/偷车贼/为所欲为等字幕梗生成器 for Golang | 135 | Go | 05/03 |
| 196 | [ItsWewin/go-chat](https://github.com/ItsWewin/go-chat) | Golang 高并发聊天程序/go chat room | 135 | Go | 07/01 |
| 197 | [xxjwxc/gormt](https://github.com/xxjwxc/gormt) | gorm tools as database to golang struct , golang 数据库映射工具,golang 数据库导出工具,golang 将数据库转换为gorm结构 | 135 | Go | 10/09 |
| 198 | [mydevc/go-gin-mvc](https://github.com/mydevc/go-gin-mvc) | 基于框架gin+xorm搭建的MVC项目架子,适合初学者 | 135 | Go | 02/22 |
| 199 | [hequan2017/go-admin](https://github.com/hequan2017/go-admin) | go web api,包含gin+gorm+jwt+rbac等。 | 135 | Go | 09/02 |
| 200 | [isucon/isucon9-qualify](https://github.com/isucon/isucon9-qualify) | ISUCON9予選 | 133 | Go | 10/08 |
⬆ [回到目录](#目录)
<br/>
## PHP
| # | Repository | Description | Stars | Language | Updated |
| ---- | ------------------------------------------------------------ | ------------------------------------------------------------ | ----- | -------- | ------- |
| 1 | [top-think/think](https://github.com/top-think/think) | ThinkPHP Framework ——十年匠心的高性能PHP框架 | 7.0k | PHP | 10/07 |
| 2 | [helloqingfeng/Awsome-Front-End-learning-resource](https://github.com/helloqingfeng/Awsome-Front-End-learning-resource) | :octocat:GitHub最全的前端资源汇总仓库(包括前端学习、开发资源、求职面试等) | 6.0k | PHP | 05/05 |
| 3 | [guyueyingmu/avbook](https://github.com/guyueyingmu/avbook) | AV 电影管理系统, avmoo , javbus , javlibrary 爬虫,线上 AV 影片图书馆,AV 磁力链接数据库,Japanese Adult Video Library,Adult Video Magnet Links - Japanese Adult Video Database | 5.8k | PHP | 07/19 |
| 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.4k | PHP | 07/17 |
| 5 | [fecshop/yii2_fecshop](https://github.com/fecshop/yii2_fecshop) | yii2 ( PHP ) fecmall(fecshop) core code used for ecommerce shop 多语言多货币多入口的开源电商 B2C 商城,支持移动端vue, app, html5,微信小程序微店,微信小程序商城等 | 3.3k | PHP | 10/06 |
| 6 | [overtrue/pinyin](https://github.com/overtrue/pinyin) | :cn: 基于词库的中文转拼音优质解决方案 | 3.1k | PHP | 09/20 |
| 7 | [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 |
| 8 | [owner888/phpspider](https://github.com/owner888/phpspider) | 《我用爬虫一天时间“偷了”知乎一百万用户,只为证明PHP是世界上最好的语言 》所使用的程序 | 2.9k | PHP | 03/04 |
| 9 | [yansongda/pay](https://github.com/yansongda/pay) | 可能是我用过的最优雅的 Alipay 和 WeChat 的支付 SDK 扩展包了 | 2.9k | PHP | 09/26 |
| 10 | [top-think/thinkphp](https://github.com/top-think/thinkphp) | ThinkPHP3.2 ——基于PHP5的简单快速的面向对象的PHP框架 | 2.8k | PHP | 05/23 |
| 11 | [cloudreve/Cloudreve](https://github.com/cloudreve/Cloudreve) | 🌈支持多家云存储的云盘系统 (A project helps you build your own cloud in minutes) | 2.7k | PHP | 09/10 |
| 12 | [overtrue/laravel-wechat](https://github.com/overtrue/laravel-wechat) | 微信 SDK for Laravel, 基于 overtrue/wechat | 2.3k | PHP | 09/09 |
| 13 | [matyhtf/framework](https://github.com/matyhtf/framework) | SPF (Swoole PHP Framework),世界第一款基于Swoole扩展的PHP框架,开发者是Swoole创始人 | 2.1k | PHP | 10/09 |
| 14 | [helei112g/payment](https://github.com/helei112g/payment) | Payment是php版本的支付聚合第三方sdk,集成了微信支付、支付宝支付、招商一网通支付。提供统一的调用接口,方便快速接入各种支付、查询、退款、转账能力。服务端接入支付功能,方便、快捷。 | 1.9k | PHP | 07/01 |
| 15 | [overtrue/easy-sms](https://github.com/overtrue/easy-sms) | :calling: 一款满足你的多种发送需求的短信发送组件 | 1.9k | PHP | 10/08 |
| 16 | [summerblue/laravel-shop](https://github.com/summerblue/laravel-shop) | Laravel 电商实战教程的项目代码 | 1.8k | PHP | 10/05 |
| 17 | [jae-jae/QueryList](https://github.com/jae-jae/QueryList) | :spider: The progressive PHP crawler framework! 优雅的渐进式PHP采集框架。 | 1.8k | PHP | 05/31 |
| 18 | [pinguo/php-msf](https://github.com/pinguo/php-msf) | PHP微服务框架即Micro Service Framework For PHP | 1.7k | PHP | 01/23 |
| 19 | [maicong/music](https://github.com/maicong/music) | 音乐搜索器 - 多站合一音乐搜索解决方案 | 1.6k | PHP | 06/25 |
| 20 | [c0ny1/upload-labs](https://github.com/c0ny1/upload-labs) | 一个想帮你总结所有类型的上传漏洞的靶场 | 1.5k | PHP | 06/07 |
| 21 | [zoujingli/ThinkAdmin](https://github.com/zoujingli/ThinkAdmin) | 基于 ThinkPHP 5.1 基础开发平台(登录账号密码都是 admin ) | 1.4k | PHP | 10/08 |
| 22 | [SwooleDistributed/SwooleDistributed](https://github.com/SwooleDistributed/SwooleDistributed) | swoole 分布式全栈框架 | 1.4k | PHP | 04/30 |
| 23 | [Qsnh/meedu](https://github.com/Qsnh/meedu) | 基于Laravel开发的在线点播系统。 | 1.3k | PHP | 10/08 |
| 24 | [mix-php/mix](https://github.com/mix-php/mix) | ☄️Mix PHP — 基于 Swoole 的 FastCGI、常驻内存、协程三模 PHP 高性能框架 (开发文档完善) | 1.3k | PHP | 10/09 |
| 25 | [You2php/delete](https://github.com/You2php/delete) | (迫于压力,本项目停止维护,请尽快fork代码。1月1日之后删除项目)[免翻墙工具]A free and open-source youtube video proxy script [Written in PHP] | 1.2k | PHP | 04/23 |
| 26 | [hightman/xunsearch](https://github.com/hightman/xunsearch) | 免费开源的中文搜索引擎,采用 C/C++ 编写 (基于 xapian 和 scws),提供 PHP 的开发接口和丰富文档 | 1.2k | PHP | 04/26 |
| 27 | [honraytech/VueThink](https://github.com/honraytech/VueThink) | VueThink是一套基于Vue全家桶(Vue2.x + Vue-router2.x + Vuex)+ ThinkPHP5的前后端分离框架。 | 1.2k | PHP | 03/05 |
| 28 | [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.2k | PHP | 05/14 |
| 29 | [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.1k | PHP | 09/25 |
| 30 | [zorlan/skycaiji](https://github.com/zorlan/skycaiji) | 蓝天采集器是一款免费的数据采集发布爬虫软件,采用php+mysql开发,可部署在云服务器,几乎能采集所有类型的网页,无缝对接各类CMS建站程序,免登录实时发布数据,全自动无需人工干预!是大数据、云时代网站数据自动化采集的最佳云端爬虫软件 | 1.1k | PHP | 09/25 |
| 31 | [helloxz/imgurl](https://github.com/helloxz/imgurl) | ImgURL是一个简单、纯粹的图床程序,让个人图床多一个选择。 | 1.1k | PHP | 09/02 |
| 32 | [SegmentFault/HyperDown](https://github.com/SegmentFault/HyperDown) | 一个结构清晰的,易于维护的,现代的PHP Markdown解析器 | 1.1k | PHP | 10/09 |
| 33 | [luofei614/SocketLog](https://github.com/luofei614/SocketLog) | 微信调试、API调试和AJAX的调试的工具,能将日志通过WebSocket输出到Chrome浏览器的console中 | 1.1k | PHP | 10/09 |
| 34 | [zhanghuanchong/icon-workshop](https://github.com/zhanghuanchong/icon-workshop) | 图标工场 - 移动应用图标生成工具,一键生成所有尺寸的应用图标和启动图 | 1.0k | PHP | 09/03 |
| 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 | 07/18 |
| 36 | [hui-ho/WebStack-Laravel](https://github.com/hui-ho/WebStack-Laravel) | 一个开源的网址导航网站项目,您可以拿来制作自己的网址导航。 | 1.0k | PHP | 09/28 |
| 37 | [EleTeam/Shop-PHP-Yii2](https://github.com/EleTeam/Shop-PHP-Yii2) | EleTeam开源项目-电商全套解决方案之PHP版-Shop-for-PHP-Yii2。一个类似京东/天猫/淘宝的商城,有对应的APP支持,由EleTeam团队维护! | 969 | PHP | 09/24 |
| 38 | [thenbsp/wechat](https://github.com/thenbsp/wechat) | 微信公众平台第三方 SDK 开发包,优雅、健壮,可扩展,遵循 PSR 开发规范。 | 961 | PHP | 01/18 |
| 39 | [Tai7sy/card-system](https://github.com/Tai7sy/card-system) | 个人在线发卡系统,高效安全的发卡平台 | 898 | PHP | 10/04 |
| 40 | [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. | 871 | PHP | 06/11 |
| 41 | [overtrue/api.yike.io](https://github.com/overtrue/api.yike.io) | 一刻社区后端 API 源码 | 857 | PHP | 10/09 |
| 42 | [geesondog/rhaphp](https://github.com/geesondog/rhaphp) | RhaPHP是微信第三方管理平台,微信公众号管理系统,支持多公众号管理,CRM会员管理,小程序开发,APP接口开发、几乎集合微信功能,简洁、快速上手、快速开发微信各种各样应用。简洁、好用、快速、项目开发快几倍 。 | 852 | PHP | 09/23 |
| 43 | [MoeNetwork/Tieba-Cloud-Sign](https://github.com/MoeNetwork/Tieba-Cloud-Sign) | 百度贴吧云签到,在服务器上配置好就无需进行任何操作便可以实现贴吧的全自动签到。配合插件使用还可实现云灌水、点赞、封禁、删帖、审查等功能 | 850 | PHP | 06/14 |
| 44 | [TideSec/WDScanner](https://github.com/TideSec/WDScanner) | WDScanner平台目前实现了如下功能:分布式web漏洞扫描、客户管理、漏洞定期扫描、子域名枚举、端口扫描、网站爬虫、暗链检测、坏链检测、网站指纹搜集、专项漏洞检测、代理搜集及部署等功能。 | 841 | PHP | 07/04 |
| 45 | [ZhuFaner/shadowsocks-manage-system](https://github.com/ZhuFaner/shadowsocks-manage-system) | 科学上网管理系统 | 823 | PHP | 03/15 |
| 46 | [bowu678/php_bugs](https://github.com/bowu678/php_bugs) | PHP代码审计分段讲解 | 806 | PHP | 06/04 |
| 47 | [Leslin/thinkphp5-restfulapi](https://github.com/Leslin/thinkphp5-restfulapi) | restful-api风格接口 APP接口 APP接口权限 oauth2.0 接口版本管理 接口鉴权 | 806 | PHP | 07/10 |
| 48 | [mashirozx/Sakura](https://github.com/mashirozx/Sakura) | A Wonderful WordPress Theme: 樱花庄的白猫博客主题 | 800 | PHP | 10/07 |
| 49 | [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 | 782 | PHP | 09/12 |
| 50 | [typecho-fans/plugins](https://github.com/typecho-fans/plugins) | Typecho开源插件集群 | 775 | PHP | 09/30 |
| 51 | [peinhu/AetherUpload-Laravel](https://github.com/peinhu/AetherUpload-Laravel) | A Laravel package to upload large files 上传大文件的Laravel扩展包 | 708 | PHP | 10/09 |
| 52 | [yansongda/laravel-pay](https://github.com/yansongda/laravel-pay) | 可能是我用过的最优雅的 Alipay 和 WeChat 的 laravel 支付扩展包了 | 665 | PHP | 09/11 |
| 53 | [jianyan74/rageframe2](https://github.com/jianyan74/rageframe2) | 一个基于Yii2高级框架的快速开发应用引擎 | 664 | PHP | 10/08 |
| 54 | [swlib/saber](https://github.com/swlib/saber) | ⚔️ Saber, PHP异步协程HTTP客户端 \| PHP Coroutine HTTP client - Swoole Humanization Library | 648 | PHP | 09/27 |
| 55 | [gongwalker/ApiManager](https://github.com/gongwalker/ApiManager) | 接口文档管理工具 | 634 | PHP | 01/10 |
| 56 | [kevinyan815/Learning_Laravel_Kernel](https://github.com/kevinyan815/Learning_Laravel_Kernel) | Laravel核心代码学习 | 607 | PHP | 10/04 |
| 57 | [zoujingli/WeChatDeveloper](https://github.com/zoujingli/WeChatDeveloper) | 【新】微信服务号+微信小程序+微信支付+支付宝支付 | 606 | PHP | 09/16 |
| 58 | [l3m0n/Bypass_Disable_functions_Shell](https://github.com/l3m0n/Bypass_Disable_functions_Shell) | 一个各种方式突破Disable_functions达到命令执行的shell | 585 | PHP | 06/18 |
| 59 | [zencodex/composer-mirror](https://github.com/zencodex/composer-mirror) | Composer 全量镜像发布于2017年3月,至今已不间断运行2年多。这个开源有助于理解 Composer 镜像的工作原理 | 577 | PHP | 09/27 |
| 60 | [easychen/LazyPHP](https://github.com/easychen/LazyPHP) | 轻框架。包含一个前端控制器,20个常用函数和用于页面布局的Layout系统,10分钟即可学会。LP采用BSD开源协议,在代码内保留框架名即可随意商用。 | 572 | PHP | 07/13 |
| 61 | [dedemao/alipay](https://github.com/dedemao/alipay) | 一个PHP文件搞定支付宝支付系列,包括电脑网站支付,手机网站支付,扫码支付,JSAPI支付、单笔转账到支付宝账户、交易结算(分账、分润)、网页授权获取用户信息等 | 572 | PHP | 03/25 |
| 62 | [gongfuxiang/shopxo](https://github.com/gongfuxiang/shopxo) | ShopXO商城系统、国内领先企业级B2C免费开源电商系统,包含PC、h5、微信小程序、支付宝小程序、百度小程序,遵循Apache2开源协议发布、基于ThinkPHP5.1框架研发 | 569 | PHP | 10/09 |
| 63 | [dedemao/weixinPay](https://github.com/dedemao/weixinPay) | 微信支付单文件版。一个PHP文件搞定微信支付系列。包括原生支付(扫码支付),H5支付,公众号支付,现金红包、企业付款到零钱等 | 568 | PHP | 07/23 |
| 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的认证与权限相关的痛点,已在本人的多个项目中集成使用。 | 551 | PHP | 07/31 |
| 65 | [zoujingli/wechat-php-sdk](https://github.com/zoujingli/wechat-php-sdk) | PHP微信SDK(微信平台 + 微信支付) | 549 | PHP | 07/15 |
| 66 | [hongriSec/PHP-Audit-Labs](https://github.com/hongriSec/PHP-Audit-Labs) | 一个关于PHP的代码审计项目 | 546 | PHP | 09/17 |
| 67 | [poetries/mywiki](https://github.com/poetries/mywiki) | :books:收集整理日常发现的好资源、前端资源汇总 | 544 | PHP | 09/20 |
| 68 | [Beipy/BeipyVideoResolution](https://github.com/Beipy/BeipyVideoResolution) | 北漂鱼解析开源视频播放框架,响应式布局! | 538 | PHP | 06/12 |
| 69 | [xu42/pay](https://github.com/xu42/pay) | 个人网站即时到账收款解决方案 / Personal website instant payment solution | 528 | PHP | 05/28 |
| 70 | [lizhichao/one](https://github.com/lizhichao/one) | 一个极简高性能php框架,支持[swoole \| php-fpm ]环境 | 517 | PHP | 10/08 |
| 71 | [zhuifengshaonianhanlu/pikachu](https://github.com/zhuifengshaonianhanlu/pikachu) | 一个好玩的Web安全-漏洞测试平台 | 508 | PHP | 09/16 |
| 72 | [Acmesec/DoraBox](https://github.com/Acmesec/DoraBox) | DoraBox - 基础Web漏洞训练靶场 | 500 | PHP | 07/11 |
| 73 | [mylxsw/wizard](https://github.com/mylxsw/wizard) | Wizard是基于Laravel开发框架开发的一款开源项目(API)文档管理工具。 | 492 | PHP | 09/23 |
| 74 | [bupt1987/html-parser](https://github.com/bupt1987/html-parser) | php html parser,类似与PHP Simple HTML DOM Parser,但是比它快好几倍 | 483 | PHP | 08/17 |
| 75 | [wanglelecc/laracms](https://github.com/wanglelecc/laracms) | LaraCMS 是在学习 laravel ( web 开发实战进阶 + 实战构架 API 服务器) 过程中产生的一个业余作品,试图通过简单的方式,快速构建一套基本的企业站同时保留很灵活的扩展能力和优雅的代码方式,当然这些都得益Laravel的优秀设计。同时LaraCMS 也是一个学习Laravel 不错的参考示例。 | 474 | PHP | 09/01 |
| 76 | [zhuzhichao/ip-location-zh](https://github.com/zhuzhichao/ip-location-zh) | 获取 IP 地址的真实地理位置 | 469 | PHP | 06/14 |
| 77 | [ecjia/ecjia-daojia](https://github.com/ecjia/ecjia-daojia) | EC+(ecjia)到家是一款可开展O2O业务的移动电商系统。它包含:移动端APP,采用原生模式开发,覆盖使用iOS 及Android系统的移 动终端;后台系统,针对平台日常运营维护的平台后台,针对入驻店铺管理的商家后台,独立并行;移动端H5,能够灵活部署于微信及其他APP、网页等。 | 466 | PHP | 09/30 |
| 78 | [insoxin/API](https://github.com/insoxin/API) | 姬长信API For Docker 一个基于多种编程语言开源免费不限制提供生活常用,出行服务,开发工具,金融服务,通讯服务和公益大数据的平台. | 466 | PHP | 10/08 |
| 79 | [flyingalex/design-patterns-by-php](https://github.com/flyingalex/design-patterns-by-php) | 《大话设计模式》php版本, gitbook: https://hulin.gitbook.io/design-patterns-by-php/ | 460 | PHP | 07/10 |
| 80 | [bingcool/swoolefy](https://github.com/bingcool/swoolefy) | swoolefy是一个基于swoole实现的轻量级、高性能、协程级、开放性的API应用服务框架 | 446 | PHP | 09/28 |
| 81 | [l3m0n/pentest_tools](https://github.com/l3m0n/pentest_tools) | 收集一些小型实用的工具 | 445 | PHP | 01/22 |
| 82 | [letwang/HookPHP](https://github.com/letwang/HookPHP) | HookPHP基于C扩展搭建内置AI编程的架构系统-支持微服务部署\|热插拔业务组件-集成业务模型\|权限模型\|UI组件库\|多模板\|多平台\|多域名\|多终端\|多语言-含常驻内存\|前后分离\|API平台\|LUA QQ群:679116380 | 440 | PHP | 09/26 |
| 83 | [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。 | 434 | PHP | 09/04 |
| 84 | [fucongcong/GroupCo](https://github.com/fucongcong/GroupCo) | 优雅的PHP异步协程框架,支持服务化调用,支持统一配置中心,适用于API、Http Server、Rpc Server、构建微服务、中间件。适用于高并发,io密集型场景 | 426 | PHP | 08/31 |
| 85 | [lbbniu/WebWechat](https://github.com/lbbniu/WebWechat) | 网页微信PHP登录的实现 | 418 | PHP | 01/21 |
| 86 | [anerg2046/sns_auth](https://github.com/anerg2046/sns_auth) | 通用第三方登录SDK,支持微信,微信扫码,QQ,微博登录,支付宝登录,Facebook,Line,Twitter,Google | 415 | PHP | 04/30 |
| 87 | [susers/Writeups](https://github.com/susers/Writeups) | 国内各大CTF赛题及writeup整理 | 411 | PHP | 08/26 |
| 88 | [JaxsonWang/WP-Editor.md](https://github.com/JaxsonWang/WP-Editor.md) | 或许这是一个WordPress中最好,最完美的Markdown编辑器 | 407 | PHP | 10/08 |
| 89 | [72crm/72crm](https://github.com/72crm/72crm) | A cutting-edge choice for your Customer Relationship Management 客户管理的前沿创新-悟空CRM | 407 | PHP | 09/27 |
| 90 | [Yurunsoft/PaySDK](https://github.com/Yurunsoft/PaySDK) | PHP 集成支付 SDK ,集成了支付宝、微信支付的支付接口和其它相关接口的操作。可以轻松嵌入支持 PHP >= 5.4 的任何系统中。宇润PHP全家桶技术支持群:17916227 | 403 | PHP | 05/23 |
| 91 | [HerbertKarajan/Fe-Interview-questions](https://github.com/HerbertKarajan/Fe-Interview-questions) | 目前最全的前端开发面试题及答案 | 401 | PHP | 07/18 |
| 92 | [zblogcn/zblogphp](https://github.com/zblogcn/zblogphp) | Z-BlogPHP博客程序 | 399 | PHP | 09/25 |
| 93 | [mojisrc/fashop](https://github.com/mojisrc/fashop) | php开源商城系统,基于swoole、easyswoole框架开发 | 394 | PHP | 07/09 |
| 94 | [ZsgsDesign/NOJ](https://github.com/ZsgsDesign/NOJ) | ⚡ open-source online judge based on Laravel \| 南京邮电大学开源 Online Judge \| QQ群:668108264 | 392 | PHP | 10/08 |
| 95 | [jxlwqq/id-validator](https://github.com/jxlwqq/id-validator) | 中华人民共和国居民身份证、中华人民共和国港澳居民居住证以及中华人民共和国台湾居民居住证号码验证工具(PHP Composer 版) | 391 | PHP | 05/01 |
| 96 | [jacobcyl/Aliyun-oss-storage](https://github.com/jacobcyl/Aliyun-oss-storage) | 阿里云OSS laravel storage Filesystem adapter, 打造Laravel最好的OSS Storage扩展. | 388 | PHP | 10/01 |
| 97 | [mingyoung/dingtalk](https://github.com/mingyoung/dingtalk) | 🌈 EasyDingTalk - 钉钉 SDK | 384 | PHP | 09/28 |
| 98 | [zhuzhichao/bank-card-info](https://github.com/zhuzhichao/bank-card-info) | 获取银行卡号的归属信息 | 384 | PHP | 07/12 |
| 99 | [iiYii/getyii](https://github.com/iiYii/getyii) | Yii2 community 请访问 | 377 | PHP | 08/14 |
| 100 | [kcloze/swoole-bot](https://github.com/kcloze/swoole-bot) | 基于swoole实现的微信机器人,依赖vbot和微信网页版的功能,帮助管理微信群/聊天/踢人等 | 376 | PHP | 06/04 |
| 101 | [Yurunsoft/IMI](https://github.com/Yurunsoft/IMI) | imi 是基于 PHP 协程应用开发框架,它支持 HttpApi、WebSocket、TCP、UDP 应用开发。QQ群:17916227 | 375 | PHP | 10/09 |