forked from GrowingGit/GitHub-Chinese-Top-Charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.md
2359 lines (2291 loc) · 500 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)
#### 榜单设立目的
- Github中文排行榜,帮助你发现高分优秀中文项目;
- 各位开发者伙伴可以更高效地吸收本土化的优秀经验、成果;
- 中文项目可能只满足阶段性的需求,想要有进一步提升,还请多花时间学习更高分的英文项目;
#### 榜单设立范围
- 设立1个总榜(所有语言汇总项目排名)、17个分榜(单个语言项目排名);
#### 榜单入选规则
- 更新越持续越好:最近一年内有更新过的项目才有机会入选(拥抱活跃,远离僵尸);
- Stars 越多越好:各榜根据 Stars 对项目进行排序 ,在满足持续更新条件的项目中,取前200名上榜;
#### 榜单更新频率
- 每周更新一次,最近更新时间为9月3日;
#### 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](#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、后端面试、操作系统、计算机网络、系统设计 | 75.8k | Java | 08/30 |
| 2 | [jackfrued/Python-100-Days](https://github.com/jackfrued/Python-100-Days) | Python - 100天从新手到大师 | 58.0k | Jupyter Notebook | 08/28 |
| 3 | [justjavac/free-programming-books-zh_CN](https://github.com/justjavac/free-programming-books-zh_CN) | :books: 免费的计算机编程类中文书籍,欢迎投稿 | 54.9k | - | 08/24 |
| 4 | [Snailclimb/JavaGuide](https://github.com/Snailclimb/JavaGuide) | 【Java学习+面试指南】 一份涵盖大部分Java程序员所需要掌握的核心知识。 | 53.1k | Java | 08/30 |
| 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 | 44.6k | Go | 09/01 |
| 6 | [MisterBooo/LeetCodeAnimation](https://github.com/MisterBooo/LeetCodeAnimation) | Demonstrate all the questions on LeetCode in the form of animation.(用动画的形式呈现解LeetCode题目的思路) | 39.5k | Java | 08/22 |
| 7 | [xingshaocheng/architect-awesome](https://github.com/xingshaocheng/architect-awesome) | 后端架构师技术图谱 | 37.0k | - | 06/28 |
| 8 | [scutan90/DeepLearning-500-questions](https://github.com/scutan90/DeepLearning-500-questions) | 深度学习500问,以问答形式对常用的概率知识、线性代数、机器学习、深度学习、计算机视觉等热点问题进行阐述,以帮助自己及有需要的读者。 全书分为18个章节,50余万字。由于水平有限,书中不妥之处恳请广大读者批评指正。 未完待续............ 如有意合作,联系scutjy2015@163.com 版权所有,违权必究 Tan 2018.06 | 33.0k | - | 08/29 |
| 9 | [bailicangdu/vue2-elm](https://github.com/bailicangdu/vue2-elm) | 基于 vue2 + vuex 构建一个具有 45 个页面的大型单页面应用 | 29.3k | Vue | 04/25 |
| 10 | [doocs/advanced-java](https://github.com/doocs/advanced-java) | 😮 互联网 Java 工程师进阶知识完全扫盲:涵盖高并发、分布式、高可用、微服务等领域知识,后端同学必看,前端同学也可学习 | 28.9k | Java | 09/01 |
| 11 | [justjavac/awesome-wechat-weapp](https://github.com/justjavac/awesome-wechat-weapp) | 微信小程序开发资源汇总 :100: | 26.3k | - | 08/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/面试笔记 | 26.3k | Python | 07/23 |
| 13 | [proxyee-down-org/proxyee-down](https://github.com/proxyee-down-org/proxyee-down) | http下载工具,基于http代理,支持多连接分块下载 | 24.9k | Java | 06/17 |
| 14 | [shengxinjing/programmer-job-blacklist](https://github.com/shengxinjing/programmer-job-blacklist) | :see_no_evil:程序员找工作黑名单,换工作和当技术合伙人需谨慎啊 更新有赞 | 23.9k | Shell | 04/09 |
| 15 | [xitu/gold-miner](https://github.com/xitu/gold-miner) | 🥇掘金翻译计划,可能是世界最大最好的英译中技术社区,最懂读者和译者的翻译平台: | 23.6k | - | 08/31 |
| 16 | [NervJS/taro](https://github.com/NervJS/taro) | 多端统一开发框架,支持用 React 的开发方式编写一次代码,生成能运行在微信/百度/支付宝/字节跳动/ QQ 小程序、快应用、H5、React Native 等的应用。 https://taro.jd.com/ | 21.3k | JavaScript | 09/01 |
| 17 | [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.1k | CSS | 08/07 |
| 18 | [macrozheng/mall](https://github.com/macrozheng/mall) | mall项目是一套电商系统,包括前台商城系统及后台管理系统,基于SpringBoot+MyBatis实现。 前台商城系统包含首页门户、商品推荐、商品搜索、商品展示、购物车、订单流程、会员中心、客户服务、帮助中心等模块。 后台管理系统包含商品管理、订单管理、会员管理、促销管理、运营管理、内容管理、统计报表、财务管理、权限管理、设置等模块。 | 20.9k | Java | 08/31 |
| 19 | [lib-pku/libpku](https://github.com/lib-pku/libpku) | 贵校课程资料民间整理 | 20.2k | TeX | 08/15 |
| 20 | [fxsjy/jieba](https://github.com/fxsjy/jieba) | 结巴中文分词 | 19.9k | Python | 07/20 |
| 21 | [sentsin/layui](https://github.com/sentsin/layui) | 采用自身模块规范编写的前端 UI 框架,遵循原生 HTML/CSS/JS 的书写形式,极低门槛,拿来即用。 | 19.4k | JavaScript | 07/30 |
| 22 | [chinese-poetry/chinese-poetry](https://github.com/chinese-poetry/chinese-poetry) | 最全中华古诗词数据库, 唐宋两朝近一万四千古诗人, 接近5.5万首唐诗加26万宋诗. 两宋时期1564位词人,21050首词。 | 19.3k | JavaScript | 09/01 |
| 23 | [geekcompany/ResumeSample](https://github.com/geekcompany/ResumeSample) | Resume template for Chinese programmers . 程序员简历模板系列。包括PHP程序员简历模板、iOS程序员简历模板、Android程序员简历模板、Web前端程序员简历模板、Java程序员简历模板、C/C++程序员简历模板、NodeJS程序员简历模板、架构师简历模板以及通用程序员简历模板 | 19.2k | - | 02/22 |
| 24 | [SwiftGGTeam/the-swift-programming-language-in-chinese](https://github.com/SwiftGGTeam/the-swift-programming-language-in-chinese) | 中文版 Apple 官方 Swift 教程《The Swift Programming Language》 | 18.8k | CSS | 08/23 |
| 25 | [Tencent/wepy](https://github.com/Tencent/wepy) | 小程序组件化开发框架 | 18.7k | JavaScript | 09/01 |
| 26 | [apachecn/AiLearning](https://github.com/apachecn/AiLearning) | AiLearning: 机器学习 - MachineLearning - ML、深度学习 - DeepLearning - DL、自然语言处理 NLP | 18.6k | Python | 08/08 |
| 27 | [scwang90/SmartRefreshLayout](https://github.com/scwang90/SmartRefreshLayout) | 🔥下拉刷新、上拉加载、二级刷新、淘宝二楼、RefreshLayout、OverScroll,Android智能下拉刷新框架,支持越界回弹、越界拖动,具有极强的扩展性,集成了几十种炫酷的Header和 Footer。 | 18.6k | Java | 08/20 |
| 28 | [0voice/interview_internal_reference](https://github.com/0voice/interview_internal_reference) | 2019年最新总结,阿里,腾讯,百度,美团,头条等技术面试题目,以及答案,专家出题人分析汇总。 | 18.5k | Python | 09/01 |
| 29 | [Meituan-Dianping/mpvue](https://github.com/Meituan-Dianping/mpvue) | 基于 Vue.js 的小程序开发框架,从底层支持 Vue.js 语法和构建工具体系。 | 18.5k | JavaScript | 08/10 |
| 30 | [littlecodersh/ItChat](https://github.com/littlecodersh/ItChat) | A complete and graceful API for Wechat. 微信个人号接口、微信机器人及命令行微信,三十行即可自定义个人号机器人。 | 18.5k | Python | 08/27 |
| 31 | [FallibleInc/security-guide-for-developers](https://github.com/FallibleInc/security-guide-for-developers) | Security Guide for Developers (实用性开发人员安全须知) | 18.4k | - | 05/28 |
| 32 | [alibaba/druid](https://github.com/alibaba/druid) | 阿里巴巴数据库事业部出品,为监控而生的数据库连接池。阿里云Data Lake Analytics(https://www.aliyun.com/product/datalakeanalytics )、DRDS、TDDL 连接池powered by Druid | 18.3k | Java | 08/30 |
| 33 | [ityouknow/spring-boot-examples](https://github.com/ityouknow/spring-boot-examples) | about learning Spring Boot via examples. Spring Boot 教程、技术栈示例代码,快速简单上手教程。 | 18.2k | Java | 05/18 |
| 34 | [unknwon/the-way-to-go_ZH_CN](https://github.com/unknwon/the-way-to-go_ZH_CN) | 《The Way to Go》中文译本,中文正式名《Go 入门指南》 | 17.1k | Go | 08/17 |
| 35 | [azl397985856/leetcode](https://github.com/azl397985856/leetcode) | LeetCode Solutions: A Record of My Problem Solving Journey.( leetcode题解,记录自己的leetcode解题之路。) | 17.1k | JavaScript | 08/29 |
| 36 | [formulahendry/955.WLB](https://github.com/formulahendry/955.WLB) | 955 不加班的公司名单 - 工作 955,work–life balance (工作与生活的平衡) | 16.9k | - | 08/31 |
| 37 | [jobbole/awesome-python-cn](https://github.com/jobbole/awesome-python-cn) | Python资源大全中文版,包括:Web框架、网络爬虫、模板引擎、数据库、数据可视化、图片处理等,由伯乐在线持续更新。 | 16.2k | Makefile | 08/25 |
| 38 | [alibaba/arthas](https://github.com/alibaba/arthas) | Alibaba Java Diagnostic Tool Arthas/Alibaba Java诊断利器Arthas | 16.1k | Java | 08/31 |
| 39 | [davideuler/architecture.of.internet-product](https://github.com/davideuler/architecture.of.internet-product) | 互联网公司技术架构,微信/淘宝/微博/腾讯/阿里/美团点评/百度/Google/Facebook/Amazon/eBay的架构,欢迎PR补充 | 16.1k | - | 04/13 |
| 40 | [TeamStuQ/skill-map](https://github.com/TeamStuQ/skill-map) | 程序员技能图谱 | 15.6k | HTML | 08/01 |
| 41 | [521xueweihan/HelloGitHub](https://github.com/521xueweihan/HelloGitHub) | :octocat: Find pearls on open-source seashore 分享 GitHub 上有趣、入门级的开源项目 | 15.3k | Python | 08/27 |
| 42 | [alsotang/node-lessons](https://github.com/alsotang/node-lessons) | :closed_book:《Node.js 包教不包会》 by alsotang | 15.1k | JavaScript | 05/28 |
| 43 | [googlehosts/hosts](https://github.com/googlehosts/hosts) | 镜像:https://coding.net/u/scaffrey/p/hosts/git | 15.0k | - | 08/20 |
| 44 | [JacksonTian/fks](https://github.com/JacksonTian/fks) | 前端技能汇总 Frontend Knowledge Structure | 14.9k | JavaScript | 06/27 |
| 45 | [b3log/baidu-netdisk-downloaderx](https://github.com/b3log/baidu-netdisk-downloaderx) | ⚡️ 一款图形界面的百度网盘不限速下载器,支持 Windows、Linux 和 Mac。 | 14.9k | JavaScript | 08/13 |
| 46 | [hankcs/HanLP](https://github.com/hankcs/HanLP) | 自然语言处理 中文分词 词性标注 命名实体识别 依存句法分析 新词发现 关键词短语提取 自动摘要 文本分类聚类 拼音简繁 | 14.6k | Java | 08/08 |
| 47 | [shuzheng/zheng](https://github.com/shuzheng/zheng) | 基于Spring+SpringMVC+Mybatis分布式敏捷开发系统架构,提供整套公共微服务服务模块:集中权限管理(单点登录)、内容管理、支付中心、用户管理(支持第三方登录)、微信平台、存储系统、配置中心、日志分析、任务和通知等,支持服务治理、监控和追踪,努力为中小型企业打造全方位J2EE企业级开发解决方案。 | 14.2k | Java | 09/01 |
| 48 | [chaozh/awesome-blockchain-cn](https://github.com/chaozh/awesome-blockchain-cn) | 收集所有区块链(BlockChain)技术开发相关资料,包括Fabric和Ethereum开发资料 | 13.9k | JavaScript | 06/01 |
| 49 | [wangshub/wechat_jump_game](https://github.com/wangshub/wechat_jump_game) | 微信《跳一跳》Python 辅助 | 13.9k | Python | 08/28 |
| 50 | [Advanced-Frontend/Daily-Interview-Question](https://github.com/Advanced-Frontend/Daily-Interview-Question) | 我是木易杨,公众号「高级前端进阶」作者,每天搞定一道前端大厂面试题,祝大家天天进步,一年后会看到不一样的自己。 | 13.9k | JavaScript | 08/30 |
| 51 | [1c7/chinese-independent-developer](https://github.com/1c7/chinese-independent-developer) | 👩🏿💻👨🏾💻👩🏼💻👨🏽💻👩🏻💻中国独立开发者项目列表 -- 分享大家都在做什么 | 13.8k | - | 08/20 |
| 52 | [alibaba/ice](https://github.com/alibaba/ice) | 🚀Simple and friendly front-end R&D system(简单而友好的前端研发体系 ) | 13.8k | JavaScript | 08/30 |
| 53 | [nswbmw/N-blog](https://github.com/nswbmw/N-blog) | 《一起学 Node.js》 | 13.8k | JavaScript | 08/20 |
| 54 | [QSCTech/zju-icicles](https://github.com/QSCTech/zju-icicles) | 浙江大学课程攻略共享计划 | 13.6k | C | 08/30 |
| 55 | [mqyqingfeng/Blog](https://github.com/mqyqingfeng/Blog) | 冴羽写博客的地方,预计写四个系列:JavaScript深入系列、JavaScript专题系列、ES6系列、React系列。 | 13.5k | - | 07/08 |
| 56 | [judasn/IntelliJ-IDEA-Tutorial](https://github.com/judasn/IntelliJ-IDEA-Tutorial) | IntelliJ IDEA 简体中文专题教程 | 13.3k | - | 08/30 |
| 57 | [nostalgic-css/NES.css](https://github.com/nostalgic-css/NES.css) | NES-style CSS Framework \| ファミコン風CSSフレームワーク | 13.3k | CSS | 07/29 |
| 58 | [hzlzh/Best-App](https://github.com/hzlzh/Best-App) | 收集&推荐优秀的 Apps/硬件/技巧/周边等 | 13.3k | - | 05/24 |
| 59 | [MLEveryday/100-Days-Of-ML-Code](https://github.com/MLEveryday/100-Days-Of-ML-Code) | 100-Days-Of-ML-Code中文版 | 13.2k | Jupyter Notebook | 08/22 |
| 60 | [Awesome-HarmonyOS/HarmonyOS](https://github.com/Awesome-HarmonyOS/HarmonyOS) | A curated list of awesome things related to HarmonyOS. 华为鸿蒙操作系统。 | 12.4k | C | 08/26 |
| 61 | [fighting41love/funNLP](https://github.com/fighting41love/funNLP) | 中英文敏感词、语言检测、中外手机/电话归属地/运营商查询、名字推断性别、手机号抽取、身份证抽取、邮箱抽取、中日文人名库、中文缩写库、拆字词典、词汇情感值、停用词、反动词表、暴恐词表、繁简体转换、英文模拟中文发音、汪峰歌词生成器、职业名称词库、同义词库、反义词库、否定词库、汽车品牌词库、汽车零件词库、连续英文切割、各种中文词向量、公司名字大全、古诗词库、IT词库、财经词库、成语词库、地名词库、历史名人词库、诗词词库、医学词库、饮食词库、法律词库、汽车词库、动物词库、中文聊天语料、中文谣言数据、百度中文问答数据集、句子相似度匹配算法集合、bert资源、文本生成&摘要相关工具、cocoNLP信息抽取 ... | 12.1k | Python | 08/31 |
| 62 | [geeeeeeeeek/git-recipes](https://github.com/geeeeeeeeek/git-recipes) | 🥡 Git recipes in Chinese by Zhongyi Tong. 高质量的Git中文教程. | 12.0k | - | 03/05 |
| 63 | [dcloudio/uni-app](https://github.com/dcloudio/uni-app) | uni-app 是使用 Vue 语法开发小程序、H5、App的统一框架 | 11.8k | JavaScript | 08/31 |
| 64 | [bannedbook/fanqiang](https://github.com/bannedbook/fanqiang) | 翻墙-科学上网 | 11.6k | JavaScript | 08/02 |
| 65 | [CarGuo/GSYVideoPlayer](https://github.com/CarGuo/GSYVideoPlayer) | 视频播放器(IJKplayer、ExoPlayer、MediaPlayer),HTTPS,支持弹幕,支持滤镜、水印、gif截图,片头广告、中间广告,多个同时播放,支持基本的拖动,声音、亮度调节,支持边播边缓存,支持视频自带rotation的旋转(90,270之类),重力旋转与手动旋转的同步支持,支持列表播放 ,列表全屏动画,视频加载速度,列表小窗口支持拖动,动画效果,调整比例,多分辨率切换,支持切换播放器,进度条小窗口预览,列表切换详情页面无缝播放,rtsp、concat、mpeg。 | 11.6k | Java | 09/01 |
| 66 | [komeiji-satori/Dress](https://github.com/komeiji-satori/Dress) | 好耶 是女装 | 11.5k | Standard ML | 09/01 |
| 67 | [Binaryify/NeteaseCloudMusicApi](https://github.com/Binaryify/NeteaseCloudMusicApi) | 网易云音乐 Node.js API service | 11.4k | JavaScript | 08/25 |
| 68 | [jobbole/awesome-java-cn](https://github.com/jobbole/awesome-java-cn) | Java资源大全中文版,包括开发库、开发工具、网站、博客、微信、微博等,由伯乐在线持续更新。 | 11.4k | - | 08/08 |
| 69 | [fengdu78/Coursera-ML-AndrewNg-Notes](https://github.com/fengdu78/Coursera-ML-AndrewNg-Notes) | 吴恩达老师的机器学习课程个人笔记 | 11.2k | HTML | 06/27 |
| 70 | [dianping/cat](https://github.com/dianping/cat) | CAT 作为服务端项目基础组件,提供了 Java, C/C++, Node.js, Python, Go 等多语言客户端,已经在美团点评的基础架构中间件框架(MVC框架,RPC框架,数据库框架,缓存框架等,消息队列,配置系统等)深度集成,为美团点评各业务线提供系统丰富的性能指标、健康状况、实时告警等。 | 11.2k | Java | 08/27 |
| 71 | [jikexueyuanwiki/tensorflow-zh](https://github.com/jikexueyuanwiki/tensorflow-zh) | 谷歌全新开源人工智能系统TensorFlow官方文档中文版 | 11.2k | TeX | 08/04 |
| 72 | [d2l-ai/d2l-zh](https://github.com/d2l-ai/d2l-zh) | 《动手学深度学习》:面向中文读者、能运行、可讨论。英文版即伯克利“深度学习导论”教材。 | 11.1k | Python | 08/31 |
| 73 | [YMFE/yapi](https://github.com/YMFE/yapi) | YApi 是一个可本地部署的、打通前后端及QA的、可视化的接口管理平台 | 11.0k | JavaScript | 08/29 |
| 74 | [phobal/ivideo](https://github.com/phobal/ivideo) | 一个可以观看国内主流视频平台所有视频的客户端(Mac、Windows、Linux) A client that can watch video of domestic(China) mainstream video platform | 11.0k | JavaScript | 06/15 |
| 75 | [brettwooldridge/HikariCP](https://github.com/brettwooldridge/HikariCP) | 光 HikariCP・A solid, high-performance, JDBC connection pool at last. | 11.0k | Java | 08/16 |
| 76 | [JeffLi1993/springboot-learning-example](https://github.com/JeffLi1993/springboot-learning-example) | spring boot 实践学习案例,是 spring boot 初学者及核心技术巩固的最佳实践。 | 10.9k | Java | 08/17 |
| 77 | [qiurunze123/miaosha](https://github.com/qiurunze123/miaosha) | ⭐⭐⭐⭐秒杀系统设计与实现.互联网工程师进阶与分析🙋🐓 | 10.8k | Java | 08/14 |
| 78 | [b3log/solo](https://github.com/b3log/solo) | 🎸 一款小而美的博客系统,专为程序员设计。 | 10.8k | Java | 09/01 |
| 79 | [taizilongxu/interview_python](https://github.com/taizilongxu/interview_python) | 关于Python的面试题 | 10.6k | Shell | 07/29 |
| 80 | [Curzibn/Luban](https://github.com/Curzibn/Luban) | Luban(鲁班)—Image compression with efficiency very close to WeChat Moments/可能是最接近微信朋友圈的图片压缩算法 | 10.6k | Java | 08/20 |
| 81 | [alibaba/ARouter](https://github.com/alibaba/ARouter) | 💪 A framework for assisting in the renovation of Android componentization (帮助 Android App 进行组件化改造的路由框架) | 10.6k | Java | 08/06 |
| 82 | [Bigkoo/Android-PickerView](https://github.com/Bigkoo/Android-PickerView) | This is a picker view for android , support linkage effect, timepicker and optionspicker.(时间选择器、省市区三级联动) | 10.6k | Java | 08/02 |
| 83 | [521xueweihan/git-tips](https://github.com/521xueweihan/git-tips) | :trollface:Git的奇技淫巧 | 10.5k | - | 07/30 |
| 84 | [apachecn/awesome-algorithm](https://github.com/apachecn/awesome-algorithm) | 项目永久冻结,迁移至新地址: | 10.5k | Python | 07/17 |
| 85 | [jumpserver/jumpserver](https://github.com/jumpserver/jumpserver) | Jumpserver是全球首款完全开源的堡垒机,是符合 4A 的专业运维审计系统。 | 10.3k | JavaScript | 08/31 |
| 86 | [youzan/vant-weapp](https://github.com/youzan/vant-weapp) | 轻量、可靠的小程序 UI 组件库 | 10.3k | JavaScript | 08/30 |
| 87 | [alibaba/canal](https://github.com/alibaba/canal) | 阿里巴巴 MySQL binlog 增量订阅&消费组件 | 10.2k | Java | 09/01 |
| 88 | [PKUanonym/REKCARC-TSC-UHT](https://github.com/PKUanonym/REKCARC-TSC-UHT) | 清华大学计算机系课程攻略 Guidance for courses in Department of Computer Science and Technology, Tsinghua University | 10.2k | HTML | 08/27 |
| 89 | [thx/RAP](https://github.com/thx/RAP) | Web接口管理工具,开源免费,接口自动化,MOCK数据自动生成,自动化测试,企业级管理。阿里妈妈MUX团队出品!阿里巴巴都在用!1000+公司的选择!RAP2已发布请移步至https://github.com/thx/rap2-delos | 10.1k | JavaScript | 06/29 |
| 90 | [hehonghui/android-tech-frontier](https://github.com/hehonghui/android-tech-frontier) | 【停止维护】一个定期翻译国外Android优质的技术、开源库、软件架构设计、测试等文章的开源项目 | 10.1k | - | 08/22 |
| 91 | [forezp/SpringCloudLearning](https://github.com/forezp/SpringCloudLearning) | 《史上最简单的Spring Cloud教程源码》 | 10.0k | Java | 06/26 |
| 92 | [qyuhen/book](https://github.com/qyuhen/book) | 学习笔记 | 10.0k | - | 04/26 |
| 93 | [facert/awesome-spider](https://github.com/facert/awesome-spider) | 爬虫集合 | 9.9k | - | 08/12 |
| 94 | [jaywcjlove/linux-command](https://github.com/jaywcjlove/linux-command) | Linux命令大全搜索工具,内容包含Linux命令手册、详解、学习、搜集。https://git.io/linux | 9.9k | HTML | 08/30 |
| 95 | [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 | 9.8k | - | 07/06 |
| 96 | [PaddlePaddle/Paddle](https://github.com/PaddlePaddle/Paddle) | PArallel Distributed Deep LEarning (『飞桨』核心框架,高性能单机、分布式训练和跨平台部署) | 9.8k | C++ | 09/01 |
| 97 | [shimohq/chinese-programmer-wrong-pronunciation](https://github.com/shimohq/chinese-programmer-wrong-pronunciation) | 中国程序员容易发音错误的单词 | 9.8k | - | 08/31 |
| 98 | [xuxueli/xxl-job](https://github.com/xuxueli/xxl-job) | A lightweight distributed task scheduling framework.(分布式任务调度平台XXL-JOB) | 9.8k | Java | 08/30 |
| 99 | [Tamsiree/RxTool](https://github.com/Tamsiree/RxTool) | Android开发人员不得不收集的工具类集合 \| 支付宝支付 \| 微信支付(统一下单) \| 微信分享 \| Zip4j压缩(支持分卷压缩与加密) \| 一键集成UCrop选择圆形头像 \| 一键集成二维码和条形码的扫描与生成 \| 常用Dialog \| WebView的封装可播放视频 \| 仿斗鱼滑动验证码 \| Toast封装 \| 震动 \| GPS \| Location定位 \| 图片缩放 \| Exif 图片添加地理位置信息(经纬度) \| 蛛网等级 \| 颜色选择器 \| ArcGis \| VTPK \| 编译运行一下说不定会找到惊喜 ... | 9.7k | Java | 08/01 |
| 100 | [didi/DoraemonKit](https://github.com/didi/DoraemonKit) | 简称 "DoKit" 。一款功能齐全的客户端( iOS 、Android )研发助手,你值得拥有。 | 9.7k | Java | 08/30 |
| 101 | [dyc87112/SpringBoot-Learning](https://github.com/dyc87112/SpringBoot-Learning) | Spring Boot基础教程,Spring Boot 2.x版本连载中!!! | 9.7k | - | 07/18 |
| 102 | [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~ | 9.7k | Python | 09/01 |
| 103 | [Yixiaohan/show-me-the-code](https://github.com/Yixiaohan/show-me-the-code) | Python 练习册,每天一个小程序 | 9.6k | - | 08/22 |
| 104 | [Tencent/omi](https://github.com/Tencent/omi) | Front End Cross-Frameworks Framework - 前端跨框架跨平台框架 | 9.6k | JavaScript | 09/01 |
| 105 | [Tim9Liu9/TimLiu-iOS](https://github.com/Tim9Liu9/TimLiu-iOS) | iOS开发常用三方库、插件、知名博客等等 | 9.6k | - | 08/29 |
| 106 | [lipangit/JiaoZiVideoPlayer](https://github.com/lipangit/JiaoZiVideoPlayer) | Android VideoPlayer MediaPlayer VideoView MediaView Float View And Fullscreen.高度自定义的开源安卓视频框架 | 9.6k | Java | 08/18 |
| 107 | [EastWorld/wechat-app-mall](https://github.com/EastWorld/wechat-app-mall) | 微信小程序商城,微信小程序微店 | 9.6k | JavaScript | 08/28 |
| 108 | [syhyz1990/baiduyun](https://github.com/syhyz1990/baiduyun) | 🖖油猴脚本 一个脚本搞定百度网盘下载 | 9.5k | JavaScript | 09/01 |
| 109 | [jeasonlzy/okhttp-OkGo](https://github.com/jeasonlzy/okhttp-OkGo) | OkGo - 3.0 震撼来袭,该库是基于 Http 协议,封装了 OkHttp 的网络请求框架,比 Retrofit 更简单易用,支持 RxJava,RxJava2,支持自定义缓存,支持批量断点下载管理和批量上传管理功能 | 9.5k | Java | 07/03 |
| 110 | [Kr1s77/awesome-python-login-model](https://github.com/Kr1s77/awesome-python-login-model) | 😮python模拟登陆一些大型网站,还有一些简单的爬虫,希望对你们有所帮助❤️,如果喜欢记得给个star哦🌟 | 9.4k | Python | 08/16 |
| 111 | [vnpy/vnpy](https://github.com/vnpy/vnpy) | 基于Python的开源量化交易平台开发框架 | 9.3k | C++ | 09/01 |
| 112 | [youfou/wxpy](https://github.com/youfou/wxpy) | 微信机器人 / 可能是最优雅的微信个人号 API ✨✨ | 9.3k | Python | 07/15 |
| 113 | [nndl/nndl.github.io](https://github.com/nndl/nndl.github.io) | 《神经网络与深度学习》 Neural Network and Deep Learning | 9.2k | HTML | 08/17 |
| 114 | [stephentian/33-js-concepts](https://github.com/stephentian/33-js-concepts) | :scroll: 每个 JavaScript 工程师都应懂的33个概念 @leonardomso | 9.2k | JavaScript | 07/24 |
| 115 | [wangzheng0822/algo](https://github.com/wangzheng0822/algo) | 数据结构和算法必知必会的50个代码实现 | 9.2k | Python | 08/28 |
| 116 | [lenve/vhr](https://github.com/lenve/vhr) | 微人事是一个前后端分离的人力资源管理系统,项目采用SpringBoot+Vue开发。 | 9.0k | Java | 08/29 |
| 117 | [chai2010/advanced-go-programming-book](https://github.com/chai2010/advanced-go-programming-book) | :books: 《Go语言高级编程》开源图书,涵盖CGO、Go汇编语言、RPC实现、Protobuf插件实现、Web框架实现、分布式系统等高阶主题(完稿) | 9.0k | Go | 08/28 |
| 118 | [Tencent/QMUI_Android](https://github.com/Tencent/QMUI_Android) | 提高 Android UI 开发效率的 UI 库 | 8.9k | Java | 08/23 |
| 119 | [youth5201314/banner](https://github.com/youth5201314/banner) | Android广告图片轮播控件,支持无限循环和多种主题,可以灵活设置轮播样式、动画、轮播和切换时间、位置、图片加载框架等! | 8.8k | Java | 08/29 |
| 120 | [linlinjava/litemall](https://github.com/linlinjava/litemall) | 又一个小商城。litemall = Spring Boot后端 + Vue管理员前端 + 微信小程序用户前端 + Vue用户移动端 | 8.8k | Java | 08/28 |
| 121 | [DIYgod/RSSHub](https://github.com/DIYgod/RSSHub) | 🍰 万物皆可 RSS | 8.7k | JavaScript | 09/01 |
| 122 | [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.7k | Java | 08/16 |
| 123 | [datawhalechina/pumpkin-book](https://github.com/datawhalechina/pumpkin-book) | 《机器学习》(西瓜书)公式推导解析,在线阅读地址:https://datawhalechina.github.io/pumpkin-book | 8.7k | - | 08/28 |
| 124 | [leisurelicht/wtfpython-cn](https://github.com/leisurelicht/wtfpython-cn) | wtfpython的中文翻译/施工结束/ 能力有限,欢迎帮我改进翻译 | 8.6k | Python | 08/13 |
| 125 | [wuyouzhuguli/SpringAll](https://github.com/wuyouzhuguli/SpringAll) | 循序渐进,学习Spring Boot、Spring Boot & Shiro、Spring Cloud、Spring Security & Spring Security OAuth2,博客Spring系列源码 | 8.6k | Java | 08/01 |
| 126 | [alibaba/Sentinel](https://github.com/alibaba/Sentinel) | A lightweight powerful flow control component enabling reliability and monitoring for microservices. (轻量级的流量控制、熔断降级 Java 库) | 8.5k | Java | 08/29 |
| 127 | [Jack-Cherish/python-spider](https://github.com/Jack-Cherish/python-spider) | :rainbow:Python3网络爬虫实战:VIP视频破解助手;GEETEST验证码破解;小说、动漫下载;手机APP爬取;财务报表入库;火车票抢票;抖音APP视频下载;百万英雄辅助;网易云音乐下载;B站视频和弹幕下载;京东晒单图下载 | 8.5k | Python | 03/04 |
| 128 | [bailicangdu/node-elm](https://github.com/bailicangdu/node-elm) | 基于 node.js + Mongodb 构建的后台系统 | 8.5k | JavaScript | 04/24 |
| 129 | [cnodejs/nodeclub](https://github.com/cnodejs/nodeclub) | :baby_chick:Nodeclub 是使用 Node.js 和 MongoDB 开发的社区系统 | 8.5k | JavaScript | 08/30 |
| 130 | [meolu/walle-web](https://github.com/meolu/walle-web) | walle - 瓦力 Devops开源项目代码部署平台 | 8.4k | Python | 08/21 |
| 131 | [alibaba/easyexcel](https://github.com/alibaba/easyexcel) | 快速、简单避免OOM的java处理Excel工具 | 8.4k | Java | 08/30 |
| 132 | [AlloyTeam/Mars](https://github.com/AlloyTeam/Mars) | 腾讯移动 Web 前端知识库 | 8.4k | - | 01/11 |
| 133 | [ruanyf/weekly](https://github.com/ruanyf/weekly) | 科技爱好者周刊,每周五发布 | 8.4k | - | 08/30 |
| 134 | [CarGuo/GSYGithubAppFlutter](https://github.com/CarGuo/GSYGithubAppFlutter) | 超完整的Flutter项目,功能丰富,适合学习和日常使用。GSYGithubApp系列的优势:我们目前已经拥有Flutter、Weex、ReactNative、kotlin 四个版本。 功能齐全,项目框架内技术涉及面广,完成度高,持续维护,配套文章,适合全面学习,对比参考。跨平台的开源Github客户端App,更好的体验,更丰富的功能,旨在更好的日常管理和维护个人Github,提供更好更方便的驾车体验Σ( ̄。 ̄ノ)ノ。同款Weex版本 : https://github.com/CarGuo/GSYGithubAppWeex 、同款React Native版本 : https://gith ... | 8.4k | Dart | 08/30 |
| 135 | [wangfupeng1988/wangEditor](https://github.com/wangfupeng1988/wangEditor) | wangEditor —— 轻量级web富文本框 | 8.3k | JavaScript | 07/30 |
| 136 | [peterq/pan-light](https://github.com/peterq/pan-light) | 百度网盘不限速客户端, golang + qt5, 跨平台图形界面 | 8.2k | Go | 08/31 |
| 137 | [JessYanCoding/AndroidAutoSize](https://github.com/JessYanCoding/AndroidAutoSize) | 🔥 A low-cost Android screen adaptation solution (今日头条屏幕适配方案终极版,一个极低成本的 Android 屏幕适配方案). | 8.1k | Java | 08/09 |
| 138 | [bilibili/DanmakuFlameMaster](https://github.com/bilibili/DanmakuFlameMaster) | Android开源弹幕引擎·烈焰弹幕使 ~ | 8.1k | Java | 04/29 |
| 139 | [fengdu78/deeplearning_ai_books](https://github.com/fengdu78/deeplearning_ai_books) | deeplearning.ai(吴恩达老师的深度学习课程笔记及资源) | 8.0k | HTML | 06/21 |
| 140 | [hollischuang/toBeTopJavaer](https://github.com/hollischuang/toBeTopJavaer) | To Be Top Javaer - Java工程师成神之路 | 8.0k | Java | 08/29 |
| 141 | [yujiangshui/A-Programmers-Guide-to-English](https://github.com/yujiangshui/A-Programmers-Guide-to-English) | 专为程序员编写的英语学习指南 v1.2。在线版本请点 -> | 8.0k | - | 08/30 |
| 142 | [ChenYilong/iOSInterviewQuestions](https://github.com/ChenYilong/iOSInterviewQuestions) | iOS interview questions;iOS面试题集锦(附答案)--学习qq群或 Telegram 群交流 https://github.com/ChenYilong/iOSBlog/issues/21 | 7.9k | Objective-C | 07/27 |
| 143 | [0voice/from_coder_to_expert](https://github.com/0voice/from_coder_to_expert) | 2019年最新总结,从程序员到CTO,从专业走向卓越,分享大牛企业内部pdf与PPT | 7.9k | - | 08/02 |
| 144 | [high-speed-downloader/high-speed-downloader](https://github.com/high-speed-downloader/high-speed-downloader) | 百度网盘不限速下载 支持Windows和Mac 2018年1月16日更新 | 7.9k | - | 06/14 |
| 145 | [pagehelper/Mybatis-PageHelper](https://github.com/pagehelper/Mybatis-PageHelper) | Mybatis通用分页插件 | 7.9k | Java | 06/05 |
| 146 | [soulmachine/leetcode](https://github.com/soulmachine/leetcode) | LeetCode题解,151道题完整版 | 7.8k | TeX | 01/10 |
| 147 | [halo-dev/halo](https://github.com/halo-dev/halo) | ✍ Halo 一款现代化的个人独立博客系统 | 7.8k | Java | 09/01 |
| 148 | [darknessomi/musicbox](https://github.com/darknessomi/musicbox) | 网易云音乐命令行版本 | 7.8k | Python | 09/01 |
| 149 | [sikaozhe1997/Xin-Yue](https://github.com/sikaozhe1997/Xin-Yue) | 岳昕:致北大师生与北大外国语学院的一封公开信 | 7.8k | HTML | 05/05 |
| 150 | [USTC-Resource/USTC-Course](https://github.com/USTC-Resource/USTC-Course) | :heart:中国科学技术大学课程资源 | 7.6k | Python | 07/02 |
| 151 | [bailicangdu/vue2-manage](https://github.com/bailicangdu/vue2-manage) | 基于 vue + element-ui 的后台管理系统 | 7.5k | Vue | 01/25 |
| 152 | [testerSunshine/12306](https://github.com/testerSunshine/12306) | 12306智能刷票,订票 | 7.3k | Python | 09/01 |
| 153 | [GcsSloop/AndroidNote](https://github.com/GcsSloop/AndroidNote) | 安卓学习笔记 | 7.3k | Java | 04/29 |
| 154 | [jhao104/proxy_pool](https://github.com/jhao104/proxy_pool) | Python爬虫代理IP池(proxy pool) | 7.2k | Python | 08/21 |
| 155 | [trazyn/ieaseMusic](https://github.com/trazyn/ieaseMusic) | 网易云音乐第三方 | 7.2k | JavaScript | 07/30 |
| 156 | [daniulive/SmarterStreaming](https://github.com/daniulive/SmarterStreaming) | 国内外为数不多致力于极致体验的超强全自研跨平台(windows/android/iOS)流媒体内核,通过模块化自由组合,支持实时RTMP推流、RTSP推流、RTMP播放器、RTSP播放器、录像、多路流媒体转发、音视频导播、动态视频合成、音频混音、直播互动、内置轻量级RTSP服务等,比快更快,业界真正靠谱的超低延迟直播SDK(1秒内,低延迟模式下200~400ms)。 | 7.2k | Java | 08/23 |
| 157 | [cnlh/nps](https://github.com/cnlh/nps) | 一款轻量级、功能强大的内网穿透代理服务器。支持tcp、udp流量转发,支持内网http代理、内网socks5代理,同时支持snappy压缩、站点保护、加密传输、多路复用、header修改等。支持web图形化管理,集成多用户模式。 | 7.2k | Go | 09/01 |
| 158 | [dt-fe/weekly](https://github.com/dt-fe/weekly) | 前端精读周刊 | 7.0k | - | 08/29 |
| 159 | [huihut/interview](https://github.com/huihut/interview) | 📚 C/C++ 技术面试基础知识总结,包括语言、程序库、数据结构、算法、系统、网络、链接装载库等知识及面试经验、招聘、内推等信息。 | 7.0k | C++ | 08/27 |
| 160 | [LuckSiege/PictureSelector](https://github.com/LuckSiege/PictureSelector) | Picture Selector Library for Android or 多图片选择器 | 7.0k | Java | 08/23 |
| 161 | [thinkgem/jeesite](https://github.com/thinkgem/jeesite) | JeeSite 是一个企业信息化开发基础平台,Java企业应用开源框架,Java EE(J2EE)快速开发框架,使用经典技术组合(Spring、Spring MVC、Apache Shiro、MyBatis、Bootstrap UI),包括核心模块如:组织机构、角色用户、权限授权、数据权限、内容管理、工作流等。 | 7.0k | JavaScript | 05/10 |
| 162 | [adobe-fonts/source-han-sans](https://github.com/adobe-fonts/source-han-sans) | Source Han Sans \| 思源黑体 \| 思源黑體 \| 思源黑體 香港 \| 源ノ角ゴシック \| 본고딕 | 7.0k | Scala | 04/09 |
| 163 | [top-think/think](https://github.com/top-think/think) | PHP Framework ThinkPHP——为API开发而设计的高性能PHP框架 | 7.0k | PHP | 08/27 |
| 164 | [zergtant/pytorch-handbook](https://github.com/zergtant/pytorch-handbook) | pytorch handbook是一本开源的书籍,目标是帮助那些希望和使用PyTorch进行深度学习开发和研究的朋友快速入门,其中包含的Pytorch教程全部通过测试保证可以成功运行 | 6.9k | Jupyter Notebook | 08/21 |
| 165 | [aalansehaiyang/technology-talk](https://github.com/aalansehaiyang/technology-talk) | 汇总java生态圈常用技术框架、开源中间件,系统架构、数据库、大公司架构案例、常用三方类库、项目管理、线上问题排查、个人成长、思考等知识 | 6.9k | - | 08/09 |
| 166 | [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 | 6.8k | Java | 08/23 |
| 167 | [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 |
| 168 | [litten/hexo-theme-yilia](https://github.com/litten/hexo-theme-yilia) | 一个简洁优雅的hexo主题 A simple and elegant theme for hexo. | 6.8k | JavaScript | 08/07 |
| 169 | [easychen/howto-make-more-money](https://github.com/easychen/howto-make-more-money) | 程序员如何优雅的挣零花钱 | 6.8k | - | 08/24 |
| 170 | [fengdu78/lihang-code](https://github.com/fengdu78/lihang-code) | 《统计学习方法》的代码实现 | 6.7k | Jupyter Notebook | 07/13 |
| 171 | [yygmind/blog](https://github.com/yygmind/blog) | 我是木易杨,公众号「高级前端进阶」作者,跟着我每周重点攻克一个前端面试重难点。接下来让我带你走进高级前端的世界,在进阶的路上,共勉! | 6.7k | - | 08/10 |
| 172 | [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.7k | Java | 03/21 |
| 173 | [CodeTips/BaiduNetdiskPlugin-macOS](https://github.com/CodeTips/BaiduNetdiskPlugin-macOS) | For macOS.百度网盘 破解SVIP、下载速度限制~ | 6.7k | Objective-C | 01/25 |
| 174 | [icindy/wxParse](https://github.com/icindy/wxParse) | wxParse-微信小程序富文本解析自定义组件,支持HTML及markdown解析 | 6.6k | JavaScript | 05/05 |
| 175 | [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.6k | Objective-C | 08/27 |
| 176 | [crazycodeboy/TakePhoto](https://github.com/crazycodeboy/TakePhoto) | 一款用于在Android设备上获取照片(拍照或从相册、文件中选择)、裁剪图片、压缩图片的开源工具库 | 6.6k | Java | 08/26 |
| 177 | [android-cn/android-open-project-analysis](https://github.com/android-cn/android-open-project-analysis) | Analysis implementation of android open source project, 微信公众号:codekk, 网站: | 6.5k | - | 04/07 |
| 178 | [inferjay/AndroidDevTools](https://github.com/inferjay/AndroidDevTools) | 收集整理Android开发所需的Android SDK、开发中用到的工具、Android开发教程、Android设计规范,免费的设计素材等。 | 6.5k | - | 08/22 |
| 179 | [hs-web/hsweb-framework](https://github.com/hs-web/hsweb-framework) | hsweb (haʊs wɛb) 是一个用于快速搭建企业后台管理系统的基础项目,集成一揽子便捷功能如:便捷的通用增删改查,强大的权限管理,动态多数据源,动态表单,在线数据库维护等. 基于 spring-boot,mybaits. | 6.5k | Java | 08/29 |
| 180 | [chokcoco/iCSS](https://github.com/chokcoco/iCSS) | 不止于 CSS | 6.4k | - | 08/28 |
| 181 | [open-power-workgroup/Hospital](https://github.com/open-power-workgroup/Hospital) | OpenPower工作组收集汇总的医院开放数据 | 6.4k | HTML | 06/07 |
| 182 | [opendigg/awesome-github-wechat-weapp](https://github.com/opendigg/awesome-github-wechat-weapp) | 微信小程序开源项目库汇总 | 6.4k | - | 06/15 |
| 183 | [bailicangdu/react-pxq](https://github.com/bailicangdu/react-pxq) | 一个 react + redux 的完整项目 和 个人总结 | 6.4k | JavaScript | 08/23 |
| 184 | [bilibili/kratos](https://github.com/bilibili/kratos) | Kratos是bilibili开源的一套Go微服务框架,包含大量微服务相关框架及工具。 | 6.3k | Go | 08/30 |
| 185 | [Urinx/WeixinBot](https://github.com/Urinx/WeixinBot) | 网页版微信API,包含终端版微信及微信机器人 | 6.3k | Python | 06/25 |
| 186 | [judasn/Linux-Tutorial](https://github.com/judasn/Linux-Tutorial) | 《Java 程序员眼中的 Linux》 | 6.3k | Shell | 08/19 |
| 187 | [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.2k | Go | 08/17 |
| 188 | [sylnsfar/qrcode](https://github.com/sylnsfar/qrcode) | artistic QR Code in Python (Animated GIF qr code)- Python 艺术二维码生成器 (GIF动态二维码、图片二维码) | 6.2k | Python | 01/22 |
| 189 | [mzlogin/awesome-adb](https://github.com/mzlogin/awesome-adb) | :lollipop: ADB Usage Complete / ADB 用法大全 | 6.2k | - | 08/20 |
| 190 | [didi/chameleon](https://github.com/didi/chameleon) | 🦎 一套代码运行多端,一端所见即多端所见 | 6.2k | JavaScript | 08/29 |
| 191 | [xirong/my-git](https://github.com/xirong/my-git) | Individual collecting material of learning git(有关 git 的学习资料) | 6.1k | - | 07/30 |
| 192 | [EtherDream/jsproxy](https://github.com/EtherDream/jsproxy) | 一个基于浏览器端 JS 实现的在线代理 | 6.1k | Shell | 08/17 |
| 193 | [sparanoid/chinese-copywriting-guidelines](https://github.com/sparanoid/chinese-copywriting-guidelines) | Chinese copywriting guidelines for better written communication/中文文案排版指北 | 6.1k | CoffeeScript | 08/24 |
| 194 | [pwxcoo/chinese-xinhua](https://github.com/pwxcoo/chinese-xinhua) | :orange_book: 中华新华字典数据库。包括歇后语,成语,词语,汉字。 | 6.1k | Python | 08/11 |
| 195 | [hoodiearon/w3-goto-world](https://github.com/hoodiearon/w3-goto-world) | 🍅冲出你的窗口,free ss/ssr/vmess分享、IPFS、暗网及蹭网教程、Git镜像等其他资源存储库 | 6.0k | C# | 09/01 |
| 196 | [programthink/books](https://github.com/programthink/books) | 【编程随想】收藏的电子书清单(多个学科,含下载链接) | 6.0k | - | 08/25 |
| 197 | [sfyc23/EverydayWechat](https://github.com/sfyc23/EverydayWechat) | 微信助手:1.每日定时给好友发送定制消息。2.机器人自动回复好友。3.群助手功能(例如:查询垃圾分类、天气、日历、电影实时票房等) | 5.9k | Python | 08/30 |
| 198 | [wangshub/Douyin-Bot](https://github.com/wangshub/Douyin-Bot) | 😍 Python 抖音机器人,论如何在抖音上找到漂亮小姐姐? | 5.9k | Python | 07/02 |
| 199 | [jobbole/awesome-javascript-cn](https://github.com/jobbole/awesome-javascript-cn) | JavaScript 资源大全中文版,内容包括:包管理器、加载器、测试框架、运行器、QA、MVC框架和库、模板引擎等 | 5.9k | - | 08/27 |
| 200 | [helloqingfeng/Awsome-Front-End-learning-resource](https://github.com/helloqingfeng/Awsome-Front-End-learning-resource) | :octocat:GitHub最全的前端资源汇总仓库(包括前端学习、开发资源、求职面试等) | 5.9k | PHP | 05/05 |
⬆ [回到目录](#目录)
<br/>
## Java
| # | Repository | Description | Stars | Language | Updated |
| ---- | ------------------------------------------------------------ | ------------------------------------------------------------ | ----- | -------- | ------- |
| 1 | [Snailclimb/JavaGuide](https://github.com/Snailclimb/JavaGuide) | 【Java学习+面试指南】 一份涵盖大部分Java程序员所需要掌握的核心知识。 | 53.1k | Java | 08/30 |
| 2 | [MisterBooo/LeetCodeAnimation](https://github.com/MisterBooo/LeetCodeAnimation) | Demonstrate all the questions on LeetCode in the form of animation.(用动画的形式呈现解LeetCode题目的思路) | 39.5k | Java | 08/22 |
| 3 | [doocs/advanced-java](https://github.com/doocs/advanced-java) | 😮 互联网 Java 工程师进阶知识完全扫盲:涵盖高并发、分布式、高可用、微服务等领域知识,后端同学必看,前端同学也可学习 | 28.9k | Java | 09/01 |
| 4 | [proxyee-down-org/proxyee-down](https://github.com/proxyee-down-org/proxyee-down) | http下载工具,基于http代理,支持多连接分块下载 | 24.9k | Java | 06/17 |
| 5 | [macrozheng/mall](https://github.com/macrozheng/mall) | mall项目是一套电商系统,包括前台商城系统及后台管理系统,基于SpringBoot+MyBatis实现。 前台商城系统包含首页门户、商品推荐、商品搜索、商品展示、购物车、订单流程、会员中心、客户服务、帮助中心等模块。 后台管理系统包含商品管理、订单管理、会员管理、促销管理、运营管理、内容管理、统计报表、财务管理、权限管理、设置等模块。 | 20.9k | Java | 08/31 |
| 6 | [scwang90/SmartRefreshLayout](https://github.com/scwang90/SmartRefreshLayout) | 🔥下拉刷新、上拉加载、二级刷新、淘宝二楼、RefreshLayout、OverScroll,Android智能下拉刷新框架,支持越界回弹、越界拖动,具有极强的扩展性,集成了几十种炫酷的Header和 Footer。 | 18.6k | Java | 08/20 |
| 7 | [alibaba/druid](https://github.com/alibaba/druid) | 阿里巴巴数据库事业部出品,为监控而生的数据库连接池。阿里云Data Lake Analytics(https://www.aliyun.com/product/datalakeanalytics )、DRDS、TDDL 连接池powered by Druid | 18.3k | Java | 08/30 |
| 8 | [ctripcorp/apollo](https://github.com/ctripcorp/apollo) | Apollo(阿波罗)是携程框架部门研发的分布式配置中心,能够集中化管理应用不同环境、不同集群的配置,配置修改后能够实时推送到应用端,并且具备规范的权限、流程治理等特性,适用于微服务配置管理场景。 | 16.7k | Java | 09/01 |
| 9 | [alibaba/arthas](https://github.com/alibaba/arthas) | Alibaba Java Diagnostic Tool Arthas/Alibaba Java诊断利器Arthas | 16.1k | Java | 08/31 |
| 10 | [hankcs/HanLP](https://github.com/hankcs/HanLP) | 自然语言处理 中文分词 词性标注 命名实体识别 依存句法分析 新词发现 关键词短语提取 自动摘要 文本分类聚类 拼音简繁 | 14.6k | Java | 08/08 |
| 11 | [shuzheng/zheng](https://github.com/shuzheng/zheng) | 基于Spring+SpringMVC+Mybatis分布式敏捷开发系统架构,提供整套公共微服务服务模块:集中权限管理(单点登录)、内容管理、支付中心、用户管理(支持第三方登录)、微信平台、存储系统、配置中心、日志分析、任务和通知等,支持服务治理、监控和追踪,努力为中小型企业打造全方位J2EE企业级开发解决方案。 | 14.2k | Java | 09/01 |
| 12 | [b3log/symphony](https://github.com/b3log/symphony) | 🎶 一款用 Java 实现的现代化社区(论坛/BBS/社交网络/博客)平台。 | 12.5k | Java | 08/23 |
| 13 | [CarGuo/GSYVideoPlayer](https://github.com/CarGuo/GSYVideoPlayer) | 视频播放器(IJKplayer、ExoPlayer、MediaPlayer),HTTPS,支持弹幕,支持滤镜、水印、gif截图,片头广告、中间广告,多个同时播放,支持基本的拖动,声音、亮度调节,支持边播边缓存,支持视频自带rotation的旋转(90,270之类),重力旋转与手动旋转的同步支持,支持列表播放 ,列表全屏动画,视频加载速度,列表小窗口支持拖动,动画效果,调整比例,多分辨率切换,支持切换播放器,进度条小窗口预览,列表切换详情页面无缝播放,rtsp、concat、mpeg。 | 11.6k | Java | 09/01 |
| 14 | [dianping/cat](https://github.com/dianping/cat) | CAT 作为服务端项目基础组件,提供了 Java, C/C++, Node.js, Python, Go 等多语言客户端,已经在美团点评的基础架构中间件框架(MVC框架,RPC框架,数据库框架,缓存框架等,消息队列,配置系统等)深度集成,为美团点评各业务线提供系统丰富的性能指标、健康状况、实时告警等。 | 11.2k | Java | 08/27 |
| 15 | [JeffLi1993/springboot-learning-example](https://github.com/JeffLi1993/springboot-learning-example) | spring boot 实践学习案例,是 spring boot 初学者及核心技术巩固的最佳实践。 | 10.9k | Java | 08/17 |
| 16 | [qiurunze123/miaosha](https://github.com/qiurunze123/miaosha) | ⭐⭐⭐⭐秒杀系统设计与实现.互联网工程师进阶与分析🙋🐓 | 10.8k | Java | 08/14 |
| 17 | [b3log/solo](https://github.com/b3log/solo) | 🎸 一款小而美的博客系统,专为程序员设计。 | 10.8k | Java | 09/01 |
| 18 | [Curzibn/Luban](https://github.com/Curzibn/Luban) | Luban(鲁班)—Image compression with efficiency very close to WeChat Moments/可能是最接近微信朋友圈的图片压缩算法 | 10.6k | Java | 08/20 |
| 19 | [alibaba/ARouter](https://github.com/alibaba/ARouter) | 💪 A framework for assisting in the renovation of Android componentization (帮助 Android App 进行组件化改造的路由框架) | 10.6k | Java | 08/06 |
| 20 | [alibaba/canal](https://github.com/alibaba/canal) | 阿里巴巴 MySQL binlog 增量订阅&消费组件 | 10.2k | Java | 09/01 |
| 21 | [forezp/SpringCloudLearning](https://github.com/forezp/SpringCloudLearning) | 《史上最简单的Spring Cloud教程源码》 | 10.0k | Java | 06/26 |
| 22 | [xuxueli/xxl-job](https://github.com/xuxueli/xxl-job) | A lightweight distributed task scheduling framework.(分布式任务调度平台XXL-JOB) | 9.8k | Java | 08/30 |
| 23 | [Tamsiree/RxTool](https://github.com/Tamsiree/RxTool) | Android开发人员不得不收集的工具类集合 \| 支付宝支付 \| 微信支付(统一下单) \| 微信分享 \| Zip4j压缩(支持分卷压缩与加密) \| 一键集成UCrop选择圆形头像 \| 一键集成二维码和条形码的扫描与生成 \| 常用Dialog \| WebView的封装可播放视频 \| 仿斗鱼滑动验证码 \| Toast封装 \| 震动 \| GPS \| Location定位 \| 图片缩放 \| Exif 图片添加地理位置信息(经纬度) \| 蛛网等级 \| 颜色选择器 \| ArcGis \| VTPK \| 编译运行一下说不定会找到惊喜 | 9.7k | Java | 08/01 |
| 24 | [didi/DoraemonKit](https://github.com/didi/DoraemonKit) | 简称 "DoKit" 。一款功能齐全的客户端( iOS 、Android )研发助手,你值得拥有。 | 9.7k | Java | 08/30 |
| 25 | [lipangit/JiaoZiVideoPlayer](https://github.com/lipangit/JiaoZiVideoPlayer) | Android VideoPlayer MediaPlayer VideoView MediaView Float View And Fullscreen.高度自定义的开源安卓视频框架 | 9.6k | Java | 08/18 |
| 26 | [jeasonlzy/okhttp-OkGo](https://github.com/jeasonlzy/okhttp-OkGo) | OkGo - 3.0 震撼来袭,该库是基于 Http 协议,封装了 OkHttp 的网络请求框架,比 Retrofit 更简单易用,支持 RxJava,RxJava2,支持自定义缓存,支持批量断点下载管理和批量上传管理功能 | 9.5k | Java | 07/03 |
| 27 | [lenve/vhr](https://github.com/lenve/vhr) | 微人事是一个前后端分离的人力资源管理系统,项目采用SpringBoot+Vue开发。 | 9.0k | Java | 08/29 |
| 28 | [Tencent/QMUI_Android](https://github.com/Tencent/QMUI_Android) | 提高 Android UI 开发效率的 UI 库 | 8.9k | Java | 08/23 |
| 29 | [youth5201314/banner](https://github.com/youth5201314/banner) | Android广告图片轮播控件,支持无限循环和多种主题,可以灵活设置轮播样式、动画、轮播和切换时间、位置、图片加载框架等! | 8.8k | Java | 08/29 |
| 30 | [linlinjava/litemall](https://github.com/linlinjava/litemall) | 又一个小商城。litemall = Spring Boot后端 + Vue管理员前端 + 微信小程序用户前端 + Vue用户移动端 | 8.8k | Java | 08/28 |
| 31 | [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.7k | Java | 08/16 |
| 32 | [wuyouzhuguli/SpringAll](https://github.com/wuyouzhuguli/SpringAll) | 循序渐进,学习Spring Boot、Spring Boot & Shiro、Spring Cloud、Spring Security & Spring Security OAuth2,博客Spring系列源码 | 8.6k | Java | 08/01 |
| 33 | [alibaba/Sentinel](https://github.com/alibaba/Sentinel) | A lightweight powerful flow control component enabling reliability and monitoring for microservices. (轻量级的流量控制、熔断降级 Java 库) | 8.5k | Java | 08/29 |
| 34 | [alibaba/easyexcel](https://github.com/alibaba/easyexcel) | 快速、简单避免OOM的java处理Excel工具 | 8.4k | Java | 08/30 |
| 35 | [JessYanCoding/AndroidAutoSize](https://github.com/JessYanCoding/AndroidAutoSize) | 🔥 A low-cost Android screen adaptation solution (今日头条屏幕适配方案终极版,一个极低成本的 Android 屏幕适配方案). | 8.1k | Java | 08/09 |
| 36 | [bilibili/DanmakuFlameMaster](https://github.com/bilibili/DanmakuFlameMaster) | Android开源弹幕引擎·烈焰弹幕使 ~ | 8.1k | Java | 04/29 |
| 37 | [hollischuang/toBeTopJavaer](https://github.com/hollischuang/toBeTopJavaer) | To Be Top Javaer - Java工程师成神之路 | 8.0k | Java | 08/29 |
| 38 | [pagehelper/Mybatis-PageHelper](https://github.com/pagehelper/Mybatis-PageHelper) | Mybatis通用分页插件 | 7.9k | Java | 06/05 |
| 39 | [halo-dev/halo](https://github.com/halo-dev/halo) | ✍ Halo 一款现代化的个人独立博客系统 | 7.8k | Java | 09/01 |
| 40 | [GcsSloop/AndroidNote](https://github.com/GcsSloop/AndroidNote) | 安卓学习笔记 | 7.3k | Java | 04/29 |
| 41 | [daniulive/SmarterStreaming](https://github.com/daniulive/SmarterStreaming) | 国内外为数不多致力于极致体验的超强全自研跨平台(windows/android/iOS)流媒体内核,通过模块化自由组合,支持实时RTMP推流、RTSP推流、RTMP播放器、RTSP播放器、录像、多路流媒体转发、音视频导播、动态视频合成、音频混音、直播互动、内置轻量级RTSP服务等,比快更快,业界真正靠谱的超低延迟直播SDK(1秒内,低延迟模式下200~400ms)。 | 7.2k | Java | 08/23 |
| 42 | [LuckSiege/PictureSelector](https://github.com/LuckSiege/PictureSelector) | Picture Selector Library for Android or 多图片选择器 | 7.0k | Java | 08/23 |
| 43 | [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 | 6.8k | Java | 08/23 |
| 44 | [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 |
| 45 | [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.7k | Java | 03/21 |
| 46 | [crazycodeboy/TakePhoto](https://github.com/crazycodeboy/TakePhoto) | 一款用于在Android设备上获取照片(拍照或从相册、文件中选择)、裁剪图片、压缩图片的开源工具库 | 6.6k | Java | 08/26 |
| 47 | [hs-web/hsweb-framework](https://github.com/hs-web/hsweb-framework) | hsweb (haʊs wɛb) 是一个用于快速搭建企业后台管理系统的基础项目,集成一揽子便捷功能如:便捷的通用增删改查,强大的权限管理,动态多数据源,动态表单,在线数据库维护等. 基于 spring-boot,mybaits. | 6.5k | Java | 08/29 |
| 48 | [zhangdaiscott/jeecg-boot](https://github.com/zhangdaiscott/jeecg-boot) | 一款基于代码生成器的JAVA快速开发平台!采用最新技术,前后端分离架构:SpringBoot 2.x,Ant Design&Vue,Mybatis,Shiro,JWT。强大的代码生成器让前后端代码一键生成,无需写任何代码,绝对是全栈开发福音!! JeecgBoot的宗旨是提高UI能力的同时,降低前后分离的开发成本,JeecgBoot还独创在线开发模式,No代码概念,一系列在线智能开发:在线配置表单、在线配置报表、在线设计流程等等。 | 5.5k | Java | 08/28 |
| 49 | [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.4k | Java | 08/14 |
| 50 | [frank-lam/fullstack-tutorial](https://github.com/frank-lam/fullstack-tutorial) | 🚀 fullstack tutorial 2019,后台技术栈/架构师之路/全栈开发社区,春招/秋招/校招/面试 | 5.4k | Java | 08/13 |
| 51 | [smuyyh/BookReader](https://github.com/smuyyh/BookReader) | :closed_book: "任阅" 网络小说阅读器,3D翻页效果、txt/pdf/epub书籍阅读、Wifi传书~ | 5.3k | Java | 06/25 |
| 52 | [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 | 08/25 |
| 53 | [lihengming/spring-boot-api-project-seed](https://github.com/lihengming/spring-boot-api-project-seed) | :seedling::rocket:一个基于Spring Boot & MyBatis的种子项目,用于快速构建中小型API、RESTful API项目~ | 5.2k | Java | 04/22 |
| 54 | [hongyangAndroid/FlowLayout](https://github.com/hongyangAndroid/FlowLayout) | Android流式布局,支持单选、多选等,适合用于产品标签等。 | 5.2k | Java | 05/22 |
| 55 | [NLPchina/ansj_seg](https://github.com/NLPchina/ansj_seg) | ansj分词.ict的真正java实现.分词效果速度都超过开源版的ict. 中文分词,人名识别,词性标注,用户自定义词典 | 5.1k | Java | 07/16 |
| 56 | [paascloud/paascloud-master](https://github.com/paascloud/paascloud-master) | spring cloud + vue + oAuth2.0全家桶实战,前后端分离模拟商城,完整的购物流程、后端运营平台,可以实现快速搭建企业级微服务项目。支持微信登录等三方登录。 | 5.0k | Java | 08/27 |
| 57 | [knightliao/disconf](https://github.com/knightliao/disconf) | Distributed Configuration Management Platform(分布式配置管理平台) | 4.9k | Java | 01/29 |
| 58 | [alibaba/otter](https://github.com/alibaba/otter) | 阿里巴巴分布式数据库同步系统(解决中美异地机房) | 4.9k | Java | 08/28 |
| 59 | [Meituan-Dianping/walle](https://github.com/Meituan-Dianping/walle) | Android Signature V2 Scheme签名下的新一代渠道包打包神器 | 4.8k | Java | 06/28 |
| 60 | [jpush/aurora-imui](https://github.com/jpush/aurora-imui) | General IM UI components. Android/iOS/RectNative ready. 通用 IM 聊天 UI 组件,已经同时支持 Android/iOS/RN。 | 4.7k | Java | 08/27 |
| 61 | [gzu-liyujiang/AndroidPicker](https://github.com/gzu-liyujiang/AndroidPicker) | 安卓选择器类库,包括日期选择器、时间选择器、单项选择器、双项选择器、城市地址选择器、车牌号选择器、数字选择器、星座选择器、生肖选择器、颜色选择器、文件选择器、目录选择器等……WheelPicker/DateTimePicker/DatePicker/TimePicker/SinglePicker/NumberPicker/DoublePicker/LinkagePicker/AddressPicker/CalendarPicker/ColorPicker/FilePicker etc. | 4.7k | Java | 08/07 |
| 62 | [xkcoding/spring-boot-demo](https://github.com/xkcoding/spring-boot-demo) | spring boot demo 是一个用来深度学习并实战 spring boot 的项目,目前总共包含 58 个集成demo,已经完成 48 个。 该项目已成功集成 actuator(监控)、admin(可视化监控)、logback(日志)、aopLog(通过AOP记录web请求日志)、统一异常处理(json级别和页面级别)、freemarker(模板引擎)、thymeleaf(模板引擎)、Beetl(模板引擎)、Enjoy(模板引擎)、JdbcTemplate(通用JDBC操作数据库)、JPA(强大的ORM框架)、mybatis(强大的ORM框架)、通用Mapper(快速操作Mybati ... | 4.7k | Java | 08/30 |
| 63 | [dyc87112/SpringCloud-Learning](https://github.com/dyc87112/SpringCloud-Learning) | Spring Cloud基础教程,持续连载更新中 | 4.7k | Java | 08/19 |
| 64 | [liyifeng1994/ssm](https://github.com/liyifeng1994/ssm) | 手把手教你整合最优雅SSM框架:SpringMVC + Spring + MyBatis | 4.5k | Java | 04/17 |
| 65 | [sohutv/cachecloud](https://github.com/sohutv/cachecloud) | 搜狐视频(sohu tv)Redis私有云平台 | 4.5k | Java | 04/24 |
| 66 | [zouzg/mybatis-generator-gui](https://github.com/zouzg/mybatis-generator-gui) | mybatis-generator界面工具,让你生成代码更简单更快捷 | 4.4k | Java | 08/30 |
| 67 | [ityouknow/spring-cloud-examples](https://github.com/ityouknow/spring-cloud-examples) | Spring Cloud 学习案例,服务发现、服务治理、链路追踪、服务监控等 | 4.3k | Java | 05/19 |
| 68 | [yipianfengye/android-zxingLibrary](https://github.com/yipianfengye/android-zxingLibrary) | 几行代码快速集成二维码扫描功能 | 4.3k | Java | 08/20 |
| 69 | [zhanghai/Douya](https://github.com/zhanghai/Douya) | 开源的 Material Design 豆瓣客户端(A Material Design app for douban.com) | 4.3k | Java | 09/01 |
| 70 | [yanzhenjie/SwipeRecyclerView](https://github.com/yanzhenjie/SwipeRecyclerView) | :melon: RecyclerView侧滑菜单,Item拖拽,滑动删除Item,自动加载更多,HeaderView,FooterView,Item分组黏贴。 | 4.2k | Java | 04/12 |
| 71 | [ximsfei/Android-skin-support](https://github.com/ximsfei/Android-skin-support) | Android-skin-support is an easy dynamic skin framework to use for Android, Only one line of code to integrate it.一款用心去做的Android 换肤框架, 极低的学习成本, 极好的用户体验. "一行"代码就可以实现换肤, 你值得拥有!!! | 4.2k | Java | 09/01 |
| 72 | [TommyLemon/Android-ZBLibrary](https://github.com/TommyLemon/Android-ZBLibrary) | 🔥Android MVP快速开发框架,做国内 「Demo最全面」「注释最详细」「使用最简单」「代码最严谨」的Android开源UI框架 | 4.2k | Java | 08/30 |
| 73 | [Exrick/xmall](https://github.com/Exrick/xmall) | 基于SOA架构的分布式电商购物商城 前后端分离 前台商城:Vue全家桶 后台管理系统:Dubbo/SSM/Elasticsearch/Redis/MySQL/ActiveMQ/Shiro/Zookeeper等 | 4.1k | Java | 05/23 |
| 74 | [changmingxie/tcc-transaction](https://github.com/changmingxie/tcc-transaction) | tcc-transaction是TCC型事务java实现 | 4.0k | Java | 08/21 |
| 75 | [pili-engineering/PLDroidPlayer](https://github.com/pili-engineering/PLDroidPlayer) | PLDroidPlayer 是七牛推出的一款免费的适用于 Android 平台的播放器 SDK,采用全自研的跨平台播放内核,拥有丰富的功能和优异的性能,可高度定制化和二次开发。 | 4.0k | Java | 06/12 |
| 76 | [goldze/MVVMHabit](https://github.com/goldze/MVVMHabit) | 👕基于谷歌最新AAC架构,MVVM设计模式的一套快速开发库,整合Okhttp+RxJava+Retrofit+Glide等主流模块,满足日常开发需求。使用该框架可以快速开发一个高质量、易维护的Android应用。 | 3.9k | Java | 08/23 |
| 77 | [SplashCodes/JAViewer](https://github.com/SplashCodes/JAViewer) | 更优雅的驾车体验 | 3.9k | Java | 07/27 |
| 78 | [youlookwhat/CloudReader](https://github.com/youlookwhat/CloudReader) | 云阅:一款基于网易云音乐UI,使用玩安卓、Gank.Io及时光网api开发的符合Google Material Design的Android客户端。项目采取的是MVVM-DataBinding架构开发,主要包括:玩安卓区、干货区和电影区三个子模块。 | 3.9k | Java | 08/31 |
| 79 | [jeasonlzy/ImagePicker](https://github.com/jeasonlzy/ImagePicker) | 完全仿微信的图片选择,并且提供了多种图片加载接口,选择图片后可以旋转,可以裁剪成矩形或圆形,可以配置各种其他的参数 | 3.9k | Java | 02/21 |
| 80 | [wildfirechat/server](https://github.com/wildfirechat/server) | 即时通讯(IM)系统 | 3.8k | Java | 09/01 |
| 81 | [DingMouRen/LayoutManagerGroup](https://github.com/DingMouRen/LayoutManagerGroup) | :point_right: Customize the LayoutManager of RecyclerView(自定义LayoutManager) | 3.8k | Java | 07/08 |
| 82 | [seaswalker/spring-analysis](https://github.com/seaswalker/spring-analysis) | Spring源码阅读 | 3.8k | Java | 02/19 |
| 83 | [crossoverJie/cim](https://github.com/crossoverJie/cim) | 📲cim(cross IM) 适用于开发者的分布式即时通讯系统 | 3.7k | Java | 08/31 |
| 84 | [justauth/JustAuth](https://github.com/justauth/JustAuth) | :100: 史上最全的整合第三方登录的开源库。目前已支持Github、Gitee、微博、钉钉、百度、Coding、腾讯云开发者平台、OSChina、支付宝、QQ、微信、淘宝、Google、Facebook、抖音、领英、小米、微软、今日头条、Teambition、StackOverflow、Pinterest、人人、华为和企业微信等第三方平台的授权登录。 Login, so easy! | 3.7k | Java | 08/30 |
| 85 | [huangyanbin/smartTable](https://github.com/huangyanbin/smartTable) | 一款android自动生成表格框架---An Android automatically generated table framework | 3.6k | Java | 02/13 |
| 86 | [bingoogolapple/BGABanner-Android](https://github.com/bingoogolapple/BGABanner-Android) | 引导界面滑动导航 + 大于等于1页时无限轮播 + 各种切换动画轮播效果 | 3.5k | Java | 04/13 |
| 87 | [wuyouzhuguli/FEBS-Shiro](https://github.com/wuyouzhuguli/FEBS-Shiro) | Spring Boot 2.1.3,Shiro1.4.0 & Layui 2.5.4 权限管理系统。预览地址:http://49.234.20.223:8080/login | 3.3k | Java | 08/29 |
| 88 | [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 |
| 89 | [razerdp/BasePopup](https://github.com/razerdp/BasePopup) | 亲,还在为PopupWindow烦恼吗?不如试试BasePopup,你会爱上他的~ | 3.3k | Java | 08/20 |
| 90 | [Tencent/Shadow](https://github.com/Tencent/Shadow) | 零反射全动态Android插件框架 | 3.3k | Java | 08/29 |
| 91 | [ZXZxin/ZXBlog](https://github.com/ZXZxin/ZXBlog) | 记录各种学习笔记(算法、Java、数据库、并发......) | 3.2k | Java | 09/01 |
| 92 | [gedoor/MyBookshelf](https://github.com/gedoor/MyBookshelf) | 阅读是一款可以自定义来源阅读网络内容的工具,为广大网络文学爱好者提供一种方便、快捷舒适的试读体验。 | 3.2k | Java | 08/30 |
| 93 | [ffay/lanproxy](https://github.com/ffay/lanproxy) | lanproxy是一个将局域网个人电脑、服务器代理到公网的内网穿透工具,目前仅支持tcp流量转发,可支持任何tcp上层协议(访问内网网站、本地支付接口调试、ssh访问、远程桌面...)。目前市面上提供类似服务的有花生壳、TeamView、GoToMyCloud等等,但要使用第三方的公网服务器就必须为第三方付费,并且这些服务都有各种各样的限制,此外,由于数据包会流经第三方,因此对数据安全也是一大隐患。 | 3.2k | Java | 07/24 |
| 94 | [brianway/java-learning](https://github.com/brianway/java-learning) | 旨在打造在线最佳的 Java 学习笔记,含博客讲解和源码实例,包括 Java SE 和 Java Web | 3.1k | Java | 06/25 |
| 95 | [sunfusheng/MarqueeView](https://github.com/sunfusheng/MarqueeView) | 俗名:可垂直跑、可水平跑的跑马灯;学名:可垂直翻、可水平翻的翻页公告 | 3.1k | Java | 04/29 |
| 96 | [zzhoujay/RichText](https://github.com/zzhoujay/RichText) | Android平台下的富文本解析器,支持Html和Markdown | 3.1k | Java | 05/14 |
| 97 | [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.1k | Java | 08/29 |
| 98 | [luckybilly/CC](https://github.com/luckybilly/CC) | 业界首个支持渐进式组件化改造的Android组件化开源框架,支持跨进程调用。Componentize your android project gradually. | 3.0k | Java | 05/03 |
| 99 | [techGay/v9porn](https://github.com/techGay/v9porn) | 9*Porn Android 客户端,突破游客每天观看10次视频的限制,还可以下载视频 | 3.0k | Java | 08/24 |
| 100 | [yhaolpz/FloatWindow](https://github.com/yhaolpz/FloatWindow) | Andorid 任意界面悬浮窗,实现悬浮窗如此简单 | 3.0k | Java | 08/30 |
| 101 | [ming1016/study](https://github.com/ming1016/study) | 学习记录 | 3.0k | Java | 08/02 |
| 102 | [hustcc/JS-Sorting-Algorithm](https://github.com/hustcc/JS-Sorting-Algorithm) | 一本关于排序算法的 GitBook 在线书籍 《十大经典排序算法》,多语言实现。 | 3.0k | Java | 08/22 |
| 103 | [zwwill/yanxuan-weex-demo](https://github.com/zwwill/yanxuan-weex-demo) | :art: High quality pure Weex demo / 网易严选 App 感受 Weex 开发 | 3.0k | Java | 02/14 |
| 104 | [binIoter/GuideView](https://github.com/binIoter/GuideView) | 最最轻量级的新手引导库,能够快速为任何一个View创建一个遮罩层,支持单个页面,多个引导串联展示,支持为高亮区域设置不同的图形,支持引导动画,方便扩展,良好支持fragment | 3.0k | Java | 08/03 |
| 105 | [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 |
| 106 | [guolindev/giffun](https://github.com/guolindev/giffun) | 一款开源的GIF在线分享App,乐趣就要和世界分享。 | 2.9k | Java | 03/14 |
| 107 | [roncoo/roncoo-pay](https://github.com/roncoo/roncoo-pay) | 龙果支付系统(roncoo-pay)是国内首款开源的互联网支付系统,拥有独立的账户体系、用户体系、支付接入体系、支付交易体系、对账清结算体系。目标是打造一款集成主流支付方式且轻量易用的支付收款系统,满足互联网业务系统打通支付通道实现支付收款和业务资金管理等功能。 | 2.9k | Java | 06/22 |
| 108 | [GitLqr/LQRWeChat](https://github.com/GitLqr/LQRWeChat) | 本项目仿最新版微信6.5.7(除图片选择器外),基于融云SDK,使用目前较火的 Rxjava+Retrofit+MVP+Glide 技术开发。相比上个版本,加入发送位置消息,红包消息等功能。 | 2.9k | Java | 03/07 |
| 109 | [527515025/springBoot](https://github.com/527515025/springBoot) | springboot 框架与其它组件结合如 jpa、mybatis、websocket、security、shiro、cache等 | 2.8k | Java | 08/23 |
| 110 | [mpusher/mpush](https://github.com/mpusher/mpush) | MPush开源实时消息推送系统 | 2.7k | Java | 06/26 |
| 111 | [AriaLyy/Aria](https://github.com/AriaLyy/Aria) | 下载可以很简单 | 2.7k | Java | 08/07 |
| 112 | [dengyuhan/magnetW](https://github.com/dengyuhan/magnetW) | 磁力搜网页版 - 磁力链接聚合搜索 - https://bt.biedian.me | 2.7k | Java | 08/31 |
| 113 | [ittianyu/BottomNavigationViewEx](https://github.com/ittianyu/BottomNavigationViewEx) | An android lib for enhancing BottomNavigationView. 一个增强BottomNavigationView的安卓库。 | 2.7k | Java | 06/05 |
| 114 | [JZ-Darkal/AndroidHttpCapture](https://github.com/JZ-Darkal/AndroidHttpCapture) | AndroidHttpCapture网络诊断工具 是一款Android手机抓包软件 主要功能包括:手机端抓包、PING/DNS/TraceRoute诊断、抓包HAR数据上传分享。你也可以看成是Android版的"Fiddler" \(^o^)/~ | 2.7k | Java | 08/30 |
| 115 | [alipay/SoloPi](https://github.com/alipay/SoloPi) | Soloπ 自动化测试工具 | 2.6k | Java | 08/16 |
| 116 | [WVector/AppUpdate](https://github.com/WVector/AppUpdate) | 🚀 Android 版本更新 🚀 a library for android version update 🚀 | 2.6k | Java | 05/20 |
| 117 | [nanchen2251/RxJava2Examples](https://github.com/nanchen2251/RxJava2Examples) | :fire:RxJava2 Examples —— 这可能是从 RxJava1 跳到 RxJava2(学习 RxJava2 )最好的例子 Demo:https://github.com/nanchen2251/RxJava2Examples | 2.6k | Java | 03/06 |
| 118 | [woxingxiao/BubbleSeekBar](https://github.com/woxingxiao/BubbleSeekBar) | A beautiful Android custom seekbar, which has a bubble view with progress appearing upon when seeking. 自定义SeekBar,进度变化更以可视化气泡样式呈现 | 2.6k | Java | 03/08 |
| 119 | [zhou-you/RxEasyHttp](https://github.com/zhou-you/RxEasyHttp) | 本库是一款基于RxJava2+Retrofit2实现简单易用的网络请求框架,结合android平台特性的网络封装库,采用api链式调用一点到底,集成cookie管理,多种缓存模式,极简https配置,上传下载进度显示,请求错误自动重试,请求携带token、时间戳、签名sign动态配置,自动登录成功后请求重发功能,3种层次的参数设置默认全局局部,默认标准ApiResult同时可以支持自定义的数据结构,已经能满足现在的大部分网络请求。 | 2.5k | Java | 06/27 |
| 120 | [zaaach/CityPicker](https://github.com/zaaach/CityPicker) | 城市选择、定位、搜索及右侧字母导航,类似美团 百度糯米 饿了么等APP选择城市功能 | 2.5k | Java | 04/02 |
| 121 | [Dromara/hmily](https://github.com/Dromara/hmily) | 高性能异步分布式事务TCC框架 | 2.5k | Java | 08/13 |
| 122 | [Exrick/xpay](https://github.com/Exrick/xpay) | XPay个人免签收款支付系统 完全免费 资金直接到达本人账号 支持 支付宝 微信 QQ 云闪付 无需备案 无需签约 无需挂机监控APP 无需插件 无需第三方支付SDK 无需营业执照身份证 只需收款码 搞定支付流程 现已支持移动端支付 | 2.5k | Java | 05/17 |
| 123 | [FinalTeam/RxGalleryFinal](https://github.com/FinalTeam/RxGalleryFinal) | 图片选择库,单选/多选、拍照、裁剪、压缩,自定义。包括视频选择和录制。 | 2.5k | Java | 08/02 |
| 124 | [AweiLoveAndroid/CommonDevKnowledge](https://github.com/AweiLoveAndroid/CommonDevKnowledge) | :octocat::fire: :star2::star::star::star: :star: 史上最全的BAT大厂Android面试题汇集,以及常用的Android开发的一些技能点,冷门知识点汇总,开发中遇到的坑汇总等干货。 | 2.4k | Java | 08/22 |
| 125 | [elunez/eladmin](https://github.com/elunez/eladmin) | 项目基于 Spring Boot 2.1.0 、 Jpa、 Spring Security、redis、Vue的前后端分离的后台管理系统,项目采用分模块开发方式, 权限控制采用 RBAC,支持数据字典与数据权限管理,支持一键生成前后端代码,支持动态路由 | 2.4k | Java | 09/01 |
| 126 | [crazyandcoder/citypicker](https://github.com/crazyandcoder/citypicker) | citypicker城市选择器,详细的省市区地址信息,支持仿iOS滚轮实现,仿京东样式,一级或者三级列表展示方式。 | 2.4k | Java | 07/05 |
| 127 | [LuckyJayce/ViewPagerIndicator](https://github.com/LuckyJayce/ViewPagerIndicator) | Indicator 取代 tabhost,实现网易顶部tab,新浪微博主页底部tab,引导页,无限轮播banner等效果,高度自定义tab和特效,LazyFragment | 2.4k | Java | 06/26 |
| 128 | [ZHENFENG13/spring-boot-projects](https://github.com/ZHENFENG13/spring-boot-projects) | 该仓库中主要是 Spring Boot 的入门学习教程以及一些常用的 Spring Boot 实战项目教程,包括 Spring Boot 使用的各种示例代码,同时也包括一些实战项目的项目源码和效果展示,实战项目包括基本的 web 开发以及目前大家普遍使用的前后端分离实践项目,线上博客项目,企业大型商城系统等,摆脱各种 hello world 入门案例的束缚,真正的掌握 Spring Boot 开发。 | 2.4k | Java | 08/14 |
| 129 | [AbrahamCaiJin/CommonUtilLibrary](https://github.com/AbrahamCaiJin/CommonUtilLibrary) | 快速开发工具类收集,史上最全的开发工具类,欢迎Follow、Fork、Star | 2.4k | Java | 04/16 |
| 130 | [mercyblitz/tech-weekly](https://github.com/mercyblitz/tech-weekly) | 「小马哥技术周报」 | 2.3k | Java | 08/10 |
| 131 | [jiajunhui/PlayerBase](https://github.com/jiajunhui/PlayerBase) | The basic library of Android player will process complex business components. The access is simple。Android播放器基础库,专注于播放视图组件的高复用性和组件间的低耦合,轻松处理复杂业务。 | 2.3k | Java | 03/26 |
| 132 | [jaydenxiao2016/AndroidFire](https://github.com/jaydenxiao2016/AndroidFire) | AndroidFire,一款新闻阅读 App框架,基于 Material Design + MVP + RxJava + Retrofit + Glide,基本涵盖了当前 Android 端开发最常用的主流框架,基于此框架可以快速开发一个app。 | 2.3k | Java | 08/17 |
| 133 | [promeG/TinyPinyin](https://github.com/promeG/TinyPinyin) | 适用于Java和Android的快速、低内存占用的汉字转拼音库。 | 2.3k | Java | 04/22 |
| 134 | [huburt-Hu/NewbieGuide](https://github.com/huburt-Hu/NewbieGuide) | Android 快速实现新手引导层的库,通过简洁链式调用,一行代码实现引导层的显示 | 2.3k | Java | 06/27 |
| 135 | [jdsjlzx/LRecyclerView](https://github.com/jdsjlzx/LRecyclerView) | RecyclerView下拉刷新,自动加载更多;仿IOS侧滑Item删除菜单(盼望大家扩展更多功能) | 2.3k | Java | 06/27 |
| 136 | [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.3k | Java | 08/13 |
| 137 | [oasisfeng/condom](https://github.com/oasisfeng/condom) | 一个超轻超薄的Android工具库,阻止三方SDK中常见的有害行为,而不影响应用自身的功能。(例如严重影响用户体验的『链式唤醒』) | 2.2k | Java | 01/20 |
| 138 | [stylefeng/Guns](https://github.com/stylefeng/Guns) | Guns基于SpringBoot 2,致力于做更简洁的后台管理系统,完美整合springmvc + shiro + mybatis-plus + beetl!Guns项目代码简洁,注释丰富,上手容易,同时Guns包含许多基础模块(用户管理,角色管理,部门管理,字典管理等10个模块),可以直接作为一个后台管理系统的脚手架! | 2.2k | Java | 06/20 |
| 139 | [zjw-swun/AppMethodOrder](https://github.com/zjw-swun/AppMethodOrder) | 一个能让你了解所有函数调用顺序以及函数耗时的Android库(无需侵入式代码) | 2.2k | Java | 04/22 |
| 140 | [hope-for/hope-boot](https://github.com/hope-for/hope-boot) | 🌱🚀一款现代化的脚手架项目。企业开发?接外包?赚外快?还是学习?这都能满足你,居家必备,值得拥有:beers:整合Springboot2,单点登陆+tk.mybatis+shiro+redis+thymeleaf+maven+swagger前后端分离接口管理+代码生成+定时任务+数据库版本管理flyway+hutool工具包,等实用技术。 | 2.2k | Java | 08/30 |
| 141 | [brianway/springmvc-mybatis-learning](https://github.com/brianway/springmvc-mybatis-learning) | SpringMVC 和 MyBatis 学习笔记,搭配示例,主要讲解一些基础的概念、用法和配置 | 2.2k | Java | 05/14 |
| 142 | [BaronZ88/MinimalistWeather](https://github.com/BaronZ88/MinimalistWeather) | Android 平台开源天气 App,采用 MVP、RxJava、Retrofit2、OKHttp3、Dagger2、RetroLambda 等开源库来实现。 | 2.2k | Java | 07/01 |
| 143 | [javagrowing/JGrowing](https://github.com/javagrowing/JGrowing) | Java is Growing up but not only Java。Java成长路线,但学到不仅仅是Java。 | 2.2k | Java | 06/08 |
| 144 | [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 |
| 145 | [yangchong211/LifeHelper](https://github.com/yangchong211/LifeHelper) | 组件化综合案例,包含微信新闻,头条视频,美女图片,百度音乐,干活集中营,玩Android,豆瓣读书电影,知乎日报等等模块。架构模式:组件化+MVP+Rx+Retrofit+Desgin+Dagger2+阿里VLayout+腾讯X5+腾讯bugly。安装阿里编码规约插件,不断修正不合理代码和最大程度去除黄色警告!!!融合开发中需要的各种小案例! | 2.1k | Java | 06/04 |
| 146 | [JessYanCoding/ProgressManager](https://github.com/JessYanCoding/ProgressManager) | ⏳ Listen the progress of downloading and uploading in Okhttp, compatible Retrofit and Glide (一行代码即可监听 App 中所有网络链接的上传以及下载进度, 包括 Glide 的图片加载进度). | 2.1k | Java | 05/17 |
| 147 | [nanchen2251/CompressHelper](https://github.com/nanchen2251/CompressHelper) | :fire: 压缩文件,压缩图片,压缩Bitmap,Compress, CompressImage, CompressFile, CompressBitmap:https://github.com/nanchen2251/AiYaCompressHelper | 2.1k | Java | 03/06 |
| 148 | [JingYeoh/FragmentRigger](https://github.com/JingYeoh/FragmentRigger) | :boom:A powerful library powered by AOP to manage Fragments.(一个基于AOP设计的Fragment管理框架) | 2.1k | Java | 03/31 |
| 149 | [macrozheng/mall-learning](https://github.com/macrozheng/mall-learning) | mall学习教程,架构、业务、技术要点全方位解析。mall项目(18k+star)是一套电商系统,使用现阶段主流技术实现。 涵盖了SpringBoot2.1.3、MyBatis3.4.6、Elasticsearch6.2.2、RabbitMQ3.7.15、Redis3.2、Mongodb3.2、Mysql5.7等技术,采用Docker容器化部署。 | 2.1k | Java | 09/01 |
| 150 | [CJT2325/CameraView](https://github.com/CJT2325/CameraView) | 仿微信拍照Android控件(轻触拍照,长按摄像) | 2.0k | Java | 06/18 |
| 151 | [iMeiji/Toutiao](https://github.com/iMeiji/Toutiao) | 一款第三方今日头条客户端, MVP + RxJava + Retrofit | 2.0k | Java | 01/20 |
| 152 | [AlexLiuSheng/CheckVersionLib](https://github.com/AlexLiuSheng/CheckVersionLib) | 版本检测升级(更新)库。an auto check version library(app update) on Android | 2.0k | Java | 04/30 |
| 153 | [LuckyJayce/LargeImage](https://github.com/LuckyJayce/LargeImage) | Android 加载大图 可以高清显示10000*10000像素的图片,轻松实现微博长图功能 | 2.0k | Java | 03/23 |
| 154 | [dingjikerbo/Android-BluetoothKit](https://github.com/dingjikerbo/Android-BluetoothKit) | Android BLE蓝牙通信库 | 2.0k | Java | 01/24 |
| 155 | [l123456789jy/Lazy](https://github.com/l123456789jy/Lazy) | The android tools 自己整理的常用的工具类 | 2.0k | Java | 08/02 |
| 156 | [tuguangquan/mybatis](https://github.com/tuguangquan/mybatis) | mybatis源码中文注释 | 1.9k | Java | 03/04 |
| 157 | [bingoogolapple/BGASwipeBackLayout-Android](https://github.com/bingoogolapple/BGASwipeBackLayout-Android) | Android Activity 滑动返回。支持微信滑动返回样式、横屏滑动返回、全屏滑动返回 | 1.9k | Java | 05/28 |
| 158 | [liyiorg/weixin-popular](https://github.com/liyiorg/weixin-popular) | 微信SDK JAVA (公众平台、开放平台、 商户平台、 服务商平台) | 1.9k | Java | 08/27 |
| 159 | [android-notes/Cockroach](https://github.com/android-notes/Cockroach) | 降低Android非必要crash | 1.9k | Java | 08/26 |
| 160 | [Hitomis/transferee](https://github.com/Hitomis/transferee) | 一个帮助您完成从缩略图到原图无缝过渡转变的神奇组件 | 1.9k | Java | 08/19 |
| 161 | [mqzhangw/JIMU](https://github.com/mqzhangw/JIMU) | 一种简单有效的android组件化方案,支持组件的代码资源隔离、单独调试、集成调试、组件交互、UI跳转、生命周期等完整功能。 | 1.9k | Java | 03/18 |
| 162 | [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 |
| 163 | [HiedaNaKan/FuckMFS](https://github.com/HiedaNaKan/FuckMFS) | 去他妈的取证 | 1.8k | Java | 06/30 |
| 164 | [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.8k | Java | 08/23 |
| 165 | [Qihoo360/ArgusAPM](https://github.com/Qihoo360/ArgusAPM) | Powerful, comprehensive (Android) application performance management platform. 360线上移动性能检测平台 | 1.8k | Java | 05/09 |
| 166 | [wangdan/AisenWeiBo](https://github.com/wangdan/AisenWeiBo) | 新浪微博第三方Android客户端 | 1.8k | Java | 06/19 |
| 167 | [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.8k | Java | 06/30 |
| 168 | [qunarcorp/qmq](https://github.com/qunarcorp/qmq) | QMQ是去哪儿网内部广泛使用的消息中间件,自2012年诞生以来在去哪儿网所有业务场景中广泛的应用,包括跟交易息息相关的订单场景; 也包括报价搜索等高吞吐量场景。 | 1.8k | Java | 08/21 |
| 169 | [Zhaoss/WeiXinRecordedDemo](https://github.com/Zhaoss/WeiXinRecordedDemo) | 仿微信视频拍摄UI, 基于ffmpeg的视频录制编辑 | 1.8k | Java | 08/05 |
| 170 | [JsonChao/Awesome-WanAndroid](https://github.com/JsonChao/Awesome-WanAndroid) | :zap:致力于打造一款极致体验的 http://www.wanandroid.com/ 客户端,知识和美是可以并存的哦QAQn(*≧▽≦*)n | 1.7k | Java | 03/13 |
| 171 | [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.7k | Java | 08/29 |
| 172 | [ZhaoKaiQiang/KLog](https://github.com/ZhaoKaiQiang/KLog) | 这是一个Android专用的LogCat工具,主要功能为打印行号、函数调用、Json解析、XML解析、点击跳转、Log信息保存等功能 | 1.7k | Java | 08/23 |
| 173 | [OCNYang/Android-Animation-Set](https://github.com/OCNYang/Android-Animation-Set) | :books: Android 所有动画系列详尽教程。 Explain all animations in Android. | 1.7k | Java | 03/19 |
| 174 | [xtuhcy/gecco](https://github.com/xtuhcy/gecco) | Easy to use lightweight web crawler(易用的轻量化网络爬虫) | 1.7k | Java | 07/18 |
| 175 | [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 | 08/27 |
| 176 | [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 |
| 177 | [Heeexy/SpringBoot-Shiro-Vue](https://github.com/Heeexy/SpringBoot-Shiro-Vue) | 提供一套基于Spring Boot-Shiro-Vue的权限管理思路.前后端都加以控制,做到按钮/接口级别的权限 | 1.7k | Java | 08/26 |
| 178 | [xingda920813/HelloDaemon](https://github.com/xingda920813/HelloDaemon) | Android 服务保活/常驻 (Android service daemon using JobScheduler) | 1.7k | Java | 03/30 |
| 179 | [zhangdaiscott/jeecg](https://github.com/zhangdaiscott/jeecg) | JEECG是一款基于代码生成器的J2EE快速开发平台,开源界“小普元”超越传统商业企业级开发平台。引领新的开发模式(Online Coding模式(自定义表单) - > 代码生成器模式 - > 手工MERGE智能开发), 可以帮助解决Java项目90%的重复工作,让开发更多关注业务逻辑。既能快速提高开发效率,帮助公司节省人力成本,同时又不失灵活性。具备:表单配置能力(无需编码)、移动配置能力、工作流配置能力、报表配置能力(支持移动端)、插件开发能力(可插拔) | 1.6k | Java | 08/03 |
| 180 | [vivian8725118/TimeLine](https://github.com/vivian8725118/TimeLine) | 瀑布流式的时间轴 | 1.6k | Java | 01/20 |
| 181 | [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 |
| 182 | [wenmingvs/NotifyUtil](https://github.com/wenmingvs/NotifyUtil) | 通知工具类 | 1.6k | Java | 07/01 |
| 183 | [dueeeke/DKVideoPlayer](https://github.com/dueeeke/DKVideoPlayer) | Android Video Player. 安卓视频播放器,封装MediaPlayer、ExoPlayer、IjkPlayer。模仿抖音,悬浮播放,广告播放,列表播放,弹幕 | 1.6k | Java | 09/01 |
| 184 | [Nepxion/Discovery](https://github.com/Nepxion/Discovery) | 🐳 Nepxion Discovery is an enhancement for Spring Cloud Discovery on Eureka + Consul + Zookeeper + Nacos with Nacos + Apollo config for gray release, router, weight, isolation 网关和服务灰度发布、路由、权重、隔离、调用链 | 1.6k | Java | 09/01 |
| 185 | [sunfusheng/GlideImageView](https://github.com/sunfusheng/GlideImageView) | 基于Glide V4.9.0封装的图片加载库,可以监听加载图片时的进度 | 1.6k | Java | 04/30 |
| 186 | [kanwangzjm/funiture](https://github.com/kanwangzjm/funiture) | 慕课网课程推荐 Java并发编程与高并发解决方案:http://coding.imooc.com/class/195.html Java开发企业级权限管理系统:http://coding.imooc.com/class/149.html github: https://github.com/kanwangzjm/funiture, spring项目,权限管理、系统监控、定时任务动态调整、qps限制、sql监控(邮件)、验证码服务、短链接服务、动态配置等 | 1.6k | Java | 07/10 |
| 187 | [roncoo/spring-boot-demo](https://github.com/roncoo/spring-boot-demo) | Spring Boot的基础教程,由浅入深,一步一步学习Spring Boot,最后学到的不单单是基础!Spring Cloud基础教程请看:https://github.com/roncoo/spring-cloud-demo | 1.5k | Java | 01/30 |
| 188 | [Javen205/IJPay](https://github.com/Javen205/IJPay) | 🔥 IJPay 让支付触手可及,封装了微信支付、支付宝支付、银联支付常用的支付方式以及各种常用的接口.不依赖任何第三方 mvc 框架,仅仅作为工具使用简单快速完成支付模块的开发,可轻松嵌入到任何系统里。 | 1.5k | Java | 09/01 |
| 189 | [Sunzxyong/Recovery](https://github.com/Sunzxyong/Recovery) | a crash recovery framework.(一个App异常恢复框架) | 1.5k | Java | 02/17 |
| 190 | [xwjie/PLMCodeTemplate](https://github.com/xwjie/PLMCodeTemplate) | 给部门制定的代码框架模板 | 1.5k | Java | 01/12 |
| 191 | [BakerJQ/Android-InfiniteCards](https://github.com/BakerJQ/Android-InfiniteCards) | An infinite card switching UI for Android, support custom animation 自定义实现神奇动效的卡片切换视图 | 1.5k | Java | 07/24 |
| 192 | [ctripcorp/C-OCR](https://github.com/ctripcorp/C-OCR) | C-OCR是携程自研的OCR项目,主要包括身份证、护照、火车票、签证等旅游相关证件、材料的识别。 项目包含4个部分,拒识、检测、识别、后处理。 | 1.5k | Java | 05/08 |
| 193 | [meituan/WMRouter](https://github.com/meituan/WMRouter) | WMRouter是一款Android路由框架,基于组件化的设计思路,有功能灵活、使用简单的特点。 | 1.5k | Java | 08/23 |
| 194 | [doggycoder/AndroidOpenGLDemo](https://github.com/doggycoder/AndroidOpenGLDemo) | Android OpenGL ES从零开始的Demo | 1.5k | Java | 01/13 |
| 195 | [jenly1314/KingTV](https://github.com/jenly1314/KingTV) | 📺 高仿全民直播(全民TV),项目采用 MVP + RXJava + Retrofit + OKHttp + Material Design + Dagger2 + Base + Glide + GreenDao构建。因为全民TV已经凉了,导致App已经连不上。所以本项目已暂停维护。仅供学习。 推荐MVPFrame: https://github.com/jenly1314/MVPFrame 和你值得拥有的MVVMFrame快速开发框架: https://github.com/jenly1314/MVVMFrame | 1.5k | Java | 05/29 |
| 196 | [alibaba/yugong](https://github.com/alibaba/yugong) | 阿里巴巴去Oracle数据迁移同步工具(全量+增量,目标支持MySQL/DRDS) | 1.5k | Java | 01/30 |
| 197 | [siwangqishiq/ImageEditor-Android](https://github.com/siwangqishiq/ImageEditor-Android) | AndroidImageEdit 安卓设备上图形编辑开源控件,支持磨皮美白 自定义贴图 图片滤镜 图片旋转 图片剪裁 文字贴图 撤销 回退 等操作 | 1.5k | Java | 07/18 |
| 198 | [EhsanTang/ApiManager](https://github.com/EhsanTang/ApiManager) | CRAP - 开源API接口管理平台 \| 完全开源、免费使用的API接口管理系统、BUG管理系统:API接口管理、文档管理、数据库表管理、接口调试、浏览器调试插件、导出word&pdf接口…..,采用SpringMVC + MyBatis + Lucene + Bootstrap + Angularjs + Iconfont + Guava Cache ,线上使用地址:http://api.crap.cn | 1.5k | Java | 07/31 |
| 199 | [Dromara/Raincat](https://github.com/Dromara/Raincat) | 强一致分布式事务框架 | 1.5k | Java | 05/10 |
| 200 | [xiaojinzi123/Component](https://github.com/xiaojinzi123/Component) | A powerful componentized framework.一个强大的组件化框架. 选型的时候你真的好好比较了此框架 和 ARouter 的优缺点了吗?点击后面链接查看比较结果 | 1.5k | Java | 08/30 |
⬆ [回到目录](#目录)
<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/面试笔记 | 26.3k | Python | 07/23 |
| 2 | [fxsjy/jieba](https://github.com/fxsjy/jieba) | 结巴中文分词 | 19.9k | Python | 07/20 |
| 3 | [apachecn/AiLearning](https://github.com/apachecn/AiLearning) | AiLearning: 机器学习 - MachineLearning - ML、深度学习 - DeepLearning - DL、自然语言处理 NLP | 18.6k | Python | 08/08 |
| 4 | [0voice/interview_internal_reference](https://github.com/0voice/interview_internal_reference) | 2019年最新总结,阿里,腾讯,百度,美团,头条等技术面试题目,以及答案,专家出题人分析汇总。 | 18.5k | Python | 09/01 |
| 5 | [littlecodersh/ItChat](https://github.com/littlecodersh/ItChat) | A complete and graceful API for Wechat. 微信个人号接口、微信机器人及命令行微信,三十行即可自定义个人号机器人。 | 18.5k | Python | 08/27 |
| 6 | [521xueweihan/HelloGitHub](https://github.com/521xueweihan/HelloGitHub) | :octocat: Find pearls on open-source seashore 分享 GitHub 上有趣、入门级的开源项目 | 15.3k | Python | 08/27 |
| 7 | [wangshub/wechat_jump_game](https://github.com/wangshub/wechat_jump_game) | 微信《跳一跳》Python 辅助 | 13.9k | Python | 08/28 |
| 8 | [fighting41love/funNLP](https://github.com/fighting41love/funNLP) | 中英文敏感词、语言检测、中外手机/电话归属地/运营商查询、名字推断性别、手机号抽取、身份证抽取、邮箱抽取、中日文人名库、中文缩写库、拆字词典、词汇情感值、停用词、反动词表、暴恐词表、繁简体转换、英文模拟中文发音、汪峰歌词生成器、职业名称词库、同义词库、反义词库、否定词库、汽车品牌词库、汽车零件词库、连续英文切割、各种中文词向量、公司名字大全、古诗词库、IT词库、财经词库、成语词库、地名词库、历史名人词库、诗词词库、医学词库、饮食词库、法律词库、汽车词库、动物词库、中文聊天语料、中文谣言数据、百度中文问答数据集、句子相似度匹配算法集合、bert资源、文本生成&摘要相关工具、cocoNLP信息抽取 ... | 12.1k | Python | 08/31 |
| 9 | [d2l-ai/d2l-zh](https://github.com/d2l-ai/d2l-zh) | 《动手学深度学习》:面向中文读者、能运行、可讨论。英文版即伯克利“深度学习导论”教材。 | 11.1k | Python | 08/31 |
| 10 | [apachecn/awesome-algorithm](https://github.com/apachecn/awesome-algorithm) | 项目永久冻结,迁移至新地址: | 10.5k | Python | 07/17 |
| 11 | [zhaoolee/ChromeAppHeroes](https://github.com/zhaoolee/ChromeAppHeroes) | 🌈谷粒-Chrome插件英雄榜, 为优秀的Chrome插件写一本中文说明书, 让Chrome插件英雄们造福人类~ ChromePluginHeroes, Write a Chinese manual for the excellent Chrome plugin, let the Chrome plugin heroes benefit the human~ | 9.7k | Python | 09/01 |
| 12 | [Kr1s77/awesome-python-login-model](https://github.com/Kr1s77/awesome-python-login-model) | 😮python模拟登陆一些大型网站,还有一些简单的爬虫,希望对你们有所帮助❤️,如果喜欢记得给个star哦🌟 | 9.4k | Python | 08/16 |
| 13 | [youfou/wxpy](https://github.com/youfou/wxpy) | 微信机器人 / 可能是最优雅的微信个人号 API ✨✨ | 9.3k | Python | 07/15 |
| 14 | [wangzheng0822/algo](https://github.com/wangzheng0822/algo) | 数据结构和算法必知必会的50个代码实现 | 9.2k | Python | 08/28 |
| 15 | [leisurelicht/wtfpython-cn](https://github.com/leisurelicht/wtfpython-cn) | wtfpython的中文翻译/施工结束/ 能力有限,欢迎帮我改进翻译 | 8.6k | Python | 08/13 |
| 16 | [Jack-Cherish/python-spider](https://github.com/Jack-Cherish/python-spider) | :rainbow:Python3网络爬虫实战:VIP视频破解助手;GEETEST验证码破解;小说、动漫下载;手机APP爬取;财务报表入库;火车票抢票;抖音APP视频下载;百万英雄辅助;网易云音乐下载;B站视频和弹幕下载;京东晒单图下载 | 8.5k | Python | 03/04 |
| 17 | [meolu/walle-web](https://github.com/meolu/walle-web) | walle - 瓦力 Devops开源项目代码部署平台 | 8.4k | Python | 08/21 |
| 18 | [darknessomi/musicbox](https://github.com/darknessomi/musicbox) | 网易云音乐命令行版本 | 7.8k | Python | 09/01 |
| 19 | [USTC-Resource/USTC-Course](https://github.com/USTC-Resource/USTC-Course) | :heart:中国科学技术大学课程资源 | 7.6k | Python | 07/02 |
| 20 | [testerSunshine/12306](https://github.com/testerSunshine/12306) | 12306智能刷票,订票 | 7.3k | Python | 09/01 |
| 21 | [jhao104/proxy_pool](https://github.com/jhao104/proxy_pool) | Python爬虫代理IP池(proxy pool) | 7.2k | Python | 08/21 |
| 22 | [Urinx/WeixinBot](https://github.com/Urinx/WeixinBot) | 网页版微信API,包含终端版微信及微信机器人 | 6.3k | Python | 06/25 |
| 23 | [sylnsfar/qrcode](https://github.com/sylnsfar/qrcode) | artistic QR Code in Python (Animated GIF qr code)- Python 艺术二维码生成器 (GIF动态二维码、图片二维码) | 6.2k | Python | 01/22 |
| 24 | [pwxcoo/chinese-xinhua](https://github.com/pwxcoo/chinese-xinhua) | :orange_book: 中华新华字典数据库。包括歇后语,成语,词语,汉字。 | 6.1k | Python | 08/11 |
| 25 | [sfyc23/EverydayWechat](https://github.com/sfyc23/EverydayWechat) | 微信助手:1.每日定时给好友发送定制消息。2.机器人自动回复好友。3.群助手功能(例如:查询垃圾分类、天气、日历、电影实时票房等) | 5.9k | Python | 08/30 |
| 26 | [wangshub/Douyin-Bot](https://github.com/wangshub/Douyin-Bot) | 😍 Python 抖音机器人,论如何在抖音上找到漂亮小姐姐? | 5.9k | Python | 07/02 |
| 27 | [Embedding/Chinese-Word-Vectors](https://github.com/Embedding/Chinese-Word-Vectors) | 100+ Chinese Word Vectors 上百种预训练中文词向量 | 5.6k | Python | 04/04 |
| 28 | [h2y/Shadowrocket-ADBlock-Rules](https://github.com/h2y/Shadowrocket-ADBlock-Rules) | 提供多款 Shadowrocket 规则,带广告过滤功能。用于 iOS 未越狱设备选择性地自动翻墙。 | 5.4k | Python | 09/01 |
| 29 | [bbfamily/abu](https://github.com/bbfamily/abu) | 阿布量化交易系统(股票,期权,期货,比特币,机器学习) 基于python的开源量化交易,量化投资架构 | 5.1k | Python | 06/25 |
| 30 | [vipstone/faceai](https://github.com/vipstone/faceai) | 一款入门级的人脸、视频、文字检测以及识别的项目. | 5.0k | Python | 07/11 |
| 31 | [houtianze/bypy](https://github.com/houtianze/bypy) | Python client for Baidu Yun (Personal Cloud Storage) 百度云/百度网盘Python客户端 | 4.8k | Python | 07/20 |
| 32 | [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 | 03/18 |
| 33 | [pjialin/py12306](https://github.com/pjialin/py12306) | 🚂 12306 购票助手,支持分布式,多账号,多任务购票以及 Web 页面管理 | 4.1k | Python | 07/29 |
| 34 | [lining0806/PythonSpiderNotes](https://github.com/lining0806/PythonSpiderNotes) | Python入门网络爬虫之精华版 | 4.1k | Python | 07/07 |
| 35 | [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.0k | Python | 08/24 |
| 36 | [chyroc/WechatSogou](https://github.com/chyroc/WechatSogou) | 基于搜狗微信搜索的微信公众号爬虫接口 | 3.9k | Python | 08/28 |
| 37 | [lancopku/pkuseg-python](https://github.com/lancopku/pkuseg-python) | pkuseg多领域中文分词工具; The pkuseg toolkit for multi-domain Chinese word segmentation | 3.8k | Python | 07/05 |
| 38 | [jindongwang/transferlearning](https://github.com/jindongwang/transferlearning) | Everything about Transfer Learning and Domain Adaptation--迁移学习 | 3.7k | Python | 08/29 |
| 39 | [eastlakeside/interpy-zh](https://github.com/eastlakeside/interpy-zh) | 📘《Python进阶》(Intermediate Python 中文版) | 3.7k | Python | 02/11 |
| 40 | [injetlee/Python](https://github.com/injetlee/Python) | Python脚本。模拟登录知乎, 爬虫,操作excel,微信公众号,远程开机 | 3.5k | Python | 05/22 |
| 41 | [hzy46/Deep-Learning-21-Examples](https://github.com/hzy46/Deep-Learning-21-Examples) | 《21个项目玩转深度学习———基于TensorFlow的实践详解》配套代码 | 3.5k | Python | 03/18 |
| 42 | [WenDesi/lihang_book_algorithm](https://github.com/WenDesi/lihang_book_algorithm) | 致力于将李航博士《统计学习方法》一书中所有算法实现一遍 | 3.2k | Python | 04/29 |
| 43 | [offu/WeRoBot](https://github.com/offu/WeRoBot) | WeRoBot 是一个微信公众号开发框架 | 3.1k | Python | 09/01 |
| 44 | [shidenggui/easytrader](https://github.com/shidenggui/easytrader) | 提供银河/国金/华泰客户端/同花顺客户端/雪球的基金、股票自动程序化交易以及自动打新,支持跟踪 joinquant /ricequant 模拟交易 和 实盘雪球组合, 量化交易组件 | 3.1k | Python | 08/14 |
| 45 | [billryan/algorithm-exercise](https://github.com/billryan/algorithm-exercise) | Data Structure and Algorithm notes. 数据结构与算法/leetcode/lintcode题解/ | 2.7k | Python | 08/23 |
| 46 | [jinfagang/tensorflow_poems](https://github.com/jinfagang/tensorflow_poems) | 中文古诗自动作诗机器人,屌炸天,基于tensorflow1.10 api,正在积极维护升级中,快star,保持更新! | 2.7k | Python | 02/11 |
| 47 | [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.7k | Python | 08/27 |
| 48 | [QUANTAXIS/QUANTAXIS](https://github.com/QUANTAXIS/QUANTAXIS) | QUANTAXIS 股票/期货/自定义市场 数据/回测/模拟/交易/可视化 纯本地一站式量化解决方案 | 2.7k | Python | 09/01 |
| 49 | [PaddlePaddle/models](https://github.com/PaddlePaddle/models) | Pre-trained and Reproduced Deep Learning Models (『飞桨』官方模型库,包含多种学术前沿和工业场景验证的深度学习模型) | 2.7k | Python | 08/31 |
| 50 | [princewen/tensorflow_practice](https://github.com/princewen/tensorflow_practice) | tensorflow实战练习,包括强化学习、推荐系统、nlp等 | 2.7k | Python | 06/24 |
| 51 | [apachecn/sklearn-doc-zh](https://github.com/apachecn/sklearn-doc-zh) | :book: [译] scikit-learn(sklearn) 中文文档 | 2.5k | Python | 09/01 |
| 52 | [QingdaoU/OnlineJudge](https://github.com/QingdaoU/OnlineJudge) | open source online judge based on Vue, Django and Docker. \| 青岛大学开源 Online Judge \| QQ群 496710125 \| admin@qduoj.com | 2.5k | Python | 07/21 |
| 53 | [gaussic/text-classification-cnn-rnn](https://github.com/gaussic/text-classification-cnn-rnn) | CNN-RNN中文文本分类,基于TensorFlow | 2.4k | Python | 05/19 |
| 54 | [huyingxi/Synonyms](https://github.com/huyingxi/Synonyms) | 中文近义词工具包 | 2.4k | Python | 06/11 |
| 55 | [ysrc/xunfeng](https://github.com/ysrc/xunfeng) | 巡风是一款适用于企业内网的漏洞快速应急,巡航扫描系统。 | 2.3k | Python | 06/27 |
| 56 | [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.3k | Python | 05/15 |
| 57 | [guohongze/adminset](https://github.com/guohongze/adminset) | 自动化运维平台:CMDB、CD、DevOps、资产管理、任务编排、持续交付、系统监控、运维管理、配置管理 | 2.1k | Python | 07/29 |
| 58 | [mozillazg/python-pinyin](https://github.com/mozillazg/python-pinyin) | 汉字转拼音(pypinyin) | 2.1k | Python | 07/13 |
| 59 | [Alivon/Panda-Learning](https://github.com/Alivon/Panda-Learning) | 学习强国 xuexiqiangguo 全网最好用学习强国助手:Panda_Learning 萌萌的熊猫帮你搞定学习强国 | 2.0k | Python | 07/21 |
| 60 | [XuShaohua/bcloud](https://github.com/XuShaohua/bcloud) | 百度网盘的linux桌面客户端 | 2.0k | Python | 06/17 |
| 61 | [SmirkCao/Lihang](https://github.com/SmirkCao/Lihang) | Statistical learning methods, 统计学习方法(第2版)[李航] [笔记, 代码, notebook, 参考文献, Errata, lihang] | 2.0k | Python | 06/27 |
| 62 | [WhaleShark-Team/cobra](https://github.com/WhaleShark-Team/cobra) | Source Code Security Audit (源代码安全审计) | 1.9k | Python | 08/23 |
| 63 | [YongHaoWu/NeteaseCloudMusicFlac](https://github.com/YongHaoWu/NeteaseCloudMusicFlac) | 根据网易云音乐的歌单, 下载flac无损音乐到本地. Download the FLAC music from Internet according to your NeteaseCloudMusic playlist. | 1.9k | Python | 08/19 |
| 64 | [Jack-Lee-Hiter/AlgorithmsByPython](https://github.com/Jack-Lee-Hiter/AlgorithmsByPython) | 算法/数据结构/Python/剑指offer/机器学习/leetcode | 1.9k | Python | 05/15 |
| 65 | [the0demiurge/ShadowSocksShare](https://github.com/the0demiurge/ShadowSocksShare) | Python爬虫/Flask网站/免费ShadowSocks帐号/ssr订阅/json API | 1.9k | Python | 08/24 |
| 66 | [liangliangyy/DjangoBlog](https://github.com/liangliangyy/DjangoBlog) | 🍺基于Django的博客系统 | 1.9k | Python | 08/29 |
| 67 | [Nyloner/Nyspider](https://github.com/Nyloner/Nyspider) | 各种爬虫 | 1.9k | Python | 06/23 |
| 68 | [wb14123/seq2seq-couplet](https://github.com/wb14123/seq2seq-couplet) | Play couplet with seq2seq model. 用深度学习对对联。 | 1.9k | Python | 05/01 |
| 69 | [oreilly-japan/deep-learning-from-scratch](https://github.com/oreilly-japan/deep-learning-from-scratch) | 『ゼロから作る Deep Learning』のリポジトリ | 1.8k | Python | 05/28 |
| 70 | [welliamcao/OpsManage](https://github.com/welliamcao/OpsManage) | 自动化运维平台: 代码及应用部署CI/CD、资产管理CMDB、计划任务管理平台、SQL审核\|回滚、任务调度、站内WIKI | 1.8k | Python | 09/01 |
| 71 | [nl8590687/ASRT_SpeechRecognition](https://github.com/nl8590687/ASRT_SpeechRecognition) | A Deep-Learning-Based Chinese Speech Recognition System 基于深度学习的中文语音识别系统 | 1.8k | Python | 09/01 |
| 72 | [momosecurity/aswan](https://github.com/momosecurity/aswan) | 陌陌风控系统静态规则引擎,零基础简易便捷的配置多种复杂规则,实时高效管控用户异常行为。 | 1.8k | Python | 08/06 |
| 73 | [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 | 08/26 |
| 74 | [lanbing510/DouBanSpider](https://github.com/lanbing510/DouBanSpider) | 豆瓣读书的爬虫 | 1.7k | Python | 07/03 |
| 75 | [qq547276542/Agriculture_KnowledgeGraph](https://github.com/qq547276542/Agriculture_KnowledgeGraph) | 农业知识图谱(AgriKG):农业领域的信息检索,命名实体识别,关系抽取,智能问答,辅助决策 | 1.7k | Python | 05/16 |
| 76 | [XuefengHuang/lianjia-scrawler](https://github.com/XuefengHuang/lianjia-scrawler) | 链家二手房租房在线数据,存量房交易服务平台数据,详细数据分析教程 | 1.6k | Python | 08/15 |
| 77 | [w1109790800/penetration](https://github.com/w1109790800/penetration) | 渗透 超全面的渗透资料💯 包含:0day,xss,sql注入,提权…… | 1.6k | Python | 06/01 |
| 78 | [shidenggui/easyquotation](https://github.com/shidenggui/easyquotation) | 实时获取新浪 / 腾讯 的免费股票行情 / 集思路的分级基金行情 | 1.6k | Python | 08/18 |
| 79 | [howie6879/owllook](https://github.com/howie6879/owllook) | owllook-在线网络小说阅读网站&小说搜索引擎&小说推荐系统[搜索、追书、收藏、追更、小说API] | 1.6k | Python | 08/11 |
| 80 | [tensor-yu/PyTorch_Tutorial](https://github.com/tensor-yu/PyTorch_Tutorial) | 《Pytorch模型训练实用教程》中配套代码 | 1.6k | Python | 08/27 |
| 81 | [INTERMT/Awesome-PyTorch-Chinese](https://github.com/INTERMT/Awesome-PyTorch-Chinese) | 【干货】史上最全的PyTorch学习资源汇总 | 1.6k | Python | 08/14 |
| 82 | [Ehco1996/django-sspanel](https://github.com/Ehco1996/django-sspanel) | 用diango开发的全新的shadowsocks网络面板 | 1.5k | Python | 09/01 |
| 83 | [airingursb/bilibili-user](https://github.com/airingursb/bilibili-user) | 🍥 Bilibili 用户爬虫 | 1.5k | Python | 01/24 |
| 84 | [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 | 07/05 |
| 85 | [Roujack/mathAI](https://github.com/Roujack/mathAI) | 一个拍照做题程序。输入一张包含数学计算题的图片,输出识别出的数学计算式以及计算结果。This is a mathematic expression recognition project. | 1.5k | Python | 07/17 |
| 86 | [Dod-o/Statistical-Learning-Method_Code](https://github.com/Dod-o/Statistical-Learning-Method_Code) | 手写实现李航《统计学习方法》书中全部算法 | 1.4k | Python | 08/24 |
| 87 | [xianhu/PSpider](https://github.com/xianhu/PSpider) | 简单易用的Python爬虫框架,QQ交流群:597510560 | 1.3k | Python | 07/29 |
| 88 | [0xHJK/music-dl](https://github.com/0xHJK/music-dl) | search and download music 从网易云音乐、QQ音乐、酷狗音乐、百度音乐、虾米音乐、咪咕音乐等搜索和下载歌曲 | 1.3k | Python | 08/25 |
| 89 | [HFO4/plus1s.live](https://github.com/HFO4/plus1s.live) | 🐸ASCII在线视频流搭建脚本 | 1.3k | Python | 02/10 |
| 90 | [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 |
| 91 | [EvilCult/Video-Downloader](https://github.com/EvilCult/Video-Downloader) | 下载youku,letv,sohu,tudou,bilibili,acfun,iqiyi等网站分段视频文件,提供mac&win独立App。 | 1.3k | Python | 07/21 |
| 92 | [PyQt5/PyQt](https://github.com/PyQt5/PyQt) | PyQt Examples(PyQt各种测试和例子) PyQt4 PyQt5 | 1.3k | Python | 08/23 |
| 93 | [makelove/OpenCV-Python-Tutorial](https://github.com/makelove/OpenCV-Python-Tutorial) | OpenCV问答群,QQ群号:187436093 | 1.3k | Python | 06/25 |
| 94 | [loadchange/amemv-crawler](https://github.com/loadchange/amemv-crawler) | 🙌Easily download all the videos from TikTok(amemv).下载指定的 抖音(Douyin) 号的视频,抖音爬虫 | 1.3k | Python | 08/23 |
| 95 | [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 |
| 96 | [FeeiCN/GSIL](https://github.com/FeeiCN/GSIL) | GitHub Sensitive Information Leakage(GitHub敏感信息泄露监控) | 1.3k | Python | 05/14 |
| 97 | [xiaofengShi/CHINESE-OCR](https://github.com/xiaofengShi/CHINESE-OCR) | [python3.6] 运用tf实现自然场景文字检测,keras/pytorch实现ctpn+crnn+ctc实现不定长场景文字OCR识别 | 1.3k | Python | 08/13 |
| 98 | [apachecn/pytorch-doc-zh](https://github.com/apachecn/pytorch-doc-zh) | Pytorch 中文文档 | 1.2k | Python | 08/27 |
| 99 | [ymcui/Chinese-BERT-wwm](https://github.com/ymcui/Chinese-BERT-wwm) | Pre-Training with Whole Word Masking for Chinese BERT(中文BERT-wwm预训练模型) | 1.2k | Python | 08/01 |
| 100 | [wzpan/wukong-robot](https://github.com/wzpan/wukong-robot) | 🤖 wukong-robot 是一个简单、灵活、优雅的中文语音对话机器人/智能音箱项目。 | 1.2k | Python | 08/11 |
| 101 | [7sDream/zhihu-oauth](https://github.com/7sDream/zhihu-oauth) | 尝试解析出知乎官方未开放的 OAuth2 接口,并提供优雅的使用方式,作为 zhihu-py3 项目的替代者,目前还在实验阶段 | 1.2k | Python | 02/08 |
| 102 | [chaitin/xray](https://github.com/chaitin/xray) | xray 安全评估工具 | 1.2k | Python | 09/02 |
| 103 | [yoyoyo-yo/Gasyori100knock](https://github.com/yoyoyo-yo/Gasyori100knock) | 画像処理100本ノックして画像処理を画像処理して画像処理するためのもの For Japanese, English and Chinese | 1.2k | Python | 08/28 |
| 104 | [michaelliao/sinaweibopy](https://github.com/michaelliao/sinaweibopy) | 新浪微博Python SDK | 1.2k | Python | 05/02 |
| 105 | [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 |
| 106 | [osbzr/gooderp_addons](https://github.com/osbzr/gooderp_addons) | 可能是中国用户数最多的开源ERP | 1.2k | Python | 08/06 |
| 107 | [moyuanz/DevilYuan](https://github.com/moyuanz/DevilYuan) | DevilYuan可视化股票量化系统,支持选股,历史数据自动下载,策略回测及参数优化,实盘交易和常用的统计功能 | 1.2k | Python | 08/04 |
| 108 | [jumper2014/lianjia-beike-spider](https://github.com/jumper2014/lianjia-beike-spider) | 链家网和贝壳网房价爬虫,采集北京上海广州深圳等21个中国主要城市的房价数据(小区,二手房,出租房,新房),稳定可靠快速!支持csv,MySQL, MongoDB,Excel, json存储,支持Python2和3,图表展示数据,注释丰富 🚁,点星支持 | 1.2k | Python | 07/24 |
| 109 | [leeguandong/Interview-code-practice-python](https://github.com/leeguandong/Interview-code-practice-python) | 面试题 | 1.1k | Python | 08/18 |
| 110 | [dingdang-robot/dingdang-robot](https://github.com/dingdang-robot/dingdang-robot) | 🤖 叮当是一款可以工作在 Raspberry Pi 上的中文语音对话机器人/智能音箱项目。 | 1.1k | Python | 02/05 |
| 111 | [HuberTRoy/leetCode](https://github.com/HuberTRoy/leetCode) | :pencil2: 算法相关知识储备 LeetCode with Python :books: | 1.1k | Python | 08/11 |
| 112 | [guanguans/favorite-link](https://github.com/guanguans/favorite-link) | ❤️ 每日收集喜欢的开源项目 | 1.1k | Python | 09/01 |
| 113 | [nghuyong/WeiboSpider](https://github.com/nghuyong/WeiboSpider) | This is a sina weibo spider built by scrapy[微博爬虫/持续维护] | 1.1k | Python | 08/23 |
| 114 | [hankcs/pyhanlp](https://github.com/hankcs/pyhanlp) | 自然语言处理工具包HanLP的Python接口 | 1.1k | Python | 07/10 |
| 115 | [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 | 08/29 |
| 116 | [coffeehb/Some-PoC-oR-ExP](https://github.com/coffeehb/Some-PoC-oR-ExP) | 各种漏洞poc、Exp的收集或编写 | 1.1k | Python | 07/01 |
| 117 | [cn/GB2260](https://github.com/cn/GB2260) | 中华人民共和国国家标准 GB/T 2260 行政区划代码 | 1.0k | Python | 06/10 |
| 118 | [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.0k | Python | 08/02 |
| 119 | [opendevops-cn/opendevops](https://github.com/opendevops-cn/opendevops) | CODO是一款为用户提供企业多混合云、一站式DevOps、自动化运维、完全开源的云管理平台、自动化运维平台 | 1.0k | Python | 08/26 |
| 120 | [dongweiming/web_develop](https://github.com/dongweiming/web_develop) | 《Python Web开发实战》书中源码 | 1.0k | Python | 05/28 |
| 121 | [frombeijingwithlove/dlcv_for_beginners](https://github.com/frombeijingwithlove/dlcv_for_beginners) | 《深度学习与计算机视觉》配套代码 | 1.0k | Python | 08/03 |
| 122 | [marchtea/scrapy_doc_chs](https://github.com/marchtea/scrapy_doc_chs) | scrapy中文翻译文档 | 1.0k | Python | 07/05 |
| 123 | [QuantFans/quantdigger](https://github.com/QuantFans/quantdigger) | 基于python的量化交易平台 | 1.0k | Python | 06/02 |
| 124 | [zhaoyingjun/chatbot](https://github.com/zhaoyingjun/chatbot) | 一个可以自己进行训练的中文聊天机器人, 根据自己的语料训练出自己想要的聊天机器人,可以用于智能客服、在线问答、智能聊天等场景。加入seqGAN版本。 | 1.0k | Python | 08/22 |
| 125 | [Yinzo/SmartQQBot](https://github.com/Yinzo/SmartQQBot) | 基于SmartQQ的自动机器人框架 | 1.0k | Python | 02/11 |
| 126 | [Lucifer1993/struts-scan](https://github.com/Lucifer1993/struts-scan) | Python2编写的struts2漏洞全版本检测和利用工具 | 989 | Python | 05/07 |
| 127 | [dataabc/weiboSpider](https://github.com/dataabc/weiboSpider) | 新浪微博爬虫,用python爬取新浪微博数据 | 979 | Python | 09/01 |
| 128 | [abbeyokgo/PyOne](https://github.com/abbeyokgo/PyOne) | PyOne-一款给力的onedrive文件管理、分享程序 | 974 | Python | 08/19 |
| 129 | [Lucifer1993/AngelSword](https://github.com/Lucifer1993/AngelSword) | Python3编写的CMS漏洞检测框架 | 969 | Python | 04/20 |
| 130 | [killgcd/chromego](https://github.com/killgcd/chromego) | ChromeGo 翻墙工具包 | 944 | Python | 07/29 |
| 131 | [Adyzng/jd-autobuy](https://github.com/Adyzng/jd-autobuy) | Python爬虫,京东自动登录,在线抢购商品 | 941 | Python | 08/19 |
| 132 | [moranzcw/Computer-Networking-A-Top-Down-Approach-NOTES](https://github.com/moranzcw/Computer-Networking-A-Top-Down-Approach-NOTES) | 《计算机网络-自顶向下方法(原书第6版)》编程作业,Wireshark实验文档的翻译和解答。 | 937 | Python | 08/10 |
| 133 | [yangxuanxc/wechat_friends](https://github.com/yangxuanxc/wechat_friends) | 微信好友信息分析并可视化以及自动回复微信消息 | 925 | Python | 03/15 |
| 134 | [ly0/baidupcsapi](https://github.com/ly0/baidupcsapi) | 百度网盘api | 924 | Python | 02/15 |
| 135 | [HuberTRoy/MusicBox](https://github.com/HuberTRoy/MusicBox) | :blush: :musical_note: MusicPlayer 一站式收听多平台音乐(网易云, 虾米, QQ)的跨平台音乐播放器,尽情享受吧~:sparkles: | 892 | Python | 01/23 |
| 136 | [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 | 889 | Python | 01/08 |
| 137 | [zwczou/weixin-python](https://github.com/zwczou/weixin-python) | 微信SDK - 包括微信支付,微信公众号,微信登陆,微信消息处理等 | 888 | Python | 07/25 |
| 138 | [nickliqian/cnn_captcha](https://github.com/nickliqian/cnn_captcha) | use cnn recognize captcha by tensorflow. 本项目针对字符型图片验证码,使用tensorflow实现卷积神经网络,进行验证码识别。 | 873 | Python | 08/22 |
| 139 | [china-testing/python-api-tesing](https://github.com/china-testing/python-api-tesing) | python中文库-python人工智能大数据自动化接口测试开发。 书籍下载及python库汇总https://china-testing.github.io/ | 872 | Python | 08/24 |
| 140 | [iBreaker/bjguahao](https://github.com/iBreaker/bjguahao) | 北京市预约挂号统一平台挂号小助手 | 859 | Python | 08/25 |
| 141 | [duoergun0729/nlp](https://github.com/duoergun0729/nlp) | 兜哥出品 <一本开源的NLP入门书籍> | 840 | Python | 08/06 |
| 142 | [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、御剑。 | 834 | Python | 07/23 |
| 143 | [snowkylin/TensorFlow-cn](https://github.com/snowkylin/TensorFlow-cn) | 简单粗暴TensorFlow \| A Concise Handbook of TensorFlow | 806 | Python | 08/23 |
| 144 | [yzddmr6/webshell-venom](https://github.com/yzddmr6/webshell-venom) | 免杀webshell无限生成工具(利用随机异或无限免杀D盾) | 785 | Python | 08/18 |
| 145 | [anbai-inc/Kibana_Hanization](https://github.com/anbai-inc/Kibana_Hanization) | Kibana 中文汉化 | 779 | Python | 05/10 |
| 146 | [JushuangQiao/Python-Offer](https://github.com/JushuangQiao/Python-Offer) | 《剑指Offer》面试题Python实现 | 757 | Python | 03/09 |
| 147 | [Lam1360/YOLOv3-model-pruning](https://github.com/Lam1360/YOLOv3-model-pruning) | 在 oxford hand 数据集上对 YOLOv3 做模型剪枝(network slimming) | 753 | Python | 08/26 |
| 148 | [FutunnOpen/futuquant](https://github.com/FutunnOpen/futuquant) | 富途开放API Python SDK(因更名废弃, 转到 py-futu-api ) | 746 | Python | 01/22 |
| 149 | [fzlee/alipay](https://github.com/fzlee/alipay) | Python Alipay(支付宝) SDK with SHA1/SHA256 support | 731 | Python | 08/26 |
| 150 | [LyleMi/Learn-Web-Hacking](https://github.com/LyleMi/Learn-Web-Hacking) | Study Notes For Web Hacking / Web安全学习笔记 | 725 | Python | 08/30 |
| 151 | [EugeneLiu/translationCSAPP](https://github.com/EugeneLiu/translationCSAPP) | 为 CSAPP 视频课程提供字幕,翻译 PPT,Lab。 | 724 | Python | 08/31 |
| 152 | [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 | 720 | Python | 09/01 |
| 153 | [al0ne/Vxscan](https://github.com/al0ne/Vxscan) | python3写的综合扫描工具,主要用来敏感文件探测(目录扫描与js泄露接口),WAF/CDN识别,端口扫描,指纹/服务识别,操作系统识别,弱口令探测,POC扫描,SQL注入,绕过CDN,查询旁站等功能,主要用来甲方自测或乙方授权测试,请勿用来搞破坏。 | 716 | Python | 08/19 |
| 154 | [ramsayleung/jd_spider](https://github.com/ramsayleung/jd_spider) | 两只蠢萌京东的分布式爬虫. | 716 | Python | 04/08 |
| 155 | [rainx/pytdx](https://github.com/rainx/pytdx) | Python tdx数据接口 | 709 | Python | 08/26 |
| 156 | [drcoms/drcom-generic](https://github.com/drcoms/drcom-generic) | Dr.COM/DrCOM 现已覆盖 d p x三版。 | 704 | Python | 05/29 |
| 157 | [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 | 701 | Python | 03/04 |
| 158 | [laixintao/python-parallel-programming-cookbook-cn](https://github.com/laixintao/python-parallel-programming-cookbook-cn) | 📖《Python Parallel Programming Cookbook》中文版 | 695 | Python | 08/30 |
| 159 | [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✨ | 686 | Python | 08/23 |
| 160 | [audier/DeepSpeechRecognition](https://github.com/audier/DeepSpeechRecognition) | A Chinese Deep Speech Recognition System 包括基于深度学习的声学模型和基于深度学习的语言模型 | 681 | Python | 03/26 |
| 161 | [0Chencc/CTFCrackTools](https://github.com/0Chencc/CTFCrackTools) | China's first CTFTools framework.中国国内首个CTF工具框架,旨在帮助CTFer快速攻克难关 | 669 | Python | 08/22 |
| 162 | [ownthink/Jiagu](https://github.com/ownthink/Jiagu) | Jiagu深度学习自然语言处理工具 知识图谱关系抽取 中文分词 词性标注 命名实体识别 情感分析 新词发现 关键词 文本摘要 | 669 | Python | 08/11 |
| 163 | [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. | 666 | Python | 08/29 |
| 164 | [jachinlin/geektime_dl](https://github.com/jachinlin/geektime_dl) | 把极客时间装进Kindle | 663 | Python | 08/30 |
| 165 | [seisman/how-to-write-makefile](https://github.com/seisman/how-to-write-makefile) | 跟我一起写Makefile重制版 | 659 | Python | 08/06 |
| 166 | [xiaolai/public-speaking-with-meaning](https://github.com/xiaolai/public-speaking-with-meaning) | 《我也有话要说》—— 普通人的当众讲话技能 | 656 | Python | 08/19 |
| 167 | [zeruniverse/QQRobot](https://github.com/zeruniverse/QQRobot) | QQBot, QQ机器人(群聊小黄鸡) LINUX挂机版, SmartQQ协议。 | 651 | Python | 06/11 |
| 168 | [RicterZ/genpAss](https://github.com/RicterZ/genpAss) | 中国特色的弱口令生成器 | 650 | Python | 04/25 |
| 169 | [nosarthur/gita](https://github.com/nosarthur/gita) | Manage multiple git repos side by side for sanity 不疯了似地管理多个git库 | 645 | Python | 08/05 |
| 170 | [mtianyan/FunpySpiderSearchEngine](https://github.com/mtianyan/FunpySpiderSearchEngine) | 借鉴自慕课网-2019.06.19更新【Scrapy 1.6.0爬取数据 + ElasticSearch6.8.0+Django2.2搜索引擎】【爬虫端】(知乎 & 拉勾(暂不可用) & 伯乐) | 627 | Python | 08/16 |
| 171 | [NewFuture/DDNS](https://github.com/NewFuture/DDNS) | :triangular_flag_on_post: 自动更新域名解析到本机IP(支持dnspod,阿里DNS,CloudFlare,DNSCOM...) | 620 | Python | 08/30 |
| 172 | [githublitao/api_automation_test](https://github.com/githublitao/api_automation_test) | 接口自动化测试平台,已停止维护,看心情改改 | 617 | Python | 07/01 |
| 173 | [iceyhexman/onlinetools](https://github.com/iceyhexman/onlinetools) | 在线cms识别\|信息泄露\|工控\|系统\|物联网安全\|cms漏洞扫描\|nmap端口扫描\|子域名获取\|待续.. | 615 | Python | 08/05 |
| 174 | [yhangf/PythonCrawler](https://github.com/yhangf/PythonCrawler) | :heartpulse:用python编写的爬虫项目集合 | 614 | Python | 05/09 |
| 175 | [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 支持日/月线,分笔,高频数据,前十股东分笔的视觉化 | 599 | Python | 08/25 |
| 176 | [EvilCult/moviecatcher](https://github.com/EvilCult/moviecatcher) | 电影美剧搜索及在线观看离线下载软件,集成热门资源站,借助百度云实现离线下载以及在线播放功能。 | 599 | Python | 07/21 |
| 177 | [sinall/StrategyEase-Python-SDK](https://github.com/sinall/StrategyEase-Python-SDK) | 策略易(StrategyEase)Python SDK,策略自动化交易 API 及量化平台。 | 594 | Python | 07/15 |
| 178 | [gusibi/python-weixin](https://github.com/gusibi/python-weixin) | 微信(weixin\|wechat) Python SDK 支持开放平台和公众平台 支持微信小程序云开发 | 593 | Python | 08/12 |
| 179 | [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。 | 592 | Python | 08/31 |
| 180 | [shunliz/Machine-Learning](https://github.com/shunliz/Machine-Learning) | 机器学习原理 | 590 | Python | 08/20 |
| 181 | [lzjun567/note](https://github.com/lzjun567/note) | 学习笔记 | 586 | Python | 06/19 |
| 182 | [CaoZ/JD-Coin](https://github.com/CaoZ/JD-Coin) | 自动登录京东,打卡领钢镚,签到领京豆 | 585 | Python | 07/16 |
| 183 | [whyliam/whyliam.workflows.youdao](https://github.com/whyliam/whyliam.workflows.youdao) | 使用有道翻译你想知道的单词和语句 | 584 | Python | 07/20 |
| 184 | [httprunner/HttpRunnerManager](https://github.com/httprunner/HttpRunnerManager) | 基于 HttpRunner 的 Web 测试平台,已停止维护。 | 578 | Python | 07/11 |
| 185 | [InsaneLife/ChineseNLPCorpus](https://github.com/InsaneLife/ChineseNLPCorpus) | 中文自然语言处理数据集,平时做做实验的材料。欢迎补充提交合并。 | 563 | Python | 06/23 |
| 186 | [joe011/python](https://github.com/joe011/python) | python常用脚本 | 560 | Python | 04/16 |
| 187 | [Hackxiaoya/CuteOne](https://github.com/Hackxiaoya/CuteOne) | 这大概是最好的onedrive挂载程序了吧,我猜。 | 558 | Python | 07/19 |
| 188 | [521xueweihan/python](https://github.com/521xueweihan/python) | 《笨方法学 Python》(Learn Python the Hard Way)学习笔记 | 551 | Python | 08/18 |
| 189 | [ls0f/phone](https://github.com/ls0f/phone) | 手机号码归属地库 | 543 | Python | 06/03 |
| 190 | [apachecn/python_data_analysis_and_mining_action](https://github.com/apachecn/python_data_analysis_and_mining_action) | 《python数据分析与挖掘实战》的代码笔记 | 534 | Python | 06/22 |
| 191 | [sczhengyabin/Image-Downloader](https://github.com/sczhengyabin/Image-Downloader) | Download images from Google, Bing, Baidu. 谷歌、百度、必应图片下载. | 531 | Python | 04/03 |
| 192 | [PKUJohnson/OpenData](https://github.com/PKUJohnson/OpenData) | 开源的金融投资数据提取工具,专注在各类网站上爬取数据,并通过简单易用的API方式使用 | 529 | Python | 07/22 |
| 193 | [rabbitmask/WeblogicScan](https://github.com/rabbitmask/WeblogicScan) | Weblogic一键漏洞检测工具,V1.3 | 529 | Python | 06/27 |
| 194 | [youyuge34/Anime-InPainting](https://github.com/youyuge34/Anime-InPainting) | An application tool of edge-connect, which can do anime inpainting and drawing. 动漫人物图片自动修复,去马赛克,填补,去瑕疵 | 526 | Python | 03/27 |
| 195 | [dragen1860/Deep-Learning-with-PyTorch-Tutorials](https://github.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials) | 深度学习与PyTorch入门实战视频教程 | 525 | Python | 08/21 |
| 196 | [SimmerChan/KG-demo-for-movie](https://github.com/SimmerChan/KG-demo-for-movie) | 从无到有构建一个电影知识图谱,并基于该KG,开发一个简易的KBQA程序。 | 517 | Python | 05/16 |
| 197 | [SnakeHacker/QA-Snake](https://github.com/SnakeHacker/QA-Snake) | 基于多搜索引擎和深度学习技术的自动问答 | 508 | Python | 04/06 |
| 198 | [twtrubiks/docker-tutorial](https://github.com/twtrubiks/docker-tutorial) | Docker 基本教學 - 從無到有 Docker-Beginners-Guide 教你用 Docker 建立 Django + PostgreSQL 📝 | 506 | Python | 07/27 |
| 199 | [Neeky/mysqltools](https://github.com/Neeky/mysqltools) | 一个用于快速构建大规模,高质量,全自动化的 mysql分布式集群环境的工具;包含mysql 安装、备份、监控、高可用、读写分离、优化、巡检、自行化运维 | 506 | Python | 07/31 |
| 200 | [mtianyan/VueDjangoFrameWorkShop](https://github.com/mtianyan/VueDjangoFrameWorkShop) | 学习自慕课网-前端Vue结合后端DjangoFramework的在线生鲜超市(前后端分离)【django2.2+xadmin+ueditor】+教程【已上线】 | 498 | Python | 06/19 |
⬆ [回到目录](#目录)
<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 | 44.6k | Go | 09/01 |
| 2 | [unknwon/the-way-to-go_ZH_CN](https://github.com/unknwon/the-way-to-go_ZH_CN) | 《The Way to Go》中文译本,中文正式名《Go 入门指南》 | 17.1k | Go | 08/17 |
| 3 | [iikira/BaiduPCS-Go](https://github.com/iikira/BaiduPCS-Go) | 百度网盘客户端 - Go语言编写 | 16.6k | Go | 08/30 |
| 4 | [chai2010/advanced-go-programming-book](https://github.com/chai2010/advanced-go-programming-book) | :books: 《Go语言高级编程》开源图书,涵盖CGO、Go汇编语言、RPC实现、Protobuf插件实现、Web框架实现、分布式系统等高阶主题(完稿) | 9.0k | Go | 08/28 |
| 5 | [peterq/pan-light](https://github.com/peterq/pan-light) | 百度网盘不限速客户端, golang + qt5, 跨平台图形界面 | 8.2k | Go | 08/31 |
| 6 | [cnlh/nps](https://github.com/cnlh/nps) | 一款轻量级、功能强大的内网穿透代理服务器。支持tcp、udp流量转发,支持内网http代理、内网socks5代理,同时支持snappy压缩、站点保护、加密传输、多路复用、header修改等。支持web图形化管理,集成多用户模式。 | 7.2k | Go | 09/02 |
| 7 | [bilibili/kratos](https://github.com/bilibili/kratos) | Kratos是bilibili开源的一套Go微服务框架,包含大量微服务相关框架及工具。 | 6.4k | Go | 08/30 |
| 8 | [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.2k | Go | 08/17 |
| 9 | [polaris1119/The-Golang-Standard-Library-by-Example](https://github.com/polaris1119/The-Golang-Standard-Library-by-Example) | Golang标准库。对于程序员而言,标准库与语言本身同样重要,它好比一个百宝箱,能为各种常见的任务提供完美的解决方案。以示例驱动的方式讲解Golang的标准库。 | 5.6k | Go | 09/01 |
| 10 | [developer-learning/reading-go](https://github.com/developer-learning/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.6k | Go | 08/30 |
| 11 | [huichen/wukong](https://github.com/huichen/wukong) | 高度可定制的全文搜索引擎 | 3.3k | Go | 08/21 |
| 12 | [b3log/pipe](https://github.com/b3log/pipe) | 🎷 一款小而美的博客平台,专为程序员设计。 | 3.2k | Go | 08/29 |
| 13 | [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.2k | Go | 06/19 |
| 14 | [lifei6671/mindoc](https://github.com/lifei6671/mindoc) | Golang实现的基于beego框架的接口在线文档管理系统 | 3.1k | Go | 08/06 |
| 15 | [Tencent/bk-cmdb](https://github.com/Tencent/bk-cmdb) | 蓝鲸智云配置平台(BlueKing CMDB) | 2.8k | Go | 09/01 |
| 16 | [gwuhaolin/lightsocks](https://github.com/gwuhaolin/lightsocks) | ⚡️一个轻巧的网络混淆代理🌏 | 2.8k | Go | 04/28 |
| 17 | [ffhelicopter/Go42](https://github.com/ffhelicopter/Go42) | 《Go语言四十二章经》详细讲述Go语言规范与语法细节及开发中常见的误区,通过研读标准库等经典代码设计模式,启发读者深刻理解Go语言的核心思维,进入Go语言开发的更高阶段。 | 2.8k | Go | 08/30 |
| 18 | [unknwon/go-web-foundation](https://github.com/unknwon/go-web-foundation) | 《Go Web 基础》是一套针对 Google 出品的 Go 语言的视频语音教程,主要面向完成《Go 编程基础》教程后希望进一步了解有关 Go Web 开发的学习者。 | 2.3k | Go | 08/14 |
| 19 | [tophubs/TopList](https://github.com/tophubs/TopList) | 今日热榜,一个获取各大热门网站热门头条的聚合网站,使用Go语言编写,多协程异步快速抓取信息,预览:https://www.printf520.com/hot.html | 1.9k | Go | 08/31 |
| 20 | [shen100/golang123](https://github.com/shen100/golang123) | golang123 是使用 vue、nuxt、node.js 和 golang 开发的知识分享系统 | 1.8k | Go | 08/30 |
| 21 | [360EntSecGroup-Skylar/ElasticHD](https://github.com/360EntSecGroup-Skylar/ElasticHD) | Elasticsearch 可视化DashBoard, 支持Es监控、实时搜索,Index template快捷替换修改,索引列表信息查看, SQL converts to DSL等 | 1.8k | Go | 05/15 |
| 22 | [TruthHun/DocHub](https://github.com/TruthHun/DocHub) | 参考百度文库,使用Beego(Golang)开发的开源文库系统 | 1.8k | Go | 07/14 |
| 23 | [goodrain/rainbond](https://github.com/goodrain/rainbond) | Enterprise application cloud operating system(企业应用云操作系统) | 1.8k | Go | 09/01 |
| 24 | [chaosblade-io/chaosblade](https://github.com/chaosblade-io/chaosblade) | An easy to use and powerful chaos engineering experiment toolkit.(阿里巴巴开源的一款简单易用、功能强大的混沌实验注入工具) | 1.8k | Go | 08/30 |
| 25 | [gwuhaolin/livego](https://github.com/gwuhaolin/livego) | 纯 Go 写的直播服务器 | 1.8k | Go | 06/18 |
| 26 | [chanxuehong/wechat](https://github.com/chanxuehong/wechat) | weixin/wechat/微信公众平台/微信企业号/微信商户平台/微信支付 go/golang sdk | 1.8k | Go | 08/26 |
| 27 | [ouqiang/gocron](https://github.com/ouqiang/gocron) | 定时任务管理系统 | 1.8k | Go | 08/02 |
| 28 | [xmge/gonote](https://github.com/xmge/gonote) | 欢迎各位gopher一起来完善这份笔记,让更多的人能够了解go,学习go,使用go,热爱go. :thumbsup: | 1.7k | Go | 08/01 |
| 29 | [aimerforreimu/auxpi](https://github.com/aimerforreimu/auxpi) | 🍭 集合多家 API 的新一代图床 | 1.7k | Go | 09/01 |
| 30 | [liangdas/mqant](https://github.com/liangdas/mqant) | mqant是一款基于Golang语言的简洁,高效,高性能的分布式游戏服务器框架 | 1.6k | Go | 08/22 |
| 31 | [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/01 |
| 32 | [ysrc/yulong-hids](https://github.com/ysrc/yulong-hids) | 一款由 YSRC 开源的主机入侵检测系统 | 1.5k | Go | 07/30 |
| 33 | [aceld/zinx](https://github.com/aceld/zinx) | 基于Golang轻量级TCP并发服务器框架 | 1.5k | Go | 06/12 |
| 34 | [dreamans/syncd](https://github.com/dreamans/syncd) | syncd是一款开源的代码部署工具,它具有简单、高效、易用等特点,可以提高团队的工作效率. | 1.5k | Go | 08/29 |
| 35 | [silenceper/wechat](https://github.com/silenceper/wechat) | WeChat SDK for Go (微信SDK:简单、易用) | 1.4k | Go | 08/21 |
| 36 | [studygolang/studygolang](https://github.com/studygolang/studygolang) | Go 语言中文网 \| Golang中文社区 \| Go语言学习园地 源码 | 1.4k | Go | 08/25 |
| 37 | [funny/link](https://github.com/funny/link) | Go语言网络层脚手架 | 1.3k | Go | 08/05 |
| 38 | [eyebluecn/tank](https://github.com/eyebluecn/tank) | 《蓝眼云盘》(Eyeblue Cloud Disk) | 1.2k | Go | 08/14 |
| 39 | [eolinker/EOLINKER-GoKu-API-Gateway-CE](https://github.com/eolinker/EOLINKER-GoKu-API-Gateway-CE) | GoKu API Gateway CE,悟空API网关(开源版),是国内首个开源go语言API网关,帮助企业进行API服务治理与API性能安全维护,为企业数字化赋能。 | 1.2k | Go | 05/13 |
| 40 | [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.1k | Go | 08/29 |
| 41 | [go-ego/gse](https://github.com/go-ego/gse) | Go efficient text segmentation; support english, chinese, japanese and other. Go 语言高性能分词 | 1.1k | Go | 07/23 |
| 42 | [linclin/gopub](https://github.com/linclin/gopub) | vue.js(element框架)+golang(beego框架)开发的运维发布系统,支持git,jenkins版本发布,go ssh,BT两种文件传输方式选择,支持部署前准备任务和部署后任务钩子函数 | 1.1k | Go | 06/03 |
| 43 | [shell909090/goproxy](https://github.com/shell909090/goproxy) | 基于go写的隧道代理服务器。 | 1.1k | Go | 02/17 |
| 44 | [TruthHun/BookStack](https://github.com/TruthHun/BookStack) | BookStack,基于MinDoc,使用Beego开发的在线文档管理系统,功能类似Gitbook和看云。 | 1.1k | Go | 08/15 |
| 45 | [chai2010/go2-book](https://github.com/chai2010/go2-book) | :books: 《Go2编程指南》开源图书,重点讲解Go2新特性,以及Go1教程中较少涉及的特性 | 1.0k | Go | 08/08 |
| 46 | [bilibili/overlord](https://github.com/bilibili/overlord) | Overlord是哔哩哔哩基于Go语言编写的memcache和redis&cluster的代理及集群管理功能,致力于提供自动化高可用的缓存服务解决方案。 | 958 | Go | 08/30 |
| 47 | [davyxu/tabtoy](https://github.com/davyxu/tabtoy) | 跨平台的高性能便捷电子表格导出器 | 924 | Go | 08/22 |
| 48 | [xormplus/xorm](https://github.com/xormplus/xorm) | xorm是一个简单而强大的Go语言ORM库,通过它可以使数据库操作非常简便。本库是基于原版xorm的定制增强版本,为xorm提供类似ibatis的配置文件及动态SQL支持,支持AcitveRecord操作 | 892 | Go | 08/27 |
| 49 | [Jinnrry/getAwayBSG](https://github.com/Jinnrry/getAwayBSG) | 逃离北上广 | 861 | Go | 08/09 |
| 50 | [phachon/mm-wiki](https://github.com/phachon/mm-wiki) | MM-Wiki 一个轻量级的企业知识分享与团队协同软件,可用于快速构建企业 Wiki 和团队知识分享平台。部署方便,使用简单,帮助团队构建一个信息共享、文档管理的协作环境。 | 850 | Go | 08/27 |
| 51 | [opensec-cn/kunpeng](https://github.com/opensec-cn/kunpeng) | kunpeng是一个Golang编写的开源POC框架/库,以动态链接库的形式提供各种语言调用,通过此项目可快速开发漏洞检测类的系统。 | 835 | Go | 08/20 |
| 52 | [greymd/ojichat](https://github.com/greymd/ojichat) | おじさんがLINEやメールで送ってきそうな文を生成する | 824 | Go | 07/18 |
| 53 | [george518/PPGo_Job](https://github.com/george518/PPGo_Job) | PPGo_Job是一款可视化的、多人多权限的、一任务多机执行的定时任务管理系统,采用golang开发,安装方便,资源消耗少,支持大并发,可同时管理多台服务器上的定时任务。 | 802 | Go | 08/13 |
| 54 | [MiSecurity/x-patrol](https://github.com/MiSecurity/x-patrol) | github泄露扫描系统 | 779 | Go | 05/13 |
| 55 | [40t/go-sniffer](https://github.com/40t/go-sniffer) | 🔎Sniffing and parsing mysql,redis,http,mongodb etc protocol. 抓包截取项目中的数据库请求并解析成相应的语句。 | 774 | Go | 06/06 |
| 56 | [smallnest/dive-to-gosync-workshop](https://github.com/smallnest/dive-to-gosync-workshop) | 深入Go并发编程研讨课 | 771 | Go | 07/25 |
| 57 | [hacklcx/HFish](https://github.com/hacklcx/HFish) | Extend the enterprise security test open source honeypot system , Record hacker attacks. 扩展企业安全测试主动诱导型开源蜜罐框架系统,记录黑客攻击手段 | 771 | Go | 08/28 |
| 58 | [henson/proxypool](https://github.com/henson/proxypool) | Golang实现的IP代理池 | 768 | Go | 08/11 |
| 59 | [overnote/over-go](https://github.com/overnote/over-go) | Golang笔记:[进度80%]语法/并发思想/web开发/微服务相关 | 764 | Go | 08/28 |
| 60 | [qiniu/qshell](https://github.com/qiniu/qshell) | qshell是利用七牛文档上公开的API实现的一个方便开发者测试和使用七牛API服务的命令行工具。 | 762 | Go | 07/05 |
| 61 | [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更好的性能。 | 740 | Go | 08/15 |
| 62 | [iwannay/jiacrontab](https://github.com/iwannay/jiacrontab) | 简单可信赖的任务管理工具 | 722 | Go | 08/24 |
| 63 | [wuYin/blog](https://github.com/wuYin/blog) | 个人博客 | 707 | Go | 06/16 |
| 64 | [hantmac/Mastering_Go_ZH_CN](https://github.com/hantmac/Mastering_Go_ZH_CN) | 《Mastering GO》中文译本,暂时命名为《玩转 GO》。 | 691 | Go | 08/18 |
| 65 | [zxh0/jvmgo-book](https://github.com/zxh0/jvmgo-book) | 《自己动手写Java虚拟机》源代码 | 690 | Go | 08/08 |
| 66 | [GameXG/TcpRoute2](https://github.com/GameXG/TcpRoute2) | TcpRoute , TCP 层的路由器。对于 TCP 连接自动从多个线路(电信、联通、移动)、多个域名解析结果中选择最优线路。 | 666 | Go | 03/21 |
| 67 | [bilibili/sniper](https://github.com/bilibili/sniper) | 轻量级 go 业务框架。 | 646 | Go | 08/23 |
| 68 | [chai2010/awesome-go-zh](https://github.com/chai2010/awesome-go-zh) | :books: Go资源精选中文版(含中文图书大全) | 624 | Go | 08/16 |
| 69 | [Go-zh/tour](https://github.com/Go-zh/tour) | Go 语言官方教程中文版 | 620 | Go | 05/15 |
| 70 | [smartwalle/alipay](https://github.com/smartwalle/alipay) | 支付宝 AliPay SDK for Go, 集成简单,功能完善,持续更新,已支持公钥证书签名和验签。 | 620 | Go | 08/30 |
| 71 | [owenliang/go-push](https://github.com/owenliang/go-push) | 用GO做推送 | 596 | Go | 01/28 |
| 72 | [wendal/gor](https://github.com/wendal/gor) | Golang编写的静态博客引擎 | 587 | Go | 05/07 |
| 73 | [xluohome/phonedata](https://github.com/xluohome/phonedata) | 手机号码归属地信息库、手机号归属地查询 phone.dat 最后更新:2019年8月 | 576 | Go | 08/10 |
| 74 | [yoki123/ncmdump](https://github.com/yoki123/ncmdump) | netease cloud music copyright protection file dump(golang版本网易云音乐ncm文件格式转换) | 573 | Go | 05/20 |
| 75 | [3xxx/engineercms](https://github.com/3xxx/engineercms) | 工程师知识管理系统:基于golang go语言(beego框架)。每个行业都有自己的知识管理系统,engineercms旨在为土木工程师们打造一款适用的基于web的知识管理系统。它既可以用于管理个人的项目资料,也可以用于管理项目团队资料;它既可以运行于个人电脑,也可以放到服务器上。支持onlyoffice实时文档协作,直接在线编辑dwg文件、office文档,阅览PDF文件。通用的文档流程设置。手机端配套小程序,微信搜索“珠三角设代”或“青少儿书画”即可呼出小程序。 | 559 | Go | 08/11 |
| 76 | [mozillazg/go-pinyin](https://github.com/mozillazg/go-pinyin) | 汉字转拼音 | 539 | Go | 04/06 |
| 77 | [itcloudy/ERP](https://github.com/itcloudy/ERP) | 基于beego的进销存系统 | 537 | Go | 04/18 |
| 78 | [ixre/go2o](https://github.com/ixre/go2o) | Golang基于DDD的o2o的业务模型及基础 | 533 | Go | 08/27 |
| 79 | [wangsongyan/wblog](https://github.com/wangsongyan/wblog) | 基于gin+gorm开发的个人博客项目 | 528 | Go | 07/12 |
| 80 | [liushuchun/wechatcmd](https://github.com/liushuchun/wechatcmd) | 提供微信终端版本、微信命令行版本聊天功能、微信机器人 | 521 | Go | 04/22 |
| 81 | [gopcp/example.v2](https://github.com/gopcp/example.v2) | An example project for book 'Go Programming & Concurrency in Practice, 2nd edition' (《Go并发编程实战》第2版). | 516 | Go | 06/03 |
| 82 | [wyh267/FalconEngine](https://github.com/wyh267/FalconEngine) | 一个go语言实现的简单搜索引擎 | 514 | Go | 02/19 |
| 83 | [micro-in-cn/tutorials](https://github.com/micro-in-cn/tutorials) | Micro 中文示例、教程、资料,源码解读 | 514 | Go | 09/01 |
| 84 | [bobohume/gonet](https://github.com/bobohume/gonet) | go分布式服务器,基于内存mmo | 508 | Go | 08/30 |
| 85 | [fanux/sealos](https://github.com/fanux/sealos) | kubernetes高可用安装工具,一条命令,离线安装,包含所有依赖 | 493 | Go | 08/31 |
| 86 | [alibaba/MongoShake](https://github.com/alibaba/MongoShake) | MongoShake is a universal data replication platform based on MongoDB's oplog. Redundant replication and active-active replication are two most important functions. 基于mongodb oplog的集群复制工具,可以满足迁移和同步的需求,进一步实现灾备和多活功能。 | 430 | Go | 08/29 |
| 87 | [lhtzbj12/sdrms](https://github.com/lhtzbj12/sdrms) | 基于Beego开发的易用、易扩展、界面友好的轻量级功能权限管理系统 | 425 | Go | 07/01 |
| 88 | [alibaba/RedisShake](https://github.com/alibaba/RedisShake) | Redis-shake is a tool for synchronizing data between two redis databases. Redis-shake是一个用于在两个redis之间同步数据的工具,满足用户非常灵活的同步、迁移需求。 | 423 | Go | 08/27 |
| 89 | [alberliu/goim](https://github.com/alberliu/goim) | golang写的IM服务器 | 412 | Go | 09/01 |
| 90 | [gcpug/nouhau](https://github.com/gcpug/nouhau) | Google Cloud Platformのノウハウを共有するRepository | 409 | Go | 07/02 |
| 91 | [duolatech/xapimanager](https://github.com/duolatech/xapimanager) | XAPI MANAGER -专业实用的开源接口管理平台,为程序开发者提供一个灵活,方便,快捷的API管理工具,让API管理变的更加清晰、明朗。如果你觉得xApi对你有用的话,别忘了给我们点个赞哦^_^ ! | 399 | Go | 08/30 |
| 92 | [hanchuanchuan/goInception](https://github.com/hanchuanchuan/goInception) | 一个集审核、执行、备份及生成回滚语句于一身的MySQL运维工具 | 385 | Go | 09/01 |
| 93 | [Golangltd/codeclass](https://github.com/Golangltd/codeclass) | Golang语言社区--腾讯课堂、网易云课堂、字节教育课程PPT及代码 | 385 | Go | 05/09 |
| 94 | [yangwenmai/learning-golang](https://github.com/yangwenmai/learning-golang) | Go 学习之路:Go 开发者博客、Go 微信公众号、Go 学习资料(文档、书籍、视频) | 376 | Go | 05/06 |
| 95 | [medivhzhan/weapp](https://github.com/medivhzhan/weapp) | GO 微信小程序 SDK | 366 | Go | 08/30 |
| 96 | [hb-go/echo-web](https://github.com/hb-go/echo-web) | Go web framework Echo example. 在线演示☞ | 342 | Go | 05/29 |
| 97 | [jemygraw/TechDoc](https://github.com/jemygraw/TechDoc) | 自己编写的技术文档汇总 | 338 | Go | 07/04 |
| 98 | [silenceper/pool](https://github.com/silenceper/pool) | Golang 通用网络连接池 | 334 | Go | 05/01 |
| 99 | [TeaWeb/build](https://github.com/TeaWeb/build) | TeaWeb-可视化的Web代理服务。DEMO: http://teaos.cn:7777 | 329 | Go | 09/01 |
| 100 | [wiatingpub/MTBSystem](https://github.com/wiatingpub/MTBSystem) | 使用go-micro微服务实现的在线电影院订票系统 | 321 | Go | 08/02 |
| 101 | [didi/falcon-log-agent](https://github.com/didi/falcon-log-agent) | 用于监控系统的日志采集agent,可无缝对接open-falcon | 313 | Go | 08/09 |
| 102 | [zgs225/alfred-youdao](https://github.com/zgs225/alfred-youdao) | 有道词典 for Alfred | 310 | Go | 04/30 |
| 103 | [33cn/chain33](https://github.com/33cn/chain33) | 高度模块化, 遵循 KISS原则的区块链开发框架 | 309 | Go | 08/29 |
| 104 | [Echosong/beego_blog](https://github.com/Echosong/beego_blog) | beego+layui+mysql 开发 简洁美观的个人博客系统 | 301 | Go | 07/31 |
| 105 | [otiai10/amesh](https://github.com/otiai10/amesh) | みんなだいすき東京アメッシュ! | 296 | Go | 08/21 |
| 106 | [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.)。 | 293 | Go | 08/21 |
| 107 | [tjfoc/gmsm](https://github.com/tjfoc/gmsm) | GM SM2/3/4 library based on Golang (基于Go语言的国密SM2/SM3/SM4算法库) | 278 | Go | 08/28 |
| 108 | [wumansgy/GoAndBlockChainStudy](https://github.com/wumansgy/GoAndBlockChainStudy) | go and blockchain study note,欢迎各位志同道合的朋友一起完善,让更多的go或者区块链开发者能够有一份不错的学习资料 | 277 | Go | 01/15 |
| 109 | [objcoding/wxpay](https://github.com/objcoding/wxpay) | 微信支付(WeChat Pay) SDK for Golang | 274 | Go | 08/15 |
| 110 | [qit-team/snow](https://github.com/qit-team/snow) | 简洁易用的Go业务框架 | 264 | Go | 08/16 |
| 111 | [silenceper/gowatch](https://github.com/silenceper/gowatch) | go程序热编译工具,提升开发效率 | 253 | Go | 08/21 |
| 112 | [chai2010/gopherchina2018-cgo-talk](https://github.com/chai2010/gopherchina2018-cgo-talk) | :book: GopherChina2018: 深入CGO编程 - 最新修订 | 250 | Go | 06/19 |
| 113 | [b3log/gulu](https://github.com/b3log/gulu) | ⭕ Go 语言常用工具库,这个轱辘还算圆! | 248 | Go | 08/29 |
| 114 | [ego008/goyoubbs](https://github.com/ego008/goyoubbs) | golang 实现的youBBS,自动安装、更新HTTPS | 248 | Go | 06/19 |
| 115 | [godcong/fate](https://github.com/godcong/fate) | fate 命运 起名 算命 宝宝起名 | 241 | Go | 08/12 |
| 116 | [qiniu/arch](https://github.com/qiniu/arch) | 极客时间专栏《许式伟的架构课》相关的源代码:冯诺伊曼结构 | 232 | Go | 02/10 |
| 117 | [snowlyg/IrisApiProject](https://github.com/snowlyg/IrisApiProject) | 采用 iris 框架的后台 api ,采用了 gorm 数据库模块 和 jwt 的单点登陆认证方式,测试默认使用了 sqlite3 数据库 | 231 | Go | 03/14 |
| 118 | [Kevin-fqh/learning-k8s-source-code](https://github.com/Kevin-fqh/learning-k8s-source-code) | k8s、docker源码分析、读书笔记 | 229 | Go | 07/27 |
| 119 | [hb-go/micro](https://github.com/hb-go/micro) | go-micro 微服务实践 | 227 | Go | 07/31 |
| 120 | [zxh0/luago-book](https://github.com/zxh0/luago-book) | 《自己动手实现Lua》源代码 | 224 | Go | 07/12 |
| 121 | [EndlessCheng/mahjong-helper](https://github.com/EndlessCheng/mahjong-helper) | 日本麻将助手:牌效+防守+记牌(支持雀魂、天凤) | 224 | Go | 08/06 |
| 122 | [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 环境 | 219 | Go | 09/01 |
| 123 | [ma6254/FictionDown](https://github.com/ma6254/FictionDown) | 小说下载\|小说爬取\|起点\|笔趣阁\|导出Markdown\|导出txt\|转换epub\|广告过滤\|自动校对 | 217 | Go | 05/15 |
| 124 | [zc2638/go-standard](https://github.com/zc2638/go-standard) | Go标准库所有方法使用示例,请注意这不是Go的中文版标准库(内含传送门),持续更新example | 215 | Go | 06/13 |
| 125 | [Golangltd/LollipopGo](https://github.com/Golangltd/LollipopGo) | Golang语言社区 全球服游戏服务器框架,目前协议支持websocket、http及RPC,采用状态同步,愿景:打造竞技实时【比赛】对战游戏平台框架! 功能持续更新中... ... | 215 | Go | 07/02 |
| 126 | [mlogclub/mlog](https://github.com/mlogclub/mlog) | 基于Golang的社区系统。 | 207 | Go | 08/16 |
| 127 | [baiyutang/meetup](https://github.com/baiyutang/meetup) | 【❤️ 互联网最全大厂技术分享PPT 👍🏻 持续更新中!】🍻各大技术交流会、活动资料汇总 ,如 👉QCon👉全球运维技术大会 👉 GDG 👉 全球技术领导力峰会👉大前端大会👉架构师峰会👉敏捷开发DevOps👉OpenResty👉Elastic,欢迎 PR / Issues | 207 | Go | 08/23 |
| 128 | [mikemintang/gonews](https://github.com/mikemintang/gonews) | 基于go+vue实现的golang每日新闻可视化浏览检索平台 | 204 | Go | 07/25 |
| 129 | [micro-in-cn/all-in-one](https://github.com/micro-in-cn/all-in-one) | micro 特性全合一项目示例 [归档] 移步至:https://github.com/micro-in-cn/tutorials | 201 | Go | 07/28 |
| 130 | [childe/gohangout](https://github.com/childe/gohangout) | golang版本的hangout, 希望能省些内存. 使用了自己写的Kafka lib .. 虚. 不过我们在生产环境已经使用近1年, kafka 版本从0.9.0.1到2.0都在使用, 目前情况稳定. 吞吐量在每天2000亿条以上. | 200 | Go | 08/25 |
| 131 | [jaywcjlove/golang-tutorial](https://github.com/jaywcjlove/golang-tutorial) | Go语言快速入门 | 198 | Go | 02/08 |
| 132 | [esap/wechat](https://github.com/esap/wechat) | 微信SDK的golang实现,短小精悍,同时兼容【企业号/服务号/订阅号/小程序】 | 196 | Go | 07/24 |
| 133 | [hr3lxphr6j/bililive-go](https://github.com/hr3lxphr6j/bililive-go) | 一个直播录制工具 | 196 | Go | 08/30 |
| 134 | [chanyipiaomiao/devops-api](https://github.com/chanyipiaomiao/devops-api) | Golang + Beego 编写 提供开发/运维常用操作的HTTP API接口: 手机归属地查询、IP地址查询、工作日节假日判断、微信报警、钉钉报警、2步验证、密码存储、发送邮件、生成随机密码等功能 | 194 | Go | 04/02 |
| 135 | [magiclvzs/antnet](https://github.com/magiclvzs/antnet) | A game server net framework in Golang go(Golang)游戏服务器网络框架 | 192 | Go | 07/24 |
| 136 | [pingguoxueyuan/gostudy](https://github.com/pingguoxueyuan/gostudy) | gostudy是关于golang的学习教程,采用通俗易懂、实践和理论相结合的方式,阐述golang各个方面的特性,尽快让初学者通过项目实践,快速的上手并成为经验丰富的golang开发者 | 180 | Go | 06/30 |
| 137 | [yanjunhui/chat](https://github.com/yanjunhui/chat) | 微信企业号发送监控 for OpenFalcon | 180 | Go | 02/27 |
| 138 | [Leslie1sMe/golang](https://github.com/Leslie1sMe/golang) | Golang的实战项目,学习笔记,代码例程汇总。 | 178 | Go | 04/03 |
| 139 | [dengsgo/fileboy](https://github.com/dengsgo/fileboy) | fileboy,文件变更监听通知系统,使用 Go 编写。Fileboy, File Change Monitoring Notification System, written with Go. | 176 | Go | 08/12 |
| 140 | [Terry-Ye/im](https://github.com/Terry-Ye/im) | 纯go实现的分布式im即时通讯系统,各层可单独部署,之间通过rpc通讯 | 176 | Go | 03/23 |
| 141 | [qieguo2016/algorithm](https://github.com/qieguo2016/algorithm) | 常用算法和数据结构讲解,面试算法题/leetcode解题,提供golang/js版本 | 169 | Go | 08/31 |
| 142 | [tuotoo/qrcode](https://github.com/tuotoo/qrcode) | qrcode scanner ( decoder ) by golang 二维码扫描识别 | 168 | Go | 07/11 |
| 143 | [zboya/golang_runtime_reading](https://github.com/zboya/golang_runtime_reading) | golang 1.10.2 runtime code reading - golang runtime源码分析。只有思考过,你才会印象深刻。 | 164 | Go | 07/22 |
| 144 | [issue9/identicon](https://github.com/issue9/identicon) | Go 语言版 identicon 头像产生工具 | 162 | Go | 03/24 |
| 145 | [countstarlight/homo](https://github.com/countstarlight/homo) | 一个基于离线唤醒,自然语言理解和情感分析的开源自然交互系统 | 159 | Go | 07/14 |
| 146 | [winterssy/music-get](https://github.com/winterssy/music-get) | 网易云音乐、QQ音乐一键下载工具 | 159 | Go | 08/27 |
| 147 | [milkbobo/gopay](https://github.com/milkbobo/gopay) | golang支付:微信公众号,微信app,微信小程序,微信企业支付,支付宝网页版,支付宝app,支付宝企业支付 | 158 | Go | 08/27 |
| 148 | [cnbattle/douyin](https://github.com/cnbattle/douyin) | 抖音推荐列表视频爬虫方案,基于app(虚拟机或真机) 相关技术 golang adb nodejs anyproxy | 157 | Go | 09/01 |
| 149 | [iGoogle-ink/gopay](https://github.com/iGoogle-ink/gopay) | 微信(WeChat)、支付宝(Alipay)的Go版本SDK。【持续更新,望开发者及时升级】 | 155 | Go | 09/01 |
| 150 | [isucon/isucon7-qualify](https://github.com/isucon/isucon7-qualify) | ISUCON7 予選問題の参照実装とベンチマーカー | 154 | Go | 08/31 |
| 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 | 152 | Go | 08/22 |
| 152 | [gfandada/gserver](https://github.com/gfandada/gserver) | 通用的实时流golang框架,可以方便的创建游戏服务/聊天服务等 | 150 | Go | 04/16 |
| 153 | [afocus/captcha](https://github.com/afocus/captcha) | simple captcha for golang (go验证码生成器) | 148 | Go | 04/03 |
| 154 | [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。 | 147 | Go | 08/13 |
| 155 | [bydmm/singo](https://github.com/bydmm/singo) | 用最简单的架构,实现够用的框架,服务海量用户 | 146 | Go | 08/29 |
| 156 | [Gopusher/gateway](https://github.com/Gopusher/gateway) | 🚀构建分布式即时聊天、消息推送系统。 Building distributed instant messaging, push notification systems. | 146 | Go | 08/20 |
| 157 | [freshcn/qqwry](https://github.com/freshcn/qqwry) | 纯真ip库的golang服务 | 145 | Go | 05/20 |
| 158 | [Tinywan/golang-tutorial](https://github.com/Tinywan/golang-tutorial) | :bouquet: Golang 系列教程(译) | 145 | Go | 05/26 |
| 159 | [islenbo/autossh](https://github.com/islenbo/autossh) | No password ssh client for Mac/Linux, one key login remote server. 一个SSH远程客户端,可一键登录远程服务器,主要用来弥补Mac/Linux Terminal SSH无法保存密码的不足。 | 145 | Go | 08/22 |
| 160 | [bydmm/giligili](https://github.com/bydmm/giligili) | Singo框架教学项目 | 145 | Go | 09/01 |
| 161 | [lifei6671/interview-go](https://github.com/lifei6671/interview-go) | golang面试题集合 | 142 | Go | 08/19 |
| 162 | [it234/goapp](https://github.com/it234/goapp) | Gin + GORM + Casbin + vue-element-admin 实现的权限管理系统(golang) | 142 | Go | 06/05 |
| 163 | [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 | 142 | Go | 04/11 |
| 164 | [Comdex/imgo](https://github.com/Comdex/imgo) | golang图像处理工具库(golang image process lib) | 141 | Go | 01/21 |
| 165 | [silsuer/golang-design-patterns](https://github.com/silsuer/golang-design-patterns) | 使用golang实现各种设计模式 | 140 | Go | 02/11 |
| 166 | [lifei6671/go-git-webhook](https://github.com/lifei6671/go-git-webhook) | Golang 实现的自动化部署和运维工具,支持:Github / GitLab / GitOsc。 | 137 | Go | 06/14 |
| 167 | [antlinker/go-dirtyfilter](https://github.com/antlinker/go-dirtyfilter) | Golang基于DFA算法实现的敏感词过滤 | 137 | Go | 06/02 |
| 168 | [knownsec/gsm](https://github.com/knownsec/gsm) | 使用树莓派配合硬件来进行短信转发 | 137 | Go | 05/08 |
| 169 | [imroc/ontts](https://github.com/imroc/ontts) | 科大讯飞语音linux在线语音合成后台服务 | 136 | Go | 03/01 |
| 170 | [sundy-li/html2article](https://github.com/sundy-li/html2article) | 基于文本密度的html2article实现[golang] | 134 | Go | 04/05 |
| 171 | [liunian1004/pdd](https://github.com/liunian1004/pdd) | pdd golang sdk. (拼多多开放平台 golang SDK) | 133 | Go | 03/29 |
| 172 | [Hentioe/sorry-generator](https://github.com/Hentioe/sorry-generator) | 王境泽/偷车贼/为所欲为等字幕梗生成器 for Golang | 131 | Go | 05/03 |
| 173 | [sinksmell/LanBlog](https://github.com/sinksmell/LanBlog) | 懒人博客,前后端分离,Vue+Beego Restful api 开箱即用,部署简单,后台管理系统简洁美观。 | 131 | Go | 05/19 |
| 174 | [yaotian/gowechat](https://github.com/yaotian/gowechat) | golang WeChat 封装,支持微信公众平台(订阅号,服务号)/微信商家平台/微信开放平台/微信企业号 | 130 | Go | 06/07 |
| 175 | [ItsWewin/go-chat](https://github.com/ItsWewin/go-chat) | Golang 高并发聊天程序/go chat room | 128 | Go | 07/01 |
| 176 | [micro-plat/hydra](https://github.com/micro-plat/hydra) | 分布式微服务框架(用于快速开发http接口, web应用,rpc服务,websocket服务,定时任务,消息消费等) | 128 | Go | 08/26 |
| 177 | [Shitaibin/golang_step_by_step](https://github.com/Shitaibin/golang_step_by_step) | Golang入门教程的文章、示例代码,喜欢就star,订阅就watch | 128 | Go | 08/21 |
| 178 | [brokercap/Bifrost](https://github.com/brokercap/Bifrost) | Bifrost ---- 将 MySQL 数据 实时同步 到 Redis , MongoDB 等服务的高性能异构中间件 | 127 | Go | 08/31 |
| 179 | [indes/flowerss-bot](https://github.com/indes/flowerss-bot) | A telegram bot for rss reader. 一个支持应用内阅读的 Telegram RSS Bot。 | 127 | Go | 07/29 |
| 180 | [mylxsw/remote-tail](https://github.com/mylxsw/remote-tail) | RemoteTail用于同步监控多台服务器日志文件变更,一句话说就是多主机的远程tail。 | 126 | Go | 06/28 |
| 181 | [mydevc/go-gin-mvc](https://github.com/mydevc/go-gin-mvc) | 基于框架gin+xorm搭建的MVC项目架子,适合初学者 | 126 | Go | 02/22 |
| 182 | [nange/gospider](https://github.com/nange/gospider) | golang实现的爬虫框架,使用者只需关心页面规则,提供web管理界面。基于colly开发。 | 126 | Go | 08/05 |
| 183 | [hellobike/amazonriver](https://github.com/hellobike/amazonriver) | amazonriver 是一个将postgresql的实时数据同步到es或kafka的服务 | 125 | Go | 07/05 |
| 184 | [fanpei91/gap-proxy](https://github.com/fanpei91/gap-proxy) | gap-proxy 是一个加速网络的 SOCKS5 安全代理工具。 | 125 | Go | 07/06 |
| 185 | [cookieY/Yearning-go](https://github.com/cookieY/Yearning-go) | Mysql web端sql审核平台 | 122 | Go | 08/13 |
| 186 | [ouqiang/timewheel](https://github.com/ouqiang/timewheel) | 时间轮定时器 | 122 | Go | 01/02 |
| 187 | [eleme/tedis](https://github.com/eleme/tedis) | 基于TiKV的兼容Redis协议的强一致性NoSQL数据库 | 120 | Go | 05/22 |
| 188 | [wumansgy/goEncrypt](https://github.com/wumansgy/goEncrypt) | go语言封装的各种对称加密和非对称加密,可以直接使用,包括3重DES,AES的CBC和CTR模式,还有RSA非对称加密,ECC椭圆曲线的加密和数字签名 | 119 | Go | 08/22 |
| 189 | [gookit/validate](https://github.com/gookit/validate) | Go package for data validation and filtering. support Map, Struct, Form data. Go通用的数据验证与过滤库,使用简单,内置大部分常用验证、过滤器,支持自定义验证器、自定义消息、字段翻译。 | 118 | Go | 08/30 |
| 190 | [l3m0n/whatweb](https://github.com/l3m0n/whatweb) | 更快速的进行Web应用指纹识别 | 118 | Go | 05/09 |
| 191 | [lozy219/TrustScience](https://github.com/lozy219/TrustScience) | 相信科学 | 117 | Go | 07/07 |
| 192 | [hequan2017/go-admin](https://github.com/hequan2017/go-admin) | go web api,包含gin+gorm+jwt+rbac等。 | 117 | Go | 08/20 |
| 193 | [mritd/idgen](https://github.com/mritd/idgen) | 一个使用 golang 编写的大陆身份证生成器 | 116 | Go | 05/28 |
| 194 | [zhenbianshu/DesignPattern](https://github.com/zhenbianshu/DesignPattern) | 设计模式 | 115 | Go | 03/04 |
| 195 | [importcjj/sensitive](https://github.com/importcjj/sensitive) | 敏感词查找,验证,过滤和替换 🤓 FindAll, Validate, Filter and Replace words. | 112 | Go | 06/11 |
| 196 | [wenzhenxi/phalgo](https://github.com/wenzhenxi/phalgo) | phalgo 已经更换为 https://github.com/sunmi-OS/gocore phalgo不在维护 | 109 | Go | 06/25 |
| 197 | [magicsea/h5game](https://github.com/magicsea/h5game) | io类开房间游戏类型,服务器使用golang,客户端使用cocos creator | 109 | Go | 07/10 |
| 198 | [MineCoinChain/WEHousing](https://github.com/MineCoinChain/WEHousing) | Golang微服务+区块链实战---go+micro+fabric实现租房上链系统(附详细教程) | 109 | Go | 08/15 |
| 199 | [dwg255/landlord](https://github.com/dwg255/landlord) | 斗地主 | 108 | Go | 06/28 |
| 200 | [DOUBLE-Baller/WebRTC_IM](https://github.com/DOUBLE-Baller/WebRTC_IM) | webrtc 直播连麦 | 107 | Go | 03/15 |
⬆ [回到目录](#目录)
<br/>
## PHP
| # | Repository | Description | Stars | Language | Updated |
| ---- | ------------------------------------------------------------ | ------------------------------------------------------------ | ----- | -------- | ------- |
| 1 | [top-think/think](https://github.com/top-think/think) | PHP Framework ThinkPHP——为API开发而设计的高性能PHP框架 | 7.0k | PHP | 08/27 |
| 2 | [helloqingfeng/Awsome-Front-End-learning-resource](https://github.com/helloqingfeng/Awsome-Front-End-learning-resource) | :octocat:GitHub最全的前端资源汇总仓库(包括前端学习、开发资源、求职面试等) | 5.9k | 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.5k | 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 | 09/01 |
| 6 | [overtrue/pinyin](https://github.com/overtrue/pinyin) | :cn: 基于词库的中文转拼音优质解决方案 | 3.0k | PHP | 07/05 |
| 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 | [top-think/thinkphp](https://github.com/top-think/thinkphp) | ThinkPHP3.2 ——基于PHP5的简单快速的面向对象的PHP框架 | 2.8k | PHP | 05/23 |
| 10 | [yansongda/pay](https://github.com/yansongda/pay) | 可能是我用过的最优雅的 Alipay 和 WeChat 的支付 SDK 扩展包了 | 2.7k | PHP | 09/01 |
| 11 | [cloudreve/Cloudreve](https://github.com/cloudreve/Cloudreve) | 🌈支持多家云存储的云盘系统 (A project helps you build your own cloud in minutes) | 2.5k | PHP | 07/11 |
| 12 | [overtrue/laravel-wechat](https://github.com/overtrue/laravel-wechat) | 微信 SDK for Laravel, 基于 overtrue/wechat | 2.2k | PHP | 07/18 |
| 13 | [matyhtf/framework](https://github.com/matyhtf/framework) | SPF (Swoole PHP Framework),世界第一款基于Swoole扩展的PHP框架,开发者是Swoole创始人 | 2.1k | PHP | 08/31 |
| 14 | [helei112g/payment](https://github.com/helei112g/payment) | Payment是php版本的支付聚合第三方sdk,集成了微信支付、支付宝支付、招商一网通支付。提供统一的调用接口,方便快速接入各种支付、查询、退款、转账能力。服务端接入支付功能,方便、快捷。 | 1.9k | PHP | 07/01 |
| 15 | [summerblue/laravel-shop](https://github.com/summerblue/laravel-shop) | Laravel 电商实战教程的项目代码 | 1.8k | PHP | 08/14 |
| 16 | [overtrue/easy-sms](https://github.com/overtrue/easy-sms) | :calling: 一款满足你的多种发送需求的短信发送组件 | 1.8k | PHP | 08/08 |
| 17 | [jae-jae/QueryList](https://github.com/jae-jae/QueryList) | :spider: The progressive PHP crawler framework! 优雅的渐进式PHP采集框架。 | 1.7k | 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.5k | PHP | 06/25 |
| 20 | [c0ny1/upload-labs](https://github.com/c0ny1/upload-labs) | 一个想帮你总结所有类型的上传漏洞的靶场 | 1.4k | PHP | 06/07 |
| 21 | [SwooleDistributed/SwooleDistributed](https://github.com/SwooleDistributed/SwooleDistributed) | swoole 分布式全栈框架 | 1.4k | PHP | 04/30 |
| 22 | [zoujingli/ThinkAdmin](https://github.com/zoujingli/ThinkAdmin) | 基于 ThinkPHP 5.1 基础开发平台(登录账号密码都是 admin ) | 1.3k | PHP | 08/29 |
| 23 | [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 |
| 24 | [mix-php/mix](https://github.com/mix-php/mix) | ☄️Mix PHP — 基于 Swoole 的 FastCGI、常驻内存、协程三模 PHP 高性能框架 (开发文档完善) | 1.2k | PHP | 08/30 |
| 25 | [Qsnh/meedu](https://github.com/Qsnh/meedu) | 基于Laravel开发的在线点播系统。 | 1.2k | PHP | 07/28 |
| 26 | [honraytech/VueThink](https://github.com/honraytech/VueThink) | VueThink是一套基于Vue全家桶(Vue2.x + Vue-router2.x + Vuex)+ ThinkPHP5的前后端分离框架。 | 1.2k | PHP | 03/05 |
| 27 | [hightman/xunsearch](https://github.com/hightman/xunsearch) | 免费开源的中文搜索引擎,采用 C/C++ 编写 (基于 xapian 和 scws),提供 PHP 的开发接口和丰富文档 | 1.2k | PHP | 04/26 |
| 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.1k | 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 | 08/12 |
| 30 | [zorlan/skycaiji](https://github.com/zorlan/skycaiji) | 蓝天采集器是一款免费的数据采集发布爬虫软件,采用php+mysql开发,可部署在云服务器,几乎能采集所有类型的网页,无缝对接各类CMS建站程序,免登录实时发布数据,全自动无需人工干预!是大数据、云时代网站数据自动化采集的最佳云端爬虫软件 | 1.1k | PHP | 06/23 |
| 31 | [helloxz/imgurl](https://github.com/helloxz/imgurl) | ImgURL是一个简单、纯粹的图床程序,让个人图床多一个选择。 | 1.1k | PHP | 07/21 |
| 32 | [Piplin/Piplin](https://github.com/Piplin/Piplin) | :outbox_tray: An open source self-hosted continuous integration and deployment system - QQ群: 656868 | 998 | PHP | 07/18 |
| 33 | [zhanghuanchong/icon-workshop](https://github.com/zhanghuanchong/icon-workshop) | 图标工场 - 移动应用图标生成工具,一键生成所有尺寸的应用图标和启动图 | 958 | PHP | 08/29 |
| 34 | [thenbsp/wechat](https://github.com/thenbsp/wechat) | 微信公众平台第三方 SDK 开发包,优雅、健壮,可扩展,遵循 PSR 开发规范。 | 957 | PHP | 01/18 |
| 35 | [hui-ho/WebStack-Laravel](https://github.com/hui-ho/WebStack-Laravel) | 一个开源的网址导航网站项目,您可以拿来制作自己的网址导航。 | 920 | PHP | 08/23 |
| 36 | [Tai7sy/card-system](https://github.com/Tai7sy/card-system) | 个人在线发卡系统,高效安全的发卡平台 | 861 | PHP | 07/25 |
| 37 | [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. | 852 | PHP | 06/11 |
| 38 | [MoeNetwork/Tieba-Cloud-Sign](https://github.com/MoeNetwork/Tieba-Cloud-Sign) | 百度贴吧云签到,在服务器上配置好就无需进行任何操作便可以实现贴吧的全自动签到。配合插件使用还可实现云灌水、点赞、封禁、删帖、审查等功能 | 835 | PHP | 06/14 |
| 39 | [geesondog/rhaphp](https://github.com/geesondog/rhaphp) | 微信公众号管理系统,也是一套微信公众号开发框架。支持移动管理,几乎集合微信功能,简洁、快速上手、快速开发微信各种各样应用。 | 830 | PHP | 08/06 |
| 40 | [overtrue/api.yike.io](https://github.com/overtrue/api.yike.io) | 一刻社区后端 API 源码 | 829 | PHP | 08/29 |
| 41 | [ZhuFaner/shadowsocks-manage-system](https://github.com/ZhuFaner/shadowsocks-manage-system) | 科学上网管理系统 | 821 | PHP | 03/15 |
| 42 | [TideSec/WDScanner](https://github.com/TideSec/WDScanner) | WDScanner平台目前实现了如下功能:分布式web漏洞扫描、客户管理、漏洞定期扫描、子域名枚举、端口扫描、网站爬虫、暗链检测、坏链检测、网站指纹搜集、专项漏洞检测、代理搜集及部署等功能。 | 803 | PHP | 07/04 |
| 43 | [bowu678/php_bugs](https://github.com/bowu678/php_bugs) | PHP代码审计分段讲解 | 789 | PHP | 06/04 |
| 44 | [Leslin/thinkphp5-restfulapi](https://github.com/Leslin/thinkphp5-restfulapi) | restful-api风格接口 APP接口 APP接口权限 oauth2.0 接口版本管理 接口鉴权 | 775 | PHP | 07/10 |
| 45 | [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 | 772 | PHP | 06/12 |
| 46 | [typecho-fans/plugins](https://github.com/typecho-fans/plugins) | Typecho开源插件集群 | 753 | PHP | 07/29 |
| 47 | [mashirozx/Sakura](https://github.com/mashirozx/Sakura) | A Wonderful WordPress Theme: 樱花庄的白猫博客主题 | 720 | PHP | 08/26 |
| 48 | [peinhu/AetherUpload-Laravel](https://github.com/peinhu/AetherUpload-Laravel) | A Laravel package to upload large files 上传大文件的Laravel扩展包 | 687 | PHP | 07/16 |
| 49 | [gongwalker/ApiManager](https://github.com/gongwalker/ApiManager) | 接口文档管理工具 | 634 | PHP | 01/10 |
| 50 | [yansongda/laravel-pay](https://github.com/yansongda/laravel-pay) | 可能是我用过的最优雅的 Alipay 和 WeChat 的 laravel 支付扩展包了 | 633 | PHP | 03/13 |
| 51 | [swlib/saber](https://github.com/swlib/saber) | ⚔️ Saber, PHP异步协程HTTP客户端 \| PHP Coroutine HTTP client - Swoole Humanization Library | 616 | PHP | 08/27 |
| 52 | [assimon/ysfaka](https://github.com/assimon/ysfaka) | 云尚自动发卡(年度版已发布,请前往https://github.com/assimon/yearysfk ) 下载 | 595 | PHP | 07/12 |
| 53 | [kevinyan815/Learning_Laravel_Kernel](https://github.com/kevinyan815/Learning_Laravel_Kernel) | Laravel核心代码学习 | 584 | PHP | 08/01 |
| 54 | [zoujingli/WeChatDeveloper](https://github.com/zoujingli/WeChatDeveloper) | 【新】微信服务号+微信小程序+微信支付+支付宝支付 | 579 | PHP | 07/08 |
| 55 | [jianyan74/rageframe2](https://github.com/jianyan74/rageframe2) | 一个基于Yii2高级框架的快速开发应用引擎 | 576 | PHP | 09/01 |
| 56 | [easychen/LazyPHP](https://github.com/easychen/LazyPHP) | 轻框架。包含一个前端控制器,20个常用函数和用于页面布局的Layout系统,10分钟即可学会。LP采用BSD开源协议,在代码内保留框架名即可随意商用。 | 571 | PHP | 07/13 |
| 57 | [zencodex/composer-mirror](https://github.com/zencodex/composer-mirror) | Composer 全量镜像发布于2017年3月,至今已不间断运行2年多。这个开源有助于理解 Composer 镜像的工作原理 | 568 | PHP | 07/09 |
| 58 | [l3m0n/Bypass_Disable_functions_Shell](https://github.com/l3m0n/Bypass_Disable_functions_Shell) | 一个各种方式突破Disable_functions达到命令执行的shell | 549 | PHP | 06/18 |
| 59 | [poetries/mywiki](https://github.com/poetries/mywiki) | :books:收集整理日常发现的好资源、前端资源汇总 | 541 | PHP | 03/10 |
| 60 | [zoujingli/wechat-php-sdk](https://github.com/zoujingli/wechat-php-sdk) | PHP微信SDK(微信平台 + 微信支付) | 540 | PHP | 07/15 |
| 61 | [dedemao/alipay](https://github.com/dedemao/alipay) | 一个PHP文件搞定支付宝支付系列,包括电脑网站支付,手机网站支付,扫码支付,JSAPI支付、单笔转账到支付宝账户、交易结算(分账、分润)、网页授权获取用户信息等 | 540 | PHP | 03/25 |
| 62 | [dedemao/weixinPay](https://github.com/dedemao/weixinPay) | 微信支付单文件版。一个PHP文件搞定微信支付系列。包括原生支付(扫码支付),H5支付,公众号支付,现金红包、企业付款到零钱等 | 539 | PHP | 07/23 |
| 63 | [xu42/pay](https://github.com/xu42/pay) | 个人网站即时到账收款解决方案 / Personal website instant payment solution | 527 | PHP | 05/28 |
| 64 | [gongfuxiang/shopxo](https://github.com/gongfuxiang/shopxo) | ShopXO商城系统、国内领先企业级B2C免费开源电商系统,包含PC、h5、微信小程序、支付宝小程序、百度小程序,遵循Apache2开源协议发布、基于ThinkPHP5.1框架研发 | 521 | PHP | 08/31 |
| 65 | [Beipy/BeipyVideoResolution](https://github.com/Beipy/BeipyVideoResolution) | 北漂鱼解析开源视频播放框架,响应式布局! | 517 | PHP | 06/12 |
| 66 | [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的认证与权限相关的痛点,已在本人的多个项目中集成使用。 | 515 | PHP | 07/31 |
| 67 | [lizhichao/one](https://github.com/lizhichao/one) | 一个极简高性能php框架,支持[swoole \| php-fpm ]环境 | 494 | PHP | 08/29 |
| 68 | [bupt1987/html-parser](https://github.com/bupt1987/html-parser) | php html parser,类似与PHP Simple HTML DOM Parser,但是比它快好几倍 | 477 | PHP | 08/17 |
| 69 | [gh0stkey/DoraBox](https://github.com/gh0stkey/DoraBox) | DoraBox - 基础Web漏洞训练靶场 | 474 | PHP | 07/11 |
| 70 | [mylxsw/wizard](https://github.com/mylxsw/wizard) | Wizard是基于Laravel开发框架开发的一款开源项目(API)文档管理工具。 | 465 | PHP | 08/23 |
| 71 | [ecjia/ecjia-daojia](https://github.com/ecjia/ecjia-daojia) | EC+(ecjia)到家是一款可开展O2O业务的移动电商系统。它包含:移动端APP,采用原生模式开发,覆盖使用iOS 及Android系统的移 动终端;后台系统,针对平台日常运营维护的平台后台,针对入驻店铺管理的商家后台,独立并行;移动端H5,能够灵活部署于微信及其他APP、网页等。 | 463 | PHP | 08/22 |
| 72 | [zhuzhichao/ip-location-zh](https://github.com/zhuzhichao/ip-location-zh) | 获取 IP 地址的真实地理位置 | 462 | PHP | 06/14 |
| 73 | [wanglelecc/laracms](https://github.com/wanglelecc/laracms) | LaraCMS 是在学习 laravel ( web 开发实战进阶 + 实战构架 API 服务器) 过程中产生的一个业余作品,试图通过简单的方式,快速构建一套基本的企业站同时保留很灵活的扩展能力和优雅的代码方式,当然这些都得益Laravel的优秀设计。同时LaraCMS 也是一个学习Laravel 不错的参考示例。 | 459 | PHP | 09/01 |
| 74 | [zhuifengshaonianhanlu/pikachu](https://github.com/zhuifengshaonianhanlu/pikachu) | 一个好玩的Web安全-漏洞测试平台 | 453 | PHP | 02/09 |
| 75 | [bingcool/swoolefy](https://github.com/bingcool/swoolefy) | swoolefy是一个基于swoole实现的轻量级、高性能、协程级、开放性的API应用服务框架 | 445 | PHP | 08/31 |
| 76 | [flyingalex/design-patterns-by-php](https://github.com/flyingalex/design-patterns-by-php) | 《大话设计模式》php版本, gitbook: https://hulin.gitbook.io/design-patterns-by-php/ | 443 | PHP | 07/10 |
| 77 | [insoxin/API](https://github.com/insoxin/API) | 姬长信API For Docker 一个基于多种编程语言开源免费不限制提供生活常用,出行服务,开发工具,金融服务,通讯服务和公益大数据的平台. | 431 | PHP | 08/25 |
| 78 | [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。 | 423 | PHP | 09/01 |
| 79 | [l3m0n/pentest_tools](https://github.com/l3m0n/pentest_tools) | 收集一些小型实用的工具 | 423 | PHP | 01/22 |
| 80 | [fucongcong/GroupCo](https://github.com/fucongcong/GroupCo) | 优雅的PHP异步协程框架,支持服务化调用,支持统一配置中心,适用于API、Http Server、Rpc Server、构建微服务、中间件。适用于高并发,io密集型场景 | 417 | PHP | 08/31 |
| 81 | [letwang/HookPHP](https://github.com/letwang/HookPHP) | HookPHP基于C扩展搭建内置AI编程的架构系统-支持微服务部署\|热插拔业务组件-集成业务模型\|权限模型\|UI组件库\|多模板\|多平台\|多域名\|多终端\|多语言-含常驻内存\|前后分离\|API平台\|LUA QQ群:679116380 | 416 | PHP | 08/30 |
| 82 | [lbbniu/WebWechat](https://github.com/lbbniu/WebWechat) | 网页微信PHP登录的实现 | 415 | PHP | 01/21 |
| 83 | [anerg2046/sns_auth](https://github.com/anerg2046/sns_auth) | 通用第三方登录SDK,支持微信,微信扫码,QQ,微博登录,支付宝登录,Facebook,Line,Twitter,Google | 408 | PHP | 04/30 |
| 84 | [HerbertKarajan/Fe-Interview-questions](https://github.com/HerbertKarajan/Fe-Interview-questions) | 目前最全的前端开发面试题及答案 | 391 | PHP | 07/18 |
| 85 | [zblogcn/zblogphp](https://github.com/zblogcn/zblogphp) | Z-BlogPHP博客程序 | 391 | PHP | 08/30 |
| 86 | [JaxsonWang/WP-Editor.md](https://github.com/JaxsonWang/WP-Editor.md) | 或许这是一个WordPress中最好,最完美的Markdown编辑器 | 390 | PHP | 08/05 |
| 87 | [72crm/72crm](https://github.com/72crm/72crm) | A cutting-edge choice for your Customer Relationship Management 客户管理的前沿创新-悟空CRM | 385 | PHP | 08/23 |
| 88 | [mojisrc/fashop](https://github.com/mojisrc/fashop) | php开源商城系统,基于swoole、easyswoole框架开发 | 382 | PHP | 07/09 |
| 89 | [zhuzhichao/bank-card-info](https://github.com/zhuzhichao/bank-card-info) | 获取银行卡号的归属信息 | 382 | PHP | 07/12 |
| 90 | [jxlwqq/id-validator](https://github.com/jxlwqq/id-validator) | 中华人民共和国居民身份证、中华人民共和国港澳居民居住证以及中华人民共和国台湾居民居住证号码验证工具(PHP Composer 版) | 380 | PHP | 05/01 |
| 91 | [Yurunsoft/PaySDK](https://github.com/Yurunsoft/PaySDK) | PHP 集成支付 SDK ,集成了支付宝、微信支付的支付接口和其它相关接口的操作。可以轻松嵌入支持 PHP >= 5.4 的任何系统中。宇润PHP全家桶技术支持群:17916227 | 381 | PHP | 05/23 |
| 92 | [susers/Writeups](https://github.com/susers/Writeups) | 国内各大CTF赛题及writeup整理 | 379 | PHP | 08/26 |
| 93 | [jacobcyl/Aliyun-oss-storage](https://github.com/jacobcyl/Aliyun-oss-storage) | 阿里云OSS laravel storage Filesystem adapter, 打造Laravel最好的OSS Storage扩展. | 376 | PHP | 06/03 |
| 94 | [iiYii/getyii](https://github.com/iiYii/getyii) | Yii2 community 请访问 | 373 | PHP | 08/14 |
| 95 | [kcloze/swoole-bot](https://github.com/kcloze/swoole-bot) | 基于swoole实现的微信机器人,依赖vbot和微信网页版的功能,帮助管理微信群/聊天/踢人等 | 372 | PHP | 06/04 |
| 96 | [mingyoung/dingtalk](https://github.com/mingyoung/dingtalk) | 🌈 EasyDingTalk - 钉钉 SDK | 370 | PHP | 07/14 |
| 97 | [ZsgsDesign/NOJ](https://github.com/ZsgsDesign/NOJ) | :zap: open-source online judge based on Laravel \| 南京邮电大学开源 Online Judge \| QQ群:668108264 | 366 | PHP | 09/01 |
| 98 | [Verytops/verydows](https://github.com/Verytops/verydows) | B2C商城系统 PC端+H5移动端 + 微信端 快速为你构建自己的商城系统 | 359 | PHP | 03/13 |
| 99 | [Yurunsoft/IMI](https://github.com/Yurunsoft/IMI) | imi 是基于 PHP 协程应用开发框架,它支持 HttpApi、WebSocket、TCP、UDP 应用开发。QQ群:17916227 | 358 | PHP | 08/30 |
| 100 | [lizhichao/VicWord](https://github.com/lizhichao/VicWord) | 一个纯php分词 | 349 | PHP | 07/28 |
| 101 | [xiayulei/open_source_bms](https://github.com/xiayulei/open_source_bms) | Open Source BMS 后台管理系统 | 345 | PHP | 01/14 |
| 102 | [xaboy/form-builder](https://github.com/xaboy/form-builder) | PHP表单生成器,快速生成现代化的form表单。包含复选框、单选框、输入框、下拉选择框等元素以及,省市区三级联动,时间选择,日期选择,颜色选择,文件/图片上传等功能。 | 339 | PHP | 08/26 |
| 103 | [lkeme/BiliHelper](https://github.com/lkeme/BiliHelper) | (Bilibili)B 站自动领瓜子、直播助手、直播挂机脚本、主站助手 - PHP 版 | 339 | PHP | 08/22 |