-
Notifications
You must be signed in to change notification settings - Fork 21
/
github_rank.sql
1091 lines (1081 loc) · 238 KB
/
github_rank.sql
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
/*
Navicat MySQL Data Transfer
Source Server : localhost
Source Server Type : MySQL
Source Server Version : 50557
Source Host : localhost:3306
Source Schema : github_rank
Target Server Type : MySQL
Target Server Version : 50557
File Encoding : 65001
Date: 07/10/2017 02:24:39
*/
DROP DATABASE IF EXISTS `github_rank`;
CREATE DATABASE `github_rank` CHARACTER SET 'utf8mb4' COLLATE 'utf8mb4_general_ci';
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for stars_rank
-- ----------------------------
DROP TABLE IF EXISTS `stars_rank`;
CREATE TABLE `stars_rank` (
`projectname` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
`introduction` varchar(4000) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
`topics` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
`updatetime` datetime DEFAULT NULL,
`stars` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
`ordernum` int(11) DEFAULT NULL,
`type` enum('JavaScript','TypeScript','HTML','CSS','Python','CoffeeScript','PHP','Ruby','Java','C','C++','C#') CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
`crawlingtime` datetime DEFAULT NULL COMMENT '爬取数据时间'
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Compact;
-- ----------------------------
-- Records of stars_rank
-- ----------------------------
INSERT INTO `stars_rank` VALUES ('freeCodeCamp/freeCodeCamp', 'The https://freeCodeCamp.org open source codebase and curriculum. Learn to code and help nonprofits.', 'nonprofits,certification,curriculum,react,nodejs,javascript,d3,teachers,community,education,programming,math,learn-to-code,careers', '2017-10-06 15:47:15', '291k', 1, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('twbs/bootstrap', 'The most popular HTML, CSS, and JavaScript framework for developing responsive, mobile first projects on the web.', 'css,html,bootstrap,javascript,jekyll-site,scss,css-framework', '2017-10-06 15:17:04', '116k', 2, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('facebook/react', 'A declarative, efficient, and flexible JavaScript library for building user interfaces.', 'javascript,react,frontend,declarative,ui,library', '2017-10-06 16:58:11', '77.5k', 3, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('vuejs/vue', 'A progressive, incrementally-adoptable JavaScript framework for building UI on the web.', 'javascript,vue,framework,frontend', '2017-10-06 14:32:17', '69.2k', 4, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('airbnb/javascript', 'JavaScript Style Guide', 'naming-conventions,arrow-functions,javascript,eslint,styleguide,es6,style-linter,linting,style-guide,es2015', '2017-10-05 21:03:16', '59.1k', 5, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('jquery/jquery', 'jQuery JavaScript Library', '', '2017-10-01 09:19:55', '46.6k', 6, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('atom/atom', 'The hackable text editor', 'javascript,macos,linux,atom,electron,editor,windows', '2017-10-06 16:09:56', '40.7k', 7, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('nodejs/node', 'Node.js JavaScript runtime ✨????????✨', 'javascript,nodejs,windows,macos,linux,node,mit,js,runtime', '2017-10-06 16:52:50', '39.9k', 8, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('h5bp/html5-boilerplate', 'A professional front-end template for building fast, robust, and adaptable web apps or sites.', 'robust,javascript,html5-boilerplate,css,html5,best-practices', '2017-10-03 18:56:05', '38.5k', 9, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('meteor/meteor', 'Meteor, the JavaScript App Platform', 'javascript,meteor,npm,mongodb,build-system', '2017-10-06 14:59:55', '38.4k', 10, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('mrdoob/three.js', 'JavaScript 3D library.', 'javascript,3d,scene-graph,html5,svg,canvas,webgl,webvr', '2017-10-06 16:39:20', '35.6k', 11, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('reactjs/redux', 'Predictable state container for JavaScript apps', 'redux', '2017-10-06 15:36:55', '34.5k', 12, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('expressjs/express', 'Fast, unopinionated, minimalist web framework for node.', 'javascript,nodejs,express,server', '2017-10-05 15:38:32', '34.3k', 13, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('moment/moment', 'Parse, validate, manipulate, and display dates in javascript.', '', '2017-10-06 12:33:29', '33.5k', 14, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('chartjs/Chart.js', 'Simple HTML5 Charts using the <canvas> tag', 'javascript,html5-charts,chart,html5,canvas,graph', '2017-10-06 14:28:17', '32.7k', 15, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('webpack/webpack', 'A bundler for javascript and friends. Packs many modules into a few bundled assets. Code Splitting allows to load par…', 'commonjs,amd,webpack,javascript,module-loader,web-performance,web,es6,compiler,es2015,plugins,javascript-compiler,webpack2,build-tool,loaders,module-bundler,esm,javascript-modules', '2017-10-06 15:34:41', '32.4k', 16, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('callemall/material-ui', 'React Components that Implement Google\'s Material Design.', 'google-material,material-ui,react,javascript,material-design,react-components', '2017-10-06 15:09:14', '29.3k', 17, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('Dogfalo/materialize', 'Materialize, a CSS Framework based on Material Design', 'javascript,material,css,design,framework', '2017-10-06 10:05:43', '29.2k', 18, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('adobe/brackets', 'An open source code editor for the web, written in JavaScript, HTML and CSS.', '', '2017-10-06 14:59:23', '28.2k', 19, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('axios/axios', 'Promise based HTTP client for the browser and node.js', 'javascript,promise,nodejs,http-client', '2017-10-04 20:27:25', '28k', 20, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('yarnpkg/yarn', '???????? Fast, reliable, and secure dependency management.', 'yarn,npm,package-manager,javascript', '2017-10-06 11:18:03', '27.7k', 21, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('lodash/lodash', 'A modern JavaScript utility library delivering modularity, performance, & extras.', 'lodash,javascript,modules,utilities', '2017-10-05 16:48:43', '26.7k', 22, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('TryGhost/Ghost', 'The platform for professional publishers', 'javascript,cms,blogging,journalism,publishing,web-application', '2017-10-06 13:00:30', '24k', 23, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('nylas/nylas-mail', '???? An extensible desktop mail app built on the modern web. Forks welcome!', 'nylas-mail,flux,react,javascript,electron,windows,macos,linux,productivity,babel,email', '2017-10-01 08:11:56', '23.5k', 24, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('babel/babel', '???? Babel is a compiler for writing next generation JavaScript.', 'javascript,babel,compiler,ast,flavortown', '2017-10-06 16:33:12', '22.8k', 25, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('caolan/async', 'Async utilities for node and the browser', 'async,javascript,callbacks', '2017-09-22 18:53:41', '22.4k', 26, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('justjavac/free-programming-books-zh_CN', '???? 免费的计算机编程类中文书籍,欢迎投稿', 'javascript,python,android,pdf,programming,books,free', '2017-10-06 08:10:13', '22.3k', 27, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('jashkenas/underscore', 'JavaScript\'s utility _ belt', '', '2017-10-02 15:02:44', '21.6k', 28, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('Modernizr/Modernizr', 'Modernizr is a JavaScript library that detects HTML5 and CSS3 features in the user’s browser.', 'css3-features,modernizr,javascript-library,javascript,feature-detection', '2017-09-25 05:25:15', '21.2k', 29, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('select2/select2', 'Select2 is a jQuery based replacement for select boxes. It supports searching, remote data sets, and infinite scrolli…', 'javascript,jquery,select2', '2017-10-06 08:00:09', '21.2k', 30, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('ecomfe/echarts', 'A powerful, interactive charting and visualization library for browser', 'echarts,javascript,visualization,chart', '2017-10-06 07:07:55', '20.9k', 31, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('alvarotrigo/fullPage.js', 'fullPage plugin by Alvaro Trigo. Create full screen pages fast and simple', 'scrolling,javascript,slide,jquery,slideshow,snap,fullscreen,swipe,onepage,fullpage,sections,mousewheel', '2017-09-22 12:40:54', '20.9k', 32, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('facebook/immutable-js', 'Immutable persistent data collections for Javascript which increase efficiency and simplicity.', '', '2017-10-06 15:39:43', '20.8k', 33, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('Leaflet/Leaflet', '???? JavaScript library for mobile-friendly interactive maps', 'leaflet,javascript,maps', '2017-10-05 17:57:10', '19.6k', 34, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('mozilla/pdf.js', 'PDF Reader in JavaScript', '', '2017-10-05 21:16:06', '19.4k', 35, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('zenorocha/clipboard.js', '✂️ Modern copy to clipboard. No Flash. Just 3kb gzipped ????', 'clipboard,javascript', '2017-10-04 13:10:33', '19.2k', 36, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('zeit/hyper', 'A terminal built on web technologies', 'react,javascript,css,html,terminal,hyperterm,terminal-emulators', '2017-10-06 06:05:58', '19.2k', 37, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('hexojs/hexo', 'A fast, simple & powerful blog framework, powered by Node.js.', 'hexo,javascript,nodejs,static-site-generator', '2017-10-03 05:00:44', '18.5k', 38, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('emberjs/ember.js', 'Ember.js - A JavaScript framework for creating ambitious web applications', '', '2017-10-06 14:37:55', '18.3k', 39, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('videojs/video.js', 'Video.js - open source HTML5 & Flash video player', 'html,video,player,javascript,flash,html5,hls,html5-video,dash,videojs,html5-audio', '2017-10-05 18:45:01', '17.8k', 40, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('Reactive-Extensions/RxJS', 'The Reactive Extensions for JavaScript', '', '2017-10-04 02:11:54', '17.5k', 41, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('hammerjs/hammer.js', 'A javascript library for multi-touch gestures :// You can touch this', '', '2017-09-12 15:08:15', '17k', 42, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('bevacqua/dragula', '???? Drag and drop so simple it hurts', 'javascript,front-end,component,vanilla,drag-and-drop,drag-drop,dragging', '2017-08-15 13:00:45', '16.6k', 43, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('github/fetch', 'A window.fetch JavaScript polyfill.', 'javascript,polyfill,fetch,promise', '2017-09-14 14:47:39', '16.2k', 44, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('verekia/js-stack-from-scratch', '????️⚡ Step-by-step tutorial to build a modern JavaScript stack.', 'react,webpack,stack,eslint,jss,yarn,javascript,flow,tutorial,redux,heroku,bootstrap,react-router,jest,socket-io,nodemon,pm2,server-side-rendering,immutablejs,sinon', '2017-09-27 08:23:31', '16.1k', 45, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('ryanmcdermott/clean-code-javascript', '???? Clean Code concepts adapted for JavaScript', 'inheritance,composition,principles,javascript,best-practices,clean-code,clean-architecture', '2017-09-19 16:24:24', '16.1k', 46, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('pixijs/pixi.js', 'The HTML5 Creation Engine: Create beautiful digital content with the fastest, most flexible 2D WebGL renderer.', 'javascript,game,pixijs,webgl,canvas,rendering,glsl,renderer,pixi,canvas2d,rendering-engine,rendering-2d-graphics', '2017-10-06 16:31:04', '16k', 47, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('kriasoft/react-starter-kit', 'React Starter Kit — isomorphic web app boilerplate (Node.js, Express, GraphQL, React.js, Babel, PostCSS, Webpack, Bro…', 'babel,boilerplate,react,graphql,webpack,browsersync,flux,javascript,redux,nodejs,i18n,ssr,reactjs', '2017-10-06 07:44:24', '15.6k', 48, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('juliangarnier/anime', 'JavaScript Animation Engine', 'anime,animation', '2017-09-26 15:01:30', '15.2k', 49, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('bower/bower', 'A package manager for the web', 'javascript,bower,package-manager,front-end', '2017-09-26 13:11:42', '15.2k', 50, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('prettier/prettier', 'Prettier is an opinionated code formatter.', 'printer,javascript,css,graphql,typescript,ast', '2017-10-06 14:43:00', '15.2k', 51, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('dimsemenov/PhotoSwipe', 'JavaScript image gallery for mobile and desktop, modular, framework independent', '', '2017-10-02 14:43:11', '15k', 52, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('webtorrent/webtorrent', '⚡️ Streaming torrent client for the web', 'javascript,bittorrent,webtorrent,nodejs,torrent,streaming,browser,webrtc,p2p', '2017-10-02 21:54:39', '14.6k', 53, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('RocketChat/Rocket.Chat', 'Have your own Slack like online chat, built with Meteor.', 'javascript,slack,chat,real-time,mit,meteor,webrtc,foss,collaboration,free', '2017-10-06 01:05:27', '14.2k', 54, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('npm/npm', 'a package manager for javascript', '', '2017-10-05 22:36:05', '13.9k', 55, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('standard/standard', '???? JavaScript Style Guide, with linter & automatic code fixer', 'javascript,linter,nodejs,development,eslint,es6,static-code-analysis,style-guide,ecmascript,standard', '2017-10-03 22:41:07', '13.7k', 56, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('kriskowal/q', 'A promise library for JavaScript', '', '2017-06-16 20:45:43', '13.7k', 57, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('julianshapiro/velocity', 'Accelerated JavaScript animation.', '', '2017-09-05 15:06:12', '13.6k', 58, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('mochajs/mocha', '☕️ simple, flexible, fun javascript test framework for node.js & the browser', 'mocha,javascript,nodejs,testing,browser,tdd,bdd,mochajs', '2017-10-06 15:43:07', '13.4k', 59, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('jlmakes/scrollreveal', 'Easy scroll animations for web and mobile browsers.', 'javascript,animation,scroll,reveal', '2017-10-04 14:35:16', '13.4k', 60, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('enyo/dropzone', 'Dropzone is an easy to use drag\'n\'drop library. It supports image previews and shows nice progress bars.', 'dropzone,javascript,coffeescript,drag-and-drop,file-upload,javascript-library', '2017-10-06 16:00:59', '12.9k', 61, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('jasmine/jasmine', 'Simple JavaScript testing framework for browsers and node.js', '', '2017-09-01 00:54:39', '12.9k', 62, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('facebook/jest', '???? Delightful JavaScript Testing.', 'javascript,testing,facebook,snapshot,expectation,easy,painless-javascript-testing,immersive,painless', '2017-10-06 14:44:54', '12.5k', 63, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('riot/riot', 'Simple and elegant component-based UI library', 'javascript,framework,webcomponents,minimal,simple,view,elegant,client-side,customtags,lite', '2017-10-01 09:40:22', '12.4k', 64, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('naptha/tesseract.js', 'Pure Javascript OCR for 62 Languages ????????????', '', '2017-09-20 05:53:35', '12.3k', 65, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('MostlyAdequate/mostly-adequate-guide', 'Mostly adequate guide to FP (in javascript)', 'javascript,tutorial,functional-programming,reactive-programming', '2017-08-23 21:44:21', '12.3k', 66, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('oneuijs/You-Dont-Need-jQuery', 'Examples of how to do query, style, dom, ajax, event etc like jQuery with plain javascript.', '', '2017-09-26 06:48:49', '12.2k', 67, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('legomushroom/mojs', 'motion graphics toolbelt for the web', 'motion-graphics,javascript,tools,animation,motion', '2017-09-11 06:44:36', '12.2k', 68, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('VincentGarreau/particles.js', 'A lightweight JavaScript library for creating particles', '', '2017-10-04 03:54:10', '11.8k', 69, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('Marak/faker.js', 'generate massive amounts of fake data in Node.js and the browser', 'fake,faker-generator,javascript,faker,mocking,fake-content,mocks,fake-data', '2017-10-02 10:28:26', '11.6k', 70, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('gruntjs/grunt', 'Grunt: The JavaScript Task Runner', '', '2017-09-03 20:43:03', '11.6k', 71, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('infernojs/inferno', 'An extremely fast, React-like JavaScript library for building modern user interfaces', 'inferno-component,javascript-library,react,inferno,vdom,performance,inferno-js,jsx', '2017-10-03 15:48:46', '11.6k', 72, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('avajs/ava', '???? Futuristic JavaScript test runner', 'javascript,test-runner,ava,async-functions,assert,concurrency,babel,es2015,nodejs,cli,async,performance,unicorns,unit-testing,cli-app,node,tdd,testing,test-framework,tap', '2017-10-05 07:47:48', '11.5k', 73, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('RubaXa/Sortable', 'Sortable — is a JavaScript library for reorderable drag-and-drop lists on modern browsers and touch devices. No jQuer…', 'drag,ui,drag-and-drop,drag-drop,sort,sortable,reordering,droppable,draggable', '2017-09-28 11:37:20', '11.5k', 74, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('wekan/wekan', 'The open-source Trello-like kanban (built with Meteor)', 'meteor,wekan,kanban,javascript,docker-image,sandstorm', '2017-10-06 16:37:59', '11.5k', 75, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('sequelize/sequelize', 'An easy-to-use multi SQL dialect ORM for Node.js', 'javascript,mysql,sql,orm,sqlite,postgresql,mariadb,transactions,mssql', '2017-10-06 07:01:44', '11.4k', 76, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('mobxjs/mobx', 'Simple, scalable state management.', 'typescript,mobx,javascript,react,reactive-programming', '2017-10-05 18:45:12', '11.4k', 77, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('janl/mustache.js', 'Minimal templating with {{mustaches}} in JavaScript', '', '2017-08-26 16:14:02', '11.2k', 78, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('yabwe/medium-editor', 'Medium.com WYSIWYG editor clone. Uses contenteditable API to implement a rich text solution.', 'medium-editor,javascript,editor,contenteditable,wysiwyg,rich-text-editor', '2017-09-28 18:05:17', '11.1k', 79, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('keystonejs/keystone', 'node.js cms and web app framework', 'keystonejs,javascript,nodejs,cms', '2017-10-06 00:56:41', '11.1k', 80, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('requirejs/requirejs', 'A file and module loader for JavaScript', '', '2017-08-28 00:40:23', '11k', 81, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('airbnb/enzyme', 'JavaScript Testing utilities for React', 'traversal,react,mocha,chai,assertion-library,react-components,enzyme,ava,testing,jest,test,assertions,test-runners', '2017-10-05 22:21:22', '11k', 82, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('isagalaev/highlight.js', 'Javascript syntax highlighter', '', '2017-10-03 11:07:43', '10.8k', 83, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('wearehive/project-guidelines', 'A set of best practices for JavaScript projects', 'javascript,best-practices,how-to,guidelines,maintainability,javascript-best-practices', '2017-10-01 16:57:22', '10.6k', 84, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('colebemis/feather', 'Simply beautiful open source icons', 'icons,svg,javascript', '2017-10-05 16:54:58', '10.6k', 85, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('amazeui/amazeui', 'Amaze UI, a mobile-first and modular front-end framework.', 'css,javascript,less,responsive,mobile-first,front-end-framework', '2017-03-29 10:32:41', '10.5k', 86, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('adobe-webplatform/Snap.svg', 'The JavaScript library for modern SVG graphics.', 'javascript-library,snap,javascript,svg,svg-animations', '2017-10-05 08:36:21', '10.4k', 87, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('alsotang/node-lessons', '????《Node.js 包教不包会》 by alsotang', 'javascript,nodejs', '2017-09-24 14:09:35', '10.4k', 88, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('mysqljs/mysql', 'A pure node.js JavaScript Client implementing the MySql protocol.', 'javascript,nodejs,mysql', '2017-10-05 17:37:27', '10.3k', 89, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('yaronn/blessed-contrib', 'Build terminal dashboards using ascii/ansi art and javascript', '', '2017-09-28 22:39:33', '10.3k', 90, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('marcuswestin/store.js', 'Cross-browser storage for all use cases, used across the web.', 'javascript,localstorage,storage,serialization,plugins,cross-browser,store-json', '2017-07-27 12:44:21', '10.3k', 91, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('vuejs/vuex', 'Centralized State Management for Vue.js.', 'vuex,javascript,state-management,vue,time-travel', '2017-10-06 14:22:03', '10.2k', 92, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('paularmstrong/normalizr', 'Normalizes nested JSON according to a schema', 'redux,normalizr,javascript,json,api,flux,reactjs,normalize', '2017-10-05 21:44:51', '10.2k', 93, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('facebook/prepack', 'Prepack is a partial evaluator for JavaScript. Prepack rewrites a JavaScript bundle, resulting in JavaScript code tha…', 'javascript,optimization', '2017-10-06 15:54:08', '10.2k', 94, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('uxsolutions/bootstrap-datepicker', 'A datepicker for twitter bootstrap (@twbs)', 'bootstrap-datepicker,javascript,bootstrap', '2017-10-03 06:19:33', '10.2k', 95, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('jquery/jquery-ui', 'The official jQuery user interface library.', 'javascript,jquery', '2017-09-21 11:31:33', '10.2k', 96, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('benweet/stackedit', 'In-browser markdown editor', 'blogger,gist,wordpress,dropbox,google-drive,offline,stackedit,javascript,editor,markdown', '2017-10-05 07:18:30', '10.1k', 97, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('aurelia/framework', 'The aurelia framework brings together all the required core aurelia libraries into a ready-to-go application-building…', 'aurelia-framework,javascript,html,mobile,framework,typescript,spa,web,cross-platform,single-page-applications', '2017-10-02 07:33:26', '10.1k', 98, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('VerbalExpressions/JSVerbalExpressions', 'JavaScript Regular expressions made easy', '', '2017-03-15 08:13:02', '10.1k', 99, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('localForage/localForage', '???? Offline storage, improved. Wraps IndexedDB, WebSQL, or localStorage using a simple but powerful API.', 'localstorage,indexeddb,javascript,websql,localforage,offline,storage', '2017-10-05 15:19:25', '10.1k', 100, 'JavaScript', '2017-10-07 01:01:20');
INSERT INTO `stars_rank` VALUES ('Microsoft/vscode', 'Visual Studio Code', 'electron,microsoft,editor,typescript,visual-studio-code', '2017-10-06 16:35:38', '34.7k', 1, 'TypeScript', '2017-10-07 01:01:34');
INSERT INTO `stars_rank` VALUES ('ionic-team/ionic', 'Build amazing native and progressive web apps with open web technologies. One app running on everything ????', 'ionic,javascript,angular,mobile,framework,typescript,web,pwa,frontend', '2017-10-06 15:51:12', '31.6k', 2, 'TypeScript', '2017-10-07 01:01:34');
INSERT INTO `stars_rank` VALUES ('angular/angular', 'One framework. Mobile & desktop.', 'angular,typescript,javascript,web-performance,web,pwa,web-framework', '2017-10-06 16:07:49', '28.4k', 3, 'TypeScript', '2017-10-07 01:01:34');
INSERT INTO `stars_rank` VALUES ('Microsoft/TypeScript', 'TypeScript is a superset of JavaScript that compiles to clean JavaScript output.', 'typescript,javascript,language,typechecker', '2017-10-06 15:49:31', '26.4k', 4, 'TypeScript', '2017-10-07 01:01:34');
INSERT INTO `stars_rank` VALUES ('ant-design/ant-design', '???? A UI Design Language', 'enterprise,antd,typescript,css,react,ui-design,design-systems,frontend,react-components,ui-kit,ant-design', '2017-10-06 09:02:09', '17.9k', 5, 'TypeScript', '2017-10-07 01:01:34');
INSERT INTO `stars_rank` VALUES ('railsware/upterm', 'A terminal emulator for the 21st century.', 'electron,typescript,react,shell,console,terminal,tty,pty,terminal-emulators,terminals', '2017-10-02 21:38:59', '17.4k', 6, 'TypeScript', '2017-10-07 01:01:34');
INSERT INTO `stars_rank` VALUES ('angular-ui/ui-router', 'The de-facto solution to flexible routing with nested views in AngularJS', 'javascript,ui-router,angularjs,typescript,router,state-machine,routing,state-tree', '2017-10-05 00:44:10', '13.6k', 7, 'TypeScript', '2017-10-07 01:01:34');
INSERT INTO `stars_rank` VALUES ('angular/angular-cli', 'CLI tool for Angular', 'angular,cli,typescript,angular-cli', '2017-10-06 16:59:48', '12.8k', 8, 'TypeScript', '2017-10-07 01:01:34');
INSERT INTO `stars_rank` VALUES ('DefinitelyTyped/DefinitelyTyped', 'The repository for high quality TypeScript type definitions.', 'typescript,definition,types,typescript-definitions,dts,typings', '2017-10-06 16:54:25', '12.4k', 9, 'TypeScript', '2017-10-07 01:01:34');
INSERT INTO `stars_rank` VALUES ('akveo/ngx-admin', 'Admin dashboard template based onAngular 4+, Bootstrap 4 (previously known as ng2-admin)', 'ng2-admin,sass,admin,framework,typescript,webpack,dashboard,responsive,angular2,aot-compilation,ng2,admin-dashboard,bootstrap4,angular4,aot,angular-2,admin-ui,ngx-admin', '2017-10-05 11:38:26', '8.1k', 10, 'TypeScript', '2017-10-07 01:01:34');
INSERT INTO `stars_rank` VALUES ('cyclejs/cyclejs', 'A functional and reactive JavaScript framework for predictable code', 'javascript,framework,typescript,rxjs,functional-programming,cyclejs,reactive-programming', '2017-10-06 13:17:40', '7.5k', 11, 'TypeScript', '2017-10-07 01:01:34');
INSERT INTO `stars_rank` VALUES ('palantir/blueprint', 'A React-based UI toolkit for the web', 'react,lerna,blueprint,sass,components,design,typescript,ui,system,toolkit,table', '2017-10-06 16:31:01', '7k', 12, 'TypeScript', '2017-10-07 01:01:34');
INSERT INTO `stars_rank` VALUES ('BabylonJS/Babylon.js', 'Babylon.js: a complete JavaScript framework for building 3D games with HTML 5 and WebGL', 'typescript,babylon,webgl,webvr,game-development,webaudio,webgl2,3d', '2017-10-06 16:25:21', '5.5k', 13, 'TypeScript', '2017-10-07 01:01:34');
INSERT INTO `stars_rank` VALUES ('mgechev/angular-seed', 'Extensible, reliable, modular, PWA ready starter project for Angular (2 and beyond) with statically typed build and A…', 'seed,rollup,angular-applications,aot-compilation,angular,typescript', '2017-10-06 08:21:46', '4.4k', 14, 'TypeScript', '2017-10-07 01:01:34');
INSERT INTO `stars_rank` VALUES ('apollographql/apollo-client', '???? A fully-featured, production ready caching GraphQL client for every server or UI framework', 'apollo-client,graphql,graphql-client,typescript,apollographql', '2017-10-06 06:49:40', '4.2k', 15, 'TypeScript', '2017-10-07 01:01:34');
INSERT INTO `stars_rank` VALUES ('postgraphql/postgraphql', 'A GraphQL API created by reflection over a PostgreSQL schema.', 'postgraphql,graphql,postgres,typescript,schema', '2017-10-03 18:08:54', '4k', 16, 'TypeScript', '2017-10-07 01:01:34');
INSERT INTO `stars_rank` VALUES ('PAIR-code/deeplearnjs', 'A hardware-accelerated deep learning library for the web.', 'javascript,webgl,typescript,deep-learning,machine-learning,deep-neural-networks,neural-network,gpu-acceleration', '2017-10-06 14:12:59', '3.9k', 17, 'TypeScript', '2017-10-07 01:01:34');
INSERT INTO `stars_rank` VALUES ('theintern/intern', 'A next-generation code testing stack for JavaScript.', 'typescript,intern,javascript,testing,coverage,webdriver', '2017-10-05 14:02:31', '3.8k', 18, 'TypeScript', '2017-10-07 01:01:34');
INSERT INTO `stars_rank` VALUES ('typings/typings', '*DEPRECATED* The TypeScript Definition Manager', 'typescript,javascript,definition,types,management,typings', '2017-07-24 18:24:26', '3.1k', 19, 'TypeScript', '2017-10-07 01:01:34');
INSERT INTO `stars_rank` VALUES ('typeorm/typeorm', 'Amazing ORM for TypeScript and JavaScript (ES7, ES6, ES5). Supports MySQL, PostgreSQL, MariaDB, SQLite, MS SQL Server…', 'typeorm,javascript,mysql,typescript,orm,database,sqlite,data-mapping,postgresql,oracle,mariadb,websql,active-record,sqlserver', '2017-10-06 07:09:12', '3k', 20, 'TypeScript', '2017-10-07 01:01:34');
INSERT INTO `stars_rank` VALUES ('ant-design/ant-design-mobile', 'A configurable Mobile UI', 'react,javascript,mobile,typescript,react-native,preact,react-components,antd,antd-mobile', '2017-09-30 08:02:36', '2.9k', 21, 'TypeScript', '2017-10-07 01:01:34');
INSERT INTO `stars_rank` VALUES ('Microsoft/TypeScript-React-Starter', 'A starter template for TypeScript and React with a detailed README describing how to use the two together.', '', '2017-09-27 13:28:59', '2.9k', 22, 'TypeScript', '2017-10-07 01:01:34');
INSERT INTO `stars_rank` VALUES ('desktop/desktop', 'Simple collaboration from your desktop', 'electron,github,git,typescript', '2017-10-06 10:03:12', '2.9k', 23, 'TypeScript', '2017-10-07 01:01:34');
INSERT INTO `stars_rank` VALUES ('fuse-box/fuse-box', 'A blazing fast js bundler/loader with a comprehensive API ????', 'typescript,loader,javascript,workflow,bundler,performance,hmr,hot-reload', '2017-10-06 13:02:33', '2.8k', 24, 'TypeScript', '2017-10-07 01:01:34');
INSERT INTO `stars_rank` VALUES ('MicrosoftDX/Vorlonjs', 'A new, open source, extensible, platform-agnostic tool for remotely debugging and testing your JavaScript. Powered by…', 'html,vorlon,dashboard,typescript,socket,gulp,javascript', '2017-07-03 16:01:14', '2.5k', 25, 'TypeScript', '2017-10-07 01:01:34');
INSERT INTO `stars_rank` VALUES ('vmware/clarity', 'UX guidelines, HTML/CSS framework, and Angular components working together to craft exceptional experiences', 'clarity,css,angular,typescript,ui,ux,component-library,design-system', '2017-10-06 14:46:36', '2.4k', 26, 'TypeScript', '2017-10-07 01:01:34');
INSERT INTO `stars_rank` VALUES ('palantir/tslint', '???? An extensible linter for the TypeScript language', 'typescript,linting-rules,tslint,linter,static-analysis', '2017-10-05 20:55:28', '2.4k', 27, 'TypeScript', '2017-10-07 01:01:34');
INSERT INTO `stars_rank` VALUES ('palantir/plottable', '???? A library of modular chart components built on D3', 'typescript,chart-component,chart,flexible,charting-library,javascript,d3,plottable,plots', '2017-09-22 22:26:27', '2.2k', 28, 'TypeScript', '2017-10-07 01:01:34');
INSERT INTO `stars_rank` VALUES ('VSCodeVim/Vim', '⭐️ Vim for Visual Studio Code', 'vim,typescript,visual-studio-code', '2017-10-06 02:09:06', '2.1k', 29, 'TypeScript', '2017-10-07 01:01:34');
INSERT INTO `stars_rank` VALUES ('Microsoft/TypeScriptSamples', 'Samples for TypeScript', '', '2017-08-23 00:07:23', '2k', 30, 'TypeScript', '2017-10-07 01:01:34');
INSERT INTO `stars_rank` VALUES ('NathanWalker/angular-seed-advanced', 'Advanced Angular seed project with support for ngrx/store, ngrx/effects, ngx-translate, angulartics2, lodash, NativeS…', 'aot,desktop,nativescript,angular,ngrx,electron,seed,android,i18n,ios,mobile,typescript,lodash,angulartics2', '2017-08-29 04:02:01', '2k', 31, 'TypeScript', '2017-10-07 01:01:34');
INSERT INTO `stars_rank` VALUES ('basarat/typescript-book', '???? The definitive guide to TypeScript and possibly the best TypeScript book ????. Free and Open Source ????', 'typescript,typescript-book,typescript-community,open-source,free', '2017-10-06 03:09:11', '2k', 32, 'TypeScript', '2017-10-07 01:01:34');
INSERT INTO `stars_rank` VALUES ('AssemblyScript/assemblyscript', 'A subset of TypeScript that compiles to WebAssembly.', 'typescript,assemblyscript,compiler,webassembly', '2017-09-21 10:55:10', '1.9k', 33, 'TypeScript', '2017-10-07 01:01:34');
INSERT INTO `stars_rank` VALUES ('Eugeny/terminus', 'A terminal for a more modern age', 'electron,angular,typescript,terminal,terminal-emulators', '2017-09-28 19:13:47', '1.8k', 34, 'TypeScript', '2017-10-07 01:01:34');
INSERT INTO `stars_rank` VALUES ('swimlane/ngx-datatable', '✨ A feature-rich yet lightweight data-table crafted for Angular4 and beyond!', 'angular,datatable,table,grid,angular-components,datagrid,typescript,angular4,angular2', '2017-10-05 15:32:14', '1.8k', 35, 'TypeScript', '2017-10-07 01:01:34');
INSERT INTO `stars_rank` VALUES ('alm-tools/alm', '???? A ☁️ ready IDE just for TypeScript ❤️', 'typescript,node,ide', '2017-09-12 04:04:13', '1.8k', 36, 'TypeScript', '2017-10-07 01:01:34');
INSERT INTO `stars_rank` VALUES ('Chatie/wechaty', 'Wechat for Bot. Powered by WebDriver / Node.js / TypeScript / Docker', '', '2017-10-06 10:32:29', '1.7k', 37, 'TypeScript', '2017-10-07 01:01:34');
INSERT INTO `stars_rank` VALUES ('inversify/InversifyJS', 'A powerful and lightweight inversion of control container for JavaScript & Node.js apps powered by TypeScript.', 'typescript,javascript,ioc,inversifyjs,nodejs,dependency-injection', '2017-10-06 08:54:54', '1.7k', 38, 'TypeScript', '2017-10-07 01:01:34');
INSERT INTO `stars_rank` VALUES ('nestjs/nest', 'A progressive Node.js framework for building efficient and scalable web applications on top of TypeScript & JavaScript ????', 'javascript,nest,typescript,nodejs,microservices,framework,javascript-framework,websockets,nodejs-framework,typescript-framework', '2017-10-05 12:58:25', '1.6k', 39, 'TypeScript', '2017-10-07 01:01:34');
INSERT INTO `stars_rank` VALUES ('typestyle/typestyle', 'Making CSS Typesafe ????', 'typescript,typestyle,css,css-in-js', '2017-10-03 23:24:24', '1.5k', 40, 'TypeScript', '2017-10-07 01:01:34');
INSERT INTO `stars_rank` VALUES ('NG-ZORRO/ng-zorro-antd', 'An enterprise-class UI components based on Ant Design and Angular. ????', 'angular,typescript,frontend,angular-components,antd,ui-components,angular-directives,ant-design', '2017-10-04 09:54:49', '1.5k', 41, 'TypeScript', '2017-10-07 01:01:34');
INSERT INTO `stars_rank` VALUES ('alexjlockwood/ShapeShifter', 'SVG icon animation tool for Android, iOS, and the web', 'icon-animations,svg,android,ios,angular,typescript,animated-vector-drawables', '2017-10-06 15:18:00', '1.5k', 42, 'TypeScript', '2017-10-07 01:01:34');
INSERT INTO `stars_rank` VALUES ('ionic-team/ionic-native', 'Native features for mobile apps built with Cordova/PhoneGap and open web technologies. Complete with TypeScript suppo…', '', '2017-10-06 15:43:30', '1.4k', 43, 'TypeScript', '2017-10-07 01:01:34');
INSERT INTO `stars_rank` VALUES ('TypeStrong/ts-node', 'TypeScript execution for node.js', 'repl,nodejs,typescript,runtime,ts', '2017-10-06 06:27:17', '1.3k', 44, 'TypeScript', '2017-10-07 01:01:34');
INSERT INTO `stars_rank` VALUES ('colmena/colmena', '???? Free and Open Source development platform to quickly build modular content management systems', 'angular,colmena,loopback,javascript,node,typescript,mit,ng2,monorepo,help-wanted,coreui,ng4,colmena-cms', '2017-09-18 23:56:22', '1.3k', 45, 'TypeScript', '2017-10-07 01:01:34');
INSERT INTO `stars_rank` VALUES ('zhongsp/TypeScript', 'TypeScript使用手册。TypeScript is a superset of JavaScript that compiles to clean JavaScript output. http://www.typescript…', 'typescript,javascript-typescript,gitbook,react,javascript,typescript-handbook,angular2', '2017-10-05 02:14:47', '1.3k', 46, 'TypeScript', '2017-10-07 01:01:34');
INSERT INTO `stars_rank` VALUES ('staltz/xstream', 'An extremely intuitive, small, and fast functional reactive stream library for JavaScript', 'stream,javascript,typescript,cyclejs,reactive-programming', '2017-10-03 15:38:41', '1.3k', 47, 'TypeScript', '2017-10-07 01:01:34');
INSERT INTO `stars_rank` VALUES ('Azure/autorest', 'OpenAPI (f.k.a Swagger) Specification code generator. Supports C#, Go, Java, Node.js, TypeScript, Python, Ruby and PHP.', 'openapi,javascript,ruby,python,java,golang,node,csharp,code-generator,swagger,rest-client', '2017-10-06 16:31:07', '1.2k', 48, 'TypeScript', '2017-10-07 01:01:34');
INSERT INTO `stars_rank` VALUES ('ionic-team/stencil', 'Stencil: A Compiler for Web Components', 'stencil,typescript,pwa,component,webcomponents,progressive-web-app,custom-elements', '2017-10-06 15:03:25', '1.1k', 49, 'TypeScript', '2017-10-07 01:01:34');
INSERT INTO `stars_rank` VALUES ('DefinitelyTyped/tsd', '[DEPRECATED] TypeScript Definition manager for DefinitelyTyped', '', '2017-02-21 10:00:53', '1.1k', 50, 'TypeScript', '2017-10-07 01:01:34');
INSERT INTO `stars_rank` VALUES ('s-panferov/awesome-typescript-loader', 'Awesome TypeScript loader for webpack', 'webpack,loader,typescript', '2017-08-22 06:29:58', '1.1k', 51, 'TypeScript', '2017-10-07 01:01:34');
INSERT INTO `stars_rank` VALUES ('vuejs/vue-class-component', 'ES / TypeScript decorator for class-style Vue components.', '', '2017-10-01 01:57:35', '1k', 52, 'TypeScript', '2017-10-07 01:01:34');
INSERT INTO `stars_rank` VALUES ('google/material-design-lite', 'Material Design Components in HTML/CSS/JS', 'material,mdl,material-components,material-design,material-design-lite', '2017-09-12 11:44:47', '28.7k', 1, 'HTML', '2017-10-07 01:01:45');
INSERT INTO `stars_rank` VALUES ('yahoo/pure', 'A set of small, responsive CSS modules that you can use in every web project.', 'css,html,pure', '2017-09-15 23:40:10', '17.6k', 2, 'HTML', '2017-10-07 01:01:45');
INSERT INTO `stars_rank` VALUES ('usablica/intro.js', 'A better way for new feature introduction and step-by-step users guide for your website and project.', 'javascript,html,introjs,ux,guide,tour', '2017-10-03 19:03:16', '15.8k', 3, 'HTML', '2017-10-07 01:01:45');
INSERT INTO `stars_rank` VALUES ('puikinsh/gentelella', 'Free Bootstrap 3 Admin Template', 'bootstrap,html,dashboard,html-template,admin-dashboard', '2017-10-03 15:15:22', '12.6k', 4, 'HTML', '2017-10-07 01:01:45');
INSERT INTO `stars_rank` VALUES ('framework7io/Framework7', 'Full featured HTML framework for building iOS & Android apps', 'android,components,ios,cordova,library,mobile,framework,material,material-design,touch,phonegap', '2017-10-05 21:13:41', '10.8k', 5, 'HTML', '2017-10-07 01:01:45');
INSERT INTO `stars_rank` VALUES ('google/WebFundamentals', 'Best practices for modern web development', 'html,best-practices,javascript,css,chrome,web,html5,progressive-web-app,web-app,chrome-browser,mobile-web', '2017-10-06 15:33:24', '7.8k', 6, 'HTML', '2017-10-07 01:01:45');
INSERT INTO `stars_rank` VALUES ('mdo/code-guide', 'Standards for flexible, durable, and sustainable HTML and CSS.', '', '2017-09-07 16:45:55', '6.6k', 7, 'HTML', '2017-10-07 01:01:45');
INSERT INTO `stars_rank` VALUES ('zurb/foundation-emails', 'Quickly create responsive HTML emails that work on any device and client. Even Outlook.', '', '2017-09-26 00:49:16', '6.5k', 8, 'HTML', '2017-10-07 01:01:45');
INSERT INTO `stars_rank` VALUES ('milligram/milligram', 'A minimalist CSS framework.', 'milligram,css,html,design,framework,flexbox,css-framework,minimalist', '2017-06-21 23:05:08', '6.5k', 9, 'HTML', '2017-10-07 01:01:45');
INSERT INTO `stars_rank` VALUES ('coolwanglu/pdf2htmlEX', 'Convert PDF to HTML without losing text or format.', '', '2017-09-15 22:13:43', '6.4k', 10, 'HTML', '2017-10-07 01:01:45');
INSERT INTO `stars_rank` VALUES ('leemunroe/responsive-html-email-template', 'When all you need is a really simple responsive HTML email template', 'html,responsive,email,email-marketing,html-emails,email-template,email-templates', '2017-08-08 04:09:16', '5.7k', 11, 'HTML', '2017-10-07 01:01:45');
INSERT INTO `stars_rank` VALUES ('mailgun/transactional-email-templates', 'Responsive transactional HTML email templates', '', '2016-02-14 22:24:22', '5.6k', 12, 'HTML', '2017-10-07 01:01:45');
INSERT INTO `stars_rank` VALUES ('LeadDyno/intercooler-js', 'Making AJAX as easy as anchor tags', 'html,javascript,jquery,front-end,web-app', '2017-09-28 00:34:50', '4k', 13, 'HTML', '2017-10-07 01:01:45');
INSERT INTO `stars_rank` VALUES ('ericchiang/pup', 'Parsing HTML at the command line', '', '2017-08-26 18:27:59', '3.9k', 14, 'HTML', '2017-10-07 01:01:45');
INSERT INTO `stars_rank` VALUES ('shower/shower', 'Shower HTML presentation engine', '', '2017-09-19 08:32:10', '3.7k', 15, 'HTML', '2017-10-07 01:01:45');
INSERT INTO `stars_rank` VALUES ('samdutton/simpl', 'Simplest possible examples of HTML, CSS and Javascript:', '', '2017-10-04 20:47:03', '3.2k', 16, 'HTML', '2017-10-07 01:01:45');
INSERT INTO `stars_rank` VALUES ('jgthms/web-design-in-4-minutes', 'Learn basics of web design in 4 minutes', 'html,tutorial', '2017-10-04 07:41:33', '3.2k', 17, 'HTML', '2017-10-07 01:01:45');
INSERT INTO `stars_rank` VALUES ('pixelsign/html5-device-mockups', 'HTML5 mockups of popular devices, to showcase your portfolio and spice up your website.', '', '2017-09-22 10:27:25', '3.2k', 18, 'HTML', '2017-10-07 01:01:45');
INSERT INTO `stars_rank` VALUES ('grangier/python-goose', 'Html Content / Article Extractor, web scrapping lib in Python', '', '2017-05-17 12:06:39', '2.7k', 19, 'HTML', '2017-10-07 01:01:45');
INSERT INTO `stars_rank` VALUES ('TedGoas/Cerberus', 'A few simple, but solid patterns for responsive HTML email templates and newsletters. Even in Outlook and Gmail.', 'cerberus,email,email-boilerplate,newsletter,email-template,responsive-email,html-email,hybrid-email', '2017-10-02 00:13:54', '2.5k', 20, 'HTML', '2017-10-07 01:01:45');
INSERT INTO `stars_rank` VALUES ('webcomponents/webcomponentsjs', 'A suite of polyfills supporting the HTML Web Components specs', '', '2017-09-29 18:26:30', '2.5k', 21, 'HTML', '2017-10-07 01:01:45');
INSERT INTO `stars_rank` VALUES ('tudou527/marketch', 'Marketch is a Sketch 3 plug-in for automatically generating html page that can measure and get CSS styles on it.', '', '2017-04-04 06:38:51', '2.2k', 22, 'HTML', '2017-10-07 01:01:45');
INSERT INTO `stars_rank` VALUES ('mattmakai/fullstackpython.com', 'Full Stack Python source with Pelican, Bootstrap and Markdown.', 'python,html,markdown,documentation,tutorial,twilio,tutorials,static-site,python3,full-stack,pelican,fullstackpython', '2017-10-04 21:07:28', '2.1k', 23, 'HTML', '2017-10-07 01:01:45');
INSERT INTO `stars_rank` VALUES ('eladnava/mailgen', 'A Node.js package that generates clean, responsive HTML e-mails for sending transactional mail.', '', '2017-04-17 15:11:21', '2.1k', 24, 'HTML', '2017-10-07 01:01:45');
INSERT INTO `stars_rank` VALUES ('html5rocks/www.html5rocks.com', '....a top-notch resource for web developers', '', '2017-08-16 09:35:01', '2k', 25, 'HTML', '2017-10-07 01:01:45');
INSERT INTO `stars_rank` VALUES ('tfredrich/RestApiTutorial.com', 'HTML Source code for www.RestApiTutorial.com', '', '2017-09-20 11:26:31', '1.9k', 26, 'HTML', '2017-10-07 01:01:45');
INSERT INTO `stars_rank` VALUES ('MattWilcox/Adaptive-Images', 'Automatically adapts your existing HTML images for mobile devices. No mark-up changes needed.', '', '2016-08-29 19:02:14', '1.8k', 27, 'HTML', '2017-10-07 01:01:45');
INSERT INTO `stars_rank` VALUES ('jssor/slider', 'https://jssor.com Touch swipe slider/slideshow/carousel/gallery/banner mobile responsive bootstrap', 'html,javascript,bootstrap,gallery,slideshow,mobile,responsive,slider,touch,carousel,swipe,banner-rotator,online-slider-maker,wordpress-slider,layer-animation,timelined-layer-animation,nested-layer-animation,full-width-slider,full-window-slider,html5-ad', '2017-10-05 04:06:07', '1.7k', 28, 'HTML', '2017-10-07 01:01:45');
INSERT INTO `stars_rank` VALUES ('rgrove/sanitize', 'Whitelist-based Ruby HTML and CSS sanitizer.', 'html,ruby,css,sanitization', '2017-06-04 22:53:47', '1.7k', 29, 'HTML', '2017-10-07 01:01:45');
INSERT INTO `stars_rank` VALUES ('leizongmin/js-xss', 'Sanitize untrusted HTML (to prevent XSS) with a configuration specified by a Whitelist', '', '2017-09-01 08:09:01', '1.7k', 30, 'HTML', '2017-10-07 01:01:45');
INSERT INTO `stars_rank` VALUES ('farhadi/html5sortable', 'Lightweight jQuery plugin to create sortable lists and grids using native HTML5 drag and drop API.', '', '2017-05-12 01:20:36', '1.6k', 31, 'HTML', '2017-10-07 01:01:45');
INSERT INTO `stars_rank` VALUES ('froala/wysiwyg-editor', 'A beautifully designed WYSIWYG HTML Editor based on HTML5.', 'wysiwyg,wysiwyg-html-editor,froala,javascript,rich-text-editor,wysiwyg-editor', '2017-10-03 15:38:14', '1.6k', 32, 'HTML', '2017-10-07 01:01:45');
INSERT INTO `stars_rank` VALUES ('ageitgey/node-unfluff', 'Automatically extract body content (and other cool stuff) from an html document', '', '2017-05-21 18:50:25', '1.6k', 33, 'HTML', '2017-10-07 01:01:45');
INSERT INTO `stars_rank` VALUES ('swisnl/jQuery-contextMenu', 'jQuery contextMenu plugin & polyfill', 'jquery-contextmenu,jquery,html,polyfill,contextmenu,jquery-plugin,html5', '2017-09-27 11:01:16', '1.6k', 34, 'HTML', '2017-10-07 01:01:45');
INSERT INTO `stars_rank` VALUES ('jglovier/gifs', '???? ???? ???? Storage place for all mah gifs.', 'html,gif-library,jekyll,gifs', '2017-06-02 01:12:14', '1.5k', 35, 'HTML', '2017-10-07 01:01:45');
INSERT INTO `stars_rank` VALUES ('eleith/emailjs', 'html emails and attachments to any smtp server with nodejs', '', '2017-08-24 16:10:29', '1.5k', 36, 'HTML', '2017-10-07 01:01:45');
INSERT INTO `stars_rank` VALUES ('robinmoisson/staticrypt', 'Password protect a static HTML page', '', '2017-09-29 10:37:28', '1.5k', 37, 'HTML', '2017-10-07 01:01:45');
INSERT INTO `stars_rank` VALUES ('NorthwoodsSoftware/GoJS', 'JavaScript diagramming library for interactive flowcharts, org charts, design tools, planning tools, visual languages.', 'gojs,javascript-library,javascript,html,diagram,diagrams,flowchart', '2017-09-26 13:24:27', '1.5k', 38, 'HTML', '2017-10-07 01:01:45');
INSERT INTO `stars_rank` VALUES ('ManrajGrover/SingleDivProject', 'One <div>. Many possibilities.', 'css,html,drawing,single-div,div', '2017-07-09 16:32:27', '1.4k', 39, 'HTML', '2017-10-07 01:01:45');
INSERT INTO `stars_rank` VALUES ('whatwg/html', 'HTML Standard', 'html,standard,whatwg', '2017-10-06 10:16:36', '1.4k', 40, 'HTML', '2017-10-07 01:01:45');
INSERT INTO `stars_rank` VALUES ('scrapy/scrapely', 'A pure-python HTML screen-scraping library', '', '2017-05-26 13:03:29', '1.3k', 41, 'HTML', '2017-10-07 01:01:45');
INSERT INTO `stars_rank` VALUES ('xhtml2pdf/xhtml2pdf', 'A library for converting HTML into PDFs using ReportLab', '', '2017-09-13 20:48:47', '1.3k', 42, 'HTML', '2017-10-07 01:01:45');
INSERT INTO `stars_rank` VALUES ('modularcode/modular-admin-html', 'ModularAdmin - Free Dashboard Theme Built On Bootstrap 4 | HTML Version', 'html,modular,theme,javascript,sass,bootstrap,semantic,boilerplate,admin,dashboard,boilerplate-template,bootstrap4,themes,dashboards', '2017-09-25 16:44:26', '1.3k', 43, 'HTML', '2017-10-07 01:01:45');
INSERT INTO `stars_rank` VALUES ('isobar-idev/code-standards', 'Isobar Front-end development coding standards. Memorize them BY HEART.', 'isobar,best-practices,html,javascript,css,html5,css3', '2016-11-10 18:22:55', '1.3k', 44, 'HTML', '2017-10-07 01:01:45');
INSERT INTO `stars_rank` VALUES ('iandevlin/html5bones', 'The HTML5 template that goes back to basics', '', '2016-05-14 07:23:07', '1.3k', 45, 'HTML', '2017-10-07 01:01:45');
INSERT INTO `stars_rank` VALUES ('w3c/web-platform-tests', 'Test suites for Web-platform specs — including WHATWG, W3C, and others', 'html,w3c,javascript,testing,firefox,opera,browser,web-development,dom,test-runner,safari,google-chrome,test-automation,standards,web-standards,whatwg,microsoft-edge,webkit,blink,gecko', '2017-10-06 16:07:46', '1.2k', 46, 'HTML', '2017-10-07 01:01:45');
INSERT INTO `stars_rank` VALUES ('w3c/html', 'Working Draft of the HTML specification', '', '2017-10-02 14:53:52', '1.2k', 47, 'HTML', '2017-10-07 01:01:45');
INSERT INTO `stars_rank` VALUES ('khan4019/front-end-Interview-Questions', 'Help the front End community to rock interview', 'html,interview-questions,javascript,javascript-interview,frontend-interview,front-end-interview,javascript-interview-questions,css-interview-questions,designer-interview-questions,html-interview-questions', '2017-08-10 06:19:40', '1.1k', 48, 'HTML', '2017-10-07 01:01:45');
INSERT INTO `stars_rank` VALUES ('donpark/html2jade', 'Converts HTML to Jade template. Not perfect but useful enough for non-daily conversions.', '', '2017-04-24 04:35:25', '1.1k', 49, 'HTML', '2017-10-07 01:01:45');
INSERT INTO `stars_rank` VALUES ('BlackrockDigital/startbootstrap-simple-sidebar', 'An off canvas sidebar navigation Bootstrap HTML template created by Start Bootstrap', '', '2017-09-02 13:11:03', '1k', 50, 'HTML', '2017-10-07 01:01:45');
INSERT INTO `stars_rank` VALUES ('WebReflection/hyperHTML', 'A Fast & Light Virtual DOM Alternative', 'lightweight,alternative,template,performance,js,dom,vanilla,template-literals,manipulation,virtualdom', '2017-10-06 16:26:04', '1k', 51, 'HTML', '2017-10-07 01:01:45');
INSERT INTO `stars_rank` VALUES ('daneden/animate.css', '???? A cross-browser library of CSS animations. As easy to use as an easy thing.', 'stylesheets,css,css-animations,animation', '2017-10-06 11:59:54', '45.5k', 1, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('necolas/normalize.css', 'A collection of HTML element and attribute style-normalizations', '', '2017-10-03 17:06:25', '28k', 2, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('jgthms/bulma', 'Modern CSS framework based on Flexbox', 'css,flexbox,html,design,css-framework', '2017-10-06 15:33:35', '19.8k', 3, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('IanLunn/Hover', 'A collection of CSS3 powered hover effects to be applied to links, buttons, logos, SVG, featured images and so on. Ea…', 'css-effects,css,sass', '2017-10-02 08:18:33', '17.6k', 4, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('twbs/ratchet', 'Build mobile apps with simple HTML, CSS, and JavaScript components.', 'html,ratchet,css,javascript', '2017-03-06 12:00:32', '14.1k', 5, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('tobiasahlin/SpinKit', 'A collection of loading indicators animated with CSS', '', '2017-04-20 17:58:49', '13.9k', 6, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('h5bp/Effeckt.css', 'A Performant Transitions and Animations Library', '', '2016-03-27 15:29:44', '11.1k', 7, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('you-dont-need/You-Dont-Need-JavaScript', 'CSS is powerful, you can do a lot of things without JS.', 'carousel,game,counter,accordion,font,burger-menu,tooltip,treeview,textfield,popover,javascript,css', '2017-06-28 08:29:03', '9.3k', 8, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('jessepollak/card', '???? make your credit card form better in one line of code', 'css,jquery,javascript,credit-card,coffeescript,payments', '2017-08-20 23:48:48', '9.1k', 9, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('ConnorAtherton/loaders.css', 'Delightful, performance-focused pure css loading animations.', '', '2017-07-29 20:23:29', '7.8k', 10, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('connors/photon', 'The fastest way to build beautiful Electron apps using simple HTML and CSS', 'css,electron,photon,html', '2017-07-30 17:25:08', '7.5k', 11, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('chinchang/hint.css', 'A CSS only tooltip library for your lovely websites.', 'css,bem,tooltip-library,tooltip,accessibility,purecss,simple-api', '2017-06-26 11:42:44', '7.5k', 12, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('primer/primer-css', 'The CSS framework that powers GitHub\'s front-end design.', 'sass,css,design-systems,framework,ui-components,design-system', '2017-10-05 22:18:17', '6.1k', 13, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('joshuaclayton/blueprint-css', 'A CSS framework that aims to cut down on your CSS development time', '', '2016-06-27 05:08:49', '5.5k', 14, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('tachyons-css/tachyons', 'Functional css for humans', 'css,html,design,design-systems,frontend,design-patterns,responsive-design,design-tools', '2017-10-03 18:23:03', '5.5k', 15, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('lukehaas/css-loaders', 'A collection of loading spinners animated with CSS', '', '2017-05-23 19:25:52', '5.1k', 16, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('picturepan2/spectre', 'Spectre.css - A lightweight, responsive and modern CSS framework.', 'flexbox,spectre,css,lightweight,modern,utilities,css-framework,responsive-grid', '2017-10-05 14:31:16', '5k', 17, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('basscss/basscss', 'Low-level CSS Toolkit', 'basscss,css', '2017-09-19 23:34:12', '4.4k', 18, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('thoughtbot/neat', 'A lightweight and flexible Sass grid', 'bourbon,bourbon-family,css,sass,grid,scss,grid-framework', '2017-08-24 21:24:33', '4.3k', 19, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('erikflowers/weather-icons', '215 Weather Themed Icons and CSS', '', '2017-09-09 15:05:20', '4.3k', 20, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('csswizardry/inuit.css', 'Powerful, scalable, Sass-based, BEM, OOCSS framework.', '', '2016-06-28 13:16:09', '4k', 21, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('jonsuh/hamburgers', 'Tasty CSS-animated Hamburgers', 'css,sass,animation,hamburger,menu', '2017-10-04 13:50:43', '3.8k', 22, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('BafS/Gutenberg', 'Modern framework to print the web correctly.', 'css,framework,printer,scss,css-framework,printing,print,scss-framework', '2017-09-08 12:40:28', '3.7k', 23, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('saeedalipoor/icono', 'One tag One icon, no font or svg, Pure CSS', 'icono,css,css3,purecss,iconsets', '2017-06-03 21:49:32', '3.6k', 24, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('kazzkiq/balloon.css', 'Simple tooltips made of pure CSS', 'tooltip,html,css,sass,less', '2017-10-04 02:54:35', '3.5k', 25, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('elrumordelaluz/csshake', 'CSS classes to move your DOM!', '', '2017-09-22 15:28:04', '3.4k', 26, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('HunterLarco/voxel.css', 'A lightweight 3D CSS voxel library.', '', '2016-05-09 10:05:30', '3.3k', 27, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('blivesta/animsition', 'A simple and easy jQuery plugin for CSS animated page transitions.', '', '2017-08-12 16:00:12', '3.3k', 28, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('suitcss/suit', 'Style tools for UI components', 'preprocessor,postcss,css-packages,css,suit-css', '2017-04-28 20:59:07', '3.3k', 29, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('GumbyFramework/Gumby', 'A Flexible, Responsive CSS Framework - Powered by Sass', '', '2016-06-13 08:16:29', '3k', 30, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('senchalabs/jQTouch', 'Create powerful mobile apps with just HTML, CSS, and Zepto.js (or jQuery).', '', '2016-03-11 23:39:42', '2.9k', 31, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('pattle/simpsons-in-css', 'Simpsons characters in CSS', '', '2016-06-02 09:34:59', '2.8k', 32, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('leemunroe/grunt-email-workflow', 'A Grunt workflow for designing and testing responsive HTML email templates with SCSS.', 'css,mailgun,litmus,grunt,transactional-emails,template,responsive,email', '2017-08-08 17:16:56', '2.7k', 33, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('marvelapp/devices.css', 'Pure CSS phones and tablets', '', '2017-09-29 13:03:29', '2.7k', 34, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('mdo/wtf-forms', 'Friendlier HTML form controls with a little CSS magic.', '', '2016-02-16 22:03:24', '2.4k', 35, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('franciscop/picnic', '???? A beautiful CSS library to kickstart your projects', '', '2017-09-13 23:49:01', '2.4k', 36, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('humaan/Modaal', 'An accessible dialog window library for all humans.', 'css,jquery,modal-plugin,jquery-plugin,js', '2017-07-26 01:46:33', '2.4k', 37, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('dunovank/jupyter-themes', 'Custom Jupyter Notebook Themes', 'theme,css,jupyter,jupyter-themes,jupyter-notebook,syntax-highlighting', '2017-10-03 18:31:16', '2.3k', 38, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('frozenui/frozenui', 'FrozenUI的CSS组件库,基于腾讯手Q样式规范', '', '2017-09-29 06:45:33', '2.2k', 39, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('mobi-css/mobi.css', 'A lightweight, scalable, mobile-first CSS framework', 'css,css-framework,design,mobile,postcss,cssnext,flexbox,mobile-first,mobi-css', '2017-09-29 08:54:08', '2.2k', 40, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('cjcenizal/flexbox-patterns', 'Patterns for using flexbox CSS to build awesome UI components.', '', '2017-01-11 01:34:35', '2.2k', 41, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('twitter/recess', 'A simple and attractive code quality tool for CSS built on top of LESS', '', '2016-04-18 11:53:32', '2.2k', 42, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('ThrivingKings/animo.js', 'A powerful little tool for managing CSS animations', '', '2017-04-05 21:24:37', '2.2k', 43, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('adamschwartz/magic-of-css', 'A CSS course to turn you into a magician.', 'css,design,examples,tutorials,textbook', '2017-05-27 05:40:06', '2.2k', 44, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('Daemonite/material', 'Material Design for Bootstrap 4', 'google-material,bootstrap-components,css,bootstrap,material', '2017-10-06 05:25:20', '2.2k', 45, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('wentin/cssicon', 'icon set made with pure css code, no dependencies, \"grab and go\" icons', '', '2016-11-01 17:14:06', '2.2k', 46, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('egoist/hack', '⛷ Dead simple CSS framework.', '', '2017-09-24 06:20:01', '2.1k', 47, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('LukyVj/family.scss', 'Family.scss is a set of Sass mixins which will help you to manage the style of :nth-child\'ified elements, in an easy …', 'css,sass,nth-order', '2017-09-21 14:10:09', '2.1k', 48, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('StylishThemes/GitHub-Dark', 'Dark GitHub style', 'theme,css,github,awesome,dark-theme,userstyle', '2017-10-06 04:23:19', '2.1k', 49, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('webkul/coolhue', 'Coolest Gradient Hues and Swatches by UVdesk', 'javascript,css,color,palette,gradient,hue,swatch', '2017-08-24 08:03:04', '2k', 50, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('ben-eb/cssnano', 'A modular minifier, built on top of the PostCSS ecosystem.', 'postcss', '2017-09-20 19:54:51', '2k', 51, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('Chalarangelo/mini.css', 'A minimal, responsive, style-agnostic CSS framework!', 'css,boilerplate,front-end,framework,web-development,frontend,responsive,frontend-web', '2017-10-04 17:02:32', '1.9k', 52, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('t32k/stylestats', 'StyleStats is a library to collect CSS statistics.', 'css,stylestats', '2017-03-28 03:10:44', '1.9k', 53, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('kumailht/flakes', 'Flakes is an Admin Template Framework. A combination of CSS Libraries, JavaScript Libraries and Design files that hel…', '', '2016-07-26 10:42:52', '1.9k', 54, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('daneden/Toast', '???? A highly-customizable, responsive (S)CSS grid', '', '2016-12-03 19:29:43', '1.8k', 55, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('codrops/PageTransitions', 'A showcase collection of various page transition effects using CSS animations.', '', '2017-03-19 10:53:33', '1.8k', 56, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('mdo/preboot', 'A collection of LESS mixins and variables for writing better CSS.', '', '2016-01-20 20:45:01', '1.7k', 57, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('flatlogic/awesome-bootstrap-checkbox', 'Font Awesome Bootstrap Checkboxes & Radios. Pure css way to make inputs look prettier.', 'bootstrap,checkbox,bootstrap4,font-awesome,nojs', '2017-09-20 12:05:28', '1.7k', 58, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('tylertate/semantic.gs', 'The Semantic CSS Grid', '', '2017-10-02 20:39:17', '1.7k', 59, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('smcllns/css-social-buttons', 'Zocial button set with CSS. Entirely vector-based social buttons.', '', '2017-02-19 11:54:03', '1.7k', 60, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('jaunesarmiento/fries', 'Fries helps you prototype Android apps using HTML, CSS, and JavaScript.', '', '2016-04-13 04:28:10', '1.6k', 61, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('ganapativs/bttn.css', 'Awesome buttons for awesome projects!', 'css,stylus,ui-design,library,frontend,button,interaction-design', '2017-07-13 16:10:32', '1.6k', 62, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('thoughtbot/refills', 'Components and patterns built with Bourbon and Neat', 'refills,snippets,css,bourbon,sass,components,front-end,scss,bourbon-family', '2017-08-30 14:26:06', '1.6k', 63, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('pocketjoso/penthouse', 'Generate critical css for your urls', 'css,nodejs,performance,web,phantomjs', '2017-10-01 15:29:09', '1.6k', 64, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('soulwire/Makisu', 'CSS 3D Dropdown Concept', '', '2013-05-29 21:21:28', '1.5k', 65, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('kbrsh/wing', '???? A beautiful CSS framework designed for minimalists.', '', '2017-09-28 18:48:23', '1.5k', 66, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('rohitkrai03/pills', 'A simple responsive CSS Grid for humans. View Demo -', 'grid-framework,grid,css-grid,css', '2016-09-08 17:03:30', '1.5k', 67, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('jasonlong/isometric-contributions', 'Browser extension for rendering an isometric pixel art version of your GitHub contribution graph.', 'css,github,chrome-extension,isometric', '2017-03-15 17:29:33', '1.5k', 68, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('csswizardry/csswizardry-grids', 'Simple, fluid, nestable, flexible, Sass-based, responsive grid system.', '', '2016-02-03 13:18:22', '1.4k', 69, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('claviska/shoelace-css', 'A back to the basics CSS starter kit.', 'css,css-framework', '2017-10-02 00:53:50', '1.4k', 70, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('oxalorg/sakura', '???? a minimal css framework/theme.', 'sakura,css-framework,theme,css,design,web,classless,classless-theme', '2017-07-29 10:29:55', '1.4k', 71, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('tylerchilds/cutestrap', '8kb micro CSS framework', '', '2016-09-21 01:06:49', '1.4k', 72, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('mdo/wtf-html-css', 'Common reasons your HTML and CSS may be fucked.', '', '2017-03-05 06:42:03', '1.4k', 73, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('flexiblegs/flexiblegs-scss-plus', 'Flexible Grid System Scss Plus', 'scss,css,flexbox,flexiblegs', '2017-04-05 09:05:07', '1.3k', 74, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('christophery/pushy', 'Pushy is a responsive off-canvas navigation menu using CSS transforms & transitions', '', '2017-09-27 13:54:30', '1.3k', 75, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('ubuwaits/css3-buttons', 'A collection of CSS3 buttons implemented in Sass.', '', '2016-11-02 09:25:07', '1.3k', 76, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('ethantw/Han', '「漢字標準格式」印刷品般的漢字排版框架 Han.css: the CSS typography framework optimised for Hanzi.', 'css,han,sass,stylus,typography', '2017-06-24 19:59:41', '1.3k', 77, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('wesbos/aprilFools.css', 'Harmlessly goof up your co-workers browser and chrome dev tools', '', '2016-08-31 12:22:21', '1.3k', 78, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('mrcoles/markdown-css', 'CSS for making regular HTML look like plain-text markdown.', '', '2015-01-05 23:05:22', '1.2k', 79, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('BlazeCSS/blaze', 'Open Source CSS Toolkit', 'css,sass,toolkit,bem,scss,itcss', '2017-09-25 11:19:50', '1.2k', 80, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('chrisnager/ungrid', 'ungrid - the simplest responsive css grid', 'css,bower,css-grid,grid,responsive,simple,ungrid,npm,vanilla-css', '2017-03-29 00:25:55', '1.2k', 81, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('marmelab/universal.css', 'The only CSS you will ever need', 'css,framework', '2017-08-11 12:22:08', '1.2k', 82, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('mezzoblue/csszengarden.com', 'The source of csszengarden.com', '', '2016-10-07 18:59:12', '1.2k', 83, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('Chalarangelo/mocka', 'Simple, elegant content placeholder', 'placeholder,css', '2017-05-26 11:25:31', '1.2k', 84, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('zavoloklom/material-design-iconic-font', 'Material Design Iconic Font and CSS toolkit', '', '2017-01-30 14:06:27', '1.1k', 85, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('Martz90/vivify', 'Vivify is free CSS animation library.', 'animation,css,helper,css3,css-animations,helpers,css3-animations,animation-library', '2017-09-13 13:06:02', '1.1k', 86, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('lzxb/flex.css', 'flex.css is declarative layout which is compatible with wechat, UC, webview and other main-stream mobile browser and …', 'css,flex,react,angular,vue,flexible,flexbox,flexbox-css,flex-layout', '2017-06-13 04:23:48', '1.1k', 87, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('peduarte/wallop', 'A minimal JS library for showing & hiding things', 'css,animation,minimal,slider', '2017-07-27 11:54:26', '1.1k', 88, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('mblode/marx', 'The classless CSS reset (perfect for Communists).', 'marx,css,gh-pages,html,bower', '2017-09-05 23:02:40', '1.1k', 89, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('cheeaun/hackerweb', 'A simply readable Hacker News web app', 'css,javascript,hacker-news,web-app,hacker-news-reader,hacker-news-client', '2017-02-24 09:57:00', '1.1k', 90, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('ciar4n/imagehover.css', 'Pure CSS Image Hover Effect Library', '', '2017-04-29 08:29:10', '1.1k', 91, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('mrmrs/pesticide', 'Kill your css layout bugs', '', '2017-08-15 12:35:21', '1.1k', 92, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('devlint/gridlex', 'Just a CSS Flexbox Grid System', 'css-grid,flexbox-grid,grid,css,sass,css3,scss', '2017-09-06 08:45:36', '1k', 93, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('bwsewell/tablecloth', 'A CSS and JS bootstrap to style and manipulate data tables', '', '2013-09-26 19:08:21', '1k', 94, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('benschwarz/gallery-css', 'CSS only Gallery', '', '2016-10-23 11:47:29', '1k', 95, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('DennisSnijder/MakeGithubGreatAgain', 'Extension for making GitHub great again', 'github,javascript,css,chrome-extension,stylesheet,github-issues,github-dark,github-theme,github-great-again', '2017-09-21 13:29:12', '1k', 96, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('ppoffice/hexo-theme-icarus', 'The blog theme you may fall in love with, coming to Hexo.', 'hexo,css,javascript,theme', '2017-08-31 04:13:04', '1k', 97, 'CSS', '2017-10-07 01:03:04');
INSERT INTO `stars_rank` VALUES ('vinta/awesome-python', 'A curated list of awesome Python frameworks, libraries, software and resources', 'python,python-framework,python-library,awesome,collections', '2017-10-06 14:00:29', '39.3k', 1, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('jakubroztocil/httpie', 'Modern command line HTTP client – user-friendly curl alternative with intuitive UI, JSON support, syntax highlighting…', 'python,debugging,cli,http,client,json,development,terminal,web,rest,curl,http-client,wget,developer-tools,usability,httpie,jakubroztocil', '2017-10-04 17:09:08', '31.7k', 2, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('nvbn/thefuck', 'Magnificent app which corrects your previous console command.', 'python,shell', '2017-10-06 15:13:54', '31.2k', 3, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('pallets/flask', 'A microframework based on Werkzeug, Jinja2 and good intentions', 'python,flask,web-framework,wsgi,jinja,werkzeug', '2017-10-06 14:54:59', '30.1k', 4, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('django/django', 'The Web framework for perfectionists with deadlines.', 'python,django,views,framework,orm,web,apps,templates,models', '2017-10-06 16:47:42', '28.7k', 5, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('requests/requests', 'Python HTTP Requests for Humans™ ✨????✨', 'python,http,requests,forhumans,kennethreitz', '2017-10-06 06:18:22', '27.9k', 6, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('ansible/ansible', 'Ansible is a radically simple IT automation platform that makes your applications and systems easier to deploy. Avoid…', 'ansible,python', '2017-10-06 16:47:22', '25.8k', 7, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('scrapy/scrapy', 'Scrapy, a fast high-level web crawling & scraping framework for Python.', 'python,crawler,framework,scraping,crawling', '2017-10-06 13:30:56', '23k', 8, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('scikit-learn/scikit-learn', 'scikit-learn: machine learning in Python', 'python,data-science,machine-learning,statistics,data-analysis', '2017-10-06 16:37:36', '21.6k', 9, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('fchollet/keras', 'Deep Learning library for Python. Runs on TensorFlow, Theano, or CNTK.', 'tensorflow,deep-learning,theano,data-science,machine-learning,neural-networks', '2017-10-06 16:41:00', '20.1k', 10, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('donnemartin/system-design-primer', 'Learn how to design large-scale systems. Prep for the system design interview. Includes Anki flashcards.', 'interview-questions,python,design,development,programming,web,system,design-patterns,interview,web-application,webapp,interview-practice,design-system', '2017-10-02 02:42:49', '20k', 11, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('certbot/certbot', 'Certbot, previously the Let\'s Encrypt Client, is EFF\'s tool to obtain certs from Let\'s Encrypt, and (optionally) auto…', 'python,letsencrypt,acme-client,certificate,acme,certbot', '2017-10-06 01:20:49', '19.7k', 12, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('tornadoweb/tornado', 'Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed.', 'python,asynchronous', '2017-09-25 19:45:04', '14.4k', 13, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('reddit/reddit', 'the code that powers reddit.com', 'javascript,reddit,python', '2017-10-02 21:46:36', '14k', 14, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('python/cpython', 'The Python programming language', '', '2017-10-06 16:34:12', '13.4k', 15, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('faif/python-patterns', 'A collection of design patterns/idioms in Python', 'python,idioms,design-patterns', '2017-10-05 22:39:51', '12.8k', 16, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('ipython/ipython', 'Official repository for IPython itself. Other repos in the IPython organization contain things like the website, docu…', 'python,data-science,jupyter,notebook,ipython,repl', '2017-10-05 18:27:20', '12k', 17, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('apache/incubator-mxnet', 'Lightweight, Portable, Flexible Distributed/Mobile Deep Learning with Dynamic, Mutation-aware Dataflow Dep Scheduler;…', 'mxnet,deep-learning,distributed-systems,machine-learning,deep-neural-networks,artificial-intelligence', '2017-10-06 16:00:22', '11.4k', 18, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('donnemartin/interactive-coding-challenges', 'Huge update! Interactive Python coding interview challenges (algorithms and data structures). Includes Anki flashcards.', 'algorithm,python,development,programming,data-structure,interview,competitive-programming,coding,interview-practice,interview-questions', '2017-10-01 23:51:23', '11.1k', 19, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('pandas-dev/pandas', 'Flexible and powerful data analysis / manipulation library for Python, providing labeled data structures similar to R…', 'data-analysis,pandas,alignment,flexible,python', '2017-10-06 15:41:24', '11.1k', 20, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('docker/compose', 'Define and run multi-container applications with Docker', 'docker,python,docker-compose,orchestration', '2017-10-05 19:17:25', '10.6k', 21, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('donnemartin/data-science-ipython-notebooks', 'Data science Python notebooks: Deep learning (TensorFlow, Theano, Caffe, Keras), scikit-learn, Kaggle, big data (Spar…', 'deep-learning,scipy,kaggle,pandas,matplotlib,numpy,python,scikit-learn,aws,data-science,machine-learning,caffe,theano,big-data,spark,hadoop,tensorflow,keras,mapreduce', '2017-10-04 02:20:11', '10.3k', 22, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('binux/pyspider', 'A Powerful Spider(Web Crawler) System in Python.', 'python,crawler', '2017-10-03 03:54:27', '9.8k', 23, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('sqlmapproject/sqlmap', 'Automatic SQL injection and database takeover tool', 'database,python,detection,sql-injection,pentesting,exploitation,takeover,vulnerability-scanner', '2017-10-06 07:18:21', '9.6k', 24, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('keon/algorithms', 'Minimal examples of data structures and algorithms in Python', 'algorithm,python,data-structure,interview,competitive-programming', '2017-09-24 04:38:51', '9.3k', 25, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('fabric/fabric', 'Simple, Pythonic remote execution and deployment.', '', '2017-10-01 20:13:28', '9.1k', 26, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('mitmproxy/mitmproxy', 'An interactive TLS-capable intercepting HTTP proxy for penetration testers and software developers', 'python,tls,ssl,http,security,proxy,websocket,http2,man-in-the-middle', '2017-10-02 15:48:07', '8.5k', 27, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('home-assistant/home-assistant', '???? Open-source home automation platform running on Python 3', 'python,home-automation,mqtt,raspberry-pi,iot,internet-of-things,asyncio', '2017-10-06 16:45:01', '8.4k', 28, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('saltstack/salt', 'Software to automate the management and configuration of any infrastructure or application at scale. Get access to th…', 'python,event-stream,zeromq,cloud-providers,event-management,configuration-management,remote-execution,infrastructure-management,cloud-management,cloud-provisioning', '2017-10-06 15:48:23', '8.2k', 29, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('nicolargo/glances', 'Glances an Eye on your system. A top/htop alternative.', 'python,multi-platform,terminal,web,monitoring,system,restful,restful-api', '2017-10-04 17:01:44', '8.1k', 30, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('powerline/powerline', 'Powerline is a statusline plugin for vim, and provides statuslines and prompts for several other applications, includ…', 'python,vim,bash,zsh,tmux,fish,ipython,prompt,powerline,statusline', '2017-09-24 16:12:45', '8.1k', 31, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('spotify/luigi', 'Luigi is a Python module that helps you build complex pipelines of batch jobs. It handles dependency resolution, work…', 'python,hadoop,scheduling,orchestration-framework,luigi', '2017-10-05 11:47:06', '7.8k', 32, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('pytorch/pytorch', 'Tensors and Dynamic neural networks in Python with strong GPU acceleration', 'numpy,neural-network,gpu,tensor,python,autograd,deep-learning', '2017-10-06 16:46:13', '7.8k', 33, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('celery/celery', 'Distributed Task Queue (development branch)', 'python,redis,amqp,sqs,task-runner,sqs-queue,task-manager,task-scheduler,queued-jobs,queue-workers,queue-tasks', '2017-10-06 10:17:38', '7.7k', 34, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('odoo/odoo', 'Odoo. Open Source Apps To Grow Your Business.', 'python,odoo,odoo-apps,business,erp,apps,management', '2017-10-06 10:59:29', '7.6k', 35, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('getredash/redash', 'Make Your Company Data Driven. Connect to any data source, easily visualize and share your data.', 'redash,visualization,redshift,python,mysql,bigquery,angular,bi,athena,analytics,postgresql', '2017-10-06 10:56:13', '7.5k', 36, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('getpelican/pelican', 'Static site generator that supports Markdown and reST syntax. Powered by Python.', 'python,static-site-generator,pelican', '2017-10-02 21:08:54', '7.3k', 37, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('eriklindernoren/ML-From-Scratch', 'Python implementations of Machine Learning models and algorithms from scratch. Aims to cover everything from Data Min…', 'machine-learning,deep-learning,genetic-algorithm,data-science,data-mining,deep-reinforcement-learning,machine-learning-from-scratch', '2017-10-06 16:58:26', '7.2k', 38, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('StevenBlack/hosts', 'Extending and consolidating hosts files from several well-curated sources like adaway.org, mvps.org, malwaredomainlis…', 'python,malware,unified-hosts,privacy,protection,ad-blocker,porn-filter,social-media-filter,hosts,gambling-filter,ransomware,pornblocker,trojans', '2017-10-06 01:24:44', '7k', 39, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('Theano/Theano', 'Theano is a Python library that allows you to define, optimize, and evaluate mathematical expressions involving multi…', '', '2017-10-06 16:26:43', '7k', 40, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('channelcat/sanic', 'Async Python 3.5+ web server that\'s written to go fast', '', '2017-10-06 05:22:26', '6.9k', 41, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('google/python-fire', 'Python Fire is a library for automatically generating command line interfaces (CLIs) from absolutely any Python object.', '', '2017-08-29 17:40:57', '6.8k', 42, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('eliangcs/http-prompt', 'HTTPie + prompt_toolkit = an interactive command-line HTTP client featuring autocomplete and syntax highlighting', 'python,syntax-highlighting,shell,cli,http,autocomplete,json,development,web-development,terminal,rest-api,http-client,developer-tools', '2017-09-05 15:40:24', '6.6k', 43, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('ageitgey/face_recognition', 'The world\'s simplest facial recognition api for Python and the command line', 'python,face-recognition,face-detection,machine-learning', '2017-10-05 23:10:06', '6.6k', 44, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('bokeh/bokeh', 'Interactive Web Plotting for Python', 'bokeh,python,interactive-plots,visualization,javascript,plots,plotting', '2017-10-06 16:36:17', '6.5k', 45, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('kivy/kivy', 'Open source UI framework written in Python, running on Windows, Linux, macOS, Android and iOS', 'kivy,android,python,linux,windows,macos,ios,app,ui', '2017-10-05 16:58:10', '6.5k', 46, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('beetbox/beets', 'music library manager and MusicBrainz tagger', 'python,music,cli,music-library,musicbrainz', '2017-10-04 18:47:26', '6.2k', 47, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('locustio/locust', 'Scalable user load testing tool written in Python', 'locust,python,http,benchmarking,load-testing,performance-testing', '2017-10-05 14:43:30', '6.1k', 48, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('boto/boto', 'For the latest version of boto, see https://github.com/boto/boto3 -- Python interface to Amazon Web Services', '', '2017-10-04 13:03:15', '6k', 49, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('matplotlib/matplotlib', 'matplotlib: plotting with Python', '', '2017-10-06 07:09:37', '6k', 50, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('wting/autojump', 'A cd command that learns - easily navigate directories from the command line', 'python,filesystem,autojump,command-line-tool', '2017-10-05 17:28:17', '6k', 51, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('dbcli/pgcli', 'Postgres CLI with autocompletion and syntax highlighting', 'python,postgres,database,postgresql,psql', '2017-10-03 19:41:06', '5.9k', 52, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('audreyr/cookiecutter', 'A command-line utility that creates projects from cookiecutters (project templates). E.g. Python package projects, jQ…', '', '2017-10-04 07:23:25', '5.8k', 53, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('clips/pattern', 'Web mining module for Python, with tools for scraping, natural language processing, machine learning, network analysi…', 'web-mining,natural-language-processing,python,machine-learning,sentiment-analysis,wordnet,network-analysis', '2017-09-13 23:53:49', '5.7k', 54, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('samshadwell/TrumpScript', 'Make Python great again', '', '2017-02-03 17:12:02', '5.7k', 55, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('explosion/spaCy', '???? Industrial-strength Natural Language Processing (NLP) with Python and Cython', 'python,nlp,data-science,machine-learning,natural-language-processing,big-data,ai,cython,artificial-intelligence,spacy,nlp-library', '2017-10-06 16:03:32', '5.6k', 56, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('sivel/speedtest-cli', 'Command line interface for testing internet bandwidth using speedtest.net', 'python,python-library,python-script,speedtest', '2017-09-25 16:06:58', '5.6k', 57, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('google/yapf', 'A formatter for Python files', 'python,formatter,google', '2017-10-05 23:11:50', '5.6k', 58, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('quantopian/zipline', 'Zipline, a Pythonic Algorithmic Trading Library', 'python,quant,algorithmic-trading,zipline', '2017-10-06 16:54:56', '5.6k', 59, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('wifiphisher/wifiphisher', 'Automated victim-customized phishing attacks against Wi-Fi clients', 'attack,wifiphisher,python,malware,security,phishing,wifi,rogue,access-point', '2017-10-06 12:27:33', '5.6k', 60, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('coursera-dl/coursera-dl', 'Script for downloading Coursera.org videos and naming them.', 'coursera-dl,video,python,lectures,downloader,storage,coursera,video-downloader,archival', '2017-08-26 18:54:46', '5.5k', 61, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('andymccurdy/redis-py', 'Redis Python Client', '', '2017-10-02 15:26:13', '5.5k', 62, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('docopt/docopt', 'Pythonic command line arguments parser, that will make you smile', '', '2017-07-18 04:26:56', '5.4k', 63, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('nltk/nltk', 'NLTK Source', 'python,nltk,nlp,machine-learning,natural-language-processing', '2017-10-05 22:03:36', '5.4k', 64, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('donnemartin/gitsome', 'A supercharged Git/GitHub command line interface (CLI). An official integration for GitHub and GitHub Enterprise: htt…', 'github-enterprise,python,github,git,windows,macos,linux,shell,cli,github-api,client,utility,development,programming,terminal,utilities,command-line,developer-tools,cli-app,github-client', '2017-09-03 09:42:32', '5.3k', 65, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('divio/django-cms', 'The easy-to-use and developer-friendly CMS', 'python,cms,django,web,django-cms', '2017-10-06 14:11:34', '5.2k', 66, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('codelucas/newspaper', 'News, full-text, and article metadata extraction in Python 3', 'python,crawler,scraper,news,crawling,news-aggregator', '2017-10-04 07:27:51', '5.2k', 67, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('chriskiehl/Gooey', 'Turn (almost) any Python command line program into a full GUI application with one line', '', '2017-09-18 16:21:37', '5.2k', 68, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('RaRe-Technologies/gensim', 'Topic Modelling for Humans', 'python,gensim,topic-modeling,nlp,data-science,machine-learning,natural-language-processing,information-retrieval,data-mining,neural-network,word2vec,word-embeddings,text-summarization,fasttext,document-similarity,word-similarity', '2017-10-06 13:19:36', '5.2k', 69, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('joke2k/faker', 'Faker is a Python package that generates fake data for you.', 'python,testing,fake,dataset,test-data,fake-data,test-data-generator', '2017-10-03 18:43:41', '5.1k', 70, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('Miserlou/Zappa', 'Serverless Python Web Services', 'zappa,api-gateway,aws-lambda,python,flask,lambda,django,serverless,serverless-framework,pyramid,bottle', '2017-10-05 23:15:40', '5k', 71, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('bottlepy/bottle', 'bottle.py is a fast and simple micro-framework for python web-applications.', '', '2017-09-21 18:27:51', '4.9k', 72, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('kennethreitz/httpbin', 'HTTP Request & Response Service, written in Python + Flask.', 'testing,api,http,json,service,http-server', '2017-10-02 00:02:55', '4.9k', 73, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('ajenti/ajenti', 'Ajenti Core and stock plugins', 'javascript,ajenti,python,linux,angular,administration,panel', '2017-09-12 17:15:17', '4.8k', 74, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('pallets/click', 'Python composable command line utility', '', '2017-10-01 03:43:13', '4.8k', 75, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('wagtail/wagtail', 'A Django content management system focused on flexibility and user experience', 'python,cms,django,wagtail', '2017-10-06 15:23:05', '4.8k', 76, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('reverse-shell/routersploit', 'The Router Exploitation Framework', 'router-exploitation-framework,exploits,routersploit-framework,python,security,embedded,router,infosec,routersploit', '2017-10-06 09:02:26', '4.7k', 77, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('dbcli/mycli', 'A Terminal Client for MySQL with AutoCompletion and Syntax Highlighting.', 'database,python,mysql,syntax-highlighting,mycli,auto-completion', '2017-10-03 18:45:54', '4.7k', 78, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('tgalal/yowsup', 'The python WhatsApp library', '', '2017-10-05 18:40:57', '4.6k', 79, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('darknessomi/musicbox', '网易云音乐命令行版本', 'netease-musicbox,python,music,linux', '2017-09-11 03:29:59', '4.6k', 80, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('webpy/webpy', 'web.py is a web framework for python that is as simple as it is powerful.', '', '2017-09-17 14:56:08', '4.6k', 81, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('kennethreitz/pipenv', 'Python Development Workflow for Humans.', 'python,packaging,virtualenv,pip,kennethreitz,pipfile', '2017-10-06 14:20:28', '4.6k', 82, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('a1studmuffin/SpaceshipGenerator', 'A Blender script to procedurally generate 3D spaceships', 'spaceship,blender-scripts,python,procedural-generation,game-development,3d', '2017-08-10 02:11:17', '4.5k', 83, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('mkdocs/mkdocs', 'Project documentation with Markdown.', 'python,mkdocs,markdown,static-site-generator,documentation', '2017-10-05 19:30:21', '4.5k', 84, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('crsmithdev/arrow', 'Better dates & times for Python', '', '2017-10-01 21:58:02', '4.5k', 85, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('pallets/jinja', 'The Jinja2 template engine', 'python,template-engine,jinja2,jinja', '2017-09-18 14:24:39', '4.5k', 86, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('tweepy/tweepy', 'Twitter for Python!', 'twitter,python', '2017-10-05 07:12:18', '4.5k', 87, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('pyeve/eve', 'REST API framework designed for human beings', 'python,flask,rest,mongodb', '2017-09-11 04:05:25', '4.4k', 88, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('coleifer/peewee', 'a small, expressive orm -- supports postgresql, mysql and sqlite', 'python,sqlite,dank,peewee,gametight', '2017-10-06 11:50:49', '4.4k', 89, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('karpathy/neuraltalk', 'NeuralTalk is a Python+numpy project for learning Multimodal Recurrent Neural Networks that describe images with sent…', '', '2017-04-16 19:43:22', '4.4k', 90, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('harelba/q', 'q - Run SQL directly on CSV or TSV files', 'python,cli,tsv,csv,sql,command-line,q,command-line-tool,textasdata,qtextasdata', '2017-08-12 10:08:54', '4.4k', 91, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('tqdm/tqdm', 'A fast, extensible progress bar for Python and CLI', 'python,cli,console,gui,time,terminal,utilities,progress,progress-bar,parallel,meter,progressbar,progressmeter,rate,eta,bar', '2017-10-05 01:38:52', '4.4k', 92, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('falconry/falcon', 'Falcon is a bare-metal Python web API framework for building high-performance microservices, app backends, and higher…', 'python,api,http,microservices,framework,web,rest', '2017-10-03 17:35:26', '4.4k', 93, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('mopidy/mopidy', 'Mopidy is an extensible music server that plays music from local disk, Spotify, SoundCloud, Google Play Music, and mo…', 'python,music-player,mopidy', '2017-09-26 15:54:51', '4.3k', 94, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('dropbox/pyston', 'An open-source Python implementation using JIT techniques.', '', '2017-08-25 15:31:35', '4.3k', 95, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('gunthercox/ChatterBot', 'ChatterBot is a machine learning, conversational dialog engine for creating chat bots', 'machine-learning,chatterbot,python,chatbot', '2017-10-06 02:25:34', '4.3k', 96, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('sloria/TextBlob', 'Simple, Pythonic, text processing--Sentiment analysis, part-of-speech tagging, noun phrase extraction, translation, a…', 'python,nlp,natural-language-processing,pattern,nltk,python-3,python-2', '2017-08-16 03:45:21', '4.3k', 97, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('sympy/sympy', 'A computer algebra system written in pure Python', 'python,science,math,computer-algebra', '2017-10-06 15:14:43', '4.2k', 98, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('benoitc/gunicorn', 'gunicorn \'Green Unicorn\' is a WSGI HTTP Server for UNIX, fast clients and sleepy applications.', 'python,http,http-server,wsgi,wsgi-server', '2017-10-05 15:58:00', '4.2k', 99, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('amoffat/sh', 'Python process launching', '', '2017-07-21 06:01:52', '4.1k', 100, 'Python', '2017-10-07 01:03:25');
INSERT INTO `stars_rank` VALUES ('jashkenas/coffeescript', 'Unfancy JavaScript', '', '2017-10-06 07:52:23', '14.3k', 1, 'CoffeeScript', '2017-10-07 01:03:32');
INSERT INTO `stars_rank` VALUES ('basecamp/trix', 'A rich text editor for everyday writing', 'wysiwyg-editor,coffeescript,javascript,wysiwyg,custom-elements,rich-text-editor', '2017-10-05 15:40:06', '8k', 2, 'CoffeeScript', '2017-10-07 01:03:32');
INSERT INTO `stars_rank` VALUES ('codecombat/codecombat', 'Game for learning how to code.', 'game,codecombat,coffeescript,nodejs,javascript,express,html5,mongodb,pug,learn-to-code,coding', '2017-10-06 06:33:31', '5.7k', 3, 'CoffeeScript', '2017-10-07 01:03:32');
INSERT INTO `stars_rank` VALUES ('gka/chroma.js', 'JavaScript library for all kinds of color manipulations', 'chroma,color-manipulation,javascript-library,coffeescript,manipulate-colors,colors,color-conversion', '2017-09-29 12:12:48', '4.6k', 4, 'CoffeeScript', '2017-10-07 01:03:32');
INSERT INTO `stars_rank` VALUES ('github/hubot-scripts', 'DEPRECATED, see https://github.com/github/hubot-scripts/issues/1113 for details - optional scripts for hubot, opt in …', 'coffeescript,hubot-script', '2017-07-10 16:06:49', '3.4k', 5, 'CoffeeScript', '2017-10-07 01:03:32');
INSERT INTO `stars_rank` VALUES ('docpad/docpad', 'Empower your website frontends with layouts, meta-data, pre-processors (markdown, jade, coffeescript, etc.), partials…', 'contributions-discover,coffeescript,docpad,template-engine,preprocessor,static-site-generator,node', '2017-04-25 00:14:08', '2.9k', 6, 'CoffeeScript', '2017-10-07 01:03:32');
INSERT INTO `stars_rank` VALUES ('Leonidas-from-XIV/node-xml2js', 'XML to JavaScript object converter.', 'coffeescript,xml2js,javascript,parsing,nodejs,node,xml,xml2json,xml-parser,node-js', '2017-08-22 07:43:42', '2.8k', 7, 'CoffeeScript', '2017-10-07 01:03:32');
INSERT INTO `stars_rank` VALUES ('leafo/sticky-kit', 'A jQuery plugin for creating smart sticky elements', 'jquery-plugin,jquery,coffeescript', '2017-08-18 06:45:55', '2.6k', 8, 'CoffeeScript', '2017-10-07 01:03:32');
INSERT INTO `stars_rank` VALUES ('jakubroztocil/cloudtunes', 'Web-based music player for the cloud ☁️ ????', 'music,coffeescript,dropbox,music-player,python,redis,youtube,spa,web,mongodb,websocket,lastfm,backbone,musicbrainz,webapp,jakubroztocil', '2017-03-11 03:10:33', '2.3k', 9, 'CoffeeScript', '2017-10-07 01:03:32');
INSERT INTO `stars_rank` VALUES ('stevenschobert/instafeed.js', 'A simple Instagram javascript plugin', 'coffeescript,instagram,instagram-api,javascript', '2016-10-25 07:21:54', '2.3k', 10, 'CoffeeScript', '2017-10-07 01:03:32');
INSERT INTO `stars_rank` VALUES ('js2coffee/js2coffee', 'Compile JavaScript to CoffeeScript', '', '2017-05-31 21:36:16', '2k', 11, 'CoffeeScript', '2017-10-07 01:03:32');
INSERT INTO `stars_rank` VALUES ('slackapi/hubot-slack', 'Slack Developer Kit for Hubot', 'hubot,coffeescript,hubot-adapter', '2017-09-27 01:49:29', '1.9k', 12, 'CoffeeScript', '2017-10-07 01:03:32');
INSERT INTO `stars_rank` VALUES ('michaelficarra/CoffeeScriptRedux', '???? rewrite of the CoffeeScript compiler with proper compiler design principles and a focus on robustness and extensibi…', '', '2017-04-13 04:30:10', '1.9k', 13, 'CoffeeScript', '2017-10-07 01:03:32');
INSERT INTO `stars_rank` VALUES ('sstephenson/eco', 'Embedded CoffeeScript templates', '', '2015-05-23 22:32:42', '1.8k', 14, 'CoffeeScript', '2017-10-07 01:03:32');
INSERT INTO `stars_rank` VALUES ('serkanyersen/ifvisible.js', '[TypeScript port available in beta] Crossbrowser & lightweight way to check if user is looking at the page or interac…', 'coffeescript,cross-browser,javascript,npm,library,typescript,mit,utilities,visibility', '2017-09-01 23:47:54', '1.5k', 15, 'CoffeeScript', '2017-10-07 01:03:32');
INSERT INTO `stars_rank` VALUES ('mauricemach/coffeekup', 'Markup as CoffeeScript.', '', '2011-10-26 01:50:57', '1.3k', 16, 'CoffeeScript', '2017-10-07 01:03:32');
INSERT INTO `stars_rank` VALUES ('Glavin001/atom-beautify', '???? Beautification abstraction package for Atom editor', 'coffeescript,atom,formatter,beautify,beautifier,prettifier,prettify', '2017-10-06 02:09:28', '1.1k', 17, 'CoffeeScript', '2017-10-07 01:03:32');
INSERT INTO `stars_rank` VALUES ('bevry/cson', 'CoffeeScript-Object-Notation. Same as JSON but for CoffeeScript objects.', 'coffeescript,cson,nodejs,json,executable,data-format', '2017-04-10 00:53:48', '1k', 18, 'CoffeeScript', '2017-10-07 01:03:32');
INSERT INTO `stars_rank` VALUES ('soulwire/Coffee-Physics', 'A simple, lightweight physics engine written in CoffeeScript', '', '2016-12-12 17:36:34', '1k', 19, 'CoffeeScript', '2017-10-07 01:03:32');
INSERT INTO `stars_rank` VALUES ('laravel/laravel', 'A PHP Framework For Web Artisans', 'laravel,php,framework', '2017-10-05 08:47:02', '35.4k', 1, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('symfony/symfony', 'The Symfony PHP framework', 'php-framework,php,symfony,framework,bundle,symfony-bundle,psr-11,psr-3,psr-6,psr-16,psr-13', '2017-10-06 16:30:51', '15.3k', 2, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('bcit-ci/CodeIgniter', 'Open Source PHP Framework (originally from EllisLab)', 'php', '2017-10-06 11:22:55', '15.1k', 3, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('domnikl/DesignPatternsPHP', 'sample code for several design patterns in PHP', 'php,designpatternsphp,design-pattern,oop,phpunit,design-patterns,code-examples,modern-php', '2017-10-04 17:25:46', '13.4k', 4, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('fzaninotto/Faker', 'Faker is a PHP library that generates fake data for you', '', '2017-10-05 12:15:37', '11.8k', 5, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('yiisoft/yii2', 'Yii 2: The Fast, Secure and Professional PHP Framework', 'yii,php,framework,yii2,php-framework', '2017-10-06 15:52:21', '10.9k', 6, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('composer/composer', 'Dependency Manager for PHP', 'composer,php,dependency-manager,package-manager,packages', '2017-10-02 18:13:17', '10k', 7, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('guzzle/guzzle', 'Guzzle, an extensible PHP HTTP client', 'guzzle,curl,psr-7,httpclient,webservices', '2017-10-05 11:38:48', '10k', 8, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('PHPMailer/PHPMailer', 'The classic email sending library for PHP', '', '2017-10-05 13:44:52', '9.7k', 9, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('PHPOffice/PHPExcel', 'A pure PHP library for reading and writing spreadsheet files', '', '2017-10-05 20:47:56', '9.2k', 10, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('phacility/phabricator', 'Open software engineering platform and fun adventure game', 'phabricator,php,git,svn,hg', '2017-10-06 15:50:42', '8.9k', 11, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('phalcon/cphalcon', 'High performance, full-stack PHP framework delivered as a C extension.', 'zephir,phalcon,php,framework,extension,php-extension', '2017-10-04 06:28:29', '8.4k', 12, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('laravel/framework', '', 'php,laravel,framework', '2017-10-06 13:36:42', '8.1k', 13, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('piwik/piwik', 'Liberating Web Analytics. Star us on Github +1. Piwik is the leading open alternative to Google Analytics that gives…', 'privacy,piwik,php,analytics,website,marketing,mobile,log,web-analytics,intranet,growth', '2017-10-06 12:29:54', '8.1k', 14, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('getgrav/grav', 'Modern, Crazy Fast, Ridiculously Easy and Amazingly Powerful Flat-File CMS', 'cms,grav,php,flat-file,content,website,content-management,twig,yaml,symfony,doctrine,php7,website-builder,website-generation,markdown', '2017-10-06 10:46:24', '7.7k', 15, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('cakephp/cakephp', 'CakePHP: The Rapid Development Framework for PHP - Official Repository', 'cakephp,php,validation,orm,web,mvc,rest-api,web-framework,mvc-framework,psr-7,form-builder,rapid-development', '2017-10-06 15:44:24', '7.3k', 16, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('serbanghita/Mobile-Detect', 'Mobile_Detect is a lightweight PHP class for detecting mobile devices (including tablets). It uses the User-Agent str…', 'mobile-detect,device-detection', '2017-09-15 08:52:00', '7.2k', 17, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('CachetHQ/Cachet', '???? An open source status page system for everyone.', 'cachet,php,vuejs,laravel,composer,statuspage,web-application', '2017-10-05 09:40:12', '7k', 18, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('sebastianbergmann/phpunit', 'The PHP Unit Testing framework.', 'php,phpunit,testing-tools', '2017-10-06 03:20:59', '6.4k', 19, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('octobercms/october', 'Free, open-source, self-hosted CMS platform based on the Laravel PHP Framework.', 'laravel,cms,php,platform,framework,backend,octobercms,cmf', '2017-10-04 20:06:18', '6.3k', 20, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('briannesbitt/Carbon', 'A simple PHP API extension for DateTime.', '', '2017-10-04 08:13:56', '6k', 21, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('barryvdh/laravel-debugbar', 'Laravel Debugbar (Integrates PHP Debug Bar)', 'laravel,debugbar', '2017-10-04 07:22:28', '5.8k', 22, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('Intervention/image', 'PHP Image Manipulation', 'laravel,php,manipulation,image,imagick,gd,intervention,thumbnail,watermark', '2017-10-03 18:08:43', '5.7k', 23, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('FriendsOfPHP/Goutte', 'Goutte, a simple PHP Web Scraper', '', '2017-05-15 18:20:25', '5.7k', 24, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('owncloud/core', '☁️ ownCloud web server core (Files, DAV, etc.)', 'owncloud,php,javascript,platform,enterprise,sharing,file-sharing,file-sync,self-hosting,federated', '2017-10-06 15:02:48', '5.5k', 25, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('reactphp/react', 'Event-driven, non-blocking I/O with PHP, formerly known as \"Nuclear Reactor written in PHP\".', '', '2017-09-30 14:40:25', '5.4k', 26, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('overtrue/wechat', '???? It is probably the best SDK in the world for developing WeChat App.', 'php,wechat,sdk', '2017-10-06 08:25:21', '5.4k', 27, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('walkor/Workerman', 'An asynchronous event driven PHP framework for easily building fast, scalable network applications. Supports HTTP, We…', 'reactphp,workerman,hhvm,ssl,php,socket,tcp,asynchronous,webserver,https,network,high-performance,websocket,timer,realtime,socket-server,wss,ws,event-driven', '2017-10-01 23:16:58', '5.1k', 28, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('FriendsOfPHP/PHP-CS-Fixer', 'A tool to automatically fix PHP coding standards issues', '', '2017-10-06 08:18:05', '4.9k', 29, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('yiisoft/yii', 'Yii PHP Framework 1.1.x', 'php-framework,yii,php', '2017-08-25 14:50:43', '4.8k', 30, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('magento/magento2', 'All Submissions you make to Magento Inc. (“Magento\") through GitHub are subject to the following terms and conditions…', 'magento,php,ecommerce,magento2,ecommerce-platform', '2017-10-06 12:47:04', '4.8k', 31, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('deployphp/deployer', 'A deployment tool written in PHP with support for popular frameworks out of the box', 'php,deployment,tool', '2017-10-06 12:05:17', '4.8k', 32, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('erusev/parsedown', 'Markdown Parser in PHP', 'markdown-parser,php,markdown,parser', '2017-08-20 09:31:57', '4.7k', 33, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('tymondesigns/jwt-auth', 'JSON Web Token Authentication for Laravel & Lumen', 'jwt,php,laravel,authentication', '2017-09-27 22:17:07', '4.7k', 34, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('google/google-api-php-client', 'A PHP client library for accessing Google APIs', '', '2017-09-25 21:39:06', '4.6k', 35, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('pagekit/pagekit', 'Pagekit CMS', 'pagekit,php,cms,content,website,symfony,vue,content-management', '2017-10-05 10:29:08', '4.5k', 36, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('filp/whoops', 'PHP errors for cool kids', 'php-errors,php,whoops,ui,errors,error-handling', '2017-10-04 08:55:53', '4.4k', 37, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('php-ai/php-ml', 'PHP-ML - Machine Learning library for PHP', 'machine-learning,classification,php,cross-validation,neural-network,feature-extraction,data-science,artificial-intelligence', '2017-09-25 13:08:52', '4.3k', 38, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('Respect/Validation', 'The most awesome validation engine ever created for PHP', 'validation-engine,php,components,validation,validator,standalone,fluent-interface', '2017-09-30 21:30:07', '4.2k', 39, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('humhub/humhub', 'HumHub - Open Source Social Network', 'php,awesome,framework,social-network', '2017-10-06 16:36:05', '4k', 40, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('dompdf/dompdf', 'HTML to PDF converter (PHP5)', 'css,dompdf,php,html,font,html-to-pdf,pdf-generation', '2017-10-05 11:34:15', '4k', 41, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('squizlabs/PHP_CodeSniffer', 'PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.', 'php,cli,qa,automation,static-analysis,coding-standards', '2017-10-05 08:27:00', '4k', 42, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('top-think/think', 'PHP Framework ThinkPHP5——为API开发而设计的高性能PHP框架(基于PHP5.4+)', '', '2017-10-03 19:24:30', '4k', 43, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('Maatwebsite/Laravel-Excel', 'An eloquent way of importing and exporting Excel and CSV files for Laravel with the power of PHPExcel', 'csv,phpoffice,php,phpexcel,laravel,laravel-package,laravel-5-package', '2017-09-30 08:46:57', '3.9k', 44, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('vlucas/phpdotenv', 'Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.', '', '2017-09-13 13:23:22', '3.9k', 45, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('twigphp/Twig', 'Twig, the flexible, fast, and secure template language for PHP', 'php,twig,template-engine,templating,template-language,psr-11', '2017-09-30 10:56:21', '3.9k', 46, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('jupeter/clean-code-php', '???? Clean Code concepts adapted for PHP', '', '2017-10-06 08:13:36', '3.9k', 47, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('ratchetphp/Ratchet', 'Asynchronous WebSocket server', 'ratchet,php,async,websocket,websockets', '2017-10-04 10:03:47', '3.8k', 48, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('woocommerce/woocommerce', 'An open source eCommerce plugin for WordPress.', 'woocommerce,wordpress,php,ecommerce,ecommerce-platform,automattic', '2017-10-06 10:13:58', '3.8k', 49, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('opencart/opencart', 'A free shopping cart system. OpenCart is an open source PHP-based online e-commerce solution.', '', '2017-10-06 17:02:59', '3.7k', 50, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('nrk/predis', 'Flexible and feature-complete Redis client for PHP and HHVM', 'redis-sentinel,php,redis-cluster,predis,redis', '2017-09-24 23:17:48', '3.7k', 51, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('dodgepudding/wechat-php-sdk', '微信公众平台php开发包, weixin developer SDK.', '', '2017-08-30 08:34:39', '3.7k', 52, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('silexphp/Silex', 'The PHP micro-framework based on the Symfony Components', 'php,framework,symfony,silex', '2017-10-04 17:12:25', '3.7k', 53, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('typecho/typecho', 'A PHP Blogging Platform. Simple and Powerful.', 'php,typecho,blog,markdown', '2017-09-28 05:06:11', '3.6k', 54, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('thephpleague/flysystem', 'Abstraction for local and remote filesystems', 'filesystem,php,filesystem-library,thephpleague', '2017-10-05 15:43:10', '3.5k', 55, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('Sylius/Sylius', 'eCommerce PHP framework built on top of Symfony with component-based architecture and format-agnostic rendering. (HTM…', 'php,sylius,symfony,ecommerce,framework,shopping-cart,shop,ecommerce-platform', '2017-10-06 15:53:43', '3.5k', 56, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('kriswallsmith/assetic', 'Asset Management for PHP', '', '2017-10-01 07:57:27', '3.5k', 57, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('abraham/twitteroauth', 'The most popular PHP library for use with the Twitter OAuth REST API.', 'php-library,twitter-oauth,php,twitter,twitter-api,twitteroauth', '2017-08-11 18:23:37', '3.5k', 58, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('facebookarchive/facebook-php-sdk', 'This SDK is deprecated. Find the new SDK here: https://github.com/facebook/facebook-php-sdk-v4', '', '2016-10-24 01:24:49', '3.5k', 59, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('mgp25/Chat-API', 'The php WhatsApp library', 'php,api,library,whatsapp,chat-api', '2017-07-12 08:48:13', '3.4k', 60, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('timber/timber', 'Plugin to write WordPress themes w object-oriented code and the Twig Template Engine', 'upstatement,timber,twig,php,wordpress', '2017-10-05 20:59:00', '3.4k', 61, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('bolt/bolt', 'Bolt is a simple CMS written in PHP. It is based on Silex and Symfony components, uses Twig and either SQLite, MySQL …', 'bolt,cms,php,mysql,theme,twig,symfony,silex,sqlite,postgresql,cmf,symfony-application', '2017-10-05 14:46:12', '3.4k', 62, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('wp-cli/wp-cli', 'The command line interface for WordPress', 'php,wordpress,wp-cli', '2017-10-06 16:04:08', '3.4k', 63, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('YOURLS/YOURLS', '???? Your Own URL Shortener', 'yourls,php,shorturl,shorten-urls,bitly,url-shortener,url-shortner', '2017-10-05 15:25:54', '3.4k', 64, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('mledoze/countries', 'World countries in JSON, CSV, XML and Yaml. Any help is welcome!', 'geojson,xml,php,countries,topojson,yaml,csv,json', '2017-10-05 08:17:17', '3.3k', 65, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('flarum/core', '', 'php,flarum,laravel,forum', '2017-10-05 02:31:15', '3.3k', 66, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('php-pm/php-pm', 'PPM is a process manager, supercharger and load balancer for modern PHP applications.', 'symfony,php7,application-server,psr7', '2017-10-04 19:27:35', '3.2k', 67, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('cakephp/phinx', 'PHP Database Migrations for Everyone', 'database-migrations,php-database-migrations,php,migrations', '2017-10-04 14:38:08', '3.2k', 68, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('thephpleague/oauth2-server', 'A spec compliant, secure by default PHP OAuth 2.0 Server', 'oauth,oauth2,oauth2-server', '2017-09-27 08:18:17', '3.1k', 69, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('geocoder-php/Geocoder', 'The most featured Geocoder library written in PHP.', 'geocoder', '2017-10-06 11:59:37', '3.1k', 70, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('pattern-lab/patternlab-php', 'The PHP version of Pattern Lab', '', '2016-07-13 14:55:36', '3.1k', 71, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('avalanche123/Imagine', 'PHP 5.3 Object Oriented image manipulation library', '', '2017-09-25 15:48:44', '3.1k', 72, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('invoiceninja/invoiceninja', 'Invoices, expenses & time-tracking built with Laravel', 'javascript,laravel,expenses,php,invoices,tasks,payments,time-tracker', '2017-10-06 13:45:12', '3.1k', 73, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('wallabag/wallabag', 'wallabag is a self hostable application for saving web pages: Save and classify articles. Read them later. Freely.', 'php,wallabag,symfony,self-hosted,read-it-later,symfony-application', '2017-10-04 09:34:00', '3.1k', 74, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('nikic/PHP-Parser', 'A PHP parser written in PHP', 'php,parser,static-analysis,ast', '2017-10-06 16:21:59', '3.1k', 75, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('anchorcms/anchor-cms', 'A lightweight blog CMS for PHP', 'anchor,php,anchor-cms,blog,cms,framework,content-management', '2017-09-21 11:26:57', '3k', 76, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('Codeception/Codeception', 'Full-stack testing PHP framework', 'codeception,php,phpunit,testing,unit-testing,acceptance-testing,bdd,end-to-end,integration-testing', '2017-10-06 12:14:39', '3k', 77, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('chrisboulton/php-resque', 'PHP port of resque (Workers and Queueing)', '', '2017-09-01 19:14:22', '2.9k', 78, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('kanboard/kanboard', 'Kanban project management software', 'kanboard,kanban,php,agile,self-hosted,project-management', '2017-10-04 04:16:08', '2.9k', 79, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('nextcloud/server', '☁️ Nextcloud server, a safe home for all your data', 'nextcloud,enterprise,javascript,open-source,php,design,opensource,cloud,ux,owncloud,decentralized,sharing,file-sharing,collaboration,distributed,free-software,usability,self-hosting,federation,federated', '2017-10-06 14:03:03', '2.8k', 80, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('catfan/Medoo', 'The lightest PHP database framework to accelerate development', 'php,php-framework,database', '2017-10-06 05:43:30', '2.8k', 81, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('botman/botman', 'A framework agnostic PHP library to build chat bots', 'botman,slackbot,facebook-bot,chatbot,bot-framework,facebook-messenger-bot,microsoft-bot-framework,chatbot-framework', '2017-10-05 20:16:42', '2.8k', 82, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('rmccue/Requests', 'Requests for PHP is a humble HTTP request library. It simplifies how you interact with other sites and takes away all…', 'curl,php,http,http-client,php-curl', '2017-09-08 12:26:19', '2.8k', 83, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('PHPOffice/PHPWord', 'A pure PHP library for reading and writing word processing documents', 'php,rtf,html,pdf,docx,doc,odt,msword,libreoffice-writer', '2017-10-02 14:14:54', '2.7k', 84, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('picocms/Pico', 'Pico is a stupidly simple, blazing fast, flat file CMS.', 'php,pico,cms,markdown,yaml,website,twig,simple,flat-file,content-management,markdown-to-html,pico-cms,picocms', '2017-08-05 00:50:05', '2.7k', 85, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('pyrocms/pyrocms', 'Pyro is an experienced and powerful PHP CMS built lovingly for Laravel.', 'php,pyrocms,laravel,platform,cms,framework,cmf', '2017-09-23 15:40:13', '2.6k', 86, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('aws/aws-sdk-php', 'Official repository of the AWS SDK for PHP (@awsforphp)', '', '2017-10-05 19:28:56', '2.6k', 87, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('PrestaShop/PrestaShop', 'PrestaShop offers a free, fully scalable, Open Source e-commerce solution.', 'php,prestashop,cms,ecommerce,php-framework,ecommerce-platform,ecommerce-framework', '2017-10-06 15:52:26', '2.6k', 88, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('ramsey/uuid', 'Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifie…', 'ramsey,uuid,php,guid,identifiers,ramsey-uuid', '2017-09-22 21:24:54', '2.6k', 89, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('bobthecow/mustache.php', 'A Mustache implementation in PHP.', '', '2017-09-26 09:26:32', '2.6k', 90, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('phpmyadmin/phpmyadmin', 'A web interface for MySQL and MariaDB', 'php,mysql,web-app,mariadb,phpmyadmin', '2017-10-06 02:10:39', '2.6k', 91, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('top-think/thinkphp', 'ThinkPHP3.2 ——基于PHP5的简单快速的面向对象的PHP框架', '', '2017-09-15 03:57:16', '2.5k', 92, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('joomla/joomla-cms', 'Home of the Joomla! Content Management System', 'joomla,cms,php,multilingual-websites,website-builder,content-management,php-cms', '2017-10-06 15:45:58', '2.5k', 93, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('hybridauth/hybridauth', 'Open source social sign on PHP Library. HybridAuth goal is to act as an abstract api between your application and var…', 'php,twitter,hybridauth,facebook,google,social-networks,social-login', '2017-09-07 06:57:33', '2.5k', 94, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('rocketeers/rocketeer', 'Send your projects up in the clouds', 'php,deployment', '2017-07-25 12:12:24', '2.5k', 95, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('michelf/php-markdown', 'Parser for Markdown and Markdown Extra derived from the original Markdown.pl by John Gruber.', '', '2017-09-29 11:25:10', '2.5k', 96, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('nikic/FastRoute', 'Fast request router for PHP', '', '2017-05-30 12:55:14', '2.5k', 97, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('mockery/mockery', 'Mockery is a simple yet flexible PHP mock object framework for use in unit testing with PHPUnit, PHPSpec or any other…', 'stub,mockery,php,phpunit,mock,mocking,test-doubles', '2017-10-06 16:20:44', '2.5k', 98, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('rappasoft/laravel-5-boilerplate', 'A Laravel 5 Boilerplate Project - http://laravel-boilerplate.com', 'php,laravel-boilerplate,laravel', '2017-10-06 06:26:03', '2.4k', 99, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('interconnectit/Search-Replace-DB', 'A PHP search replace tool for quickly modifying a string throughout a database. Useful for changing the base URL when…', '', '2017-09-28 12:14:34', '2.4k', 100, 'PHP', '2017-10-07 01:03:53');
INSERT INTO `stars_rank` VALUES ('rails/rails', 'Ruby on Rails', 'ruby,html,mvc,rails,activerecord,activejob', '2017-10-06 12:47:49', '37.2k', 1, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('jekyll/jekyll', '???? Jekyll is a blog-aware, static site generator in Ruby', 'ruby,jekyll,static-site-generator', '2017-10-05 20:12:08', '31.3k', 2, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('discourse/discourse', 'A platform for community discussion. Free, open, simple.', 'rails,ruby,discourse,emberjs', '2017-10-06 15:29:57', '22.8k', 3, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('gitlabhq/gitlabhq', 'GitLab CE | Please open new issues in our issue tracker on GitLab.com', 'ruby,gitlab,rails', '2017-10-06 09:47:31', '19.9k', 4, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('plataformatec/devise', 'Flexible authentication solution for Rails with Warden.', 'rails,plataformatec,devise,ruby,authentication', '2017-09-28 19:46:53', '17.7k', 5, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('ruby/ruby', 'The Ruby Programming Language', 'ruby-language,ruby,language,object-oriented,c', '2017-10-06 13:41:45', '13.1k', 6, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('diaspora/diaspora', 'A privacy-aware, distributed, open source social network.', 'ruby,rails,social-network,decentralized,distributed,federated', '2017-10-01 01:53:45', '11.4k', 7, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('capistrano/capistrano', 'Remote multi-server automation tool', 'ruby,ssh,deployment,capistrano', '2017-10-05 18:13:11', '9.9k', 8, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('sinatra/sinatra', 'Classy web-development dressed in a DSL (official / canonical repo)', 'ruby,rack,sinatra,web-framework', '2017-10-03 21:31:40', '9.6k', 9, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('Homebrew/brew', '???? The missing package manager for macOS', 'homebrew,ruby,macos,package-manager,brew', '2017-10-06 17:01:45', '9k', 10, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('spree/spree', 'Spree is a complete, modular & API-driven open source ecommerce solution for Ruby on Rails', 'ruby,rails,spree,ecommerce,commerce,storefront,commerce-engine,ecommerce-platform,e-commerce,rubyonrails', '2017-10-06 10:34:20', '8.8k', 11, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('ruby-grape/grape', 'An opinionated framework for creating REST-like APIs in Ruby.', 'ruby,api,grape', '2017-10-06 01:59:49', '8.2k', 12, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('bbatsov/rubocop', 'A Ruby static code analyzer, based on the community Ruby style guide.', '', '2017-10-06 10:08:49', '8.1k', 13, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('resque/resque', 'Resque is a Redis-backed Ruby library for creating background jobs, placing them on multiple queues, and processing t…', '', '2017-10-06 14:00:08', '8k', 14, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('mperham/sidekiq', 'Simple, efficient background processing for Ruby', 'ruby,sidekiq', '2017-10-03 08:23:32', '7.9k', 15, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('carrierwaveuploader/carrierwave', 'Classier solution for file uploads for Rails, Sinatra and other Ruby web frameworks', '', '2017-10-04 01:50:03', '7.7k', 16, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('activeadmin/activeadmin', 'The administration framework for Ruby on Rails applications.', 'ruby,activeadmin,rails,arbre', '2017-10-05 15:13:49', '7.6k', 17, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('atech/postal', '???? A fully featured open source mail delivery platform for incoming & outgoing e-mail', 'postal,ruby,mail,smtp,mail-server', '2017-09-11 20:49:47', '7.3k', 18, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('javan/whenever', 'Cron jobs in Ruby', '', '2017-08-26 20:57:57', '7.3k', 19, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('plataformatec/simple_form', 'Forms made easy for Rails! It\'s tied to a simple DSL, with no opinion on markup.', 'ruby,rails-helper,form-builder,rails,dsl', '2017-10-05 23:56:58', '6.8k', 20, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('kaminari/kaminari', '⚡ A Scope & Engine based, clean, powerful, customizable and sophisticated paginator for Ruby webapps', 'rails,ruby,kaminari,pagination', '2017-09-25 09:03:05', '6.7k', 21, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('ryanb/cancan', 'Authorization Gem for Ruby on Rails.', '', '2016-11-22 19:05:24', '6.2k', 22, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('stympy/faker', 'A library for generating fake data such as names, addresses, and phone numbers.', 'fake,ruby', '2017-10-06 11:56:42', '5.8k', 23, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('fluent/fluentd', 'Fluentd: Unified Logging Layer (project under CNCF)', 'fluentd,ruby,logging,cncf,data-collector,log-collector', '2017-10-04 09:40:41', '5.7k', 24, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('thoughtbot/factory_girl', 'A library for setting up Ruby objects as test data.', 'rubygems,rails,ruby,factories,factory-girl,thoughtbot,testing,fixtures', '2017-10-01 03:50:28', '5.5k', 25, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('elabs/pundit', 'Minimal authorization through OO design and pure Ruby classes', '', '2017-10-03 15:34:49', '5.4k', 26, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('puma/puma', 'A Ruby/Rack web server built for concurrency', 'ruby,rack,server,multithreading', '2017-10-05 16:06:34', '5k', 27, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('chef/chef', 'A systems integration framework, built to bring the benefits of configuration management to your entire infrastructure.', 'ruby,chef,devops,cfgmgt', '2017-10-06 16:46:59', '5k', 28, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('cucumber/cucumber-ruby', 'Cucumber for Ruby', '', '2017-10-04 19:13:46', '5k', 29, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('alexreisner/geocoder', 'Complete Ruby geocoding solution.', '', '2017-09-26 00:45:40', '4.7k', 30, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('realm/jazzy', 'Soulful docs for Swift & Objective-C', 'sourcekit,xcode,ruby,sourcekitten,swift', '2017-10-04 22:10:39', '4.7k', 31, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('evil-icons/evil-icons', 'Simple and clean SVG icon pack with the code to support Rails, Sprockets, Node.js, Gulp, Grunt and CDN', 'ruby,svg-icons,evil-icons,javascript,svg,icons', '2017-09-07 13:02:28', '4.5k', 32, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('presidentbeef/brakeman', 'A static analysis security vulnerability scanner for Ruby on Rails applications', 'vulnerabilities,ruby,brakeman,security-vulnerability,rails,security,static-analysis', '2017-10-03 17:42:08', '4.4k', 33, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('slim-template/slim', 'Slim is a template language whose goal is reduce the syntax to the essential parts without becoming cryptic.', 'slim,ruby,template-engines', '2017-10-02 15:47:11', '4.4k', 34, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('nomad/shenzhen', 'CLI for Building & Distributing iOS Apps (.ipa Files)', 'xcode,shenzhen,ruby,cli,nomad', '2017-03-30 13:17:56', '4.4k', 35, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('rails-api/active_model_serializers', 'ActiveModel::Serializer implementation and Rails hooks', 'json,ruby,resource-serializer', '2017-09-22 07:37:17', '4.3k', 36, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('backup/backup', 'Easy full stack backup operations on UNIX-like systems.', 'backup,ruby,mysql,slack,encryption,database,mongodb,postgresql,s3', '2017-10-02 20:49:00', '4.3k', 37, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('bkeepers/dotenv', 'A Ruby gem to load environment variables from `.env`.', 'dotenv,ruby', '2017-09-27 00:11:17', '4.3k', 38, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('jnunemaker/httparty', 'Makes http fun again!', 'httparty,ruby,http', '2017-10-03 23:56:35', '4.2k', 39, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('github/scientist', '???? A Ruby library for carefully refactoring critical paths.', 'ruby,refactoring,scientist,rubygem', '2017-09-28 10:18:52', '4.2k', 40, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('hanami/hanami', 'The web, with simplicity.', 'hanami,ruby-application,ruby,api,web,web-application', '2017-10-06 16:53:41', '4.2k', 41, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('drapergem/draper', 'Decorators/View-Models for Rails Applications', 'ruby,decorators', '2017-10-02 11:24:01', '4.2k', 42, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('rest-client/rest-client', 'Simple HTTP and REST client for Ruby, inspired by microframework syntax for specifying actions.', '', '2017-09-27 08:14:23', '4.1k', 43, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('fog/fog', 'The Ruby cloud services library.', '', '2017-09-29 15:04:01', '4.1k', 44, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('sj26/mailcatcher', 'Catches mail and serves it through a dream.', 'smtp,ruby,mail,server,rails,rubygems,development,devtools', '2017-10-04 13:37:58', '4k', 45, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('binarylogic/authlogic', 'A simple ruby authentication solution.', '', '2017-09-30 17:38:50', '4k', 46, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('skywinder/github-changelog-generator', 'Automatically generate change log from your tags, issues, labels and pull requests on GitHub.', 'labels,ruby,generator,github-api,github-extension,changelog,markdown,changelog-generator', '2017-10-06 13:43:29', '4k', 47, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('bundler/bundler', 'Manage your Ruby application\'s gem dependencies', '', '2017-10-06 14:04:42', '3.9k', 48, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('sferik/twitter', 'A Ruby interface to the Twitter API.', '', '2017-09-30 19:05:41', '3.9k', 49, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('JuanitoFatas/fast-ruby', '???? Writing Fast Ruby ???? -- Collect Common Ruby idioms.', '', '2017-10-02 22:36:03', '3.8k', 50, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('ruby-concurrency/concurrent-ruby', 'Modern concurrency tools including agents, futures, promises, thread pools, supervisors, and more. Inspired by Erlang…', '', '2017-09-11 13:30:42', '3.8k', 51, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('CanCanCommunity/cancancan', 'The authorization Gem for Ruby on Rails.', 'rails,cancancan,authorization', '2017-09-22 08:44:16', '3.7k', 52, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('errbit/errbit', 'The open source error catcher that\'s Airbrake API compliant', 'ruby,airbrake,crash-reporting,error-monitoring', '2017-09-20 08:02:00', '3.7k', 53, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('activemerchant/active_merchant', 'Active Merchant is a simple payment abstraction library extracted from Shopify. The aim of the project is to feel nat…', '', '2017-10-06 16:28:37', '3.7k', 54, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('eventmachine/eventmachine', 'EventMachine: fast, simple event-processing library for Ruby programs', '', '2017-10-05 17:00:11', '3.6k', 55, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('celluloid/celluloid', 'Actor-based concurrent object framework for Ruby', '', '2017-09-14 20:42:09', '3.6k', 56, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('opal/opal', 'Ruby in the Browser', 'javascript,opal,ruby,nodejs,browser,js,compiler', '2017-10-04 07:36:08', '3.6k', 57, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('pluginaweek/state_machine', 'Adds support for creating state machines for attributes on any Ruby class', '', '2017-07-24 17:43:33', '3.6k', 58, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('thoughtbot/administrate', 'A Rails engine that helps you put together a super-flexible admin dashboard.', 'admin-dashboard,ruby,rails', '2017-10-06 11:18:48', '3.6k', 59, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('solnic/virtus', 'Attributes on Steroids for Plain Old Ruby Objects', '', '2017-09-02 06:45:16', '3.6k', 60, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('mongodb/mongoid', 'Ruby ODM framework for MongoDB', '', '2017-09-29 12:43:27', '3.5k', 61, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('sparklemotion/mechanize', 'Mechanize is a ruby library that makes automated web interaction easy.', '', '2017-09-08 11:37:15', '3.5k', 62, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('nesquena/rabl', 'General ruby templating with json, bson, xml, plist and msgpack support', '', '2017-09-30 19:41:20', '3.5k', 63, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('refinery/refinerycms', 'An extendable Ruby on Rails CMS that supports Rails 5.1+', 'refinery,news,demo,refinery-cms,inquiry,rails,ruby', '2017-10-05 03:41:12', '3.5k', 64, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('kickstarter/rack-attack', 'Rack middleware for blocking & throttling', 'rack-middleware,rack-attack,ruby,rack', '2017-10-02 05:40:16', '3.5k', 65, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('prawnpdf/prawn', 'Fast, Nimble PDF Writer for Ruby', 'prawn,ruby,pdf,pdf-generator', '2017-07-15 13:15:57', '3.4k', 66, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('ryanb/ruby-warrior', 'Game written in Ruby for learning Ruby and artificial intelligence.', '', '2016-09-16 00:56:36', '3.4k', 67, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('jeremyevans/sequel', 'Sequel: The Database Toolkit for Ruby', '', '2017-10-02 20:42:49', '3.3k', 68, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('voltrb/volt', 'A Ruby web framework where your Ruby runs on both server and client', '', '2016-10-03 13:58:00', '3.3k', 69, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('arsduo/koala', 'A lightweight Facebook library supporting the Graph, Marketing, and Atlas APIs, realtime updates, test users, and OAuth.', 'ruby,facebook,social-network,ruby-on-rails', '2017-08-03 02:14:10', '3.3k', 70, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('rack/rack', 'a modular Ruby webserver interface', 'ruby', '2017-09-18 22:38:45', '3.2k', 71, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('awesome-print/awesome_print', 'Pretty print your Ruby objects with style -- in full color and with proper indentation', '', '2017-09-29 13:49:15', '3.2k', 72, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('colszowka/simplecov', 'Code coverage for Ruby 1.9+ with a powerful configuration library and automatic merging of coverage across test suites', 'coverage-report,ruby,coverage-library,test-coverage,code-quality,rails,coverage', '2017-10-06 09:52:00', '3.1k', 73, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('padrino/padrino-framework', 'Padrino is a full-stack ruby framework built upon Sinatra.', 'ruby,waf,padrino', '2017-09-02 07:16:39', '3.1k', 74, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('svenfuchs/rails-i18n', 'Repository for collecting Locale data for Ruby on Rails I18n as well as other interesting, Rails related I18n stuff', '', '2017-10-01 15:56:15', '3.1k', 75, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('aasm/aasm', 'AASM - State machines for Ruby classes (plain Ruby, ActiveRecord, Mongoid)', 'mongoid,ruby,transition,aasm,state-machine,activerecord', '2017-09-08 01:21:11', '3k', 76, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('redis/redis-rb', 'A Ruby client library for Redis', '', '2017-10-02 04:58:31', '3k', 77, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('fatfreecrm/fat_free_crm', 'Ruby on Rails CRM platform', '', '2017-09-29 00:53:44', '2.9k', 78, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('layervault/psd.rb', 'Parse Photoshop files in Ruby with ease', 'psd,photoshop,ruby,parser,file-format,renderer,document', '2016-02-14 17:39:53', '2.9k', 79, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('jruby/jruby', 'JRuby, an implementation of Ruby on the JVM', 'ruby-language,jvm,ruby,jruby', '2017-10-05 22:01:58', '2.9k', 80, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('github/gemoji', 'Emoji images and names.', 'emoji,unicode,ruby,rubygem', '2017-08-23 15:14:26', '2.9k', 81, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('sagivo/algorithms', 'algorithms playground for common questions', 'ruby,algorithm,computer-science,interview-questions', '2017-04-17 00:43:13', '2.9k', 82, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('cesarferreira/dryrun', '☁️ Try the demo project of any Android Library', 'dryrun,ruby,android,gradle,tool', '2017-10-04 08:53:34', '2.8k', 83, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('trailblazer/cells', 'View components for Ruby and Rails.', '', '2017-09-12 18:09:02', '2.8k', 84, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('mikel/mail', 'A Really Ruby Mail Library', '', '2017-10-05 02:44:56', '2.8k', 85, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('mojombo/chronic', 'Chronic is a pure Ruby natural language date parser.', '', '2017-09-27 19:16:32', '2.8k', 86, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('petergoldstein/dalli', 'High performance memcached client for Ruby', '', '2017-09-08 15:26:29', '2.7k', 87, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('peek/peek', 'Take a peek into your Rails applications.', 'elasticsearch,peek,ruby,redis', '2017-04-11 01:25:01', '2.7k', 88, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('octokit/octokit.rb', 'Ruby toolkit for the GitHub API', 'octokit,github,github-api', '2017-10-05 18:28:56', '2.7k', 89, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('thoughtbot/clearance', 'Rails authentication with email & password.', 'rails,thoughtbot,clearance,ruby,rails-authentication,rubygem', '2017-10-05 23:52:25', '2.7k', 90, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('swanson/stringer', 'A self-hosted, anti-social RSS reader.', 'ruby,rss,rss-reader,feed-reader,feedjira', '2017-09-27 17:26:32', '2.7k', 91, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('ctran/annotate_models', 'Annotate Rails classes with schema and routes info', 'ruby,rails,activerecord', '2017-10-03 04:47:01', '2.7k', 92, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('grosser/parallel', 'Ruby: parallel processing made simple and fast', '', '2017-07-25 04:03:53', '2.7k', 93, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('nomad/cupertino', 'CLI for the Apple Dev Center', 'ruby,cli,nomad', '2016-12-28 14:16:48', '2.7k', 94, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('github/janky', 'Continuous integration server built on top of Jenkins and Hubot', 'ruby,jenkins,hubot-script', '2017-09-12 02:53:25', '2.6k', 95, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('bblimke/webmock', 'Library for stubbing and setting expectations on HTTP requests in Ruby.', '', '2017-10-02 09:15:50', '2.6k', 96, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('nomad/houston', 'Apple Push Notifications; No Dirigible Required', 'notifications,ruby,apns,houston,cli,nomad', '2017-09-18 19:58:20', '2.5k', 97, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('troessner/reek', 'Code smell detector for Ruby', 'ruby,smell-detector,smell-warnings,smell,quality,parsing,static-analysis,linters', '2017-10-02 07:21:49', '2.5k', 98, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('travisjeffery/timecop', 'A gem providing \"time travel\", \"time freezing\", and \"time acceleration\" capabilities, making it simple to test time-d…', 'ruby,rails,time,test', '2017-10-02 15:50:42', '2.5k', 99, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('NoamB/sorcery', 'Magical authentication for Rails 3 & 4', 'ruby,rails,authentication', '2016-12-29 17:46:16', '2.5k', 100, 'Ruby', '2017-10-07 01:04:35');
INSERT INTO `stars_rank` VALUES ('ReactiveX/RxJava', 'RxJava – Reactive Extensions for the JVM – a library for composing asynchronous and event-based programs using observ…', 'java,reactive-streams,flow,rxjava', '2017-10-06 13:18:00', '27.7k', 1, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('elastic/elasticsearch', 'Open Source, Distributed, RESTful Search Engine', 'java,search-engine,elasticsearch', '2017-10-06 16:16:40', '25.6k', 2, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('iluwatar/java-design-patterns', 'Design patterns implemented in Java', 'principles,java,design-patterns', '2017-10-04 17:12:59', '25.1k', 3, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('square/retrofit', 'Type-safe HTTP client for Android and Java by Square, Inc.', '', '2017-10-05 11:47:29', '24.2k', 4, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('square/okhttp', 'An HTTP+HTTP/2 client for Android and Java applications.', '', '2017-09-26 04:57:08', '22.7k', 5, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('google/guava', 'Google Core Libraries for Java', 'guava,java', '2017-10-06 17:03:07', '19.4k', 6, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('square/leakcanary', 'A memory leak detection library for Android and Java.', '', '2017-09-23 00:38:33', '17k', 7, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('zxing/zxing', 'ZXing (\"Zebra Crossing\") barcode scanning library for Java, Android', 'java,zxing,android,barcode,qr-code,upc,datamatrix,barcode-scanner', '2017-10-06 11:41:55', '15.6k', 8, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('kdn251/interviews', 'Everything you need to know to get the job.', 'java,algorithm,algorithms,leetcode,interview,interviews,interview-practice,algorithm-competitions,leetcode-solutions,interview-questions,technical-coding-interview,algorithm-challenges,coding-interviews,coding-challenge,leetcode-questions,coding-challenge', '2017-10-06 01:29:20', '14.7k', 9, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('libgdx/libgdx', 'Desktop/Android/HTML5/iOS Java game development framework', 'game,libgdx,java,android,windows,linux,ios,framework,html5,cross-platform,macosx,3d,2d', '2017-10-06 14:56:54', '12.6k', 10, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('alibaba/dubbo', 'Dubbo is a high-performance, java based, open source RPC framework', 'dubbo,java,distributed-systems,spring,high-performance,cluster,service-discovery,rpc,soa,service-registration,rpc-framework,service-consumer,service-provider,service-registry,service-oriented', '2017-09-30 08:23:53', '11.8k', 11, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('alibaba/fastjson', '???? A fast JSON parser/generator for Java', 'fastjson,java,android,serialization,json,json-serialization,deserialization,json-parser,json-serializer,best-performance', '2017-10-06 16:59:55', '10.9k', 12, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('android10/Android-CleanArchitecture', 'This is a sample app that is part of a series of blog posts I have written about how to architect an android applicat…', 'android-application,java,architectural,android-cleanarchitecture,android,android-development,android-architecture', '2017-08-13 14:10:29', '9.8k', 13, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('realm/realm-java', 'Realm is a mobile database: a replacement for SQLite & ORMs', 'java,android,mobile,database,realtime-database,nosql-database,mobile-database', '2017-10-06 14:39:12', '8.5k', 14, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('mikepenz/MaterialDrawer', 'The flexible, easy to use, all in one drawer library for your Android project.', 'navigation-drawer,java,materialdrawer,android,drawer,material-design,material-ui,android-library,android-development,material-components,android-ui,material-theme,drawerlayout,drawer-support,mikepenz', '2017-10-05 19:33:46', '8.2k', 15, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('winterbe/java8-tutorial', 'Modern Java - A Guide to Java 8', 'parallel-streams,java,lambda-expressions,stream,learning,tutorial,guide,java-8', '2017-10-05 19:32:19', '8k', 16, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('google/ExoPlayer', 'An extensible media player for Android', 'java,exoplayer,android,mediaplayer', '2017-10-03 13:30:19', '8k', 17, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('orhanobut/logger', '✔️ Simple, pretty and powerful logger for android', 'android,java,log,logger,logcat,timber,pretty-printer,json-logging', '2017-09-17 12:00:10', '7.6k', 18, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('deeplearning4j/deeplearning4j', 'Deep Learning for Java, Scala & Clojure on Hadoop & Spark With GPUs - From Skymind', 'dl4j,intellij,java,neural-nets,gpu,deeplearning4j,hadoop,spark,deeplearning', '2017-10-06 11:31:30', '7.3k', 19, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('roughike/BottomBar', 'A custom view component that mimics the new Material Design Bottom Navigation pattern.', 'android,java,library,material-design,bottom-navigation', '2017-09-26 10:32:07', '7.1k', 20, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('eclipse/vert.x', 'Vert.x is a tool-kit for building reactive applications on the JVM', 'jvm,java,reactive,netty,high-performance,http2,concurrency,nio,vertx,event-loop,non-blocking', '2017-10-06 15:03:52', '6.7k', 21, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('perwendel/spark', 'A simple expressive web framework for java. News: Spark now has a kotlin DSL https://github.com/perwendel/spark-kotlin', '', '2017-09-28 19:46:48', '6.7k', 22, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('florent37/MaterialViewPager', 'A Material Design ViewPager easy to use library', 'viewpager,kenburnsview,materialviewpager,android,toolbar,java,material,parallax,scroll', '2017-09-29 08:54:15', '6.5k', 23, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('prestodb/presto', 'Distributed SQL query engine for big data', 'java,presto,sql,big-data,hive,hadoop', '2017-10-06 16:52:44', '6.5k', 24, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('junit-team/junit4', 'A programmer-oriented testing framework for Java.', '', '2017-10-04 20:49:58', '6.5k', 25, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('square/dagger', 'A fast dependency injector for Android and Java.', '', '2017-03-18 04:06:46', '6.4k', 26, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('Bearded-Hen/Android-Bootstrap', 'Bootstrap style widgets for Android, with Glyph Icons', 'bootstrap-brands,twitter-bootstrap-specification,widget,java,android,android-library,android-ui,android-animated-icons,glyph-icons,android-bootstrap', '2017-07-22 09:39:46', '6.2k', 27, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('dropwizard/dropwizard', 'A damn simple library for building production-ready RESTful web services.', 'hibernate,dropwizard,java,rest,jax-rs,web-framework,jetty,jersey2', '2017-10-06 13:45:12', '6k', 28, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('cymcsg/UltimateRecyclerView', 'A RecyclerView(advanced and flexible version of ListView in Android) with refreshing,loading more,animation and many …', 'java,recyclerview,ultimaterecyclerview,android', '2017-07-17 03:48:19', '6k', 29, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('Yalantis/uCrop', 'Image Cropping Library for Android', 'android,java,image,scale,animation,crop,photo,rotation', '2017-08-28 08:56:45', '6k', 30, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('mybatis/mybatis-3', 'MyBatis SQL mapper framework for Java', 'java,mybatis,sql', '2017-10-05 15:00:08', '5.9k', 31, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('kaushikgopal/RxJava-Android-Samples', 'Learning RxJava for Android by example', 'learning-rxjava,java,rxjava,sample,reactive,example,thread,concurrency,reactive-programming', '2017-09-25 18:24:49', '5.8k', 32, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('skylot/jadx', 'Dex to Java decompiler', '', '2017-07-12 06:34:24', '5.7k', 33, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('xetorthio/jedis', 'A blazingly small and sane redis java client', '', '2017-10-04 06:31:55', '5.7k', 34, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('permissions-dispatcher/PermissionsDispatcher', 'Simple annotation-based API to handle runtime permissions.', 'android,kotlin,java', '2017-10-04 04:14:59', '5.7k', 35, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('google/guice', 'Guice (pronounced \'juice\') is a lightweight dependency injection framework for Java 6 and above, brought to you by Go…', '', '2017-10-04 06:49:31', '5.7k', 36, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('google/auto', 'A collection of source code generators for Java.', '', '2017-10-02 23:33:05', '5.7k', 37, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('mockito/mockito', 'Most popular Mocking framework for unit tests written in Java', 'java,mockito,mocking-framework,testing,mock,test-automation,mocking,testing-tools,mock-library,java-library,test-driven-development,mocks', '2017-10-05 21:09:49', '5.4k', 38, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('code4craft/webmagic', 'A scalable web crawler framework for Java.', 'java,crawler,framework,scraping', '2017-09-19 04:09:02', '5.4k', 39, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('brettwooldridge/HikariCP', '光 HikariCP・A solid high-performance JDBC connection pool at last.', 'connection-pool,java,jdbc,high-performance', '2017-10-02 19:43:45', '5.3k', 40, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('dropwizard/metrics', '???? Capturing JVM- and application-level metrics. So you know what\'s going on.', 'metrics,java', '2017-10-04 15:42:09', '5.2k', 41, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('facebook/buck', 'A fast build system that encourages the creation of small, reusable modules over a variety of platforms and languages.', 'buck,java,android,python,ios,build-tool', '2017-10-06 14:29:29', '5.1k', 42, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('evant/gradle-retrolambda', 'A gradle plugin for getting java lambda support in java 6, 7 and android', '', '2017-07-23 20:28:52', '5.1k', 43, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('jhy/jsoup', 'jsoup: Java HTML Parser, with best of DOM, CSS, and jquery', 'css,html,parse,dom,java,java-html-parser,jsoup', '2017-10-02 19:58:11', '5k', 44, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('rzwitserloot/lombok', 'Very spicy additions to the Java programming language.', '', '2017-10-02 22:00:30', '5k', 45, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('google/j2objc', 'A Java to iOS Objective-C translation tool and runtime.', '', '2017-10-04 19:13:03', '4.9k', 46, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('facebook/rebound', 'A Java library that models spring dynamics and adds real world physics to your app.', '', '2017-10-02 00:08:53', '4.7k', 47, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('naver/pinpoint', 'Pinpoint is an open source APM (Application Performance Management) tool for large-scale distributed systems written in', 'agent,java,apm,performance,monitoring', '2017-09-29 17:57:28', '4.6k', 48, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('swagger-api/swagger-core', 'Examples and server integrations for generating the Swagger API Specification, which enables easy access to your REST…', 'java,openapi-specification,swagger,rest,rest-api,swagger-api', '2017-10-04 12:23:08', '4.5k', 49, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('square/okio', 'A modern I/O API for Java', '', '2017-09-29 20:34:28', '4.3k', 50, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('Yalantis/Side-Menu.Android', 'Side menu with some categories to choose.', 'java,android,animation,menu,navigationview,drawer-layout', '2017-05-15 07:06:01', '4.2k', 51, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('square/javapoet', 'A Java API for generating .java source files.', '', '2017-08-31 23:57:04', '4.2k', 52, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('scribejava/scribejava', 'Simple OAuth library for Java', 'scribejava,java,oauth', '2017-10-01 07:22:46', '4.1k', 53, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('google/android-classyshark', 'Executables (apk, multi-dex, jar) browser for Android, Java and Kotlin', 'apk,classyshark,jar,java,android,dex,apk-parser,kotlin,analysis', '2017-07-04 18:10:46', '4.1k', 54, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('AsyncHttpClient/async-http-client', 'Asynchronous Http and WebSocket Client library for Java', '', '2017-10-05 06:28:40', '4k', 55, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('JakeWharton/DiskLruCache', 'Java implementation of a Disk-based LRU cache which specifically targets Android compatibility.', '', '2016-12-27 06:39:37', '3.9k', 56, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('sockeqwe/mosby', 'A Model-View-Presenter / Model-View-Intent library for modern Android apps', 'mosby,java,redux,android,architecture,mvp,mvi', '2017-10-03 09:29:50', '3.8k', 57, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('stanfordnlp/CoreNLP', 'Stanford CoreNLP: A Java suite of core NLP tools.', 'nlp,natural-language-processing,named-entity-recognition,stanford-nlp,nlp-parsing', '2017-10-06 10:42:53', '3.8k', 58, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('hankcs/HanLP', '自然语言处理 中文分词 词性标注 命名实体识别 依存句法分析 关键词提取 自动摘要 短语提取 拼音 简繁转换', 'doublearraytrie,crf,hanlp,conll,java,trie,textrank,nlp,natural-language-processing,text-mining,hmm,neural-network,maxent,dependency-parser,pos-tagging,chinese-word-segmentation', '2017-10-03 15:34:25', '3.7k', 59, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('pxb1988/dex2jar', 'Tools to work with android .dex and java .class files', '', '2017-09-29 11:34:04', '3.7k', 60, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('lzyzsd/JsBridge', 'android java and javascript bridge, inspired by wechat webview jsbridge', '', '2017-08-09 11:59:02', '3.6k', 61, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('robolectric/robolectric', 'Android Unit Testing Framework', 'android,robolectric,java,unit-testing', '2017-10-05 23:30:12', '3.5k', 62, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('Yalantis/Phoenix', 'Phoenix Pull-to-Refresh', 'java,android,animation,listview,pull-to-refresh', '2017-01-21 13:43:08', '3.5k', 63, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('prolificinteractive/material-calendarview', 'A Material design back port of Android\'s CalendarView', 'material,java,android,calendar', '2017-10-01 04:12:00', '3.4k', 64, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('diogobernardino/WilliamChart', 'Android library to create charts.', 'android-library,williamchart,java,android,charts', '2017-07-02 12:53:46', '3.4k', 65, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('NLPchina/ansj_seg', 'ansj分词.ict的真正java实现.分词效果速度都超过开源版的ict. 中文分词,人名识别,词性标注,用户自定义词典', 'ansj,java,nlp,chinese', '2017-09-26 13:48:06', '3.4k', 66, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('redisson/redisson', 'Redisson - distributed Java objects and services (Set, Multimap, SortedSet, Map, List, Queue, BlockingQueue, Deque, B…', 'lock,java,map,redis,ssl,set,list,spring,queue,executor,cache,scheduler,redis-cluster,session,tomcat,distributed,redis-client,hibernate,mapreduce,distributed-locks', '2017-10-06 14:29:49', '3.4k', 67, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('java-native-access/jna', 'Java Native Access', '', '2017-10-04 03:31:58', '3.3k', 68, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('orfjackal/retrolambda', 'Backport of Java 8\'s lambda expressions to Java 7, 6 and 5', '', '2017-04-16 19:03:23', '3.3k', 69, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('b3log/solo', '???? 一个用 Java 实现的博客系统,为你或你的团队创建个博客吧!A blogging system written in Java, feel free to create your or your team own blog.', 'java,emoji,solo,blog,jekyll,theme,markdown,hexo', '2017-10-03 10:42:33', '3.3k', 70, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('Vedenin/useful-java-links', 'A list of useful Java frameworks, libraries, software and hello worlds examples', 'java-links,lists,machine-learning,awesome,resources,java-api,awesome-list,java-frameworks,java-libraries,java-applications', '2017-09-17 16:38:56', '3.3k', 71, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('joelittlejohn/jsonschema2pojo', 'Generate Java types from JSON or JSON Schema and annotates those types for data-binding with Jackson, Gson, etc', 'gson,json-schema,java,ant-task,jackson,json,maven-plugin,gradle-plugin', '2017-09-26 20:31:08', '3.2k', 72, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('grpc/grpc-java', 'The Java gRPC implementation. HTTP/2 based RPC', '', '2017-10-06 16:36:52', '3.2k', 73, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('mikepenz/Android-Iconics', 'Android-Iconics - Use any icon font, or vector (.svg) as drawable in your application.', 'google-material,icon-font,foundation-icons,devicons,mikepenz,meteocons,android-icon,java,custom-fonts,weather-icons,android,material,material-design,fontawesome,material-ui,android-library,android-development,material-icons,material-components,google-mate', '2017-09-28 14:51:45', '3.2k', 74, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('square/moshi', 'A modern JSON library for Android and Java.', '', '2017-10-05 07:17:43', '3.2k', 75, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('JodaOrg/joda-time', 'Joda-Time is the widely used replacement for the Java date and time classes prior to Java SE 8.', 'joda,java,joda-time,date-time', '2017-10-05 09:12:54', '3.2k', 76, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('apereo/cas', 'Apereo CAS - Enterprise Single Sign On for all earthlings and beyond.', 'overlay,java,oauth2,spring-boot,thymeleaf,authentication,gradle,spring-cloud,openidconnect,authorization,saml2,ldap-authentication,u2f-server,spring-framework,identity-provider,sso-authentication,sso-login,websso,spring-webflow,duosecurity', '2017-10-06 13:06:36', '3.1k', 77, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('NanoHttpd/nanohttpd', 'Tiny, easily embeddable HTTP server in Java.', '', '2017-09-28 04:18:25', '3.1k', 78, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('ben-manes/caffeine', 'A high performance caching library for Java 8', '', '2017-09-23 00:11:08', '3.1k', 79, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('Yalantis/Context-Menu.Android', 'You can easily add awesome animated context menu to your app.', 'java,android,animation,context-menu', '2017-01-11 20:15:53', '3.1k', 80, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('johncarl81/parceler', '???? Android Parcelables made easy through code generation.', 'java,android,boilerplate,annotation-processor,android-parcelable', '2017-10-06 10:38:18', '3.1k', 81, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('mcxiaoke/packer-ng-plugin', '下一代Android打包工具,100个渠道包只需要10秒钟', 'gradle,java,android,apk', '2017-08-09 03:33:03', '3k', 82, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('Atmosphere/atmosphere', 'Realtime Client Server Framework for the JVM, supporting WebSockets with Cross-Browser Fallbacks', 'jsonp,http-streaming,java,polling,websockets,atmosphere-framework,servlet,javascript,websocket-server,sse,websocket-client,web-application,reactive-programming,supporting-websockets', '2017-09-28 17:23:59', '3k', 83, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('antlr/antlr4', 'ANTLR (ANother Tool for Language Recognition) is a powerful parser generator for reading, processing, executing, or t…', 'parser-generator,java,swift,parse,grammar,javascript,python,language-recognition,antlr,golang,csharp,parsing,cpp,antlr4', '2017-10-06 04:03:52', '3k', 84, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('Ramotion/folding-cell-android', 'FoldingCell is a material design expanding content cell inspired by folding paper material made by @Ramotion', 'material,android,animation,java,design,library,ui,material-design,view,maven,uikit,card,android-library,android-application,ui-components,android-java', '2017-08-05 09:31:20', '3k', 85, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('google/error-prone', 'Catch common Java mistakes as compile-time errors', 'java,static-analysis', '2017-10-03 19:32:49', '3k', 86, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('real-logic/aeron', 'Efficient reliable UDP unicast, UDP multicast, and IPC message transport', 'c-plus-plus,java,ipc,messaging,multicast-streams', '2017-10-05 22:52:30', '3k', 87, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('codecentric/spring-boot-admin', 'Admin UI for administration of spring boot applications', 'java,spring-boot-admin,spring-cloud,spring-boot', '2017-09-19 09:52:05', '2.9k', 88, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('rengwuxian/RxJavaSamples', 'RxJava 和 Retrofit 结合使用的几个最常见使用方式举例', '', '2017-09-23 06:25:17', '2.9k', 89, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('jankotek/mapdb', 'MapDB provides concurrent Maps, Sets and Queues backed by disk storage or off-heap-memory. It is a fast and easy to u…', '', '2017-09-15 09:13:59', '2.8k', 90, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('puniverse/quasar', 'Fibers, Channels and Actors for the JVM', 'jvm,actors,java,fibers,concurrency', '2017-10-02 12:51:36', '2.8k', 91, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('hibernate/hibernate-orm', 'Hibernate\'s core Object/Relational Mapping functionality', 'gradle,orm,hibernate,java,database,jdbc,jpa,java8,unitofwork,envers,java8-times', '2017-10-05 12:08:37', '2.8k', 92, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('jasonross/Nuwa', 'Nuwa, pure java implementation, can hotfix your android application.', '', '2015-11-14 03:29:44', '2.7k', 93, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('gzu-liyujiang/AndroidPicker', '安卓选择器类库,包括日期选择器、时间选择器、单项选择器、双项选择器、城市地址选择器、车牌号选择器、数字选择器、星座选择器、生肖选择器、颜色选择器、文件选择器、目录选择器等,可自定义顶部及底部界面,可自定义窗口动画……Picker f…', 'picker,android,java,address,datepicker,wheelview,citypicker', '2017-09-27 08:41:34', '2.7k', 94, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('MindorksOpenSource/from-java-to-kotlin', 'From Java To Kotlin - Your Cheat Sheet For Java To Kotlin', 'kotlin,android,kotlin-language,kotlin-android,java-to-kotiln', '2017-08-05 10:42:37', '2.7k', 95, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('vondear/RxTools', 'Android开发人员不得不收集的工具类集合 | 支付宝支付 | 微信支付(统一下单) | 微信分享 | 一键集成UCrop选择圆形头像 | 一键集成二维码和条形码的扫描与生成 | 常用Dialog | WebView的封装可播放视频…', 'java,share,tools,utils,qrcode,dialog,barcode,progressbar,toast,sidebar,alipay,seat,wxpay,netspeed,wechatpay,shoppingview,likeview', '2017-09-30 03:30:41', '2.7k', 96, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('yangfuhai/ASimpleCache', 'a simple cache for android and java', '', '2016-09-13 10:33:53', '2.6k', 97, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('Activiti/Activiti', 'Activiti is a light-weight workflow and Business Process Management (BPM) Platform targeted at business people, devel…', 'bpm,spring,java,cloud,microservices,business-process', '2017-10-06 09:48:13', '2.6k', 98, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('stleary/JSON-java', 'A reference implementation of a JSON package in Java.', '', '2017-10-02 20:17:06', '2.6k', 99, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('siacs/Conversations', 'Conversations is an open source XMPP/Jabber client for the Android platform', 'java,android,chat,xmpp,messenger', '2017-10-03 07:14:03', '2.6k', 100, 'Java', '2017-10-07 01:04:54');
INSERT INTO `stars_rank` VALUES ('git/git', 'Git Source Code Mirror - This is a publish-only repository and all pull requests are ignored. Please follow Documenta…', 'c,shell', '2017-10-06 12:24:15', '19.2k', 1, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('SamyPesse/How-to-Make-a-Computer-Operating-System', 'How to Make a Computer Operating System in C++', '', '2017-10-03 23:24:12', '16.4k', 2, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('ggreer/the_silver_searcher', 'A code-searching tool similar to ack, but faster.', 'c,pcre,silver-searcher,search-in-text,command-line-tool,ag', '2017-10-05 11:11:48', '13.4k', 3, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('bang590/JSPatch', 'JSPatch bridge Objective-C and Javascript using the Objective-C runtime. You can call any Objective-C class and metho…', 'jspatch,hotfix,objc-runtime,jsbridge', '2017-10-02 01:48:29', '10.1k', 4, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('FFmpeg/FFmpeg', 'mirror of git://source.ffmpeg.org/ffmpeg.git', 'video,c,ffmpeg,audio,streaming,rtsp,mp4,hls,multimedia,rtmp,webm,mpeg,fft,hevc,matroska', '2017-10-06 15:30:12', '8.4k', 5, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('vurtun/nuklear', 'A single-header ANSI C gui library', 'c,nuklear,gui,imgui,c89,single-header-lib', '2017-10-06 14:02:15', '7.2k', 6, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('mpv-player/mpv', '???? Video player based on MPlayer/mplayer2', 'c,ffmpeg,libav,mplayer,mpv,audio,video,multimedia', '2017-10-06 14:40:43', '6.4k', 7, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('nothings/stb', 'stb single-file public domain libraries for C/C++', '', '2017-09-21 03:28:26', '6k', 8, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('liuliu/ccv', 'C-based/Cached/Core Computer Vision Library, A Modern Computer Vision Library', '', '2017-10-03 05:23:36', '6k', 9, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('allinurl/goaccess', 'GoAccess is a real-time web log analyzer and interactive viewer that runs in a terminal in *nix systems or through yo…', 'c,goaccess,nginx,real-time,monitoring,dashboard,analytics,command-line,webserver,web-analytics,apache,data-analysis', '2017-10-06 12:02:34', '5.9k', 10, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('curl/curl', 'A command line tool and library for transferring data with URL syntax, supporting HTTP, HTTPS, FTP, FTPS, GOPHER, TFT…', 'ldap,c,transfer-data,curl,libcurl,http,client,library,user-agent,https,ftp', '2017-10-06 17:02:33', '5.8k', 11, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('phpredis/phpredis', 'A PHP extension for Redis', 'c,php,redis,redis-cluster', '2017-10-05 18:49:48', '5.6k', 12, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('radare/radare2', 'unix-like reverse engineering framework and commandline tools', 'commandline,radare2,c,unix,analysis,reverse-engineering,forensics', '2017-10-06 13:58:54', '5.6k', 13, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('jonas/tig', 'Text-mode interface for git', 'c,git,tui,ncurses', '2017-10-04 23:55:29', '5k', 14, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('jedisct1/libsodium', 'A modern and easy-to-use crypto library.', 'c,cryptography,crypto', '2017-10-06 13:37:31', '4.7k', 15, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('andlabs/libui', 'Simple and portable (but not inflexible) GUI library in C that uses the native GUI technologies of each platform it s…', '', '2017-09-17 19:34:13', '4.6k', 16, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('jgamblin/Mirai-Source-Code', 'Leaked Mirai Source Code for Research/IoC Development Purposes', '', '2017-07-15 21:54:56', '4.6k', 17, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('fogleman/Craft', 'A simple Minecraft clone written in C using modern OpenGL (shaders).', '', '2017-10-03 03:49:41', '4.5k', 18, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('rswier/c4', 'C in four functions', '', '2017-08-22 00:33:06', '4.1k', 19, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('lpereira/lwan', 'Experimental, scalable, high performance HTTP server', 'c,lwan,http,library,experimental', '2017-10-06 04:03:19', '4k', 20, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('pbatard/rufus', 'The Reliable USB Formatting Utility', 'c,bootable-drives,rufus,iso,windows,usb,assembly,boot,md5,uefi,sha1,sha256,syslinux,grub,mbr,gpt,bios,freedos,grub4dos,windows-to-go', '2017-10-03 15:11:28', '4k', 21, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('orangeduck/Cello', 'Higher level programming in C', '', '2017-01-27 09:47:33', '3.6k', 22, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('nodejs/http-parser', 'http request/response parser for c', '', '2017-10-02 10:28:07', '3.5k', 23, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('xoreaxeaxeax/movfuscator', 'The single instruction C compiler', '', '2017-06-28 22:43:21', '3.5k', 24, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('cinder/Cinder', 'Cinder is a community-developed, free and open source library for professional-quality creative coding in C++.', '', '2017-10-06 01:52:37', '3.3k', 25, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('laruence/yaf', 'A fast php framework written in c, built in php-ext', 'yaf,php,php-framework,c', '2017-06-29 13:32:59', '3.2k', 26, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('PowerShell/Win32-OpenSSH', 'Win32 port of OpenSSH', 'c,windows,ssh', '2017-10-03 03:10:16', '3.2k', 27, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('OpenRCT2/OpenRCT2', 'An open source re-implementation of RollerCoaster Tycoon 2 ????', 'cmake,openrct2,xcode,game,c-plus-plus,c,windows,macos,linux,visual-studio,opengl,msbuild,server,roller-coaster,gitter,roller-coaster-tycoon,simulation,multiplayer,sdl2', '2017-10-06 11:43:16', '3k', 28, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('rui314/8cc', 'A Small C Compiler', '', '2017-09-27 17:00:32', '3k', 29, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('glfw/glfw', 'A multi-platform library for OpenGL, OpenGL ES, Vulkan, window and input', 'c,linux,macos,vulkan,opengl,opengles,windows,objective-c,unix', '2017-10-04 15:25:16', '3k', 30, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('redis/hiredis', 'Minimalistic C client for Redis >= 1.2', '', '2017-09-01 18:47:21', '2.7k', 31, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('clibs/clib', 'C package manager-ish', '', '2017-08-21 21:51:24', '2.6k', 32, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('apple/swift-corelibs-foundation', 'The Foundation Project, providing core utilities, internationalization, and OS independence', '', '2017-10-06 12:14:36', '2.6k', 33, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('martanne/vis', 'A vi-like editor based on Plan 9\'s structural regular expressions', 'lua,c,text-editor,console-application,structural-regex,modal-editing', '2017-10-01 19:59:50', '2.5k', 34, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('hishamhm/htop', 'htop is an interactive text-mode process viewer for Unix systems. It aims to be a better \'top\'.', 'c,macos,linux,console,freebsd,terminal,system,openbsd,tui,process-monitor,htop,console-application', '2017-09-22 16:06:42', '2.5k', 35, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('contiki-os/contiki', 'The official git repository for Contiki, the open source OS for the Internet of Things', '', '2017-10-04 08:59:40', '2.5k', 36, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('jorisvink/kore', 'An easy to use, scalable and secure web application framework for writing web APIs in C.', 'c,kore,pgsql,tls,http,framework,web-development,high-performance', '2017-09-19 13:16:52', '2.5k', 37, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('grbl/grbl', 'An open source, embedded, high performance g-code-parser and CNC milling controller written in optimized C that will …', '', '2017-09-22 11:41:55', '2.3k', 38, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('marcobambini/gravity', 'Gravity Programming Language', 'gravity,fibers,language,portable,closure,programming-language,c,json,interpreter,bytecode,objective-c,virtual-machine,pratt-parser,scripting-language,bridge,object-oriented', '2017-10-06 09:13:23', '2.3k', 39, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('lz4/lz4', 'Extremely Fast Compression algorithm', 'compression,c,lz4', '2017-10-05 19:08:21', '2.3k', 40, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('cmus/cmus', 'Small, fast and powerful console music player for Unix-like operating systems.', '', '2017-09-21 10:58:40', '2.3k', 41, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('Tencent/xLua', 'xLua is a lua programming solution for C# ( Unity, .Net, Mono) , it supports android, ios, windows, linux, osx, etc.', 'lua,unity,csharp,unity3d,xlua', '2017-09-29 09:50:23', '2.2k', 42, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('systemd/systemd', 'systemd System and Service Manager', 'systemd,c,linux,services,system,init', '2017-10-06 14:10:34', '2.2k', 43, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('citusdata/citus', 'Scalable PostgreSQL for multi-tenant and real-time workloads', 'scale,citus,database,multi-tenant,postgres,sql,postgresql,sharding,distributed-database', '2017-10-06 15:55:18', '2.2k', 44, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('pocoproject/poco', 'POCO C++ Libraries - Cross-platform C++ libraries with a network/internet focus.', 'poco,c-plus-plus,json,sql,networking,cross-platform,xml,logging,configuration,http-client,http-server,database-access', '2017-10-06 14:54:16', '2.2k', 45, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('klange/toaruos', 'Hobby kernel + userspace, built mostly from scratch. Composited GUI, dynamically linked ELF binaries, networking, Pyt…', 'c,kernel,toaruos,python,operating-system,unix-like', '2017-08-18 01:50:30', '2.2k', 46, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('nbs-system/naxsi', 'NAXSI is an open-source, high performance, low rules maintenance WAF for NGINX', 'naxsi,nginx,waf,c', '2017-09-08 07:32:17', '2.2k', 47, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('shadowsocks/ChinaDNS', 'Protect yourself against DNS poisoning in China.', '', '2017-05-03 11:10:24', '2.2k', 48, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('tj/luna', 'luna programming language - a small, elegant VM implemented in C', '', '2017-05-26 19:01:16', '2.2k', 49, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('go-vgo/robotgo', 'RobotGo, Go Native cross-platform system automation', 'robotgo,c,go,golang,automation,robot', '2017-10-03 12:17:43', '2.1k', 50, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('Netflix/dynomite', 'A generic dynamo implementation for different k-v storage engines', 'redis,dynomite,c,key-value,cache,distributed-database', '2017-09-30 09:07:03', '2.1k', 51, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('munificent/wren', 'The Wren Programming Language', 'fibers,c,wren,language,interpreter,bytecode,scripting-languages', '2017-10-06 14:51:56', '2.1k', 52, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('antirez/sds', 'Simple Dynamic Strings library for C', '', '2017-07-26 13:15:09', '2.1k', 53, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('phalcon/zephir', 'Zephir is a compiled high level language aimed to the creation of C-extensions for PHP', 'zephir,phalcon,php-extension,php-internals', '2017-09-19 12:10:24', '2k', 54, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('FreeRDP/FreeRDP', 'FreeRDP is a free remote desktop protocol client', 'c,rdp,remote-desktop', '2017-10-06 13:08:02', '1.9k', 55, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('mortdeus/legacy-cc', 'The earliest versions of the very first c compiler known to exist in the wild written by the late legend himself dmr.', '', '2017-07-02 11:49:09', '1.9k', 56, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('esnme/ultrajson', 'Ultra fast JSON decoder and encoder written in C with Python bindings', 'c,python', '2017-08-29 02:09:34', '1.9k', 57, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('sumatrapdfreader/sumatrapdf', 'SumatraPDF reader', 'c-plus-plus,c,pdf,pdf-viewer,win32', '2017-09-14 02:49:41', '1.9k', 58, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('dokan-dev/dokany', 'User mode file system library for windows with FUSE Wrapper', 'dll,dokan,c,kernel-mode,driver,dokan-library,fuse,sys,windows,filesystem-library,filesystem,userland,drivers', '2017-10-01 15:04:01', '1.9k', 59, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('ohler55/oj', 'Optimized JSON', 'json-parser,ruby,rails,c,marshaller,json,oj-gem,ruby-json-parser', '2017-10-05 04:19:36', '1.9k', 60, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('lxc/lxc', 'LXC - Linux Containers', 'lxc,c,containers', '2017-10-06 14:51:00', '1.8k', 61, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('libretro/RetroArch', 'Cross-platform, sophisticated frontend for the libretro API. Licensed GPLv3.', 'c,libretro,retroarch', '2017-10-06 04:11:25', '1.8k', 62, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('sustrik/libmill', 'Go-style concurrency in C', '', '2017-09-28 16:18:13', '1.8k', 63, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('attractivechaos/klib', 'A standalone and lightweight C library', '', '2017-09-24 20:10:50', '1.8k', 64, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('MinhasKamal/CreepyCodeCollection', 'A Nonsense Collection of Disgusting Codes', 'quine,polyglot,mandelbrot,code-golf,signature,esoteric-language,esoteric,programming-language,programming,obfuscated,creepy-codes,golf,golfing', '2017-07-31 06:53:09', '1.8k', 65, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('cleanflight/cleanflight', 'Clean-code version of the baseflight flight controller firmware', 'flight-controller,betaflight,cleanflight,inav,embedded,quadcopter', '2017-10-03 14:18:51', '1.8k', 66, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('DaveDavenport/rofi', 'Rofi: A window switcher, application launcher and dmenu replacement', 'window-switcher,c,dmenu,rofi,application-launcher,dmenu-replacement,i3', '2017-10-05 15:46:04', '1.8k', 67, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('mridgers/clink', 'Bash\'s powerful command line editing in cmd.exe', '', '2017-09-28 21:44:01', '1.7k', 68, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('lastpass/lastpass-cli', 'LastPass command line interface tool', '', '2017-09-29 13:24:32', '1.7k', 69, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('collectd/collectd', 'The system statistics collection daemon. Please send Pull Requests here!', '', '2017-10-06 13:33:47', '1.7k', 70, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('lloyd/yajl', 'A fast streaming JSON parsing library in C.', '', '2017-01-19 16:09:39', '1.7k', 71, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('Cyan4973/xxHash', 'Extremely fast non-cryptographic hash algorithm', 'smhasher,dispersion,hash-functions,xxhash,c,hash,hash-checksum', '2017-09-21 18:19:38', '1.6k', 72, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('Kitware/CMake', 'Mirror of CMake upstream repository', '', '2017-10-06 11:26:52', '1.6k', 73, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('statsite/statsite', 'C implementation of statsd', 'statsite,aggregated-metrics,statsd,stats', '2017-07-24 23:25:47', '1.6k', 74, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('vmg/sundown', 'Standards compliant, fast, secure markdown processing library in C', '', '2017-05-19 12:05:11', '1.5k', 75, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('universal-ctags/ctags', 'A maintained ctags implementation', 'ctags,code-navigation,developer-tools', '2017-10-06 09:14:26', '1.5k', 76, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('krallin/tini', 'A tiny but valid `init` for containers', 'linux,c,docker', '2017-09-25 17:04:37', '1.5k', 77, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('qmk/qmk_firmware', 'keyboard controller firmware for Atmel AVR and ARM USB families', 'ergodox-ez,c,olkb,keyboard-firmware,clueboard', '2017-10-06 14:33:51', '1.5k', 78, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('facebook/libphenom', 'An eventing framework for building high performance and high scalability systems in C.', '', '2017-08-04 03:51:03', '1.5k', 79, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('akheron/jansson', 'C library for encoding, decoding and manipulating JSON data', 'c,json', '2017-10-03 09:46:14', '1.5k', 80, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('tboox/tbox', '???? A glib-like multi-platform c library', 'stream,cross-platform,algorithm,coroutines,json,xml,network,iterator,container,plist', '2017-09-30 03:35:10', '1.5k', 81, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('srdja/Collections-C', 'A library of generic data structures.', 'c,library,algorithms,data-structures,collections', '2017-08-12 00:07:28', '1.4k', 82, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('coturn/coturn', 'coturn TURN server project', '', '2017-10-01 04:18:17', '1.4k', 83, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('PromyLOPh/pianobar', 'Console-based pandora.com player', 'pandora,c,music-player,cli-app', '2017-10-02 10:59:40', '1.4k', 84, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('cstack/db_tutorial', 'Writing a sqlite clone from scratch in C', 'database', '2017-10-01 23:25:57', '1.4k', 85, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('lionsoul2014/ip2region', '准确率99.9%的ip地址定位库,0.0x毫秒级查询,数据库文件大小只有1.5M,提供了java,php,c,python,nodejs,golang查询绑定和Binary,B树,内存三种查询算法,妈妈再也不用担心我的ip地址定位!', 'java,python,nodejs,golang,php,ip-address,clang,ip-lookup,ip-location,ip-database', '2017-09-16 01:39:28', '1.4k', 86, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('RIOT-OS/RIOT', 'RIOT - The friendly OS for IoT', 'c,iot,os', '2017-10-06 16:11:52', '1.4k', 87, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('cucumber/cucumber', 'Cucumber monorepo - polyglot home for Cucumber building blocks', 'cucumber,bdd-framework', '2017-10-06 15:14:03', '1.3k', 88, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('urbit/urbit', 'An operating function', 'urbit,c,hoon,nock,arvo', '2017-09-22 01:48:50', '1.3k', 89, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('edenhill/librdkafka', 'The Apache Kafka C/C++ library', 'librdkafka,c,c-plus-plus,consumer,kafka,high-performance,kafka-consumer,apache-kafka,kafka-producer', '2017-10-05 18:59:44', '1.3k', 90, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('warmcat/libwebsockets', 'canonical libwebsockets.org websocket library', 'c,libwebsockets,lightweight,embeddable,websockets,libevent,client-server,libev,libuv,c-library,portable-library', '2017-10-06 13:29:48', '1.3k', 91, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('davidmoreno/onion', 'C library to create simple HTTP servers and Web Applications.', '', '2017-07-27 15:10:12', '1.3k', 92, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('zsaleeba/picoc', 'A very small C interpreter', '', '2017-03-01 19:16:09', '1.3k', 93, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('chjj/compton', 'A compositor for X11.', '', '2017-09-25 22:46:03', '1.3k', 94, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('orangeduck/mpc', 'A Parser Combinator library for C', '', '2017-06-29 22:14:28', '1.3k', 95, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('danielwaterworth/Raphters', '[DEPRECATED] A web framework for C.', '', '2012-02-04 15:52:02', '1.3k', 96, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('magnumripper/JohnTheRipper', 'This is the official repo for the Jumbo version of John the Ripper. The \"bleeding-jumbo\" branch (default) is based on…', 'c,john,jtr,hashes,hash-types,ripper,opencl,assembler,password,gpgpu,cracking,simd-parallelism', '2017-10-05 08:10:29', '1.2k', 97, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('brianmario/yajl-ruby', 'A streaming JSON parsing and encoding library for Ruby (C bindings to yajl)', '', '2017-04-11 21:01:16', '1.2k', 98, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('Microsoft/checkedc', 'Checked C is an extension of C that adds bounds checking to C. This repo contains the specification for the extension…', '', '2017-09-28 22:52:56', '1.2k', 99, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('rvoicilas/inotify-tools', 'inotify-tools is a C library and a set of command-line programs for Linux providing a simple interface to inotify.', '', '2017-09-01 17:49:59', '1.2k', 100, 'C', '2017-10-07 01:05:38');
INSERT INTO `stars_rank` VALUES ('grpc/grpc', 'The C based gRPC (C++, Node.js, Python, Ruby, Objective-C, PHP, C#)', '', '2017-10-06 16:24:23', '11.7k', 1, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('facebook/folly', 'An open-source C++ library developed and used at Facebook.', '', '2017-10-06 11:39:05', '9.4k', 2, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('dmlc/xgboost', 'Scalable, Portable and Distributed Gradient Boosting (GBDT, GBRT or GBM) Library, for Python, R, Java, Scala, C++ and…', 'gbm,xgboost,gbdt,distributed-systems,gbrt', '2017-10-06 11:41:55', '9k', 3, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('ocornut/imgui', 'Bloat-free Immediate Mode Graphical User interface for C++ with minimal dependencies', 'gamedev,gui,ui,tools,toolkit,imgui', '2017-10-06 05:10:34', '8.2k', 4, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('nlohmann/json', 'JSON for Modern C++', 'c-plus-plus,json-pointer,stl-containers,json,json-serialization,msgpack,cbor,json-parser,header-only,messagepack,json-patch,rfc-6901,rfc-6902,rfc-7159,rfc-7049,json-diff', '2017-10-06 14:53:59', '6.7k', 5, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('googlei18n/libphonenumber', 'Google\'s common Java, C++ and JavaScript library for parsing, formatting, and validating international phone numbers.', '', '2017-10-05 06:21:40', '5.8k', 6, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('philsquared/Catch', 'A modern, C++-native, header-only, test framework for unit-tests, TDD and BDD - using C++98, C++03, C++11, C++14 and …', 'c-plus-plus,testing,framework,tdd,bdd,cpp11,test-framework,header-only,no-dependencies,cpp98,single-file', '2017-10-03 16:42:29', '5.7k', 7, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('openframeworks/openFrameworks', 'openFrameworks is a community-developed cross platform toolkit for creative coding in C++.', 'openframeworks,osx,audio,android,windows,linux,raspberry-pi,opencv,ios,opengl,video,computer-vision,creative-coding,graphics,emscripten', '2017-10-05 17:22:28', '5.5k', 8, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('facebook/proxygen', 'A collection of C++ HTTP libraries including an easy to use HTTP server.', '', '2017-10-06 16:21:28', '5.1k', 9, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('capnproto/capnproto', 'Cap\'n Proto serialization/RPC system - core tools and C++ library', '', '2017-10-03 22:03:36', '5k', 10, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('Tencent/rapidjson', 'A fast JSON parser/generator for C++ with both SAX/DOM style API', '', '2017-10-05 09:47:44', '4.9k', 11, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('ssloy/tinyrenderer', 'Support c++ code for a short computer graphics course', 'tga,c-plus-plus,picture,graphics,opengl,learning,fun,tutorial,shaders,software-rendering,engine,rendering,images,computer-graphics,pixels,engine3d,rasterizer,rendering-engine,rendering-pipeline', '2017-03-29 06:37:10', '4.2k', 12, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('zeromq/libzmq', 'ZeroMQ core engine in C++, implements ZMTP/3.0', 'libzmq,zeromq,networking,stream,network,messaging,concurrency,pubsub,zmq,zmtp,pushpull', '2017-10-06 11:06:29', '3.7k', 13, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('sass/libsass', 'A C/C++ implementation of a Sass compiler', '', '2017-10-06 16:48:12', '3.6k', 14, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('chenshuo/muduo', 'A C++ non-blocking network library for multi-threaded server in Linux', '', '2017-10-02 20:40:35', '3.6k', 15, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('ipkn/crow', 'Crow is very fast and easy to use C++ micro web framework (inspired by Python Flask)', 'crow,c-plus-plus,webserver,header-only', '2017-10-05 15:27:41', '3.5k', 16, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('tiny-dnn/tiny-dnn', 'header only, dependency-free deep learning framework in C++14', 'c-plus-plus,deep-learning,machine-learning,neural-network', '2017-10-02 15:57:05', '3.4k', 17, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('hrydgard/ppsspp', 'A PSP emulator for Android, Windows, Mac and Linux, written in C++. Want to contribute Join us in #ppsspp on freenod…', '', '2017-10-04 19:26:41', '3.1k', 18, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('CMU-Perceptual-Computing-Lab/openpose', 'OpenPose: A Real-Time Multi-Person Keypoint Detection And Multi-Threading C++ Library', 'openpose,multi-threading,opencv,machine-learning,real-time,caffe,computer-vision,deep-learning,cpp,cpp11,human-pose-estimation,human-behavior-understanding,cvpr-2017', '2017-10-04 14:40:58', '3k', 19, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('davisking/dlib', 'A toolkit for making real world machine learning and data analysis applications in C++', 'python,machine-learning,c-plus-plus,computer-vision,deep-learning,machine-learning-library', '2017-10-06 07:02:06', '2.8k', 20, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('pybind/pybind11', 'Seamless operability between C++11 and Python', '', '2017-10-05 14:55:14', '2.7k', 21, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('gabime/spdlog', 'Super fast C++ logging library.', '', '2017-10-05 14:03:49', '2.6k', 22, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('spotify/annoy', 'Approximate Nearest Neighbors in C++/Python optimized for memory usage and loading/saving to disk', 'python,c-plus-plus,golang,lua,nearest-neighbor-search,locality-sensitive-hashing,approximate-nearest-neighbor-search', '2017-10-02 02:16:56', '2.6k', 23, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('envoyproxy/envoy', 'C++ front/service proxy', 'cncf,cats,corgis,cars,rocket-ships,more-cats,cats-over-dogs,nanoservices', '2017-10-06 11:40:27', '2.5k', 24, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('Mooophy/Cpp-Primer', 'C++ Primer 5 answers', 'c-plus-plus', '2017-10-06 12:18:02', '2.4k', 25, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('abseil/abseil-cpp', 'Abseil Common Libraries (C++)', '', '2017-10-06 16:42:48', '2.4k', 26, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('open-source-parsers/jsoncpp', 'A C++ library for interacting with JSON.', '', '2017-10-05 11:01:00', '2.3k', 27, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('bblanchon/ArduinoJson', '???? C++ JSON library for IoT. Simple and efficient.', 'iot,c-plus-plus,json,esp8266,arduino,embedded,arduino-library', '2017-10-03 20:27:58', '2.3k', 28, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('gameplay3d/GamePlay', 'Open-source, cross-platform, C++ game engine for creating 2D/3D games.', '', '2017-10-06 07:49:31', '2.2k', 29, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('cameron314/concurrentqueue', 'A fast multi-producer, multi-consumer lock-free concurrent queue for C++11', '', '2017-10-02 15:25:45', '2.1k', 30, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('google/re2', 'RE2 is a fast, safe, thread-friendly alternative to backtracking regular expression engines like those used in PCRE, …', '', '2017-10-04 07:28:05', '2.1k', 31, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('Microsoft/cpprestsdk', 'The C++ REST SDK is a Microsoft project for cloud-based client-server communication in native code using a modern asy…', 'sdk,cloud,http,oauth,oauth2,cpp,async,websockets,tasks,cpp11,asynchronous-tasks,cpp-library', '2017-10-02 17:43:15', '2k', 32, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('nghttp2/nghttp2', 'nghttp2 - HTTP/2 C Library and tools', 'c,http2,cpp11', '2017-10-04 13:26:36', '2k', 33, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('oclint/oclint', 'A static source code analysis tool to improve quality and reduce defects for C, C++ and Objective-C', '', '2017-09-29 23:16:39', '2k', 34, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('google/zopfli', 'Zopfli Compression Algorithm is a compression library programmed in C to perform very good, but slow, deflate or zlib…', '', '2017-07-07 11:57:53', '1.9k', 35, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('zaphoyd/websocketpp', 'C++ websocket client/server library', '', '2017-09-24 15:48:23', '1.9k', 36, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('Project-OSRM/osrm-backend', 'Open Source Routing Machine - C++ backend', 'osrm,routing-engine,c-plus-plus,openstreetmap,cpp,osm,cpp14,routing,traveling-salesman,map-matching,isochrones', '2017-10-05 16:14:22', '1.9k', 37, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('BearishSun/BansheeEngine', 'Modern C++14 game engine with Vulkan support, fully featured editor and C# scripting', 'c-plus-plus,vulkan,engine,banshee,windows,gamedev,opengl,game-engine,graphics,directx', '2017-10-03 12:45:40', '1.9k', 38, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('leethomason/tinyxml2', 'TinyXML2 is a simple, small, efficient, C++ XML parser that can be easily integrated into other programs.', '', '2017-09-27 16:00:34', '1.8k', 39, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('swig/swig', 'SWIG is a software development tool that connects programs written in C and C++ with a variety of high-level programm…', '', '2017-10-05 14:38:58', '1.8k', 40, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('xtaci/algorithms', 'Algorithms & Data structures in C++.', '', '2017-09-28 01:11:20', '1.8k', 41, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('AtomicGameEngine/AtomicGameEngine', 'The Atomic Game Engine is a multi-platform 2D and 3D engine with a consistent API in C++, C#, JavaScript, and TypeScript', 'macos,typescript,webgl,javascript,linux,android,windows,ios,csharp,cplusplus,game-engine,game-development', '2017-09-20 14:16:55', '1.7k', 42, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('ethereum/cpp-ethereum', 'Ethereum C++ client', 'ethereum-client,ethereum,cpp', '2017-10-06 12:44:51', '1.7k', 43, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('jrowberg/i2cdevlib', 'I2C device library collection for AVR/Arduino or other C++-based MCUs', '', '2017-09-23 21:28:12', '1.7k', 44, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('mlpack/mlpack', 'mlpack: a scalable C++ machine learning library --', 'c-plus-plus,machine-learning,deep-learning,regression,nearest-neighbor-search,machine-learning-library', '2017-10-06 06:43:30', '1.7k', 45, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('google/glog', 'C++ implementation of the Google logging module', '', '2017-09-20 16:41:27', '1.6k', 46, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('thrust/thrust', 'Thrust is a parallel algorithms library which resembles the C++ Standard Template Library (STL).', '', '2017-08-03 19:39:45', '1.6k', 47, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('ripple/rippled', 'Decentralized cryptocurrency blockchain daemon implementing the XRP Ledger in C++', 'xrp,cplusplus,decentralized,blockchain,ledger,cryptocurrency,cplusplus-14,ripple-consensus-ledger', '2017-10-04 14:16:28', '1.6k', 48, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('forhappy/Cplusplus-Concurrency-In-Practice', 'A Detailed Cplusplus Concurrency Tutorial 《C++ 并发编程指南》', '', '2017-09-18 10:50:03', '1.6k', 49, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('wuye9036/CppTemplateTutorial', '中文的C++ Template的教学指南。与知名书籍C++ Templates不同,该系列教程将C++ Templates作为一门图灵完备的语言来讲授,以求帮助读者对Meta-Programming融会贯通。(正在施工中)', '', '2017-08-19 09:25:10', '1.5k', 50, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('Tencent/phxpaxos', 'C++ Paxos library that has been used in Wechat production environment.', '', '2017-09-05 03:21:40', '1.5k', 51, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('mosra/magnum', 'C++11/C++14 and OpenGL graphics engine', 'magnum,opengl,glfw,c-plus-plus,sdl,android,windows,linux,ios,gamedev,webgl,cmake,graphics-engine,osx,game-engine,c-plus-plus-11,webassembly,emscripten,c-plus-plus-14,opengl-es', '2017-10-06 09:17:25', '1.4k', 52, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('matt-42/silicon', 'A high performance, middleware oriented C++14 http web framework', 'c-plus-plus,middleware,database,backend,webframework', '2017-06-26 10:53:24', '1.4k', 53, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('dropbox/json11', 'A tiny JSON library for C++11.', '', '2017-09-11 06:02:43', '1.4k', 54, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('muflihun/easyloggingpp', 'Single header C++ logging library. It is extremely powerful, extendable, light-weight, fast performing, thread and ty…', 'crash-handler,c-plus-plus,stacktrace,cross-platform,c-plus-plus-11,logging,efficient-logging,logging-library,performance-analysis,thread-safety', '2017-08-17 05:31:32', '1.4k', 55, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('danmar/cppcheck', 'static analysis of C/C++ code', 'cross-platform,c-plus-plus,cppcheck,c,cpp,static-analysis', '2017-10-06 15:02:35', '1.4k', 56, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('gosu/gosu', '2D game development library for Ruby and C++', 'c-plus-plus,gosu,ruby,game-engine,game-development', '2017-08-05 10:59:40', '1.3k', 57, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('beniz/deepdetect', 'Deep Learning API and Server in C++11 with Python bindings and support for Caffe, Tensorflow, XGBoost and TSNE', 'tensorflow,neural-nets,image-classification,caffe,deep-learning,machine-learning,xgboost,server,rest-api,object-detection,image-segmentation,tsne', '2017-10-04 14:00:11', '1.3k', 58, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('actor-framework/actor-framework', 'An Open Source Implementation of the Actor Model in C++', 'caf,actor-model,actors,async,pattern-matching,cpp11', '2017-10-06 13:34:33', '1.3k', 59, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('whoshuu/cpr', 'C++ Requests: Curl for People, a spiritual port of Python Requests', 'libcurl,c-plus-plus,http,requests', '2017-10-05 10:25:23', '1.3k', 60, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('USCiLab/cereal', 'A C++11 library for serialization', 'cereal,c-plus-plus,serialization', '2017-09-13 20:46:29', '1.3k', 61, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('arturadib/node-qt', 'C++ Qt bindings for Node.js', '', '2014-06-15 15:35:50', '1.3k', 62, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('ericniebler/range-v3', 'Experimental range library for C++11/14/17', 'proposal,iterator,range,range-library,c-plus-plus', '2017-10-05 15:54:50', '1.3k', 63, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('clangen/musikcube', 'a cross-platform, terminal-based music player, audio engine, metadata indexer, and server in c++', 'cross-platform,audio-engine,music-player,terminal,music-library,audio-player,curses,coreaudio,wasapi,alsa,pulseaudio,directsound,music-player-client', '2017-10-02 04:59:13', '1.2k', 64, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('milostosic/MTuner', 'MTuner is a C/C++ memory profiler and memory leak finder for Windows, PlayStation 4, PlayStation 3, etc.', 'memory-profiler,memory-leak-finder,tool,memory,optimization,performance-analysis,profiling,playstation3,playstation4', '2017-09-29 11:16:17', '1.2k', 65, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('ideawu/icomet', 'A C1000K comet/push server built with C++, for web and mobile app', '', '2017-09-07 10:13:04', '1.2k', 66, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('floooh/oryol', 'A small, portable and extensible C++ 3D coding framework', 'oryol,fips', '2017-10-02 13:15:18', '1.2k', 67, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('vgvassilev/cling', 'The interactive C++ interpreter Cling', '', '2017-10-06 00:37:36', '1.2k', 68, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('Hawstein/cracking-the-coding-interview', 'Solutions for the book: Cracking the coding interview V4. Written in C++.', '', '2014-01-05 05:39:07', '1.2k', 69, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('facebook/fbthrift', 'Facebook\'s branch of Apache Thrift, including a new C++ server.', '', '2017-10-06 16:20:09', '1.2k', 70, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('asmjit/asmjit', 'Complete x86/x64 JIT and Remote Assembler for C++', 'assembler,asmjit,compiler,cpp,x86-64,jit,x86', '2017-09-11 23:08:25', '1.2k', 71, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('ThePowderToy/The-Powder-Toy', 'Written in C++ and using SDL, The Powder Toy is a desktop version of the classic \'falling sand\' physics sandbox, it s…', 'game,powder-toy,simulation,sandbox,cellular-automata,powder', '2017-10-05 01:07:01', '1.1k', 72, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('msgpack/msgpack-c', 'MessagePack implementation for C and C++ / msgpack.org[C/C++]', '', '2017-10-01 14:38:22', '1.1k', 73, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('chriskohlhoff/asio', 'Asio C++ Library', '', '2017-09-28 06:33:42', '1.1k', 74, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('zeux/pugixml', 'Light-weight, simple and fast XML parser for C++ with XPath support', 'dom,xml,xpath,xml-parser', '2017-09-26 05:55:14', '1.1k', 75, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('d5/node.native', 'C++11 port for the Node: native performance and modern simplicity.', '', '2016-06-10 22:27:47', '1.1k', 76, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('charto/nbind', '✨ Magical headers that make your C++ library accessible from JavaScript ????', 'emscripten,node-addon,c-plus-plus,nodejs,typescript,asmjs', '2017-07-21 05:50:18', '1.1k', 77, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('Andersbakken/rtags', 'A c/c++ client/server indexer for c/c++/objc[++] with integration for Emacs based on clang.', '', '2017-10-05 22:35:38', '1.1k', 78, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('progschj/ThreadPool', 'A simple C++11 Thread Pool implementation', '', '2017-02-07 21:23:35', '1.1k', 79, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('simbody/simbody', 'High-performance C++ multibody dynamics/physics library for simulating articulated biomechanical and mechanical syste…', 'robotics,physics-engine,biomechanics,physics-simulation,multibody-dynamics', '2017-10-03 04:34:05', '1.1k', 80, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('yedf/handy', '简洁易用的C++11网络库 / 支持单机千万并发连接 / a simple C++11 network server framework', 'c-plus-plus,epoll,networking,cpp11,concurrent-programming', '2017-10-02 13:39:36', '1.1k', 81, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('Reactive-Extensions/RxCpp', 'Reactive Extensions for C++', 'rxcpp,c-plus-plus,reactivex,algorithms,virtuous-procrastination,values-distributed-in-time', '2017-09-16 18:06:50', '1k', 82, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('ChaiScript/ChaiScript', 'Embedded Scripting Language Designed for C++', 'cpp,embedded-scripting-language,language,c-plus-plus', '2017-10-03 14:47:33', '1k', 83, 'C++', '2017-10-07 01:11:51');
INSERT INTO `stars_rank` VALUES ('dotnet/roslyn', 'The .NET Compiler Platform (\"Roslyn\") provides open-source C# and Visual Basic compilers with rich code analysis APIs.', 'visual-studio,roslyn,visual-basic,csharp', '2017-10-06 16:53:44', '8.2k', 1, 'C#', '2017-10-07 01:13:50');
INSERT INTO `stars_rank` VALUES ('mono/mono', 'Mono open source ECMA CLI, C# and .NET implementation.', '', '2017-10-06 15:26:39', '5.8k', 2, 'C#', '2017-10-07 01:13:50');
INSERT INTO `stars_rank` VALUES ('OpenRA/OpenRA', 'Open Source real-time strategy game engine for early Westwood games such as Command & Conquer: Red Alert written in C#…', 'c-sharp,strategy-game-engine', '2017-10-06 16:14:18', '4.5k', 3, 'C#', '2017-10-07 01:13:50');
INSERT INTO `stars_rank` VALUES ('ButchersBoy/MaterialDesignInXamlToolkit', 'Google\'s Material Design in XAML & WPF, for C# & VB.Net.', 'theme,xaml,dragablz,c-sharp,material,design,material-design,wpf', '2017-09-28 01:48:55', '3.6k', 4, 'C#', '2017-10-07 01:13:50');
INSERT INTO `stars_rank` VALUES ('JeffreySu/WeiXinMPSDK', '微信公众平台SDK Senparc.Weixin for C#,支持.NET Framework及.NET Core。已支持微信公众号、小程序、企业号、企业微信、开放平台、微信支付、JSSDK、微信周边。 WeChat SDK for C…', 'c-sharp,nuget,weixin-sdk,redis,memcached,senparc,sdk,cache,dotnet-core,weixin,wechat,dotnet-standard,wechat-sdk,weixin-xiaochengxu', '2017-10-06 12:15:00', '2.4k', 5, 'C#', '2017-10-07 01:13:50');
INSERT INTO `stars_rank` VALUES ('scriptcs/scriptcs', 'Write C# apps with a text editor, nuget and the power of Roslyn!', 'roslyn,scriptcs,csx', '2017-08-23 12:50:24', '1.9k', 6, 'C#', '2017-10-07 01:13:50');
INSERT INTO `stars_rank` VALUES ('JustArchi/ArchiSteamFarm', 'C# application that allows you to farm steam cards using multiple steam accounts simultaneously.', 'steam-client,linux,c-sharp,bot,cli,steam,automation,csharp,steam-games,steambot,steam-account,valve,steam-api,steam-language,cli-app,localized,steam-cards,crowdin,steamkit2,steam-network', '2017-10-02 02:09:55', '1.8k', 7, 'C#', '2017-10-07 01:13:50');
INSERT INTO `stars_rank` VALUES ('dotnet-state-machine/stateless', 'A simple library for creating state machines in C# code', '', '2017-10-06 00:16:18', '1.8k', 8, 'C#', '2017-10-07 01:13:50');
INSERT INTO `stars_rank` VALUES ('louthy/language-ext', 'C# functional language extensions - a base class library for functional programming', 'functional-languages,language-ext,c-sharp,monads,f-sharp,monad-transformers,immutable-collections,higher-kinded-types', '2017-10-03 11:58:43', '1.7k', 9, 'C#', '2017-10-07 01:13:50');
INSERT INTO `stars_rank` VALUES ('gsscoder/commandline', 'Terse syntax C# command line parser for .NET with F# support', '', '2017-07-25 20:40:05', '1.7k', 10, 'C#', '2017-10-07 01:13:50');
INSERT INTO `stars_rank` VALUES ('sta/websocket-sharp', 'A C# implementation of the WebSocket protocol client and server', '', '2017-09-28 18:36:52', '1.6k', 11, 'C#', '2017-10-07 01:13:50');
INSERT INTO `stars_rank` VALUES ('SonyWWS/ATF', 'Authoring Tools Framework (ATF) is a set of C#/.NET components for making tools on Windows. ATF has been in continuou…', '', '2017-09-01 15:08:34', '1.6k', 12, 'C#', '2017-10-07 01:13:50');
INSERT INTO `stars_rank` VALUES ('sschmid/Entitas-CSharp', 'Entitas is a super fast Entity Component System (ECS) Framework specifically made for C# and Unity', 'c-sharp,entity-component,entitas-csharp,entitas,unity,game,gamedev,design-pattern,performance,game-engine,tdd,game-development,design-patterns,ecs,entity-component-system,entity-framework,entity,paradigm,test-driven-development,paradigmshift', '2017-09-30 23:35:58', '1.5k', 13, 'C#', '2017-10-07 01:13:50');
INSERT INTO `stars_rank` VALUES ('DotNetOpenAuth/DotNetOpenAuth', 'A C# implementation of the OpenID, OAuth protocols', '', '2017-08-01 02:07:10', '1.4k', 14, 'C#', '2017-10-07 01:13:50');
INSERT INTO `stars_rank` VALUES ('cake-build/cake', 'Cake (C# Make) is a cross platform build automation system.', 'cake,c-sharp,nuget,unit-testing,continuous-integration,dotnet,dotnetcore,xunit,build-automation,nunit,build-tool', '2017-10-05 22:08:00', '1.4k', 15, 'C#', '2017-10-07 01:13:50');
INSERT INTO `stars_rank` VALUES ('ServiceStack/ServiceStack.Redis', '.NET\'s leading C# Redis Client', 'redis-client,c-sharp,high-performance,mono,poco,net-core,net-framework', '2017-09-16 03:18:39', '1.4k', 16, 'C#', '2017-10-07 01:13:50');
INSERT INTO `stars_rank` VALUES ('markrendle/Simple.Data', 'A light-weight, dynamic data access component for C# 4.0', '', '2017-07-24 22:28:23', '1.3k', 17, 'C#', '2017-10-07 01:13:50');
INSERT INTO `stars_rank` VALUES ('aalhour/C-Sharp-Algorithms', 'A C# plug-and-play class-library project of standard Data Structures and Algorithms.', 'tree,graph,csharp,algorithms,graph-algorithms,data-structures,binary-trees', '2017-08-23 18:52:10', '1.3k', 18, 'C#', '2017-10-07 01:13:50');
INSERT INTO `stars_rank` VALUES ('SixLabors/ImageSharp', '???? A cross-platform library for the processing of image files; written in C#', 'image-processing,c-sharp,jpeg,gif,bmp,png,netcore,exif,graphics,drawing', '2017-10-06 11:40:25', '1.2k', 19, 'C#', '2017-10-07 01:13:50');
INSERT INTO `stars_rank` VALUES ('zeromq/netmq', 'A 100% native C# implementation of ZeroMQ for .NET', 'netmq,zeromq,dotnet,messaging,dotnet-core', '2017-09-17 15:38:05', '1.2k', 20, 'C#', '2017-10-07 01:13:50');
INSERT INTO `stars_rank` VALUES ('amaneureka/AtomOS', 'A multitasking monolithic Kernel based x86 targeting Operating System written in C# from scratch aiming for high-leve…', 'operating-system', '2017-03-18 20:44:21', '1.2k', 21, 'C#', '2017-10-07 01:13:50');
INSERT INTO `stars_rank` VALUES ('sjdirect/abot', 'C# web crawler built for speed and flexibility. Please star this project! +1. Contact me with exciting opportunities!!', '', '2017-07-22 09:40:39', '1.2k', 22, 'C#', '2017-10-07 01:13:50');
INSERT INTO `stars_rank` VALUES ('ferventdesert/Hawk', 'visualized crawler & ETL IDE written with C#/WPF', '', '2017-09-29 10:34:05', '1.1k', 23, 'C#', '2017-10-07 01:13:50');
INSERT INTO `stars_rank` VALUES ('ketoo/NoahGameFrame', 'A fast, scalable, distributed game server framework for C++, include actor library, network library,can be used as a …', 'server-architecture,unity3d,architecture,cmake,actor-model,game,gamedev,game-engine,unity,engine,game-development,mmo,game-server,gameserver,noahframe,noahgameframe', '2017-09-27 08:40:28', '1.1k', 24, 'C#', '2017-10-07 01:13:50');
INSERT INTO `stars_rank` VALUES ('IgnaceMaes/MaterialSkin', 'Theming .NET WinForms, C# or VB.Net, to Google\'s Material Design Principles.', 'c-sharp,net-winforms,theme,design,material-design', '2017-08-26 15:45:53', '1.1k', 25, 'C#', '2017-10-07 01:13:50');
INSERT INTO `stars_rank` VALUES ('QuantConnect/Lean', 'Lean Algorithmic Trading Engine by QuantConnect (C#, Python, F#)', 'algorithm,c-sharp,algorithmic-trading-engine,python,quantconnect,finance,options,trading-bot,forex,trading-platform,trading-strategies,trading-algorithms,stock-indicators,lean-engine', '2017-10-06 16:46:59', '1.1k', 26, 'C#', '2017-10-07 01:13:50');
INSERT INTO `stars_rank` VALUES ('bridgedotnet/Bridge', '♠️ C# to JavaScript compiler. Write modern mobile and web apps in C#. Run them anywhere in JavaScript with Bridge.NET.', 'nuget,c-sharp,javascript,javascript-compiler,visual-studio,bridge,jquery,cordova,typescript,csharp,js,compiler,roslyn,dotnet,ts,transpiler,phonegap,source-to-source', '2017-10-04 00:43:36', '1.1k', 27, 'C#', '2017-10-07 01:13:50');
INSERT INTO `stars_rank` VALUES ('CosmosOS/Cosmos', 'Cosmos is an operating system \"construction kit\". Build your own OS using managed languages such as C#, VB.NET, and m…', '', '2017-10-06 13:31:52', '1k', 28, 'C#', '2017-10-07 01:13:50');
INSERT INTO `stars_rank` VALUES ('icsharpcode/SharpZipLib', '#ziplib is a Zip, GZip, Tar and BZip2 library written entirely in C# for the .NET platform.', '', '2017-09-19 09:43:24', '1k', 29, 'C#', '2017-10-07 01:13:50');
-- ----------------------------
-- Table structure for user_rank
-- ----------------------------
DROP TABLE IF EXISTS `user_rank`;
CREATE TABLE `user_rank` (
`username` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
`nickname` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
`avatar` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
`introduction` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
`location` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
`ordernum` int(11) DEFAULT NULL,
`crawlingtime` datetime DEFAULT NULL COMMENT '爬取数据时间'
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Compact;
-- ----------------------------
-- Records of user_rank
-- ----------------------------
INSERT INTO `user_rank` VALUES ('ruanyf', 'Ruan YiFeng', 'https://avatars0.githubusercontent.com/u/905434?v=4&s=96', '', 'Shanghai, China', 1, '2017-10-07 01:00:15');
INSERT INTO `user_rank` VALUES ('yyx990803', 'Evan You', 'https://avatars1.githubusercontent.com/u/499550?v=4&s=96', 'Creator of @vuejs, previously @meteor & @google', 'New Jersey / China', 2, '2017-10-07 01:00:15');
INSERT INTO `user_rank` VALUES ('daimajia', '代码家', 'https://avatars0.githubusercontent.com/u/2503423?v=4&s=96', 'Yeah, make a good App .', 'Beijing, China', 3, '2017-10-07 01:00:15');
INSERT INTO `user_rank` VALUES ('michaelliao', 'Michael Liao', 'https://avatars1.githubusercontent.com/u/470058?v=4&s=96', 'A marathon runner.', 'Beijing, China', 4, '2017-10-07 01:00:15');
INSERT INTO `user_rank` VALUES ('JacksonTian', 'Jackson Tian', 'https://avatars2.githubusercontent.com/u/327019?v=4&s=96', '', 'Hangzhou, China', 5, '2017-10-07 01:00:15');
INSERT INTO `user_rank` VALUES ('Trinea', 'Trinea', 'https://avatars0.githubusercontent.com/u/1169522?v=4&s=96', 'Google Search: Dev Tools Pro', 'HangZhou, China', 6, '2017-10-07 01:00:15');
INSERT INTO `user_rank` VALUES ('stormzhang', 'stormzhang', 'https://avatars2.githubusercontent.com/u/2267900?v=4&s=96', '微信公众号:stormzhang', 'Shanghai, China', 7, '2017-10-07 01:00:15');
INSERT INTO `user_rank` VALUES ('lifesinger', 'lifesinger', 'https://avatars1.githubusercontent.com/u/97227?v=4&s=96', '', 'Hangzhou, China', 8, '2017-10-07 01:00:15');
INSERT INTO `user_rank` VALUES ('cloudwu', '云风', 'https://avatars1.githubusercontent.com/u/729648?v=4&s=96', '', 'China', 9, '2017-10-07 01:00:15');
INSERT INTO `user_rank` VALUES ('onevcat', 'Wei Wang', 'https://avatars1.githubusercontent.com/u/1019875?v=4&s=96', 'iOS developer from China. Creator of @objccn and @swifter-tips', 'Kawasaki, Japan/Shanghai, China', 10, '2017-10-07 01:00:15');
INSERT INTO `user_rank` VALUES ('phodal', 'Phodal Huang', 'https://avatars2.githubusercontent.com/u/472311?v=4&s=96', '待我代码编成,娶你为妻可好', 'Shenzhen, China', 11, '2017-10-07 01:00:15');