-
Notifications
You must be signed in to change notification settings - Fork 0
/
rq2_ml_bindings.csv
We can't make this file beautiful and searchable because it's too large.
2348 lines (2348 loc) · 820 KB
/
rq2_ml_bindings.csv
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
ID,Platform,Name,Description,Keywords,Licenses,Repository URL,Versions Count,Dependent Projects Count,Status,Dependent Repositories Count,Repository ID,Repository Host Type,Repository Name with Owner,Repository Description,Repository Fork?,Repository Stars Count,Repository License,Repository Status,Repository Keywords,Binding Host,Homepage URL,Homepage Domain,Binding Host Normalized,Binding Host Normalized - No Space,Host Repo IDs,is official,Type
31970,PyPI,AlchemyAPI,Python access to AlchemyAPI for unstructured text analysis and natural language processing.,alchemyapi api semantic nlp,BSD-3-Clause,,0,0,,1,,,,,,,,,,Alchemy,http://www.alchemyapi.com/,alchemyapi,alchemy,alchemy,"['13491787', '40396672']",community,Binding
32402,PyPI,ArenaPy,A simple python interface to the Are.na api,arena rest api client,MIT,https://github.com/jnhasty/arenapy,1,0,,1,180456,GitHub,jnhasty/ArenaPy,A simple python interface to the Arena api.,False,1.0,,,,Are.na,https://github.com/jnhasty/arenapy,github,are na,arena,['37026823'],community,Binding
33422,PyPI,birdy,birdy is a super awesome Twitter API client for Python.,twitter api tweet birdy search,MIT,https://github.com/inueni/birdy,5,1,,41,180942,GitHub,inueni/birdy,A super awesome Twitter API client for Python.,False,251.0,MIT,,"python,twitter-api,twitter-client,twitter-streaming-api",birdy,https://github.com/inueni/birdy/,github,birdy,birdy,['15123865'],community,Binding
36041,PyPI,CVtypes,Python OpenCV wrapper using ctypes,OpenCV ctypes wxPython,AFL-3.0,,0,0,,0,,,,,,,,,,OpenCV,http://wwwx.cs.unc.edu/~gb/wp/blog/2007/02/04/python-opencv-wrapper-using-ctypes/,unc,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
44874,PyPI,enet,Enet library bindings for Python.,,Other,,0,0,,0,,,,,,,,,,Enet,UNKNOWN,UNKNOWN,enet,enet,['24799903'],community,Binding
52201,PyPI,ikedarts,Python interface to DARTS by Kudo Taku.,,Other,https://github.com/tengu/ikedarts,3,0,,0,185800,GitHub,tengu/ikedarts,python interface to DARTS,False,0.0,,,,DARTS,https://github.com/tengu/ikedarts,github,darts,darts,['36863929'],community,Binding
61146,Packagist,enl/moses-php-client,PHP Client for Moses xml-rpc server. Moses is a machine translation system,,GPL-3.0+,https://github.com/enl/moses-php-client,1,0,,1,52556,GitHub,enl/moses-php-client,Moses Client for PHP,False,1.0,MIT,,,Moses,,,moses,moses,"['885225', '37277614']",community,Binding
61709,PyPI,ntplib,Python NTP library,,MIT,,2,1,,220,,,,,,,,,,NTP,http://code.google.com/p/ntplib/,google,ntp,ntp,['32528693'],community,Binding
62308,Packagist,euromd/yii2-alchemy-api,Yii2-wrapper for Alchemy API Service,"yii2,alchemy-api",BSD-3-Clause,https://github.com/EuroMD/yii2-alchemy-api,0,0,,0,52970,GitHub,EuroMD/yii2-alchemy-api,Yii2-wrapper for Alchemy API Service,False,0.0,BSD-2-Clause,,,Alchemy,,,alchemy,alchemy,"['13491787', '40396672']",community,Binding
63074,PyPI,ovation,Ovation Python API,,GPL-3.0-only,,69,0,,6,,,,,,,,,,Ovation,https://ovation.io,ovation,ovation,ovation,['28444940'],community,Binding
63110,PyPI,owllib,A OWL API built using RDFLib to simplify working with OWL constructs,owl rdf semantic-web ontology,MIT,https://github.com/joshhanna/owllib,1,0,,0,289577,GitHub,joshhanna/owllib,"OWL API for python, built using rdflib",False,12.0,MIT,,,OWL,https://github.com/joshhanna/owllib,github,owl,owl,['14048954'],community,Binding
63827,Packagist,fastwebmedia/eagle-eye,Send out SMS message via the Eagle Eye API,,,https://github.com/fastwebmedia/Eagle-Eye,6,0,,0,53491,GitHub,fastwebmedia/Eagle-Eye,,False,0.0,,Removed,,Eagle Eye,,,eagle eye,eagleeye,['33038548'],community,Binding
64947,PyPI,pipedream,Flow based programming library for Python,,BSD-3-Clause,https://github.com/tgecho/pipedream,2,0,,0,290123,GitHub,tgecho/pipedream,Flow based programming library for Python,False,1.0,BSD-2-Clause,,,Flow,http://github.com/tgecho/pipedream/,github,flow,flow,"['12755978', '29309986']",community,Binding
65813,Packagist,fmm/oryx-recommend,A php client for the Oryx recommendation service layer,"mahout,hadoop,recommendation,oryx,cloudera",MIT,https://github.com/cesarBere/FMMOryxBundle,0,0,,0,54203,GitHub,cesarBere/FMMOryxBundle,A php client for the Oryx recommendation service and computation layers build on top of Guzzle,False,2.0,,,,Oryx,,,oryx,oryx,"['172689', '279980']",community,Binding
65985,PyPI,PredictionIO,PredictionIO Python SDK,,Other,,15,0,,15,,,,,,,,,,PredictionIO,http://predictionio.apache.org/,apache,predictionio,predictionio,['573443'],community,Binding
67301,PyPI,pyauditor,Python Client Library for Auditor,,MIT,https://github.com/gmjosack/pyauditor,1,0,,0,290773,GitHub,gmjosack/pyauditor,Python Client Library for Auditor,False,2.0,MIT,,,Auditor,https://github.com/gmjosack/pyauditor,github,auditor,auditor,['38446524'],community,Binding
67341,PyPI,pyaxo,Python implementation of the Axolotl ratchet protocol,,Other,https://github.com/rxcomm/pyaxo,27,0,,2,196943,GitHub,rxcomm/pyaxo,A python implementation of the Axolotl ratchet protocol.,False,65.0,GPL-3.0,,,Axolotl,https://github.com/rxcomm/pyaxo,github,axolotl,axolotl,['27867464'],community,Binding
68947,PyPI,pyflix2,"A python module for accessing Netflix REST webservice, both V1 and V2 supports oauth and oob.",,Other,,5,0,,2,,,,,,,,,,Netflix,http://pyflix2.readthedocs.org/,readthedocs,netflix,netflix,['3727191'],community,Binding
70095,PyPI,pylibnet,A python wrapper for the libnet packet injection library,"libnet,network,security",GPL-3.0,,1,0,,0,,,,,,,,,,libnet,http://pylibnet.sourceforge.net,sourceforge,libnet,libnet,['27234959'],community,Binding
70236,PyPI,pyltp,pyltp: the python extension for LTP,,MIT,https://github.com/HIT-SCIR/pyltp,11,2,,25,291600,GitHub,HIT-SCIR/pyltp,pyltp: the python extension for LTP,True,1134.0,,,"chinese-nlp,python",LTP,https://github.com/HIT-SCIR/pyltp,github,ltp,ltp,['728477'],same_repo_owner,Binding
70287,PyPI,pymallet,Mallet (natural language processing) wrapper in Python,,MIT,,2,0,,0,,,,,,,,,,Mallet,UNKNOWN,UNKNOWN,mallet,mallet,"['914914', '3132343']",community,Binding
70768,PyPI,PyNEURON,"A Python package version of NEURON, for empirically-based simulations of neurons and networks of neurons",,Other,https://bitbucket.org/uric/pyneuron,9,0,,0,,,,,,,,,,NEURON,https://bitbucket.org/uric/pyneuron/,bitbucket,neuron,neuron,['3203039'],community,Binding
72213,Rubygems,arena,Wrapper for Arena's API,,,,11,0,,5,,,,,,,,,,Arena,http://www.aredotna.com/,aredotna,arena,arena,['37026823'],community,Binding
75889,PyPI,rpy,Python interface to the R language,,GPL-2.0+,,0,0,,8,,,,,,,,,,R,http://rpy.sourceforge.net,sourceforge,r,r,['4689246'],community,Binding
75891,PyPI,rpy2,Python interface to the R language (embedded R),,GPL-2.0+,,87,5,,389,,,,,,,,,,R,https://rpy2.bitbucket.io,bitbucket,r,r,['4689246'],community,Binding
76594,PyPI,sbl2py,A Snowball-to-Python compiler,snowball compiler,MIT,https://github.com/torfuspolymorphus/sbl2py,3,0,,0,293481,GitHub,torfsen/sbl2py,A Snowball-to-Python compiler,False,0.0,Other,,,Snowball,https://github.com/torfuspolymorphus/sbl2py,github,snowball,snowball,['22783638'],community,Binding
77019,PyPI,sdcadmin,API wrapper for the SDC APIs on the admin network,,Apache-2.0,https://github.com/icclab/sdcadmin,2,0,,0,293618,GitHub,icclab/sdcadmin,wrapper for the SDC APIs on the admin network,False,3.0,Other,,,SDC,https://github.com/icclab/sdcadmin,github,sdc,sdc,['25352847'],community,Binding
79862,PyPI,spyrk,Python module for Spark devices,spark cloud core arduino api embedded,LGPL-3.0,https://github.com/Alidron/spyrk,3,0,,10,294496,GitHub,Alidron/spyrk,Python module for Spark devices (see spark.io),False,32.0,LGPL-3.0,,,Spark,https://github.com/Alidron/spyrk,github,spark,spark,"['11846538', '27909023', '38722051']",community,Binding
81415,Rubygems,autobahn,Enterprise Ruby on Rails,,,https://github.com/veridit/autobahn,4,0,,1,294908,GitHub,veridit/autobahn,Enterprise Ruby on Rails,False,1.0,,,,Enterprise,http://www.github.com/veridit/autobahn,github,enterprise,enterprise,['37665991'],community,Binding
81509,PyPI,synth,A Python binding to the Synth C++ Template Framework,"django,tmpl,ssi,template,framework",MirOS,https://github.com/ajg/synth,6,0,,1,294938,GitHub,ajg/synth,A Powerful C++ Templating Framework,False,63.0,BSL-1.0,,,Synth,https://github.com/ajg/synth,github,synth,synth,['21077031'],community,Binding
82331,PyPI,tesserpy,Python interface to the Tesseract library,"tesseract,ocr",LGPL-2.0,https://github.com/blindsightcorp/tesserpy,3,0,,0,295174,GitHub,amazon-archives/tesserpy,ARCHIVED: A Python API for Tesseract,False,19.0,LGPL-2.1,,,Tesseract,https://github.com/blindsightcorp/tesserpy,github,tesseract,tesseract,['852560'],community,Binding
82334,PyPI,tesserwrap,Basic python bindings to the Tesseract C++ API,tesseract ocr cpp,Apache-2.0,https://github.com/gregjurman/tesserwrap,11,0,,10,295175,GitHub,gregjurman/tesserwrap,Python bindings to the Tesseract API,False,63.0,Other,,,Tesseract,https://github.com/gregjurman/tesserwrap,github,tesseract,tesseract,['852560'],community,Binding
82475,Packagist,jadb/alchemyapi,Natural Language Processing using AlchemyAPI,"alchemy,nlp,alchemyapi,natural language process",MIT,https://github.com/jadb/php-alchemyapi,1,0,,0,59296,GitHub,jadb/php-alchemyapi,AlchemyAPI PHP SDK,False,0.0,MIT,,,Alchemy,,,alchemy,alchemy,"['13491787', '40396672']",community,Binding
82925,PyPI,TiffCapture,Brings the power of OpenCV to TIFF videos; provides interface to multi-part TIFFs compatible with OpenCV's VideoCapture.,tiff,Other,https://github.com/cdw/TiffCapture,6,0,,0,295325,GitHub,cdw/TiffCapture,"Provides a PIL based capture interface to multi-part tiffs, allowing them to be used more easily with OpenCV. ",False,2.0,MIT,,,OpenCV,https://github.com/cdw/TiffCapture,github,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
82974,PyPI,timecop,python port of Ruby's TimeCop gem,timecop time travel ruby test context,Other,https://github.com/bluekelp/pytimecop,1,0,,7,295341,GitHub,bluekelp/pytimecop,A port of the most excellent TimeCop Ruby Gem for Python,False,18.0,,,,TimeCop,https://github.com/bluekelp/pytimecop,github,timecop,timecop,['38892330'],community,Binding
83505,Rubygems,avod,avod cloud client,,MIT,https://github.com/oa414/avod-ruby,1,0,,0,295518,GitHub,oa414/avod-ruby,,False,0.0,MIT,,,avod,https://github.com/oa414/avod-ruby,github,avod,avod,['33779877'],community,Binding
84700,PyPI,twitsilver,A Quicksilver client for twitter,Quicksilver twitter OSX,BSD-3-Clause,https://github.com/tomster/twitsilver,14,0,,0,295821,GitHub,tomster/twitsilver,A Quicksilver twitter client,False,2.0,,,,Quicksilver,http://github.com/tomster/twitsilver/,github,quicksilver,quicksilver,['23871650'],community,Binding
88408,Rubygems,bantic-ruby-opencv,OpenCV wrapper for Ruby.,,BSD-3-Clause,https://github.com/adamb/ruby-opencv,1,0,,0,287004,GitHub,adamb/ruby-opencv,Versioned fork of the OpenCV gem for Ruby,True,5.0,BSD-3-Clause,,,OpenCV,http://github.com/adamb/ruby-opencv,github,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
93438,Packagist,mango/mango-php,Mango API client for PHP,"api,mango",MIT,https://github.com/Mango/mango-php,3,0,,0,64113,GitHub,Mango/mango-php,This is a PHP library that allows interaction with Mango API,False,5.0,,,,Mango,https://developers.getmango.com/en/api/?platform=php,getmango,mango,mango,['19555071'],community,Binding
100586,Packagist,orbisnull/deltacore,"Delta PHP framework - fast, light, easy (core)",,GPL-3.0+,https://github.com/orbisnull/DeltaCore,3,0,,0,50161,GitHub,DeltaPHP/DeltaCore,"Delta PHP framework - fast, light, easy",False,2.0,,,,Delta,,,delta,delta,"['38810725', '39651144']",community,Binding
102042,Packagist,philmprice/block-host,Host for 'Blocks' Platform,,MIT,https://github.com/philmprice/block-host,0,0,,5,71001,GitHub,philmprice/block-host,"Host for 'Blocks' system. Bootstraps all other blocks, auto-scaffolds project files, and routes request.",False,0.0,,,,Blocks,,,blocks,blocks,['28422352'],community,Binding
103323,Packagist,predictionio/predictionio-bundle,Symfony2 Bundle for PredictionIO PHP SDK,predictionio,,https://github.com/dantudor/PredictionIOBundle,1,0,,0,72177,GitHub,dantudor/PredictionIOBundle,,False,1.0,,Removed,,PredictionIO,,,predictionio,predictionio,['573443'],community,Binding
103324,Packagist,predictionio/predictionio,Apache PredictionIO API PHP Client,"rest,web service,restful,recommendation,predictionio,prediction",Apache-2.0,https://github.com/apache/predictionio-sdk-php,14,7,,29,72178,GitHub,apache/predictionio-sdk-php,PredictionIO PHP SDK,False,260.0,Apache-2.0,,,PredictionIO,,,predictionio,predictionio,['573443'],same_repo_owner,Binding
107148,Packagist,seeruk/hal,PHP Implementation of the HAL Specification for PHP >= 5.5 and HHVM >= 3.2,,MIT,https://github.com/SeerUK/hal,1,0,,0,75742,GitHub,seeruk/hal,PHP Implementation of the HAL Specification for PHP >= 5.5 and HHVM >= 3.2,False,0.0,MIT,,,HAL,,,hal,hal,['4824482'],community,Binding
107805,Packagist,silverstripe/alchemiser,An integration with AlchemyAPI.,"seo,silverstripe,alchemy",BSD-3-Clause,https://github.com/nyeholt/silverstripe-alchemiser,0,0,,0,76330,GitHub,nyeholt/silverstripe-alchemiser,A module that uses the Alchemy API to provide additional document metadata,False,4.0,BSD-3-Clause,,,Alchemy,,,alchemy,alchemy,"['13491787', '40396672']",community,Binding
108707,Packagist,snapt/snapr-php-client,Snapr PHP 5.3+ PHP REST client,"rest,api,snapt,Snapr",BSD-3-Clause,https://github.com/Snapt/snapr-php-client,1,0,,0,77145,GitHub,Snapt/snapr-php-client,PHP Client for Snapt/snapr REST API,False,1.0,BSD-3-Clause,,,Snapr,,,snapr,snapr,['12356510'],community,Binding
109190,Packagist,sparkapi/sparkapi,PHP wrapper for the Spark REST API,"spark,sparkapi",GPL-3.0,https://github.com/sparkapi/sparkapi4p2,0,0,,1,77606,GitHub,sparkapi/sparkapi4p2,A PHP wrapper for the flexmls REST API.,False,21.0,GPL-3.0,,,Spark,,,spark,spark,"['11846538', '27909023', '38722051']",community,Binding
112281,Packagist,toolbox/core,Toolbox Core Package,,MIT,https://github.com/phptoolbox/core,0,0,,2,80525,GitHub,phptoolbox/core,PHP Toolbox Core Package,False,0.0,,,,Toolbox,,,toolbox,toolbox,['8342728'],community,Binding
112925,Packagist,typo3/aloha,A packaged version of Aloha for TYPO3 Neos.,,,https://git.typo3.org/Packages/TYPO3.Aloha.git,1,1,,1,,,,,,,,,,Aloha,,,aloha,aloha,['1136965'],community,Binding
115537,Packagist,willdurand/nmap,"nmap is a PHP wrapper for Nmap, a free security scanner for network exploration.",,MIT,https://github.com/willdurand/nmap,7,0,,5,83356,GitHub,willdurand/nmap,nmap is a PHP wrapper for Nmap.,False,102.0,MIT,,,Nmap,,,nmap,nmap,['852438'],community,Binding
117653,Packagist,zircote/hal,A PHP implementation of HAL http://stateless.co/hal_specification.html,"json,api,hal,HATEOAS",Apache-2.0,https://github.com/zircote/Hal,7,3,,10,85300,GitHub,zircote/Hal,A PHP implementation of HAL http://stateless.co/hal_specification.html,False,99.0,Apache-2.0,,,HAL,,,hal,hal,['4824482'],community,Binding
118045,Hackage,CV,"This is a machine vision package that wraps some functionality of OpenCV library. This package has been developed for personal use and is not meant to be a complete wrapper. It also includes some things not in OpenCV. Currently this package is quite dirty and requires much work on documentation and code clean-up, but is somewhat tested. (The scarce) Documentation is available at http://aleator.github.com/CV/ Changelog. 0.3.6.0 - Critical referential transparency bug fix. 0.3.5.4 - Bug fixes and preliminary compatability with opencv 2.4 0.3.5 - Many new wrappers, clean ups and other fixes. 0.3.4 - Pixelwise operations, bug fixes and additional documentation 0.3.3.0 - Improvements, including compatablity with opencv 2.3.1 and removal of dependency with deprecated JYU.Utils Changelog. 0.3.2.0 - Improvements, including fancier pixel-wise manipulations Changelog. 0.3.0.2 - Workaround for compiling with OS X 10.6 & fixed errors about M_PI ","ai,gpl,graphics,library,machine-vision,Propose Tags ,CV.Arbitrary,CV.Binary,CV.Bindings.Types,CV.Calibration,CV.ColourUtils,CV.ConnectedComponents,CV.Conversions,CV.Corners,CV.DFT,CV.DrawableInstances,CV.Drawing,CV.Edges,CV.Features,CV.Files,CV.Filters,CV.Fitting,CV.FunnyStatistics,CV.Gabor,CV.HighGUI,CV.Histogram,CV.HoughTransform,CV.Image,CV.ImageMath,CV.ImageMathOp,CV.ImageOp,CV.Iterators,CV.LightBalance,CV.Marking,CV.Matrix,CV.Morphology,CV.MultiresolutionSpline,CV.Operations,CV.Pixelwise,CV.Projection,CV.Sampling,CV.TemplateMatching,CV.Textures,CV.Thresholding,CV.Tracking,CV.Transforms,CV.Video,Utils.DrawingClass,Utils.Function,Utils.GeometryClass,Utils.List,Utils.Point,Utils.Pointer,Utils.Rectangle,Utils.Stream",GPL-2.0+,https://github.com/aleator/CV,12,0,,0,,,,,,,,,,OpenCV,http://aleator.github.com/CV/,github,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
118327,Hackage,HROOT,HROOT is a haskell Foreign Function Interface (FFI) binding to ROOT. ROOT(http:root.cern.ch) is an object-oriented program and library developed by CERN for physics data analysis. ,"graphics,lgpl,library,math,numerical,statistics,Propose Tags ",LGPL-2.1,,21,0,,0,,,,,,,,,,ROOT,http://ianwookim.org/HROOT,ianwookim,root,root,['1975658'],community,Binding
118328,Hackage,HROOT-graf,HROOT is a haskell Foreign Function Interface (FFI) binding to ROOT. ROOT(http:root.cern.ch) is an object-oriented program and library developed by CERN for physics data analysis. ,"graphics,lgpl,library,math,numerical,statistics,Propose Tags ",LGPL-2.1,,3,0,,0,,,,,,,,,,ROOT,http://ianwookim.org/HROOT,ianwookim,root,root,['1975658'],community,Binding
118329,Hackage,HROOT-core,HROOT is a haskell Foreign Function Interface (FFI) binding to ROOT. ROOT(http:root.cern.ch) is an object-oriented program and library developed by CERN for physics data analysis. ,"graphics,lgpl,library,math,numerical,statistics,Propose Tags ",LGPL-2.1,,3,0,,0,,,,,,,,,,ROOT,http://ianwookim.org/HROOT,ianwookim,root,root,['1975658'],community,Binding
118330,Hackage,HROOT-hist,HROOT is a haskell Foreign Function Interface (FFI) binding to ROOT. ROOT(http:root.cern.ch) is an object-oriented program and library developed by CERN for physics data analysis. ,"graphics,lgpl,library,math,numerical,statistics,Propose Tags ",LGPL-2.1,,3,0,,0,,,,,,,,,,ROOT,http://ianwookim.org/HROOT,ianwookim,root,root,['1975658'],community,Binding
118331,Hackage,HROOT-io,HROOT is a haskell Foreign Function Interface (FFI) binding to ROOT. ROOT(http:root.cern.ch) is an object-oriented program and library developed by CERN for physics data analysis. ,"graphics,lgpl,library,math,numerical,statistics,Propose Tags ",LGPL-2.1,,3,0,,0,,,,,,,,,,ROOT,http://ianwookim.org/HROOT,ianwookim,root,root,['1975658'],community,Binding
118333,Hackage,HROOT-math,HROOT is a haskell Foreign Function Interface (FFI) binding to ROOT. ROOT(http:root.cern.ch) is an object-oriented program and library developed by CERN for physics data analysis. ,"graphics,lgpl,library,math,numerical,statistics,Propose Tags ",LGPL-2.1,,3,0,,0,,,,,,,,,,ROOT,http://ianwookim.org/HROOT,ianwookim,root,root,['1975658'],community,Binding
118361,Hackage,HaVSA,"HaVSA (Have-Saa) is a Haskell implementation of the Version Space Algebra Machine Learning technique described by Tessa Lau. The canonical description is in: Tessa Lau, Steven Wolfman, Pedro Domingos, and Daniel S. Weld, Programming by Demonstration using Version Space Algebra, Machine Learning, 2003. (http:tlau.orgresearchpapers/mlj01-draft.pdf) ","ai,bsd3,library,program,Propose Tags ,AI.VersionSpaces",BSD-3-Clause,https://github.com/creswick/HaVSA,3,0,,0,8769,GitHub,creswick/HaVSA,HaVSA (Have-Saa) is a Haskell implementation of the Version Space Algebra Machine Learning technique described by Tessa Lau.,False,5.0,BSD-3-Clause,,,HaVSA,,,havsa,havsa,['8769'],same_repo,Binding
121174,Hackage,hakyll-elm,A wrapper for compiling Elm (http://elm-lang.org) programs to html/javascript in a Hakyll project. Currently supports single-module programs that only import from an Elm runtime that's manually included. ,"bsd3,library,web,Propose Tags ,Hakyll.Web.Elm",BSD-3-Clause,https://github.com/maxsnew/hakyll-elm,3,0,,0,7936,GitHub,maxsnew/hakyll-elm,Hakyll wrapper for the Elm (http://elm-lang.org) compiler,False,8.0,BSD-3-Clause,,,Elm,https://github.com/maxsnew/hakyll-elm,github,elm,elm,"['186221', '16190324']",community,Binding
124236,Hackage,snowball,"The Snowball library is used to compute the stems of words in natural languages. Compared to the older stemmer package, this one: Correctly handles unicode without relying on the system locale Takes greater care to avoid memory leaks and to be thread safe Uses Text rather than String Gets rid of the need for stemWords by using rewrite rules to make map stem efficient Includes a more recent release of Snowball Attempts to comply with the Snowball licensing terms Supports SafeHaskell when available and is otherwise Haskell2010 Comes with a test suite However, although this code is written from scratch, it is heavily modeled after the code of the ""stemmer"" package. ","benchmark,bsd3,library,natural-language-processing,text,Propose Tags ,NLP.Snowball",BSD-3-Clause,,5,0,,0,,,,,,,,,,Snowball,http://hub.darcs.net/dag/snowball,darcs,snowball,snowball,['22783638'],community,Binding
125513,Cargo,alink-sys,FFI bindings to alink. This crate is a placeholder for the future. If you are interested in this library feel free to get in touch with me: http://www.rustaceans.org/retep998,"ffi,winsdk,windows",MIT,https://github.com/retep998/winapi-rs,1,0,,0,4965,GitHub,retep998/winapi-rs,Rust bindings to Windows API,False,705.0,Other,,"ffi,rust,winapi,windows",alink,https://crates.io/crates/winapi,crates,alink,alink,['40135681'],community,Binding
127116,npm,alchemy_mini,A simple alchemy api. See example.js,nlp,ISC,https://github.com/AlchemyAPI/alchemyapi_node,2,1,,0,86542,GitHub,AlchemyAPI/alchemyapi_node,A sdk for AlchemyAPI in Javascript - Please note that this legacy AlchemyAPI SDK is no longer supported by IBM. Please use the Watson SDKs https://github.com/watson-developer-cloud?utf8=✓&query=sdk,True,71.0,Apache-2.0,,,alchemy,https://github.com/AlchemyAPI/alchemyapi_node,github,alchemy,alchemy,"['13491787', '40396672']",community,Binding
127117,npm,alchemy-api,An Alchemy API library for Node.js,,MIT,https://github.com/framingeinstein/node-alchemy,21,12,,130,86543,GitHub,framingeinstein/node-alchemy,An Alchemy API library for Node.JS,False,55.0,MIT,,,Alchemy,https://github.com/framingeinstein/node-alchemy,github,alchemy,alchemy,"['13491787', '40396672']",community,Binding
127834,npm,angular-hal,Hal client for angularjs,,WTFPL,https://github.com/LuvDaSun/angular-hal,17,0,,3,48494,GitHub,LuvDaSun/angular-hal,HAL client for angularjs,False,121.0,WTFPL,,,Hal,http://angular-hal.io,angular-hal,hal,hal,['4824482'],community,Binding
128256,npm,anytv-node-logger,express winston wrapper,"express,winston,logger,wrapper",ISC,https://github.com/anyTV/anytv-node-logger,5,1,,5,87162,GitHub,anyTV/anytv-node-logger,,False,0.0,MIT,,,winston,https://github.com/anyTV/anytv-node-logger,github,winston,winston,['72007'],community,Binding
128788,npm,argo-resource,A resource API framework for Argo.,"argo,resource,rest,framework,api",MIT,,13,2,,6,,,,,,,,,,Argo,,,argo,argo,['27681670'],community,Binding
131115,npm,bender-api,API for Bender,,MIT,https://github.com/vigour-io/bender-api,8,2,,1,89063,GitHub,vigour-io/bender-api,API wrapper for Bender,False,0.0,MIT,Removed,,Bender,https://github.com/vigour-io/bender-api,github,bender,bender,['24853620'],community,Binding
139912,npm,cv,OpenCV for Node.js,"opencv,cv,computer,vision",MIT,https://github.com/carter-thaxton/cv,3,0,,3,94482,GitHub,carter-thaxton/cv,OpenCV for Node.js,False,6.0,,,,OpenCV,,,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
140405,npm,das,Node module for interfacing with DAS (Data Automation Services) API,,MIT,,2,1,,1,,,,,,,,,,DAS,,,das,das,['40364900'],community,Binding
146630,npm,eyed3,A wrapper for ID3 manipulation using eyeD3,"id3,mp3,artist,title,manipulation,eyed3,id3v2",MIT,https://github.com/saschagehlich/node-eyed3,1,3,,8,98971,GitHub,saschagehlich/node-eyed3,A wrapper for reading and updating ID3 meta data of (e.g.) MP3 files using eyeD3,False,5.0,MIT,,,ID3,,,id3,id3,['4932403'],community,Binding
146721,npm,facesort,This is a short script using the [NodeJS OpenCV bindings](https://github.com/peterbraden/node-opencv) to detect faces on images and sort them accordingly.,,MIT,https://github.com/pwaldhauer/facesort,1,2,,0,99026,GitHub,pwaldhauer/facesort,Sorts images with faces. ,False,3.0,,,,OpenCV,,,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
146926,npm,farmer-client,Farmer client API for node.js,,MIT,https://github.com/penpen/farmer-node-client,1,1,,0,,,,,,,,,,Farmer,https://github.com/penpen/farmer-node-client,github,farmer,farmer,['41230434'],community,Binding
147769,npm,finn-js-code-style,Config files for FINN JavaScript style,,MIT,https://github.com/finn-no/js-code-style,19,5,,7,99693,GitHub,finn-no/js-code-style,FINN.no's config files and a CLI to check JavaScript code style,False,1.0,,,platform-frontend,FINN,https://github.com/finn-no/js-code-style,github,finn,finn,"['29439777', '37265665']",community,Binding
148430,npm,flow-bin,Binary wrapper for Flow - A static type checker for JavaScript,"cli-app,cli,bin,binary,flow,facebook,type,inference,check,checker,javascript,js,wrapper",MIT,https://github.com/flowtype/flow-bin,154,12316,,27635,100041,GitHub,flowtype/flow-bin,Binary wrapper for Flow - A static type checker for JavaScript,False,507.0,Other,,,Flow,https://github.com/flowtype/flow-bin,github,flow,flow,"['12755978', '29309986']",community,Binding
149776,npm,gamepad,node bindings to the Gamepad library,"gamepad,joystick",MIT,https://github.com/creationix/node-gamepad,16,11,,28,100955,GitHub,creationix/node-gamepad,node.js bindings for Alex Diener's cross-platform gamepad code,False,54.0,MIT,,,Gamepad,https://github.com/creationix/node-gamepad,github,gamepad,gamepad,['38470828'],community,Binding
156130,npm,halibut,HAL JavaScript client for browser and nodejs,,Apache-2.0,https://github.com/mnichols/halibut,14,3,,1,4265800,GitHub,mnichols/halibut,HAL JS client for browser and nodejs,True,0.0,Apache-2.0,Removed,,HAL,https://github.com/mnichols/halibut,github,hal,hal,['4824482'],community,Binding
157597,npm,horatio,A javascript compiler for the Shakespeare Programming Language,"shakespeare,shakespearelang",MIT,https://github.com/mileszim/horatio,3,2,,0,106756,GitHub,mileszim/horatio,A javascript compiler for the Shakespeare Programming Language,False,3.0,Other,,,Shakespeare,https://github.com/mileszim/horatio,github,shakespeare,shakespeare,['8855558'],community,Binding
161192,npm,javascript-log,"Wrapper around winston, tunable like debug()",,Other,,2,2,,0,,,,,,,,,,winston,,,winston,winston,['72007'],community,Binding
163102,npm,jubatus,Jubatus client for Node.js (unofficial),jubatus,MIT,https://github.com/naokikimura/jubatus-node-client,26,1,,3,110409,GitHub,naokikimura/jubatus-node-client,Jubatus client for Node.js (unofficial),False,7.0,MIT,,"javascript,jubatus,messagepack,messagepack-rpc,msgpack,nodejs",Jubatus,https://github.com/naokikimura/jubatus-node-client,github,jubatus,jubatus,['703673'],community,Binding
164861,npm,ksks,Ken Sheedlo's Keystone client,"keystone,openstack,identity,auth,rackspace",MIT,https://github.com/ksheedlo/ksks,3,0,,1,111589,GitHub,ksheedlo/ksks,Ken Sheedlo's Keystone client,False,0.0,,,,Keystone,https://github.com/ksheedlo/ksks,github,keystone,keystone,['663727'],community,Binding
167596,npm,logsmith,Simple logging wrapper around winston.,"log,winston",MIT,https://github.com/websecurify/node-logsmith,1,5,,16,113135,GitHub,websecurify/node-logsmith,,False,1.0,MIT,Unmaintained,,winston,,,winston,winston,['72007'],community,Binding
168471,npm,mango,Mango API client for node.js,"Mango,API",MIT,https://github.com/mango/mango-node,5,2,,5,113738,GitHub,Mango/mango-node,This is the Node.js library that allows interaction with Mango API,False,11.0,,,,Mango,https://github.com/mango/mango-node,github,mango,mango,['19555071'],community,Binding
168814,npm,maru-curl,Maru curl(1) package,maru,MIT,,1,2,,0,,,,,,,,,,Maru,,,maru,maru,['36518918'],community,Binding
169819,npm,mercury-binding,A node.js interface to the Mercury language,"mercury,binding",Other,https://github.com/sebgod/mercury-node,4,1,,0,114390,GitHub,sebgod/mercury-node,A native Node.js binding for Mercury,False,1.0,LGPL-3.0,,,Mercury,https://github.com/sebgod/mercury-node,github,mercury,mercury,['23163788'],community,Binding
174349,npm,ngsense_util,rainbow wireless utility library for UTM native interface,,BSD-2-Clause,,28,1,,0,,,,,,,,,,rainbow,,,rainbow,rainbow,"['29176751', '31379301']",community,Binding
174943,npm,node-eos,nodejs client for eos,"eos,node",ISC,https://github.com/ulyn/node-eos,16,1,,0,117827,GitHub,ulyn/node-eos,eos client for node.js,False,6.0,,,,eos,https://github.com/ulyn/node-eos,github,eos,eos,['2700852'],community,Binding
175696,npm,node-remote-api-netflix,Netflix plugin for Node Remote,,MIT,https://github.com/dougflip/node-remote-api-netflix,2,2,,0,118325,GitHub,dougflip/node-remote-api-netflix,Netflix plugin for NodeRemoteApi,False,1.0,,,,Netflix,https://github.com/dougflip/node-remote-api-netflix,github,netflix,netflix,['3727191'],community,Binding
176653,npm,nodeschnaps,A NodeJS compatibility layer for Java (Rhino).,"node,nodejs,java,rhino,rhinojs,compatibility,Pentaho Data-Integration,Kettle",LGPL-3.0,https://github.com/killmag10/nodeschnaps,19,2,,0,119031,GitHub,killmag10/nodeschnaps,A NodeJS compatibility layer for Java Javscript engines like Rhino,False,13.0,LGPL-3.0,,,Rhino,http://killmag10.github.io/nodeschnaps/,github,rhino,rhino,['37544204'],community,Binding
178575,npm,opencv,Node Bindings to OpenCV,"opencv,computer,vision,quadrocopter",MIT,https://github.com/peterbraden/node-opencv,30,61,,307,120303,GitHub,peterbraden/node-opencv,OpenCV Bindings for node.js,False,3893.0,MIT,,,OpenCV,https://github.com/peterbraden/node-opencv,github,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
178973,npm,oryx-js,Node module to communicate with an instance of Oryx,Oryx,ISC,https://github.com/BucketMovie/oryx-js,6,2,,0,120564,GitHub,BucketMovie/oryx-js,A node module to communicate with Oryx,False,0.0,,,,Oryx,https://github.com/BucketMovie/oryx-js,github,oryx,oryx,"['172689', '279980']",community,Binding
182240,npm,predictionio,PredictionIO Node SDK,,BSD-2-Clause,https://github.com/ShaunBaker/PredictionIO-Node-SDK,7,1,,1,122722,GitHub,ShaunBaker/PredictionIO-Node-SDK,PredictionIO Node SDK,False,63.0,,,,PredictionIO,http://prediction.io,prediction,predictionio,predictionio,['573443'],community,Binding
183766,Rubygems,bog,A tool for managing cloud API and configuration management credentials. rbenv for dotfiles.,,GPL-3.0,https://github.com/opsunit/bog,9,0,,0,298444,GitHub,opsunit/bog,A tool for managing cloud API and configuration management credentials. rbenv for dotfiles.,False,7.0,GPL-3.0,,"aws,devops,dotfiles,profile,sre",cloud,https://github.com/opsunit/bog,github,cloud,cloud,"['24218227', '36852984']",community,Binding
183804,Rubygems,boltstrap-rails,Bolt Framework for Rails,,MIT,https://github.com/Boltech/boltstrap-rails,13,0,,0,298461,GitHub,Boltech/boltstrap-rails,Boltstrap for Rails Asset Pipeline,False,0.0,MIT,Removed,,Bolt,https://github.com/Boltech/boltstrap-rails,github,bolt,bolt,"['19562400', '40784040']",community,Binding
184153,Rubygems,bors,Wrapper for the Vowpal Wabbit library,,MIT,https://github.com/rodeoclash/bors,4,0,,1,298631,GitHub,Rodeoclash/bors,Wrapper for the VowpalWabbit library,False,10.0,MIT,,,Vowpal Wabbit,http://github.com/rodeoclash/bors,github,vowpal wabbit,vowpalwabbit,"['852009', '39434262']",community,Binding
184558,Rubygems,brendan-skynet,Skynet - A Ruby Map/Reduce Framework,,,,22,0,,0,,,,,,,,,,Skynet,http://skynet.rubyforge.org,rubyforge,skynet,skynet,['36670396'],community,Binding
190069,Rubygems,commonjs-rhino,"CommonJS support for Rhino, in Ruby.",,,,1,0,,1,,,,,,,,,,Rhino,http://github.com/camertron,github,rhino,rhino,['37544204'],community,Binding
191151,Rubygems,cortex-client,Cortex API Client,,Apache-2.0,https://github.com/cortex-cms/cortex-client-ruby,33,2,,2,3692584,GitHub,cortex-cms/cortex-client-ruby,Cortex Ruby API Client,False,0.0,Apache-2.0,,,Cortex,https://github.com/cortex-cms/cortex-client-ruby,github,cortex,cortex,"['14427917', '38011472']",community,Binding
196484,Rubygems,dub,This is a tool to ease the creation of scripting language bindings for a C++ library. It is currently developed to crete the OpenCV bindings for Lua in Rubyk (http://rubyk.org). The generator uses the xml output from Doxygen to avoid parsing C++ code by itself.,,,,11,0,,0,,,,,,,,,,OpenCV,http://rubyk.org/en/project311.html,rubyk,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
199080,Rubygems,esp_sdk,SDK for interacting with the ESP API.,,MIT,https://github.com/EvidentSecurity/esp_sdk,18,0,,2,623253,GitHub,EvidentSecurity/esp_sdk,ESP SDK,False,6.0,MIT,,,ESP,https://github.com/EvidentSecurity/esp_sdk,github,esp,esp,['4702225'],community,Binding
216043,Rubygems,jubatus,Jubatus is a distributed processing framework and streaming machine learning library. This is the Jubatus client in Ruby.,,MIT,,21,1,,13,,,,,,,,,,Jubatus,http://jubat.us,jubat,jubatus,jubatus,['703673'],community,Binding
216060,Rubygems,juggernaut-kafka,Juggernaut client that works with Apache Kafka,,MIT,https://github.com/yankov/juggernaut-kafka,1,0,,0,138086,GitHub,yankov/juggernaut-kafka,"Realtime server push with node.js, WebSockets and Comet",True,16.0,MIT,,,Juggernaut,http://github.com/yankov/juggernaut-kafka,github,juggernaut,juggernaut,['23113977'],community,Binding
220836,Rubygems,machineshop,Wraps the machineshop API.,,,,8,0,,0,,,,,,,,,,machineshop,,,machineshop,machineshop,['36779700'],community,Binding
220900,Rubygems,mac-spotlight,Spotlight - Ruby interface to Mac OSX Spotlight,,MIT,https://github.com/xli/spotlight,4,0,,0,315507,GitHub,xli/spotlight,Ruby interface to Mac OSX Spotlight,False,7.0,MIT,,,Spotlight,https://github.com/xli/spotlight,github,spotlight,spotlight,['25461407'],community,Binding
221382,Rubygems,maluuba_napi,MaluubaNapi allows you to easily consume Maluuba's NLP API,,,https://github.com/Maluuba/napi-ruby,1,0,,1,315743,GitHub,Maluuba/napi-ruby,A simple Ruby wrapper for the Maluuba nAPI.,False,59.0,,Removed,,NLP,http://github.com/Maluuba/napi-ruby,github,nlp,nlp,"['22309865', '31964017', '38155979']",community,Binding
221383,Rubygems,maluuba_napi2,MaluubaNapi allows you to easily consume Maluuba's NLP API,,,https://github.com/Maluuba/napi-ruby,1,1,,1,315743,GitHub,Maluuba/napi-ruby,A simple Ruby wrapper for the Maluuba nAPI.,False,59.0,,Removed,,NLP,http://github.com/Maluuba/napi-ruby,github,nlp,nlp,"['22309865', '31964017', '38155979']",community,Binding
221464,Rubygems,mango-ruby,API to interact with Mango https://getmango.com/,,MIT,,5,0,,1,,,,,,,,,,Mango,https://getmango.com/,getmango,mango,mango,['19555071'],community,Binding
221503,Rubygems,mantis_bug_reporter,"Ties into Mantis api to create issues, add notes, and update issues.",,MIT,https://github.com/mangantj/mantis_bug_reporter,1,0,,0,315802,GitHub,mangantj/mantis_bug_reporter,,False,0.0,MIT,,,Mantis,https://github.com/mangantj/mantis_bug_reporter,github,mantis,mantis,['8640913'],community,Binding
221740,Rubygems,markisisme-rtimbl,Ruby wrapper for TiMBL machine-learning library,,,https://github.com/markisisme/rtimbl,1,0,,0,,,,,,,,,,TiMBL,http://github.com/markisisme/rtimbl,github,timbl,timbl,['3937010'],community,Binding
221844,Rubygems,martlet,"Ruby client for McGill's student portal, Minerva.",,MIT,https://github.com/alexcoco/martlet,8,0,,0,315960,GitHub,alexcoco/martlet,Ruby client for McGill's Minerva,False,21.0,MIT,,,Minerva,https://github.com/alexcoco/martlet,github,minerva,minerva,"['757813', '30438143']",community,Binding
222644,Rubygems,megalopolis,Megalopolis API wrapper for Ruby,,,,5,1,,1,,,,,,,,,,Megalopolis,,,megalopolis,megalopolis,['16541810'],community,Binding
228243,Rubygems,netflix4r,a ruby client for the NetFlix API,,MIT,https://github.com/rossnelson/netflix4r,6,0,,2,318764,GitHub,rossnelson/netflix4r,a port of http://code.google.com/p/flix4r/,False,8.0,MIT,,,NetFlix,http://github.com/rossnelson/netflix4r,github,netflix,netflix,['3727191'],community,Binding
228314,Rubygems,net-ntp-next,NTP client library with improved functionality.,,Unlicense,https://github.com/davispuh/net-ntp-next,2,0,,0,43317,GitHub,davispuh/net-ntp-next,"NTP client library for Ruby, improved version of net-ntp",False,1.0,Unlicense,,,NTP,https://github.com/davispuh/net-ntp-next,github,ntp,ntp,['32528693'],community,Binding
228422,Rubygems,neura-client,Neura client is a ruby client for the neura's custom device api,,,,2,0,,0,,,,,,,,,,Neura,http://client.theneura.com,theneura,neura,neura,['28908379'],community,Binding
229006,Rubygems,nltk-ruby,A ruby port of the famous NLTK Python suite of libraries,,,https://github.com/ludamillion/nltk-ruby,1,0,,0,319071,GitHub,gregors/nltk-ruby,A Ruby port of the famous Natural Language Toolkit Python suite of libraries,False,3.0,,,,NLTK,https://github.com/ludamillion/nltk-ruby,github,nltk,nltk,['845081'],community,Binding
231281,Rubygems,onyx_client,Onyx(Image search service) client,,MIT,https://github.com/pedrolinhares/onyx_client,1,0,,0,320181,GitHub,pedrolinhares/onyx_client,Onyx Client,False,0.0,MIT,,,Onyx,http://github.com/pedrolinhares/onyx_client,github,onyx,onyx,['12371802'],community,Binding
231400,Rubygems,opencv,OpenCV wrapper for Ruby,,,,2,2,,8,,,,,,,,,,OpenCV,http://blueruby.mydns.jp/opencv,mydns,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
231404,Rubygems,opencv-ffi,A wrapper around OpenCV's C interface using Ruby FFI.,,,https://github.com/amarburg/opencv-ffi,1,1,,1,320232,GitHub,amarburg/opencv-ffi,Wrapper around OpenCV library using nice-ffi,False,13.0,,,,OpenCV,http://github.com/amarburg/opencv-ffi,github,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
231870,Rubygems,orca-pip,Adds Python Pip package support to Orca,,MIT,https://github.com/nkostelnik/orca-pip,1,0,,0,320401,GitHub,nkostelnik/orca-pip,,False,0.0,MIT,,,Orca,https://github.com/nkostelnik/orca-pip,github,orca,orca,['7046644'],community,Binding
232280,Rubygems,oxygen,SIMD for Ruby,,,,1,0,,0,,,,,,,,,,SIMD,,,simd,simd,['3406299'],community,Binding
235166,Rubygems,pngnq,A Ruby wrapper around pngnq's command-line interface.,,MIT,https://github.com/kreeger/pngnq,1,0,,1,321882,GitHub,kreeger/pngnq,A Ruby wrapper around pngnq's command-line interface.,False,1.0,MIT,,,pngnq,https://github.com/kreeger/pngnq,github,pngnq,pngnq,['2370348'],community,Binding
235546,Rubygems,poseidon-api,An API to interact with the Poseidon system,,MIT,https://github.com/apslab/poseidon-api,2,0,,0,44190,GitHub,apslab/poseidon-api,API para la interacción con el sistema Poseidon,False,0.0,MIT,,,Poseidon,https://github.com/apslab/poseidon-api,github,poseidon,poseidon,['13388808'],community,Binding
235919,Rubygems,predictable,"Ruby/Rails DSL for Prediction.io, an open source machine learning server.",,MIT,https://github.com/jsboulanger/predictable,2,0,,0,322244,GitHub,jsboulanger/predictable,A Ruby/Rails DSL for PredictionIO,False,24.0,MIT,,,Prediction.io,https://github.com/jsboulanger/predictable,github,prediction io,predictionio,['573443'],community,Binding
235923,Rubygems,predictionio,PredictionIO is an open source machine learning server for developers and data scientists to create predictive engines for production environments. This gem provides convenient access to the PredictionIO API for Ruby programmers so that you can focus on application logic. ,,Apache-2.0,https://github.com/apache/incubator-predictionio-sdk-ruby,14,1,,22,44252,GitHub,apache/predictionio-sdk-ruby,PredictionIO Ruby SDK,False,191.0,Apache-2.0,,,PredictionIO,http://prediction.io/,prediction,predictionio,predictionio,['573443'],same_repo_owner,Binding
240279,Rubygems,rares-netflix,This gem handles some of the complexity in dealing with the netflix api (and OAuth in turn).,,,,1,0,,0,,,,,,,,,,netflix,http://www.robares.com,robares,netflix,netflix,['3727191'],community,Binding
240541,Rubygems,rbind,Rbind is developed to automatically generate ruby bindings for OpenCV but is not tight to this library.This gem is still under heavy development and the API might change in the future.,,,https://github.com/D-Alex/rbind,28,1,,4,324393,GitHub,D-Alex/rbind,ruby library for automatically generating ruby ffi bindings for c/c++ libs,False,5.0,,,,OpenCV,http://github.com/D-Alex/rbind,github,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
244336,Rubygems,rocket-js,This library is client that allows JavaScript clients to connect to the Rocket web socket server.,,MIT,https://github.com/araneo/rocket,4,1,,0,326054,GitHub,araneo/rocket,Event-oriented WebSockets server and toolkit.,False,7.0,MIT,,,Rocket,http://github.com/araneo/rocket,github,rocket,rocket,['40247662'],community,Binding
245496,Rubygems,rtimbl,rtimbl provides Ruby language bindings to the TiMBL machine learning library. See the README for more information.,,,https://github.com/markisisme/rtimbl,1,0,,0,,,,,,,,,,TiMBL,http://github.com/markisisme/rtimbl,github,timbl,timbl,['3937010'],community,Binding
246149,Rubygems,ruby-fann,Bindings to use FANN from within ruby/rails environment,,,https://github.com/tangledpath/ruby-state-machine,22,4,,41,45500,GitHub,tangledpath/ruby-state-machine,"A full-featured state machine gem for use within ruby. It can be used within Rails, but Rails is not required.",False,5.0,,,,FANN,http://github.com/tangledpath/ruby-fann,github,fann,fann,"['852353', '27851746']",community,Binding
246525,Rubygems,ruby-nmap,"A Ruby interface to Nmap, the exploration tool and security / port scanner.",,MIT,https://github.com/sophsec/ruby-nmap,15,9,,61,562823,GitHub,sophsec/ruby-nmap,A Rubyful interface to the Nmap exploration tool and security / port scanner.,False,213.0,MIT,,,Nmap,https://github.com/sophsec/ruby-nmap,github,nmap,nmap,['852438'],community,Binding
246564,Rubygems,ruby-opencv,ruby-opencv is a wrapper of OpenCV for Ruby. It helps you to write computer vision programs (e.g. detecting faces from pictures) with Ruby.,,BSD-3-Clause,https://github.com/ruby-opencv/ruby-opencv,19,13,,107,327063,GitHub,ruby-opencv/ruby-opencv,Versioned fork of the OpenCV gem for Ruby,True,677.0,BSD-3-Clause,,,OpenCV,https://github.com/ruby-opencv/ruby-opencv/,github,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
246780,Rubygems,ruby_skynet,Ruby Client for invoking Skynet services,,Apache-2.0,https://github.com/ClarityServices/ruby_skynet,29,0,,0,,,,,,,,,,Skynet,https://github.com/ClarityServices/ruby_skynet,github,skynet,skynet,['36670396'],community,Binding
251662,Rubygems,simple_tesseract,tesseract ruby bindings,,,https://github.com/shurizzle/simple_tesseract,3,0,,0,329336,GitHub,shurizzle/simple_tesseract,tesseract ruby bindings,False,0.0,,,,tesseract,http://github.com/shurizzle/simple_tesseract,github,tesseract,tesseract,['852560'],community,Binding
252516,Rubygems,skynet,Skynet - A Ruby Map/Reduce Framework,,,,3,0,,0,,,,,,,,,,Skynet,http://skynet.rubyforge.org,rubyforge,skynet,skynet,['36670396'],community,Binding
253327,Rubygems,snowleopard-ncurses,"Updated for Snow Leopard ruby 1.9.2 (Ralf Papenkordt). This wrapper provides access to the functions, macros, global variables and constants of the ncurses library. These are mapped to a Ruby Module named Ncurses.",,,,1,1,,0,,,,,,,,,,Snow Leopard,http://totalrecall.wordpress.com,wordpress,snow leopard,snowleopard,['32805588'],community,Binding
253888,Rubygems,spark_api,"The spark_api gem handles most of the boilerplate for communicating with the Spark API rest services, including authentication and request parsing.",,Apache-2.0,https://github.com/sparkapi/spark_api,59,0,,4,278703,GitHub,sparkapi/spark_api,Ruby client library for communication with the Spark API ,False,54.0,Other,,,spark,https://github.com/sparkapi/spark_api,github,spark,spark,"['11846538', '27909023', '38722051']",community,Binding
253901,Rubygems,sparkql,Specification and base implementation of the Spark API parsing system.,,Apache-2.0,,39,0,,0,,,,,,,,,,Spark,,,spark,spark,"['11846538', '27909023', '38722051']",community,Binding
254175,Rubygems,spike_pay,SPIKE pay enable you to delvelop SPIKE API access easy.,,MIT,,1,0,,2,,,,,,,,,,SPIKE,,,spike,spike,"['3492400', '4617322']",community,Binding
254176,Rubygems,spike-ruby,Ruby library for SPIKE API,,MIT,https://github.com/matsubo/spike-ruby,7,0,,0,330457,GitHub,matsubo/spike-ruby,SPIKE API client for ruby,False,9.0,MIT,,,SPIKE,http://github.com/matsubo/spike-ruby,github,spike,spike,"['3492400', '4617322']",community,Binding
254357,Rubygems,spotlight,Library to use Spotlight from Ruby,,,,6,1,,2,,,,,,,,,,Spotlight,,,spotlight,spotlight,['25461407'],community,Binding
254963,Rubygems,spyglass,"OpenCV in ruby, made simple.",,MIT,https://github.com/andremedeiros/spyglass,6,0,,2,330748,GitHub,andremedeiros/spyglass,"OpenCV in Ruby, made simple.",False,20.0,MIT,,,OpenCV,http://github.com/andremedeiros/spyglass,github,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
258834,Rubygems,test_machine_shop,Wraps the machineshop API.,,,,2,0,,0,,,,,,,,,,machineshop,,,machineshop,machineshop,['36779700'],community,Binding
259733,Rubygems,tickspot-rb,Ruby wrapper for the Tick API http://tickspot.com/api,,MIT,https://github.com/cmason/tickspot-rb,3,0,,1,332737,GitHub,cmason/tickspot-rb,,False,2.0,MIT,,,Tick,https://github.com/cmason/tickspot-rb,github,tick,tick,['16600463'],community,Binding
259844,Rubygems,timbl_client,timbl_client is a Ruby client for interacting with TimblServer.,,MIT,https://github.com/bmaland/timbl_client,1,0,,0,332795,GitHub,bmaland/timbl_client,Ruby client for TimblServer,False,1.0,MIT,,,timbl,http://github.com/bmaland/timbl_client,github,timbl,timbl,['3937010'],community,Binding
260083,Rubygems,timocratic-skynet,Skynet - A Ruby Map/Reduce Framework,,,,1,0,,0,,,,,,,,,,Skynet,http://skynet.rubyforge.org,rubyforge,skynet,skynet,['36670396'],community,Binding
261392,npm,alchemyapi,AlchemyAPI =============,,,,3,1,,0,,,,,,,,,,Alchemy,,,alchemy,alchemy,"['13491787', '40396672']",community,Binding
265340,npm,ant,"Apache Ant Adapter, execute Ant tasks from node","ant,build,java",MIT,https://github.com/millermedeiros/node-ant,2,2,,15,123834,GitHub,millermedeiros/node-ant,Experimental Apache Ant adapter for node.js,False,27.0,,,,Ant,,,ant,ant,"['24849381', '27003248']",community,Binding
270556,Rubygems,yatran,unofficial http://api.yandex.ru/translate API Client for ruby ,,MIT,https://github.com/Fivell/yatran,6,0,,0,48267,GitHub,Fivell/yatran,Ruby client for Yandex tranlsation service | Ruby клиент для Яндекс переводчика,False,2.0,MIT,,,translate,https://github.com/Fivell/yatran,github,translate,translate,['35774700'],community,Binding
271693,Rubygems,zoanthid,Zoanthid is a library that interfaces with Rails and RSpec to help you write expressive tests for your HAL API.,,MIT,https://github.com/benhamill/zoanthid,3,0,,0,48370,GitHub,benhamill/zoanthid,Kinda like Capybara for your HAL APIs.,False,3.0,MIT,,,HAL,https://github.com/benhamill/zoanthid,github,hal,hal,['4824482'],community,Binding
272472,npm,blitz,Blitz node.js client API,,,https://github.com/blitz-io/blitz-node,10,1,,3,125154,GitHub,blitz-io/blitz-node,Node.js API client for Blitz,False,22.0,,,,Blitz,http://docs.blitz.io/clients/node.js,blitz,blitz,blitz,['12454418'],community,Binding
272548,npm,bluemixcloudant,A simple wrapper around Nano to use with Cloudant on IBM BlueMix,"cloudant,couchdb,bluemix",,https://github.com/glynnbird/bluemix_cloudant,4,0,,2,125196,GitHub,glynnbird/bluemix_cloudant,A Node.js library when using Cloudant inside IBM's BlueMix service,False,0.0,,,,Nano,https://github.com/glynnbird/bluemix_cloudant,github,nano,nano,['3204475'],community,Binding
273766,npm,catwalk,models++,,,,1,0,,1,,,,,,,,,,models,,,models,models,"['23438367', '26728941', '40516103']",community,Binding
278707,npm,east-sqlite,"sqlite adapter for ""east"" (node.js database migration tool)","database,db,migrate,sqlite",,https://github.com/2do2go/east-sqlite,8,1,,0,129072,GitHub,2do2go/east-sqlite,"sqlite adapter for ""east""",False,1.0,,,,east,,,east,east,"['26771604', '37183832']",community,Binding
278823,npm,echo,Echo library for node,,,,9,2,,14,,,,,,,,,,Echo,,,echo,echo,['39194817'],community,Binding
280782,npm,fann,FANN (Fast Artificial Neural Network Library) bindings for Node.js,"fann,neural,network,artificial,intelligence,neural network,artificial intelligence,machine learning",WTFPL,https://github.com/rlidwka/node-fann,6,4,,6,130358,GitHub,rlidwka/node-fann,FANN (Fast Artificial Neural Network Library) bindings for Node.js,False,169.0,,,,FANN,https://github.com/rlidwka/node-fann,github,fann,fann,"['852353', '27851746']",community,Binding
281606,npm,flows,To get Loki flow,,,https://github.com/IPGPTP/dagwood,1,0,,2,,,,,,,,,,Loki,,,loki,loki,['31784180'],community,Binding
281856,npm,foundry-release-git,git release library for foundry,"foundry,foundry-release,git,tag,release",Unlicense,https://github.com/twolfson/foundry-release-git,9,77,,96,131024,GitHub,twolfson/foundry-release-git,git release library for foundry,False,2.0,Unlicense,,,foundry,https://github.com/twolfson/foundry-release-git,github,foundry,foundry,['3239439'],community,Binding
281858,npm,foundry-release-npm,npm release library for foundry,"foundry,foundry-release,npm,publish,release",Unlicense,https://github.com/twolfson/foundry-release-npm,7,72,,88,131026,GitHub,twolfson/foundry-release-npm,Manage npm releases via foundry,False,1.0,Unlicense,,,foundry,https://github.com/twolfson/foundry-release-npm,github,foundry,foundry,['3239439'],community,Binding
288470,npm,halbone,An isomorphic library for setting up Backbone models from a HAL API,"HAL,Backbone,isomorphic",MIT,https://github.com/artsy/halbone,2,2,,0,135960,GitHub,artsy/halbone,An isomorphic library for setting up Backbone models from a HAL API,False,2.0,MIT,,,HAL,https://github.com/artsy/halbone,github,hal,hal,['4824482'],community,Binding
289746,npm,hunch,hunch http client,,,https://github.com/matomesc/hunch,4,1,,2,136739,GitHub,matomesc/hunch,hunch client for node,False,3.0,,,,hunch,,,hunch,hunch,['32272307'],community,Binding
289970,npm,id3,"A ID3 library for node, using pure Javascript.",,,,3,4,,18,,,,,,,,,,ID3,,,id3,id3,['4932403'],community,Binding
293902,npm,lograp,Logging wrapper for winston - adds timestamp and module names to logs,,Other,https://github.com/Illniyar/lograp,2,1,,1,139174,GitHub,alonbardavid/lograp,Logging wrapper for winston - adds timestamp and module names to logs,False,0.0,MIT,,,winston,https://github.com/Illniyar/lograp,github,winston,winston,['72007'],community,Binding
294293,npm,mangopay,Mango API wrapper,,,https://github.com/larafale/mangopay,19,1,,2,139412,GitHub,larafale/mangopay,Mango API Wrapper,False,23.0,,,,Mango,https://github.com/larafale/mangopay,github,mango,mango,['19555071'],community,Binding
296816,npm,nebulog,A enhancement/wrapper around the wonderful Winston logger.,,,https://github.com/AntPortal/nebulog,2,1,,3,140847,GitHub,AntPortal/nebulog,A enhancement/wrapper around the wonderful Winston logger,False,3.0,,,,Winston,https://github.com/AntPortal/nebulog,github,winston,winston,['72007'],community,Binding
296931,npm,neural-node,Neural network for NodeJs,,,https://github.com/JulianDuniec/neural-node,3,1,,1,140921,GitHub,JulianDuniec/neural-node,Neural Network written in NodeJS,False,6.0,,,,Neural network,,,neural network,neuralnetwork,"['886132', '2416432', '3029700', '3170944', '3199049', '3332158', '7136724', '7212077', '7566135', '13715335', '20492951', '26643144', '39732365']",community,Binding
297143,npm,ninja,Ninja React Components,,Apache-2.0,https://github.com/ninja/ninja,36,8,,8,3551646,GitHub,ninja/ninja,Stealthy React Components,False,0.0,Apache-2.0,,,Ninja,https://github.com/ninja/ninja,github,ninja,ninja,['3040106'],community,Binding
297187,npm,nitrogen-opencv,Node Bindings to OpenCV,"opencv,computer,vision,quadrocopter",,,3,5,,0,,,,,,,,,,OpenCV,,,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
297234,npm,nlpjs,NLP library for javascript,"nlp,levenshtein,machine learning,natural language processing,nltk",MIT,https://github.com/nicktesla/nlpjs,2,1,,0,141077,GitHub,nicktesla/nlpjs,NLP utilities in javascript and coffeescript,False,40.0,MIT,,,NLP,,,nlp,nlp,"['22309865', '31964017', '38155979']",community,Binding
297984,npm,node-netflix,Implementation of the Netflix API in Node.js,"netflix,movies,tv,streaming",,https://github.com/petreboy14/node-netflix,1,2,,1,141543,GitHub,petreboy14/node-netflix,An implementation of the Netflix API for Node.js,False,5.0,,,,Netflix,,,netflix,netflix,['3727191'],community,Binding
298548,npm,nodeflix,Netflix API Client,"netflix,rest,api,client",MIT,https://github.com/iamleppert/nodeflix,3,1,,4,141896,GitHub,jleppert/nodeflix,Netflix API client for node.js,False,16.0,MIT,,,Netflix,,,netflix,netflix,['3727191'],community,Binding
299214,npm,ntp-client,Pure Javascript implementation of the NTP Client Protocol,"date,ntp",MIT,https://github.com/moonpyk/node-ntp-client,4,23,,53,142428,GitHub,moonpyk/node-ntp-client,Pure Javascript implementation of the NTP Client Protocol,False,22.0,MIT,,,NTP,https://github.com/moonpyk/node-ntp-client,github,ntp,ntp,['32528693'],community,Binding
299760,npm,opencv-node,Opencv for node,opencv,,,8,2,,2,,,,,,,,,,Opencv,,,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
299954,npm,oscar,An OSCAR protocol module for node.js,"aim,icq,oscar,aol,im,chat,client",MIT,https://github.com/mscdex/node-oscar,5,3,,5,142872,GitHub,mscdex/node-oscar,An OSCAR protocol client module for node.js,False,58.0,MIT,,,OSCAR,https://github.com/mscdex/node-oscar,github,oscar,oscar,['28326496'],community,Binding
300190,npm,pagerank-js,PageRank library for node.js,"pagerank,graph",,https://github.com/stevemacn/pagerank,4,4,,3,143031,GitHub,stevemacn/PageRank,Page Rank library for Javascript,False,12.0,,,"javascript,machine-learning,pagerank,ranking,tutorial",PageRank,https://github.com/stevemacn/pagerank,github,pagerank,pagerank,['143031'],same_repo,Binding
303781,npm,quiver,Meta npm package to gather all core packages of Quiver,,"MIT,MIT-feh,MIT-feh",https://github.com/quiverjs/quiver-core,2,5,,4,192727,GitHub,quiverjs/quiver-core,Meta npm package to gather all core packages of Quiver,False,0.0,MIT,,,Quiver,https://github.com/quiverjs/quiver-core,github,quiver,quiver,['15809459'],community,Binding
304774,npm,rbn-arduino,The Arduino module for the Robin OS,,,https://github.com/robinpowered/rbn-arduino,3,0,,0,,,,,,,,,,Robin,https://github.com/robinpowered/rbn-arduino,github,robin,robin,['38166515'],community,Binding
306580,npm,rekognition,ReKognition Node.js SDK ,"ReKognition,API,Face Detect,Face Recognize",GPL-2.0,https://github.com/yourtion/Rekognition_API_NODEJS_SDK,2,0,,0,147035,GitHub,yourtion/node-rekognition-sdk, ReKognition Node.js SDK ,False,2.0,GPL-2.0,,,ReKognition,https://github.com/yourtion/Rekognition_API_NODEJS_SDK,github,rekognition,rekognition,['41117897'],community,Binding
308842,npm,robyn,The Command Line Interface for Robin,"robyn,red interactive,ff0000,rbp,red boilerplate",,https://github.com/ff0000/robyn-cli,8,0,,2,148500,GitHub,ff0000/robyn-cli,Need a bootstrap? Put a bird on it.,False,0.0,,,,Robin,,,robin,robin,['38166515'],community,Binding
309381,npm,rstats,A node.js interface for statistical programming language R,"statistics,R,Rcpp",ISC,https://github.com/Planeshifter/node-Rstats,14,0,,2,148842,GitHub,Planeshifter/node-Rstats,[UNMAINTAINED] An interface for node.js to statistical programming language R based on the fabulous Rcpp package,False,58.0,GPL-2.0,,,R,https://github.com/Planeshifter/node-Rstats,github,r,r,['4689246'],community,Binding
310646,npm,sawyer,Winston wrapper for formatted logging requests.,logging,MIT,https://github.com/zillow-oc/sawyer,9,0,,1,149608,GitHub,zillow-oc/sawyer,Winston wrapper for formatted logging requests via Koa or generic app,False,3.0,MIT,,,Winston,https://github.com/zillow-oc/sawyer,github,winston,winston,['72007'],community,Binding
310941,npm,scikit-learn,Node.js wrapper of scikit-learn,"scikit-learn,scikit,ml,machine learning,python",MIT,https://github.com/burkostya/scikit-zero,1,0,,0,,,,,,,,,,scikit-learn,http://github.com/burkostya/scikit-zero,github,scikit learn,scikitlearn,['845049'],community,Binding
310942,npm,scikit-node,node wrapper for python's scikit-learn,"scikit-learn,machine learning",MIT,https://github.com/lramsey/scikit-node,4,0,,1,149775,GitHub,lramsey/scikit-node,npm wrapper for python's scikit-learn machine learning library.,False,60.0,MIT,,,scikit-learn,,,scikit learn,scikitlearn,['845049'],community,Binding
313629,npm,simple-fann,A Node.js wrapper for FANN (Fast Artificial Neural Network Library) that uses MongoDB to store the models,,GPL-3.0,https://github.com/tirithen/node-simple-fann,2,0,,1,193310,GitHub,tirithen/node-simple-fann,A Node.js wrapper for FANN (Fast Artificial Neural Network Library) that uses MongoDB to store the models,False,2.0,GPL-3.0,,,FANN,,,fann,fann,"['852353', '27851746']",community,Binding
316528,npm,sphere,Collection of Grunt tasks to build and release projects built on top of Echo SDK,"Echo,Apps,SDK,build,release,gruntplugin",Apache-2.0,https://github.com/EchoAppsTeam/sphere,7,1,,5,153396,GitHub,EchoAppsTeam/sphere,Collection of Grunt tasks to build and release projects built on top of Echo SDK,False,0.0,,,,Echo,https://github.com/EchoAppsTeam/sphere,github,echo,echo,['39194817'],community,Binding
316879,npm,spreaker-css-inliner,A CLI interface for juice CSS inliner,"email,css,inliner",MIT,https://github.com/spreaker/css-inliner,2,0,,0,153608,GitHub,spreaker/css-inliner,A command line interface to juice CSS inliner,False,0.0,MIT,,,juice,https://github.com/spreaker/css-inliner/,github,juice,juice,['19442086'],community,Binding
317499,npm,stacklog,Wrapper for winston to facilitate nested logging prefixes.,,MIT,https://github.com/jslatts/stacklog,5,0,,0,3730431,GitHub,jslatts/stacklog,A generic wrapper for logging modules that allows you to add log state to nested callbacks.,True,1.0,,,,winston,https://github.com/majorleaguesoccer/stacklog,github,winston,winston,['72007'],community,Binding
318059,npm,stellar-client,Simple Stellar client for node.js,"stellar,client,node.js",ISC,https://github.com/abrkn/stellar-client,9,1,,0,154400,GitHub,abrkn/stellar-client,Simple Stellar client for node.js,False,1.0,ISC,,,Stellar,https://github.com/abrkn/stellar-client,github,stellar,stellar,['32858101'],community,Binding
318061,npm,stellar-lib,Stellar JavaScript client library,,Other,https://github.com/stellar/stellar-lib,8,8,,19,34182,GitHub,stellar/stellar-lib,"INACTIVE. JS library to facilitate talking to stellard. This repository is not in active development. It points to the stellard network, which is being replaced by stellar-core. Please refer to the replacement repository, js-stellar-lib, which points to the stellar-core network.",False,57.0,Other,,,Stellar,https://github.com/stellar/stellar-lib,github,stellar,stellar,['32858101'],community,Binding
321080,npm,tape-bdd,BDD-style wrapper for tape,"mocha,bdd,test,harness,assert,tap,tape",MIT,https://github.com/roughculture/tape-bdd,1,5,,6,193748,GitHub,roughculture/tape-bdd,BDD-style wrapper for tape,False,6.0,MIT,,,tape,https://github.com/roughculture/tape-bdd,github,tape,tape,['40775741'],community,Binding
321081,npm,tape-catch,a wrapper around tape that catches and reports exceptions,"tape,exception,catch",MIT,https://github.com/michaelrhodes/tape-catch,7,392,,588,156295,GitHub,michaelrhodes/tape-catch,A wrapper around tape that catches and reports exceptions,False,29.0,,,,tape,https://github.com/michaelrhodes/tape-catch,github,tape,tape,['40775741'],community,Binding
321629,npm,telemetry-node,SDK to access Telemetry's API,"telemetry,dashboard",MIT,https://github.com/telemetryapp/telemetry_node,3,1,,0,156635,GitHub,telemetryapp/telemetry_node,Node.js module for http://www.telemetryapp.com,False,3.0,,Removed,,Telemetry,,,telemetry,telemetry,['26585611'],community,Binding
323259,npm,time-enforcer,A JavaScript implementation of the Ruby Timecop gem https://github.com/travisjeffery/timecop.,"time,timecop,date,freeze",MIT,https://github.com/samshull/time-enforcer,2,1,,0,157641,GitHub,samshull/time-enforcer,A JavaScript implementation of the Ruby Timecop gem https://github.com/travisjeffery/timecop.,False,1.0,,,,Timecop,,,timecop,timecop,['38892330'],community,Binding
323490,npm,tinkercalib,A wrapper around several openCV calibration functions.,,BSD-3-Clause,,7,1,,0,,,,,,,,,,openCV,,,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
326889,npm,unit-node-client,Unit API client library for NodeJS,,,https://github.com/unitcommerce/unit-node-client,1,1,,0,,,,,,,,,,Unit,https://github.com/unitcommerce/unit-node-client,github,unit,unit,['22536368'],community,Binding
328830,npm,vip-util,vip util js,"vip,util",Other,,1,2,,0,,,,,,,,,,vip,,,vip,vip,['39984402'],community,Binding
329737,npm,warp,"Warp is an API to run JavaScript functions in parallel: get the most of multi-core systems, shorten response time & intensive computations.","node,starnode,parallel,concurrent,performance,speed,cpu,child_process,worker,workers,thread,threads,worker_threads,async,asynchronous",MIT,https://github.com/ScaleDynamics/warp,31,2,,3,37816301,GitHub,ScaleDynamics/warp,,False,0.0,MIT,,,Warp,https://scaledynamics.io/,scaledynamics,warp,warp,['793643'],community,Binding
330684,npm,wecommender,Simple wrapper for vowpal wabbit's recommendation engine,"machine,learning,vowpal,wabbit,recommender,recommendation,matrix,factorization,online,out-of-core",MIT,https://github.com/omphalos/wecommender.js,4,1,,0,,,,,,,,,,vowpal wabbit,https://github.com/omphalos/wecommender.js,github,vowpal wabbit,vowpalwabbit,"['852009', '39434262']",community,Binding
331891,npm,wordsmith,wordsmith client,,,,1,1,,1,,,,,,,,,,wordsmith,,,wordsmith,wordsmith,['5628444'],community,Binding
333319,npm,yanlog,Wrapper of winston for easy configuration,"log,logguer,winston",MIT,https://github.com/eyolas/yanlog,8,1,,0,163779,GitHub,eyolas/yanlog,Wrapper of winston for easy configuration,False,2.0,MIT,,,winston,https://github.com/eyolas/yanlog,github,winston,winston,['72007'],community,Binding
334099,npm,zeddemore,File-conf wrapper around winston,"log,winston,logging",BSD-2-Clause,https://github.com/ilmirons/node-zeddemore,1,2,,0,164282,GitHub,ilmirons/node-zeddemore,File-conf wrapper around winston (https://github.com/flatiron/winston),False,0.0,,,,winston,,,winston,winston,['72007'],community,Binding
334746,PyPI,h2o,"H2O, Fast Scalable Machine Learning, for python","machine learning,data mining,statistical analysis,modeling,big data,distributed,parallel",Apache-2.0,https://github.com/h2oai/h2o-3,96,0,,59,527263,GitHub,h2oai/h2o-3,"Open Source Fast Scalable Machine Learning Platform For Smarter Applications: Deep Learning, Gradient Boosting & XGBoost, Random Forest, Generalized Linear Modeling (Logistic Regression, Elastic Net), K-Means, PCA, Stacked Ensembles, Automatic Machine Learning (AutoML), etc.",False,4513.0,Apache-2.0,,"automatic,big-data,data-science,deep-learning,distributed,ensemble-learning,gbm,gpu,h2o,hadoop,java,machine-learning,multi-threading,naive-bayes,opensource,pca,python,r,random-forest,spark",H2O,https://github.com/h2oai/h2o-3.git,github,h2o,h2o,['14294801'],community,Binding
335955,Maven,org.logicblaze.lingo:lingo-assembly,Assembly for Lingo,,Apache-2.0,scm:svn:http://svn.codehaus.org/lingo/tags/LINGO-1.3/lingo-assembly,2,0,,0,,,,,,,,,,Lingo,,,lingo,lingo,['23500692'],community,Binding
338484,Maven,org.bytedeco:javacv,Java interface to OpenCV and more,,GPL-2.0-with-classpath-exception,https://github.com/bytedeco/javacv,15,12,,328,172775,GitHub,bytedeco/javacv,"Java interface to OpenCV, FFmpeg, and more",False,3259.0,Other,,"computer-vision,ffmpeg,java,javacv,maven,multimedia,opencv",OpenCV,http://bytedeco.org/javacv/,bytedeco,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
340469,Maven,com.cueup.hegemon:hegemon-testserver,Tools for running the Rhino JS implementation,,Apache-2.0,https://github.com/Cue/hegemon-example.git,2,0,,1,173032,GitHub,Cue/hegemon-example,,False,1.0,,,,Rhino,https://github.com/cue/hegemon/hegemon-testserver,github,rhino,rhino,['37544204'],community,Binding
342141,Maven,com.revelytix:spark-protocol,Defines an implementation of the spark-api that uses the SPARQL protocol to query remote SPARQL endpoints via HTTP.,,Apache-2.0,scm:git:https://github.com/revelytix/sparql-api/spark-protocol,3,0,,0,,,,,,,,,,spark,https://github.com/revelytix/sparql-api,github,spark,spark,"['11846538', '27909023', '38722051']",community,Binding
343176,Maven,org.eclipse.jgit:org.eclipse.jgit.ant,Ant based user interface for Git,,AAL,http://git.eclipse.org/c/jgit/jgit.git/,135,2,,31,,,,,,,,,,Ant,http://www.eclipse.org/jgit/,eclipse,ant,ant,"['24849381', '27003248']",community,Binding
343635,Maven,org.springframework.cloud:spring-cloud-netflix-eureka-server,Integration with Netflix OSS components,,Apache-2.0,scm:git:git://github.com/spring-cloud/spring-cloud-netflix.git/spring-cloud-netflix-eureka-server,46,0,,143,172832,GitHub,spring-cloud/spring-cloud-netflix,Integration with Netflix OSS components,False,3833.0,Apache-2.0,,"cloud-native,feign,java,microservices,netflix-eureka,netflix-hystrix,netflix-zuul,netflixoss,ribbon,spring,spring-boot,spring-cloud,spring-cloud-core",Netflix,http://projects.spring.io/spring-cloud/,spring,netflix,netflix,['3727191'],community,Binding
344419,Maven,net.sourceforge.owlapi:owlapi-osgidistribution,OWL API main repository,,GPL-3.0-only,scm:git:git://github.com/owlcs/owlapi.git/owlapi-osgidistribution,50,17,,52,173418,GitHub,owlcs/owlapi,OWL API main repository,False,444.0,,,,OWL,,,owl,owl,['14048954'],community,Binding
344894,Maven,net.sourceforge.owlapi:owlapi-metrics,"The OWL API is a Java API and reference implementation for creating, manipulating and serialising OWL Ontologies. The latest version of the API is focused towards OWL 2",,Apache-2.0,scm:svn:https://owlapi.svn.sourceforge.net/svnroot/owlapi/v3/tags/owlapi-parent-3.3/owlapi-metrics,1,0,,0,,,,,,,,,,OWL,http://owlapi.sourceforge.net/owlapi-metrics/,sourceforge,owl,owl,['14048954'],community,Binding
346598,Maven,net.sourceforge.owlapi:owlapi-latex,"The OWL API is a Java API and reference implementation for creating, manipulating and serialising OWL Ontologies. The latest version of the API is focused towards OWL 2",,Apache-2.0,scm:svn:https://owlapi.svn.sourceforge.net/svnroot/owlapi/v3/tags/owlapi-parent-3.3/owlapi-latex,1,0,,0,,,,,,,,,,OWL,http://owlapi.sourceforge.net/owlapi-latex/,sourceforge,owl,owl,['14048954'],community,Binding
347437,Maven,net.sourceforge.owlapi:owlapi-rdfxml,"The OWL API is a Java API and reference implementation for creating, manipulating and serialising OWL Ontologies. The latest version of the API is focused towards OWL 2",,Apache-2.0,scm:svn:https://owlapi.svn.sourceforge.net/svnroot/owlapi/v3/tags/owlapi-parent-3.3/owlapi-rdfxml,1,0,,0,,,,,,,,,,OWL,http://owlapi.sourceforge.net/owlapi-rdfxml/,sourceforge,owl,owl,['14048954'],community,Binding
347825,Maven,com.madgag:org.eclipse.jgit.ant,Ant based user interface for Git,,EPL-2.0,https://github.com/rtyley/jgit,22,0,,0,166259,GitHub,rtyley/jgit,Originally forked from spearce's JGit,True,2.0,Other,,,Ant,http://www.eclipse.org/jgit/,eclipse,ant,ant,"['24849381', '27003248']",community,Binding
349366,Maven,net.sourceforge.owlapi:owlapi-tools,OWL API main repository,,GPL-3.0-only,scm:git:git://github.com/owlcs/owlapi.git/owlapi-tools,64,0,,10,173418,GitHub,owlcs/owlapi,OWL API main repository,False,444.0,,,,OWL,,,owl,owl,['14048954'],community,Binding
350513,Maven,net.sourceforge.owlapi:owlapi-krss,"The OWL API is a Java API and reference implementation for creating, manipulating and serialising OWL Ontologies. The latest version of the API is focused towards OWL 2",,Apache-2.0,scm:svn:https://owlapi.svn.sourceforge.net/svnroot/owlapi/v3/tags/owlapi-parent-3.3/owlapi-krss,1,0,,0,,,,,,,,,,OWL,http://owlapi.sourceforge.net/owlapi-krss/,sourceforge,owl,owl,['14048954'],community,Binding
351455,Maven,uk.ac.ebi.brain:Brain,Facade for the OWL-API for biomedical knowledge manipulation,,Apache-2.0,https://github.com/loopasam/Brain,8,0,,5,166583,GitHub,loopasam/Brain,Library for biomedical knowledge manipulation,False,18.0,,,,OWL,http://loopasam.github.com/Brain/,github,owl,owl,['14048954'],community,Binding
351605,Maven,net.sourceforge.owlapi:owlapitools-parent,OWLAPI_TOOLS is a collection of add-ons for OWL API,,GPL-3.0-only,https://github.com/owlcs/owlapitools,6,0,,0,174023,GitHub,owlcs/owlapitools,owlapitools - a set of independent add-ons for OWL API,False,13.0,,,,OWL,http://owlapitools.sourceforge.net/,sourceforge,owl,owl,['14048954'],community,Binding
352437,Maven,org.apache.sling:org.apache.sling.testing.sling-mock,Mock implementation of selected Sling APIs.,,Apache-2.0,http://svn.apache.org/viewvc/sling/tags/org.apache.sling.testing.sling-mock-1.0.0,32,26,,57,,,,,,,,,,Sling,,,sling,sling,['29291205'],community,Binding
353059,Maven,org.deeplearning4j:deeplearning4j-core,DeepLearning for java,,Apache-2.0,https://github.com/deeplearning4j/deeplearning4j,47,30,,660,165170,GitHub,eclipse/deeplearning4j,"Eclipse Deeplearning4j, ND4J, DataVec and more - deep learning & linear algebra for Java/Scala with GPUs + Spark",False,11328.0,Apache-2.0,,"artificial-intelligence,clojure,deeplearning,deeplearning4j,dl4j,gpu,hadoop,intellij,java,linear-algebra,matrix-library,neural-nets,python,scala,spark",DeepLearning,http://deeplearning4j.org/,deeplearning4j,deeplearning,deeplearning,"['851269', '2966203', '2989847', '3068030', '3088491', '3459073', '3522986', '3768078', '3984140', '3984213', '4387572', '4611958', '4976042', '6229890', '6995779', '11786389', '18843917', '20081109', '20241548', '21718912', '24656936', '25411819', '25454467', '26873714', '27095120', '28451439', '29254147', '30621862', '30749079', '31595197', '33132158', '33200728', '35379437', '41184013']",community,Binding
354695,Maven,com.revelytix:spark-http-client,Defines an implementation of the spark-api that uses the SPARQL protocol to query remote SPARQL endpoints via HTTP.,,Apache-2.0,https://github.com/revelytix/spark,4,0,,0,172732,GitHub,revelytix/spark,SPARQL client API and a high-speed protocol implementation,False,18.0,Apache-2.0,,,spark,https://github.com/revelytix/spark,github,spark,spark,"['11846538', '27909023', '38722051']",community,Binding
355647,Maven,net.sourceforge.owlapi:owlapi-parsers,OWL API main repository,,GPL-3.0-only,https://github.com/owlcs/owlapi.git,65,3,,24,173418,GitHub,owlcs/owlapi,OWL API main repository,False,444.0,,,,OWL,,,owl,owl,['14048954'],community,Binding
356042,Maven,edu.stanford.protege:protege-owlapi-extensions,Extensions to the OWL API (http://owlapi.sourceforge.net/) for Protege,,LGPL-2.1+,https://github.com/protegeproject/protege-owlapi,5,1,,11,166933,GitHub,protegeproject/protege-owlapi,Extensions to the OWL API for Protege,False,7.0,,,,OWL,,,owl,owl,['14048954'],community,Binding
356330,Maven,net.sourceforge.owlapi:owlapi-owlexpression,"The OWL API is a Java API and reference implementation for creating, manipulating and serialising OWL Ontologies. The latest version of the API is focused towards OWL 2",,Apache-2.0,scm:svn:https://owlapi.svn.sourceforge.net/svnroot/owlapi/v3/tags/owlapi-parent-3.3/owlapi-owlexpression,1,0,,0,,,,,,,,,,OWL,http://owlapi.sourceforge.net/owlapi-owlexpression/,sourceforge,owl,owl,['14048954'],community,Binding
356899,Maven,com.bacoder.jgit:org.eclipse.jgit.ant,Ant based user interface for Git,,EPL-2.0,scm:git:git://egit.eclipse.org/jgit.git/org.eclipse.jgit.ant,2,0,,0,,,,,,,,,,Ant,,,ant,ant,"['24849381', '27003248']",community,Binding
357464,Maven,org.cleartk:cleartk-release,The official ClearTK release,,BSD-1-Clause,scm:git:https://code.google.com/p/cleartk/,4,0,,3,,,,,,,,,,ClearTK,http://cleartk.googlecode.com/,googlecode,cleartk,cleartk,['2943272'],community,Binding
357999,Maven,org.sonatype.mercury:mercury-mp3-api,Mercury provisioning APIs,,Other,scm:svn:http://svn.sonatype.org/spice/tags/spice-parent-10/mercury-mp3/mercury-mp3-api,1,0,,0,,,,,,,,,,Mercury,http://forge.sonatype.com/spice-parent/mercury-mp3/mercury-mp3-api/,sonatype,mercury,mercury,['23163788'],community,Binding
359104,Maven,com.qmetric:spark-authentication,Java library providing authentication for Spark,,Apache-2.0,https://github.com/qmetric/spark-authentication,4,0,,5,167134,GitHub,qmetric/spark-authentication,,False,16.0,,,,Spark,https://github.com/qmetric/spark-authentication,github,spark,spark,"['11846538', '27909023', '38722051']",community,Binding
359808,Maven,com.googlecode.fannj:fannj,Provides Java bindings to the Fast Artificial Neural Network Library (FANN).,,GPL-3.0-only,scm:svn:https://fannj.googlecode.com/svn/tags/fannj-0.6,3,0,,4,,,,,,,,,,FANN,http://code.google.com/p/fannj,google,fann,fann,"['852353', '27851746']",community,Binding
361067,Maven,com.googlecode:mantis-java-api,Free open-source Java API for Mantis bug/task management systems.,,Apache-2.0,scm:svn:http://mantis-java-api.googlecode.com/svn/trunk,1,0,,2,,,,,,,,,,Mantis,http://code.google.com/p/mantis-java-api,google,mantis,mantis,['8640913'],community,Binding
361305,Maven,com.codeborne:mobileid,Java wrapper for Mobile-ID,,GPL-1.0,https://github.com/codeborne/mobileid,7,0,,4,916865,GitHub,codeborne/mobileid,Java Mobile-ID interface for Estonia/Lithuania,False,12.0,MIT,,,Mobile-ID,https://github.com/codeborne/mobileid,github,mobile id,mobileid,['25557595'],community,Binding
361340,Maven,ai.h2o:h2o-web,H2O web client,,Apache-2.0,https://github.com/0xdata/h2o,166,3,,3,172874,GitHub,h2oai/h2o-2,Please visit https://github.com/h2oai/h2o-3 for latest H2O,False,2268.0,Apache-2.0,,,H2O,https://github.com/0xdata/h2o,github,h2o,h2o,['14294801'],community,Binding
362120,Maven,net.sourceforge.owlapi:owlapi-distribution,OWL API main repository,,GPL-3.0-only,https://github.com/owlcs/owlapi.git,56,35,,364,173418,GitHub,owlcs/owlapi,OWL API main repository,False,444.0,,,,OWL,,,owl,owl,['14048954'],community,Binding
362374,Maven,org.jboss.weld:weld-build-config,The Weld build parent,,Apache-2.0,https://github.com/weld/parent.git,45,0,,0,167361,GitHub,weld/parent,The Weld build parent,False,7.0,,,,Weld,http://weld.cdi-spec.org,cdi-spec,weld,weld,['21966222'],community,Binding
362797,Maven,edu.stanford.protege:org.semanticweb.owl.owlapi,The OWL API libraries wrapped in an OSGi Bundle for use by the Protege Desktop application.,,LGPL-2.1+,scm:svn:http://smi-protege.stanford.edu/repos/protege/protege4/plugins/org.semanticweb.owl.owlapi/tags/org.semanticweb.owl.owlapi-3.4.4,1,0,,6,,,,,,,,,,OWL,,,owl,owl,['14048954'],community,Binding
365656,Maven,net.sourceforge.owlapi:owlapi-mansyntax,"The OWL API is a Java API and reference implementation for creating, manipulating and serialising OWL Ontologies. The latest version of the API is focused towards OWL 2",,Apache-2.0,scm:svn:https://owlapi.svn.sourceforge.net/svnroot/owlapi/v3/tags/owlapi-parent-3.3/owlapi-mansyntax,1,0,,2,,,,,,,,,,OWL,http://owlapi.sourceforge.net/owlapi-mansyntax/,sourceforge,owl,owl,['14048954'],community,Binding
366475,Maven,net.sourceforge.owlapi:owlapi-contract,OWL API main repository,,GPL-3.0-only,scm:git:git://github.com/owlcs/owlapi.git/owlapi-contract,53,0,,12,173418,GitHub,owlcs/owlapi,OWL API main repository,False,444.0,,,,OWL,,,owl,owl,['14048954'],community,Binding
366708,Maven,org.openrdf.sesame:sesame-sail,Sail API and implementations.,,MIT-enna,scm:git:[email protected]:openrdf/sesame.git/sesame-core/sesame-sail,43,0,,3,20255566,Bitbucket,openrdf/sesame,The main Sesame code repository.,False,,,,,Sail,http://rdf4j.org/,rdf4j,sail,sail,['5202037'],community,Binding
387895,Maven,org.codehaus.castor:castor,"Castor is an open source data binding framework for Java[tm]. It’s the shortest path between Java objects, XML documents and relational tables.",,Other,https://github.com/castor-data-binding/castor.git,18,14,,349,3688440,GitHub,castor-data-binding/castor,,False,24.0,,,,Castor,http://castor.org,castor,castor,castor,['22441184'],community,Binding
388422,Maven,net.sourceforge.owlapi:owlapi-util,"The OWL API is a Java API and reference implementation for creating, manipulating and serialising OWL Ontologies. The latest version of the API is focused towards OWL 2",,Apache-2.0,scm:svn:https://owlapi.svn.sourceforge.net/svnroot/owlapi/v3/tags/owlapi-parent-3.3/owlapi-util,1,0,,0,,,,,,,,,,OWL,http://owlapi.sourceforge.net/owlapi-util/,sourceforge,owl,owl,['14048954'],community,Binding
389700,Maven,com.java-adventures.rsc:extended-echo-connector,"Implementation of the example Echo API. This adapter will not connect to a real remote system. It simply runs in-memory and adds the url, username and password property to the request for the sake of this demo.",,Apache-2.0,https://github.com/scheuchzer/outbound-connector.git,1,0,,0,166022,GitHub,scheuchzer/outbound-connector,,False,2.0,Apache-2.0,,,Echo,http://java-adventures.com,java-adventures,echo,echo,['39194817'],community,Binding
390506,Maven,com.java-adventures.rsc:echo-connector,"Implementation of the example Echo API. This adapter will not connect to a real remote system. It simply runs in-memory and adds the url, username and password property to the request for the sake of this demo.",,Apache-2.0,https://github.com/scheuchzer/outbound-connector.git,1,0,,0,166022,GitHub,scheuchzer/outbound-connector,,False,2.0,Apache-2.0,,,Echo,http://java-adventures.com,java-adventures,echo,echo,['39194817'],community,Binding
391018,Maven,net.sourceforge.owlapi:owlapi-modularity,"The OWL API is a Java API and reference implementation for creating, manipulating and serialising OWL Ontologies. The latest version of the API is focused towards OWL 2",,Apache-2.0,scm:svn:https://owlapi.svn.sourceforge.net/svnroot/owlapi/v3/tags/owlapi-parent-3.3/owlapi-modularity,1,0,,1,,,,,,,,,,OWL,http://owlapi.sourceforge.net/owlapi-modularity/,sourceforge,owl,owl,['14048954'],community,Binding
394941,Maven,net.sourceforge.owlapi:owlapi-examples,"The OWL API is a Java API and reference implementation for creating, manipulating and serialising OWL Ontologies. The latest version of the API is focused towards OWL 2",,Apache-2.0,scm:svn:https://owlapi.svn.sourceforge.net/svnroot/owlapi/v3/tags/owlapi-parent-3.3/owlapi-examples,1,0,,0,,,,,,,,,,OWL,http://owlapi.sourceforge.net/owlapi-examples/,sourceforge,owl,owl,['14048954'],community,Binding
395511,Maven,com.cueup.hegemon:hegemon-annotations,Tools for running the Rhino JS implementation,,Apache-2.0,https://github.com/Cue/hegemon-example.git,2,1,,0,173032,GitHub,Cue/hegemon-example,,False,1.0,,,,Rhino,https://github.com/cue/hegemon/hegemon-annotations,github,rhino,rhino,['37544204'],community,Binding
397057,Maven,net.sourceforge.owlapi:owlapi-normalform,"The OWL API is a Java API and reference implementation for creating, manipulating and serialising OWL Ontologies. The latest version of the API is focused towards OWL 2",,Apache-2.0,scm:svn:https://owlapi.svn.sourceforge.net/svnroot/owlapi/v3/tags/owlapi-parent-3.3/owlapi-normalform,1,0,,0,,,,,,,,,,OWL,http://owlapi.sourceforge.net/owlapi-normalform/,sourceforge,owl,owl,['14048954'],community,Binding
398147,Maven,org.cleartk:cleartk-ml-tksvmlight,ClearTK wrapper for tree kernel SVM-light,,BSD-1-Clause,scm:git:https://code.google.com/p/cleartk/,4,0,,7,,,,,,,,,,ClearTK,http://cleartk.googlecode.com/,googlecode,cleartk,cleartk,['2943272'],community,Binding
398722,Maven,net.sourceforge.owlapi:owlapi-parent,"The OWL API is a Java API and reference implementation for creating, manipulating and serialising OWL Ontologies. The latest version of the API is focused towards OWL 2",,Apache-2.0,https://owlapi.svn.sourceforge.net/svnroot/owlapi/v3/tags/owlapi-parent-3.3,56,0,,5,173418,GitHub,owlcs/owlapi,OWL API main repository,False,444.0,,,,OWL,http://owlapi.sourceforge.net/,sourceforge,owl,owl,['14048954'],community,Binding
399142,Maven,org.jboss.weld:weld-api-parent," APIs for Weld, the reference implementation of JSR 299: Contexts and Dependency Injection for Java EE ",,Apache-2.0,https://github.com/weld/api,86,0,,2,169339,GitHub,weld/api,"Weld API, SPI, BOM",False,40.0,Apache-2.0,,,Weld,http://www.seamframework.org/Weld,seamframework,weld,weld,['21966222'],community,Binding
399512,Maven,org.springframework.cloud:spring-cloud-netflix-hystrix-dashboard,Integration with Netflix OSS components,,Apache-2.0,scm:git:git://github.com/spring-cloud/spring-cloud-netflix.git/spring-cloud-netflix-hystrix-dashboard,46,0,,72,172832,GitHub,spring-cloud/spring-cloud-netflix,Integration with Netflix OSS components,False,3833.0,Apache-2.0,,"cloud-native,feign,java,microservices,netflix-eureka,netflix-hystrix,netflix-zuul,netflixoss,ribbon,spring,spring-boot,spring-cloud,spring-cloud-core",Netflix,http://projects.spring.io/spring-cloud/,spring,netflix,netflix,['3727191'],community,Binding
400716,Maven,commons-jelly:commons-jelly-tags-ant,This is a Jelly interface for Ant.,,Other,scm:svn:http://svn.apache.org/repos/asf/jakarta/commons/proper/jelly/trunk/jelly-tags/ant,9,9,,2,,,,,,,,,,Ant,http://jakarta.apache.org/commons/jelly/libs/ant/index.html,apache,ant,ant,"['24849381', '27003248']",community,Binding
400786,Maven,net.sourceforge.owlapi:owlapi-owlxml,"The OWL API is a Java API and reference implementation for creating, manipulating and serialising OWL Ontologies. The latest version of the API is focused towards OWL 2",,Apache-2.0,scm:svn:https://owlapi.svn.sourceforge.net/svnroot/owlapi/v3/tags/owlapi-parent-3.3/owlapi-owlxml,1,0,,0,,,,,,,,,,OWL,http://owlapi.sourceforge.net/owlapi-owlxml/,sourceforge,owl,owl,['14048954'],community,Binding
401267,Maven,com.netflix.rxjava:rxjava-android-samples-build-wrapper,rxjava-android-samples-build-wrapper developed by Netflix,,Apache-2.0,scm:git:[email protected]:Netflix/RxJava.git,30,0,,0,165031,GitHub,ReactiveX/RxJava,RxJava – Reactive Extensions for the JVM – a library for composing asynchronous and event-based programs using observable sequences for the Java VM.,False,41112.0,Apache-2.0,,"flow,java,reactive-streams,rxjava",Netflix,https://github.com/Netflix/RxJava,github,netflix,netflix,['3727191'],community,Binding
402103,Maven,org.cleartk:cleartk-ml-crfsuite,ClearTK wrapper for the CRFsuite,,BSD-1-Clause,scm:git:https://code.google.com/p/cleartk/,4,0,,26,,,,,,,,,,CRFsuite,http://cleartk.googlecode.com/,googlecode,crfsuite,crfsuite,['3599698'],community,Binding
403438,Maven,nu.pattern:opencv,OpenCV packaged with native libraries and loader for multiple platforms.,,BSD-3-Clause,https://github.com/patternconsulting/opencv,4,1,,182,177048,GitHub,PatternConsulting/opencv,"OpenCV Java bindings packaged with native libraries, seamlessly delivered as a turn-key Maven dependency.",False,40.0,Other,,,OpenCV,http://github.com/patternconsulting/opencv,github,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
404799,Maven,net.sourceforge.owlapi:owlapi-fixers,OWL API main repository,,GPL-3.0-only,https://github.com/owlcs/owlapi.git,34,0,,0,173418,GitHub,owlcs/owlapi,OWL API main repository,False,444.0,,,,OWL,,,owl,owl,['14048954'],community,Binding
406011,Maven,net.sourceforge.owlapi:owlapi-debugging,"The OWL API is a Java API and reference implementation for creating, manipulating and serialising OWL Ontologies. The latest version of the API is focused towards OWL 2",,Apache-2.0,scm:svn:https://owlapi.svn.sourceforge.net/svnroot/owlapi/v3/tags/owlapi-parent-3.3/owlapi-debugging,1,0,,0,,,,,,,,,,OWL,http://owlapi.sourceforge.net/owlapi-debugging/,sourceforge,owl,owl,['14048954'],community,Binding
406418,Maven,net.sourceforge.owlapi:owlapi-apibinding,OWL API main repository,,GPL-3.0-only,https://github.com/owlcs/owlapi.git,65,13,,113,173418,GitHub,owlcs/owlapi,OWL API main repository,False,444.0,,,,OWL,,,owl,owl,['14048954'],community,Binding
407539,Maven,io.prediction:sdk,The PredictionIO Java SDK includes an API client and sample code.,,Apache-2.0,https://github.com/PredictionIO/PredictionIO-Java-SDK,12,0,,0,169704,GitHub,apache/predictionio-sdk-java,PredictionIO Java SDK,False,102.0,Apache-2.0,,,PredictionIO,http://prediction.io,prediction,predictionio,predictionio,['573443'],same_repo_owner,Binding
409240,Maven,com.github.ansell.owlapi:owlapi-parent,"The OWL API is a Java API and reference implementation for creating, manipulating and serialising OWL Ontologies. The latest version of the API is focused towards OWL 2",,GPL-3.0-only,https://github.com/ansell/owlapi,9,0,,0,172677,GitHub,ansell/owlapi,"Fork of the OWL API repository for Sesame integration: Warning, this fork is rebased often!",True,2.0,,Removed,,OWL,https://github.com/ansell/owlapi,github,owl,owl,['14048954'],community,Binding
409428,Maven,org.codehaus.cargo:cargo-core-container-orion,Core API implementation for Orion containers,,Apache-2.0,https://github.com/codehaus-cargo/cargo,75,3,,5,392037,GitHub,codehaus-cargo/cargo,Codehaus Cargo source code,False,59.0,Apache-2.0,,,Orion,,,orion,orion,['37981235'],community,Binding
411610,Maven,org.jboss.weld:weld-api-bom,"Weld APIs ""bill of materials"" which can be imported by any project using the Weld implementation of CDI. It provides dependency management for the developer APIs and SPIs, as well as container integrator SPIs",,Apache-2.0,https://github.com/weld/api,85,0,,3,169339,GitHub,weld/api,"Weld API, SPI, BOM",False,40.0,Apache-2.0,,,Weld,http://www.seamframework.org/Weld,seamframework,weld,weld,['21966222'],community,Binding
411773,Maven,com.yammer.collections.azure:azure-table-metrics,Metrics wrapper which times the core operations.,,Apache-2.0,https://github.com/yammer/azure-table.git,3,0,,0,174279,GitHub,yammer/azure-table,Azure Table backed Guava Table implementation.,False,4.0,Apache-2.0,,,Metrics,,,metrics,metrics,"['186909', '29729566']",community,Binding
412812,Maven,org.apache.directory.server:apacheds-protocol-ntp,The NTP protocol provider for ApacheDS,,Apache-2.0,scm:svn:http://svn.apache.org/repos/asf/directory/apacheds/tags/2.0.0-M22/apacheds-protocol-ntp,40,4,,26,,,,,,,,,,NTP,,,ntp,ntp,['32528693'],community,Binding
413339,Maven,de.learnlib:learnlib-utils,Parent module for LearnLib utilities,,Apache-2.0,https://github.com/LearnLib/learnlib.git,9,0,,0,165260,GitHub,LearnLib/learnlib,"A free, open-source Java library for automata learning algorithms",False,72.0,Apache-2.0,,"automata-learning-algorithms,java,java-library,machine-learning",LearnLib,http://www.learnlib.de/,learnlib,learnlib,learnlib,['165260'],same_repo,Binding
413584,Maven,org.apache.sling:org.apache.sling.crankstart.api,A different way of starting Sling - API module,,Apache-2.0,scm:svn:http://svn.apache.org/repos/asf/sling/tags/org.apache.sling.crankstart.api-1.0.0,1,3,,1,,,,,,,,,,Sling,,,sling,sling,['29291205'],community,Binding
414698,Maven,com.github.sarxos:webcam-capture-driver-javacv,Webcam Capture driver using JavaCV binding for OpenCV,,MIT,scm:git:[email protected]:sarxos/webcam-capture.git/webcam-capture-drivers/webcam-capture-driver-javacv,2,0,,0,165892,GitHub,sarxos/webcam-capture,"The goal of this project is to allow integrated or USB-connected webcams to be accessed directly from Java. Using provided libraries users are able to read camera images and detect motion. Main project consist of several sub projects - the root one, which contains required classes, build-in webcam driver compatible with Windows, Linux and Mac OS, which can stream images as fast as your camera can serve them (up to 50 FPS). Main project can be used standalone, but user is able to replace build-in driver with different one - such as OpenIMAJ, GStreamer, V4L4j, JMF, LTI-CIVIL, FMJ, etc.",False,1422.0,MIT,,"java,webcam,webcam-capture",OpenCV,http://webcam-capture.sarxos.pl,sarxos,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
415016,Maven,net.sourceforge.owlapi:owlapi-impl,OWL API main repository,,GPL-3.0-only,https://github.com/owlcs/owlapi.git,66,3,,30,173418,GitHub,owlcs/owlapi,OWL API main repository,False,444.0,,,,OWL,,,owl,owl,['14048954'],community,Binding
415153,Maven,com.aylien.textapi:client,AYLIEN's officially supported Java client library for accessing Text API,,Apache-2.0,https://github.com/AYLIEN/aylien_textapi_java,8,0,,9,177594,GitHub,AYLIEN/aylien_textapi_java,AYLIEN's officially supported Java client library for accessing Text API,False,6.0,Other,,"java,machine-learning,natural-language-processing,nlp,text-analysis",Text,https://developer.aylien.com/,aylien,text,text,['18883762'],community,Binding
415243,Maven,de.learnlib.archetypes:complete,Archetype which includes all LearnLib dependencies,,Apache-2.0,https://github.com/LearnLib/learnlib.git,9,0,,0,165260,GitHub,LearnLib/learnlib,"A free, open-source Java library for automata learning algorithms",False,72.0,Apache-2.0,,"automata-learning-algorithms,java,java-library,machine-learning",LearnLib,http://www.learnlib.de/,learnlib,learnlib,learnlib,['165260'],same_repo,Binding
416236,Maven,io.dropwizard.metrics:metrics-jdbi, A JDBI wrapper providing Metrics instrumentation of query durations and rates. ,,Apache-2.0,scm:git:git://github.com/dropwizard/metrics.git/metrics-jdbi,23,1,,69,173558,GitHub,dropwizard/metrics,:chart_with_upwards_trend: Capturing JVM- and application-level metrics. So you know what's going on.,False,6832.0,Apache-2.0,,"java,metrics",Metrics,https://metrics.dropwizard.io,dropwizard,metrics,metrics,"['186909', '29729566']",community,Binding
417222,Maven,net.sourceforge.owlapi:owlapi-api,OWL API main repository,,GPL-3.0-only,https://github.com/owlcs/owlapi.git,66,10,,135,173418,GitHub,owlcs/owlapi,OWL API main repository,False,444.0,,,,OWL,,,owl,owl,['14048954'],community,Binding
419696,Maven,com.taskadapter:mantis-java-api,Free open-source Java API for Mantis bug/task management systems.,,Apache-2.0,scm:git:git://github.com/taskadapter/mantis-java-api.git,1,0,,0,,,,,,,,,,Mantis,https://github.com/taskadapter/mantis-java-api,github,mantis,mantis,['8640913'],community,Binding
420309,Maven,com.cueup.hegemon:hegemon-guice,Tools for running the Rhino JS implementation,,Apache-2.0,https://github.com/Cue/hegemon-example.git,2,0,,0,173032,GitHub,Cue/hegemon-example,,False,1.0,,,,Rhino,https://github.com/cue/hegemon/hegemon-guice,github,rhino,rhino,['37544204'],community,Binding
420639,Maven,io.prediction:client,PredictionIO Java SDK,,Apache-2.0,https://github.com/PredictionIO/PredictionIO-Java-SDK.git,12,0,,21,169704,GitHub,apache/predictionio-sdk-java,PredictionIO Java SDK,False,102.0,Apache-2.0,,,PredictionIO,,,predictionio,predictionio,['573443'],same_repo_owner,Binding
422306,Maven,org.whispersystems:axolotl-java,Axolotl library for Java,,GPL-3.0,scm:[email protected]:WhisperSystems/libaxolotl-android.git,13,1,,0,672211,GitHub,signalapp/libsignal-protocol-java,Signal Protocol library for Java/Android,False,861.0,GPL-3.0,,,Axolotl,https://github.com/WhisperSystems/libaxolotl-android,github,axolotl,axolotl,['27867464'],community,Binding
424591,Maven,org.apache.sling:org.apache.sling.servlets.resolver,Bundle implementing the Sling API ServletResolver.,,Apache-2.0,scm:svn:http://svn.apache.org/repos/asf/sling/tags/org.apache.sling.servlets.resolver-2.4.4,41,1,,10,,,,,,,,,,Sling,,,sling,sling,['29291205'],community,Binding
425647,Maven,org.daisy.pipeline.modules:nlp-common,Common API for NLP functionality,,LGPL-2.1+,https://github.com/daisy-consortium/maven-parents.git,2,0,,1,172585,GitHub,daisy/maven-parents,DAISY Consortium Maven parent POMs,False,1.0,,,,NLP,,,nlp,nlp,"['22309865', '31964017', '38155979']",community,Binding
426571,Maven,org.deeplearning4j:deeplearning4j-parent,DeepLearning for java,,Apache-2.0,https://github.com/agibsonccc/java-deeplearning,44,0,,0,165170,GitHub,eclipse/deeplearning4j,"Eclipse Deeplearning4j, ND4J, DataVec and more - deep learning & linear algebra for Java/Scala with GPUs + Spark",False,11328.0,Apache-2.0,,"artificial-intelligence,clojure,deeplearning,deeplearning4j,dl4j,gpu,hadoop,intellij,java,linear-algebra,matrix-library,neural-nets,python,scala,spark",DeepLearning,http://deeplearning4j.org/,deeplearning4j,deeplearning,deeplearning,"['851269', '2966203', '2989847', '3068030', '3088491', '3459073', '3522986', '3768078', '3984140', '3984213', '4387572', '4611958', '4976042', '6229890', '6995779', '11786389', '18843917', '20081109', '20241548', '21718912', '24656936', '25411819', '25454467', '26873714', '27095120', '28451439', '29254147', '30621862', '30749079', '31595197', '33132158', '33200728', '35379437', '41184013']",community,Binding
430890,Rubygems,puppetclassify,A ruby library to interface with the classifier service,,MIT,https://github.com/puppetlabs/puppet-classify,9,3,,7,337382,GitHub,puppetlabs/puppet-classify,A ruby library to interface with the classifier service,False,16.0,,,,classifier,https://github.com/puppetlabs/puppet-classify,github,classifier,classifier,['2808871'],community,Binding
430987,npm,east-postgres,"postgres adapter for ""east"" (node.js database migration tool)","database,db,migrate,postgres",,https://github.com/2do2go/east-postgres,5,1,,0,178326,GitHub,2do2go/east-postgres,"postgres adapter for ""east""",False,2.0,,,,east,https://github.com/2do2go/east-postgres,github,east,east,"['26771604', '37183832']",community,Binding
432451,npm,keywrap,Wrapper around keystone for easier list retrival. ,"keywrap,keystone",MIT,https://github.com/metasansana/keywrap,14,0,,0,186305,GitHub,metasansana/keywrap,Wrapper around keystone for easier list retrival.,False,0.0,,,,keystone,https://github.com/metasansana/keywrap,github,keystone,keystone,['663727'],community,Binding
433381,Packagist,chrislondon/forte-api,PHP implementation for working with Forte API,,Apache-2.0,https://github.com/chrislondon/php-forte-api,0,0,,0,195122,GitHub,chrislondon/php-forte-api,PHP implementation to query the Forte API,False,1.0,Apache-2.0,,,Forte,,,forte,forte,['40086441'],community,Binding
434413,npm,tape-catch-onerror,a wrapper around tape that catches and reports exceptions,"tape,exception,catch,onerror",MIT,https://github.com/jscissr/tape-catch,1,2,,1,195820,GitHub,jscissr/tape-catch-onerror,a wrapper around tape that catches and reports exceptions,True,0.0,,,,tape,https://github.com/jscissr/tape-catch,github,tape,tape,['40775741'],community,Binding
436715,PyPI,pyaxo-beta,Python implementation of the Axolotl ratchet protocol,,Other,https://github.com/rxcomm/pyaxo,1,0,,0,196943,GitHub,rxcomm/pyaxo,A python implementation of the Axolotl ratchet protocol.,False,65.0,GPL-3.0,,,Axolotl,https://github.com/rxcomm/pyaxo,github,axolotl,axolotl,['27867464'],community,Binding
469103,PyPI,nflx-genie-client,Genie Python Client.,genie hadoop cloud netflix client bigdata presto,Apache-2.0,https://github.com/netflix/genie,96,0,,5,167255,GitHub,Netflix/genie,Distributed Big Data Orchestration Service,False,1252.0,Apache-2.0,,"big-data,bigdata,cloud,configuration,configuration-management,distributed-systems,java,microservice,microservices,netflix-oss,netflixoss,orchestration,spring-boot",Genie,http://netflix.github.io/genie/,github,genie,genie,['5137537'],community,Binding
528837,PyPI,pyramid_autodoc,Sphinx extension for documenting your Pyramid APIs.,,Other,https://github.com/SurveyMonkey/pyramid_autodoc,9,0,,3,238961,GitHub,SurveyMonkey/pyramid_autodoc,Sphinx extension for documenting your Pyramid APIs.,False,9.0,MIT,,,Pyramid,https://github.com/SurveyMonkey/pyramid_autodoc,github,pyramid,pyramid,['10568701'],community,Binding
569235,npm,spike-api,SPIKE REST API client library for node.js,"SPIKE,eCommerce,transactions",MIT,https://github.com/ynakajima/node-spike-api,8,0,,0,265914,GitHub,ynakajima/node-spike-api,An asynchronous client library for the SPIKE REST API.,False,1.0,MIT,,,SPIKE,https://github.com/ynakajima/node-spike-api,github,spike,spike,"['3492400', '4617322']",community,Binding
569512,Packagist,stormsys/simplehal,SimpleHal is an easy to use library for consuming Hal API's,"hal,hypermedia,hal client,HalClient",MIT,https://github.com/Stormsys/SimpleHal,2,0,,0,266123,GitHub,Stormsys/SimpleHal,SimpleHal is an easy to use PHP library for consuming Hal API's.,False,5.0,MIT,,,Hal,,,hal,hal,['4824482'],community,Binding
569525,PyPI,django-pipeline,Pipeline is an asset packaging library for Django.,django pipeline asset compiling concatenation compression packaging,MIT,https://github.com/jazzband/django-pipeline,123,9,,1117,266136,GitHub,jazzband/django-pipeline,Pipeline is an asset packaging library for Django.,False,1354.0,MIT,,,Pipeline,https://github.com/jazzband/django-pipeline,github,pipeline,pipeline,"['2699195', '3765103']",community,Binding
605293,PyPI,bob.blitz,Bindings for Blitz++ (a C++ array template library),,BSD-3-Clause,https://github.com/bioidiap/bob.blitz,22,0,,66,268695,GitHub,bioidiap/bob.blitz,Python bindings for Blitz++ Arrays - Mirrored from https://gitlab.idiap.ch/bob/bob.blitz,False,0.0,Other,,,Blitz++,http://gitlab.idiap.ch/bob/bob.blitz,idiap,blitz,blitz,['12454418'],community,Binding
608149,NuGet,BingMapsHelpers.UriBuilder,"Simple class helper for building URI string to launch ""Maps"" application from your own Windows 8 app. You don't need to have Map SDK, just use this simple class to set center view, zoom level or map view, find routes using address or coordinates or just simply query for POI's arround you.","bing,windows,uri,winrt,maps,8",,,1,0,,0,,,,,,,,,,Map,,,map,map,['34414685'],community,Binding
610139,NuGet,Fabrik.API.Client.MvcHelpers,Fabrik API Client Helpers for ASP.NET MVC.,"apiclient,fabrik",MIT,https://github.com/FabrikCreations/fabrikapi-client-net,28,0,,0,270088,GitHub,FabrikCreations/fabrikapi-client-net,Fabrik API client for .NET,False,10.0,MIT,,,Fabrik,https://github.com/FabrikCreations/fabrikapi-client-net,github,fabrik,fabrik,['11169894'],community,Binding
611257,NuGet,CrmAdo,"CrmAdo is an ADO.Net data provider for Dynamics Crm. It's goal is to make it easy for you to perform CRUD operations against Dynamics Crm. It exposes Dynamics to you as an ordinary ADO.Net data source that you can execute SQL commands against. It allows you to use the familiar ADO.Net classes to connect to, and perform your queries against Dynamics CRM. Architecturally, CrmAdo sits on top of the Dynamics SDK, and handles all the conversion between your SQL commands into the appropriate IOrganisation web service calls and interactions behind the scenes.","Provider,ADO,Crm,DynamicsCrm,Dynamics,T-SQL,SQL,Data,ADO.Net",,https://github.com/dazinator/CrmAdo,31,0,,3,2804838,GitHub,dazinator/CrmAdo,An ADO.NET Provider for Dynamics Crm,False,3.0,,,,Dynamics,http://dazinator.github.io/CrmAdo/,github,dynamics,dynamics,['3098358'],community,Binding
612132,NuGet,FunScript.TypeScript.Binding.chai,FunScript binding for chai (BETA version).,"F#,JavaScript,FunScript",,,8,3,,1,,,,,,,,,,chai,http://www.funscript.info,funscript,chai,chai,['16510011'],community,Binding
614783,NuGet,VVVV.EmguCV,"Emgu CV is a cross platform .Net wrapper to the OpenCV image processing library. Allowing OpenCV functions to be called from .NET compatible languages such as C#, VB, VC++, IronPython etc. The wrapper can be compiled in Mono and run on Windows, Linux, Mac OS X, iPhone, iPad and Android devices.","cv,openCV,vvvv",,,1,0,,10,,,,,,,,,,OpenCV,http://www.emgu.com/,emgu,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
615890,NuGet,ENet,"ENet supports multiple in-order streams of data over UDP, and allows you to decide on reliability on a per-packet basis. Both client-server and peer-to-peer architectures are supported. ENet for C# wraps the C-language ENet networking library. 32- and 64-bit Windows and MacOS DLLs are included. On Linux, install the libenet1a package (1.3.3 or newer).","UDP,networking,game,network,protocol,ENet",,,4,0,,4,,,,,,,,,,ENet,http://www.zer7.com/software.php?page=enetcs,zer7,enet,enet,['24799903'],community,Binding
616737,NuGet,Fabrik.API.Client,Fabrik API Client for .NET.,"fabrik,apiclient",MIT,https://github.com/FabrikCreations/fabrikapi-client-net,30,0,,0,270088,GitHub,FabrikCreations/fabrikapi-client-net,Fabrik API client for .NET,False,10.0,MIT,,,Fabrik,https://github.com/FabrikCreations/fabrikapi-client-net,github,fabrik,fabrik,['11169894'],community,Binding
616828,NuGet,FunScript.TypeScript.Binding.purl,FunScript binding for purl (BETA version).,"JavaScript,FunScript,F#",,,4,1,,0,,,,,,,,,,purl,http://www.funscript.info,funscript,purl,purl,['40097719'],community,Binding
616961,NuGet,Squirrel.Core,Core routines for manipulating and creating Squirrel release packages,"Installer,Desktop,WiX",MIT,https://github.com/github/Squirrel,1,1,,3,271572,GitHub,Squirrel/Squirrel.Mac,:shipit: Cocoa framework for updating OS X apps :shipit:,False,1138.0,MIT,,,Squirrel,https://github.com/github/Squirrel/blob/master,github,squirrel,squirrel,['7267315'],community,Binding
617231,NuGet,FunScript.TypeScript.Binding.elm,FunScript binding for elm (BETA version).,"FunScript,F#,JavaScript",,,4,0,,0,,,,,,,,,,elm,http://www.funscript.info,funscript,elm,elm,"['186221', '16190324']",community,Binding
619922,NuGet,OpenCV,"OpenCV (Open Source Computer Vision) is a library of programming functions for realtime computer vision. OpenCV is released under a BSD license and hence it’s free for both academic and commercial use. It has C++, C, Python and Java (Android) interfaces and supports Windows, Linux, Android, iOS and Mac OS. It has more than 2500 optimized algorithms. Adopted all around the world, OpenCV has more than 7 million downloads growing by nearly 200K/month. Usage ranges from interactive art, to mines inspection, stitching maps on the web on through advanced robotics.","nativepackage,Vision,Computer,Processing,OpenCV,Image",,,9,2,,111,,,,,,,,,,OpenCV,http://opencv.org,opencv,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
620034,NuGet,FunScript.TypeScript.Binding.gamepad,FunScript binding for gamepad (BETA version).,"JavaScript,F#,FunScript",,,10,0,,0,,,,,,,,,,gamepad,http://www.funscript.info,funscript,gamepad,gamepad,['38470828'],community,Binding
621925,NuGet,AuthorizeNetLite,"Use this to integrate with AIM (json) for Payment Transactions, and Transaction Reporting. This is a lightweight version of the AuthorizeNet package.","AIM,API,JSON,Authorize.Net",,https://github.com/damon-e-drake/authorize-net,19,0,,0,272638,GitHub,damon-e-drake/authorize-net,Authorize.Net Payment Gateway Plug-in,False,0.0,,,,AIM,https://github.com/damon-e-drake/authorize-net,github,aim,aim,['804395'],community,Binding
622042,NuGet,OpenCV.Net,A .NET interface for the popular OpenCV computer vision and image processing library.,"OpenCV,Image,Processing,Vision,Wrapper,Computer",,https://bitbucket.org/horizongir/opencv.net,9,20,,29,,,,,,,,,,OpenCV,http://bitbucket.org/horizongir/opencv.net,bitbucket,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
624199,NuGet,FunScript.TypeScript.Binding.giraffe,FunScript binding for giraffe (BETA version).,"JavaScript,F#,FunScript",,,9,0,,0,,,,,,,,,,giraffe,http://www.funscript.info,funscript,giraffe,giraffe,"['3050131', '13485994']",community,Binding
624343,NuGet,OpenCvSharp-AnyCPU,OpenCV wrapper for .NET Framework Use https://www.nuget.org/packages/OpenCvSharp3-AnyCPU/ instead,"Image,OpenCV,FFI,Wrapper,Processing",BSD-3-Clause,https://github.com/shimat/opencvsharp_2401,26,7,,96,273105,GitHub,shimat/opencvsharp,.NET Framework wrapper for OpenCV ,False,2081.0,BSD-3-Clause,,"c-sharp,computer-vision,dotnet,dotnet-core,dotnet-core2,dotnetcore,dotnetstandard,image-processing,machine-learning,mono,native-bindings,nuget,nuget-packages,opencv,opencvsharp,wrapper",OpenCV,https://github.com/shimat/opencvsharp_2401,github,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
624550,NuGet,FunScript.TypeScript.Binding.winston,FunScript binding for winston (BETA version).,"F#,JavaScript,FunScript",,,3,0,,0,,,,,,,,,,winston,http://www.funscript.info,funscript,winston,winston,['72007'],community,Binding
625683,NuGet,Fabrik.API.Core,Core model and commands for the Fabrik API.,fabrik,,,18,2,,1,,,,,,,,,,Fabrik,https://api.onfabrik.com,onfabrik,fabrik,fabrik,['11169894'],community,Binding
627430,NuGet,FunScript.TypeScript.Binding.tape,FunScript binding for tape (BETA version).,"JavaScript,F#,FunScript",,,1,0,,0,,,,,,,,,,tape,http://www.funscript.info,funscript,tape,tape,['40775741'],community,Binding
631591,NuGet,OpenCvSharp-WithoutDll,OpenCV wrapper for .NET Framework Use https://www.nuget.org/packages/OpenCvSharp3-AnyCPU/ instead,"OpenCV,FFI,Processing,Image,Wrapper",BSD-3-Clause,https://github.com/shimat/opencvsharp_2410,18,2,,9,273105,GitHub,shimat/opencvsharp,.NET Framework wrapper for OpenCV ,False,2081.0,BSD-3-Clause,,"c-sharp,computer-vision,dotnet,dotnet-core,dotnet-core2,dotnetcore,dotnetstandard,image-processing,machine-learning,mono,native-bindings,nuget,nuget-packages,opencv,opencvsharp,wrapper",OpenCV,https://github.com/shimat/opencvsharp_2410,github,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
634464,npm,opencv-atom-shell,Node Bindings to OpenCV. This version is a fork that supports Atom Shell that will hopefully go away in the future.,"opencv,computer,vision,quadrocopter",MIT,https://github.com/peterbraden/node-opencv,1,2,,0,120303,GitHub,peterbraden/node-opencv,OpenCV Bindings for node.js,False,3893.0,MIT,,,OpenCV,https://github.com/peterbraden/node-opencv,github,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
637643,Maven,net.sourceforge.owlapi:owlapi-gwt-parent,"A project that builds a GWT module of a subset of the OWL API. This allows most OWL API model classes to be used in a GWT app on the client, and allows a subset of these to be serialized and sent over the wire.",,GPL-3.0-only,https://github.com/matthewhorridge/owlapi-gwt,2,0,,0,174038,GitHub,matthewhorridge/owlapi-gwt,A GWT compatible subset of the OWL API,False,4.0,LGPL-3.0,,,OWL,https://github.com/matthewhorridge/owlapi-gwt,github,owl,owl,['14048954'],community,Binding
637809,Maven,org.cleartk:cleartk-berkeleyparser,ClearTK wrapper for the Berkeley parser,,GPL-3.0-only,scm:git:https://code.google.com/p/cleartk/,4,0,,0,,,,,,,,,,ClearTK,http://cleartk.googlecode.com/,googlecode,cleartk,cleartk,['2943272'],community,Binding
639330,Maven,org.springframework.cloud:spring-cloud-netflix-sidecar,Integration with Netflix OSS components,,Apache-2.0,scm:git:git://github.com/spring-cloud/spring-cloud-netflix.git/spring-cloud-netflix-sidecar,41,0,,215,172832,GitHub,spring-cloud/spring-cloud-netflix,Integration with Netflix OSS components,False,3833.0,Apache-2.0,,"cloud-native,feign,java,microservices,netflix-eureka,netflix-hystrix,netflix-zuul,netflixoss,ribbon,spring,spring-boot,spring-cloud,spring-cloud-core",Netflix,http://projects.spring.io/spring-cloud/,spring,netflix,netflix,['3727191'],community,Binding
640069,Maven,net.sourceforge.owlapi:owlapi-gwt," A GWT Module that provides client side emulation of certain OWL API classes. Broadly speaking, entities, class expression and axioms are supported. The module also provides GWT serialization mechanism for instances of these classes. ",,GPL-3.0-only,https://github.com/matthewhorridge/owlapi-gwt.git,3,0,,9,174038,GitHub,matthewhorridge/owlapi-gwt,A GWT compatible subset of the OWL API,False,4.0,LGPL-3.0,,,OWL,,,owl,owl,['14048954'],community,Binding
641429,Maven,org.springframework.cloud:spring-cloud-netflix-turbine,Integration with Netflix OSS components,,Apache-2.0,https://github.com/spring-cloud/spring-cloud-netflix.git,40,0,,292,172832,GitHub,spring-cloud/spring-cloud-netflix,Integration with Netflix OSS components,False,3833.0,Apache-2.0,,"cloud-native,feign,java,microservices,netflix-eureka,netflix-hystrix,netflix-zuul,netflixoss,ribbon,spring,spring-boot,spring-cloud,spring-cloud-core",Netflix,http://projects.spring.io/spring-cloud/,spring,netflix,netflix,['3727191'],community,Binding
642943,Maven,org.apache.uima:AlchemyAPIAnnotator,A UIMA set of AEs that wrap Alchemy API services from Orchestr8,,Apache-2.0,scm:svn:http://svn.apache.org/repos/asf/uima/${uimaScmRoot}/tags/uima-addons-2.3.1-rc5/${uimaScmProject},1,1,,54,,,,,,,,,,Alchemy,http://uima.apache.org,apache,alchemy,alchemy,"['13491787', '40396672']",community,Binding
643817,Maven,org.cleartk:cleartk-ml,ClearTK machine learning library and interfaces,,BSD-1-Clause,scm:git:https://code.google.com/p/cleartk/,4,14,,51,,,,,,,,,,ClearTK,http://cleartk.googlecode.com/,googlecode,cleartk,cleartk,['2943272'],community,Binding
644667,Maven,org.jboss.weld:weld-spi,"Weld API, SPI, BOM",,Apache-2.0,scm:git:[email protected]:weld/api.git/weld-spi,86,17,,113,169339,GitHub,weld/api,"Weld API, SPI, BOM",False,40.0,Apache-2.0,,,Weld,http://www.seamframework.org/Weld,seamframework,weld,weld,['21966222'],community,Binding
646741,Maven,org.semanticweb.elk:elk-owlapi,ELK bindings for OWL API,,Apache-2.0,https://github.com/liveontologies/elk-reasoner.git,6,5,,52,4491421,GitHub,liveontologies/elk-reasoner,A Java-based OWL 2 EL reasoner,False,28.0,Apache-2.0,,,OWL,,,owl,owl,['14048954'],community,Binding
647118,Maven,li.moskito:halite,A lightweight API of the HAL specification that provides base types for JAXB generated classes and convenience methods to add links or embedd resources. The JSon support allows create spec conform json output from the JAXB based datatypes and a Jax-RS provider to write message bodies.,,Apache-2.0,https://github.com/moskitoli/halite,3,0,,0,396613,GitHub,inkstand-io/halite,A Java implementation of the Hypertext Application Language for XML and JSon.,False,1.0,Apache-2.0,,,HAL,https://github.com/moskitoli/halite,github,hal,hal,['4824482'],community,Binding
647565,Maven,net.sourceforge.owlapi:owlapi-rdfapi,"The OWL API is a Java API and reference implementation for creating, manipulating and serialising OWL Ontologies. The latest version of the API is focused towards OWL 2",,Apache-2.0,scm:svn:https://owlapi.svn.sourceforge.net/svnroot/owlapi/v3/tags/owlapi-parent-3.3/owlapi-rdfapi,1,0,,0,,,,,,,,,,OWL,http://owlapi.sourceforge.net/owlapi-rdfapi/,sourceforge,owl,owl,['14048954'],community,Binding
649037,Maven,net.sourceforge.owlapi:owlapi-gwt-serialization-tests,"A set of tests that serialize OWL API objects that should be serializable and sends them over the wire. The objects are round tripped from client to server and back to check that they serialize and deserialize correctly, and that the GWT compiler can actually compile the source code used for client side emulation.",,GPL-3.0-only,https://github.com/matthewhorridge/owlapi-gwt.git,2,0,,0,174038,GitHub,matthewhorridge/owlapi-gwt,A GWT compatible subset of the OWL API,False,4.0,LGPL-3.0,,,OWL,,,owl,owl,['14048954'],community,Binding
649534,Maven,com.cueup.hegemon:hegemon-parent,Tools for running the Rhino JS implementation,,Apache-2.0,https://github.com/Cue/hegemon-example,2,0,,0,173032,GitHub,Cue/hegemon-example,,False,1.0,,,,Rhino,https://github.com/cue/hegemon,github,rhino,rhino,['37544204'],community,Binding
649770,Maven,net.sourceforge.owlapi:owlapi-compatibility,OWL API main repository,,GPL-3.0-only,https://github.com/owlcs/owlapi.git,48,1,,0,173418,GitHub,owlcs/owlapi,OWL API main repository,False,444.0,,,,OWL,,,owl,owl,['14048954'],community,Binding
655902,npm,node-librarycloud-api,This is a node.js consumer for the library cloud api.,"library,cloud,librarycloud,loc,harvard,api",MIT,https://github.com/tcoyze/node-librarycloud-api,4,1,,0,281072,GitHub,tcoyze/node-librarycloud-api,This is a Node.js package that consumes Harvard's LibraryCloud api,False,0.0,MIT,,,cloud,https://github.com/tcoyze/node-librarycloud-api,github,cloud,cloud,"['24218227', '36852984']",community,Binding
658049,Rubygems,dlib,Ruby bindings of dlib C++ library.,,MIT,https://github.com/ruby-dlib/ruby-dlib,13,0,,0,3057276,GitHub,ruby-dlib/ruby-dlib,"Ruby binding of dlib C++ library. Currently, focus on face detection.",False,25.0,MIT,,"computer-vision,dlib,face-detector,image-processing,ruby",dlib,https://github.com/ruby-dlib/ruby-dlib,github,dlib,dlib,"['891695', '20356305']",community,Binding
660294,CPAN,C-sparse,Perl binding to Linux's Sparse,,"Artistic-1.0-Perl,BSD-3-Clause",,6,0,,0,,,,,,,,,,Sparse,,,sparse,sparse,['24266852'],community,Binding
664112,CPAN,WWW-Netflix-API,Interface for Netflix's API,,Other,,11,0,,0,,,,,,,,,,Netflix,,,netflix,netflix,['3727191'],community,Binding
667604,CPAN,Blitz,Perl module for API access to Blitz,,Artistic-1.0-Perl,,1,0,,0,,,,,,,,,,Blitz,,,blitz,blitz,['12454418'],community,Binding
669037,CPAN,Text-Darts,Perl interface to DARTS by Taku Kudoh,,Other,,7,0,,0,,,,,,,,,,DARTS,,,darts,darts,['36863929'],community,Binding
671525,CPAN,CGI-Application-Plugin-CHI,CGI-App plugin for CHI caching interface,,Artistic-1.0-Perl,,3,0,,0,,,,,,,,,,CHI,,,chi,chi,['19979612'],community,Binding
678625,CPAN,IPC-Door,Interface to Solaris (>= 2.6) Door library,,Other,,8,0,,0,,,,,,,,,,Solaris,,,solaris,solaris,['38955173'],community,Binding
682233,CPAN,SOAP-Lite-ActiveWorks,Server/Client side ActiveWorks support for SOAP::Lite for Perl,,Other,,2,0,,0,,,,,,,,,,SOAP::Lite,,,soap lite,soaplite,['36006985'],community,Binding
682378,CPAN,RenderMan,A RenderMan binding as a Perl 5.6 module,,Other,,4,0,,0,,,,,,,,,,RenderMan,,,renderman,renderman,['20752412'],community,Binding
687710,CRAN,h2o,R Interface for 'H2O',,Apache-2.0,https://github.com/h2oai/h2o-3,29,12,,62,527263,GitHub,h2oai/h2o-3,"Open Source Fast Scalable Machine Learning Platform For Smarter Applications: Deep Learning, Gradient Boosting & XGBoost, Random Forest, Generalized Linear Modeling (Logistic Regression, Elastic Net), K-Means, PCA, Stacked Ensembles, Automatic Machine Learning (AutoML), etc.",False,4513.0,Apache-2.0,,"automatic,big-data,data-science,deep-learning,distributed,ensemble-learning,gbm,gpu,h2o,hadoop,java,machine-learning,multi-threading,naive-bayes,opensource,pca,python,r,random-forest,spark",H2O,https://github.com/h2oai/h2o-3,github,h2o,h2o,['14294801'],community,Binding
687838,CRAN,SAENET,A Stacked Autoencoder Implementation with Interface to 'neuralnet',,GPL-3.0,,2,0,,0,,,,,,,,,,neuralnet,http://ufldl.stanford.edu/wiki/index.php/Stacked_Autoencoders,stanford,neuralnet,neuralnet,"['3652110', '6586968', '12284588', '22826813', '27006604']",community,Binding
690718,CRAN,RApiSerialize,R API Serialization,,"CNRI-Python-GPL-Compatible,CNRI-Python-GPL-Compatible",,1,3,,6,,,,,,,,,,R,,,r,r,['4689246'],community,Binding
691350,CRAN,RVowpalWabbit,R Interface to the Vowpal Wabbit,,"CNRI-Python-GPL-Compatible,CNRI-Python-GPL-Compatible",https://github.com/JohnLangford/vowpal_wabbit,11,0,,0,852009,GitHub,VowpalWabbit/vowpal_wabbit,"Vowpal Wabbit is a machine learning system which pushes the frontier of machine learning with techniques such as online, hashing, allreduce, reductions, learning2search, active, and interactive learning.",False,6767.0,Other,,"active-learning,c-plus-plus,contextual-bandits,cpp,learning-to-search,machine-learning,online-learning,reinforcement-learning",Vowpal Wabbit,https://github.com/JohnLangford/vowpal_wabbit/ http://dirk.eddelbuettel.com/code/rcpp.html,github,vowpal wabbit,vowpalwabbit,"['852009', '39434262']",same_repo,Binding
692086,CRAN,mallet,A wrapper around the Java machine learning tool MALLET,,MIT,,1,3,,18,,,,,,,,,,MALLET,,,mallet,mallet,"['914914', '3132343']",community,Binding
693793,PyPI,pyramid_keystone,OpenStack keystone bindings for Pyramid,web wsgi pyramid keystone,MIT,https://github.com/bertjwregeer/pyramid_keystone,1,0,,0,339957,GitHub,bertjwregeer/pyramid_keystone,OpenStack Keystone bindings for Pyramid,False,0.0,ISC,,,Pyramid,https://github.com/bertjwregeer/pyramid_keystone,github,pyramid,pyramid,['10568701'],community,Binding
696244,npm,hapi-relax,Wraps nano's API as hapi server methods and seamlessly authenticates with cookie,"hapi,hapi.js,couchdb,couch,nano,cookie,authentication",BSD-2-Clause,https://github.com/accosine/hapi-relax,5,2,,1,341326,GitHub,accosine/hapi-relax,Wraps nano's API as hapi server methods and seamlessly authenticates with CouchDB via cookie,False,6.0,BSD-2-Clause,,,nano,https://github.com/accosine/hapi-relax,github,nano,nano,['3204475'],community,Binding
701925,Maven,net.sourceforge.owlapi:owlapi-testsupport,OWL API main repository,,GPL-3.0-only,scm:git:git://github.com/owlcs/owlapi.git/owlapi-testsupport,1,0,,0,173418,GitHub,owlcs/owlapi,OWL API main repository,False,444.0,,,,OWL,,,owl,owl,['14048954'],community,Binding
714599,npm,node-elm-compiler,A Node.js interface to the Elm compiler binaries.,"elm,compiler,node",BSD-3-Clause,https://github.com/rtfeldman/node-elm-compiler,43,61,,598,352063,GitHub,rtfeldman/node-elm-compiler,A Node.js interface to the Elm compiler binaries.,False,144.0,BSD-3-Clause,,,Elm,https://github.com/rtfeldman/node-elm-compiler,github,elm,elm,"['186221', '16190324']",community,Binding
715413,Pub,forge,Dart wrapper of the Forge library for TLS. ,,BSD-3-Clause,https://github.com/burnnat/forge.dart,1,0,,0,352621,GitHub,burnnat/forge.dart,Dart wrapper of the Forge library for TLS,False,0.0,BSD-3-Clause,,,Forge,https://github.com/burnnat/forge.dart,github,forge,forge,['23506943'],community,Binding
715536,npm,godeep-sails-api,a Sails implementation of the GoDeep API,,,https://bitbucket.org/godeepmobile/godeep-sails-server,1,2,,0,,,,,,,,,,GoDeep,,,godeep,godeep,['30851242'],community,Binding
717074,Clojars,reagent-forms,data binding library for Reagent,,EPL-1.0,https://github.com/reagent-project/reagent-forms,80,0,,416,353802,GitHub,reagent-project/reagent-forms,Bootstrap form components for Reagent,False,293.0,,,"clojurescript,forms,reagent,web",Reagent,,,reagent,reagent,['28705875'],community,Binding
717175,Clojars,clj-owlapi,OWL API wrapper for Clojure,,EPL-1.0,https://github.com/stain/clj-owlapi,2,0,,4,353880,GitHub,stain/clj-owlapi,OWL API wrapper for Clojure,False,5.0,EPL-1.0,,,OWL,,,owl,owl,['14048954'],community,Binding
717202,Clojars,marcliberatore.mallet-lda,a clojure wrapper of the LDA topic modeling implementation in MALLET,,EPL-1.0,https://github.com/marcliberatore/mallet-lda,2,0,,4,353900,GitHub,marcliberatore/mallet-lda,a Clojure wrapper over the LDA topic modeling implementation in MALLET,False,7.0,EPL-1.0,,,LDA,,,lda,lda,['138606'],community,Binding
717226,Clojars,jubot,Chatbot framework in Clojure,,EPL-1.0,https://github.com/liquidz/jubot,16,0,,3,353918,GitHub,liquidz/jubot,Chatbot framework in Clojure,False,54.0,EPL-1.0,,,Chatbot,,,chatbot,chatbot,"['3977012', '15262198', '19073790', '25241511', '31772349']",community,Binding
718167,Clojars,chisel,Do LDA topic modeling using MALLET via the Java API,,,,1,0,,1,,,,,,,,,,MALLET,,,mallet,mallet,"['914914', '3132343']",community,Binding
718848,Clojars,schmetrics,Clojure Bindings for metrics,,Apache-2.0,https://github.com/joshrotenberg/schmetrics,7,0,,1,355085,GitHub,joshrotenberg/schmetrics,Clojure wrapper around Coda Hale's metrics (3.x),False,2.0,Apache-2.0,,,metrics,http://joshrotenberg.com/schmetrics/,joshrotenberg,metrics,metrics,"['186909', '29729566']",community,Binding
718859,Clojars,obb-rules-api,JSON/REST API for obb-rules,,MIT,https://github.com/orionsbelt-battlegrounds/obb-rules-api,2,0,,0,355094,GitHub,orionsbelt-battlegrounds/obb-rules-api,HTTP JSON interface for obb-rules,False,2.0,MIT,,,obb-rules,http://rules.api.orionsbelt.eu,orionsbelt,obb rules,obbrules,['356789'],same_repo_owner,Binding
721346,Clojars,vhector,"Clojure wrapper for Hector, Apache Cassandra high level client",,,https://github.com/damienlepage/vhector,4,0,,0,356951,GitLab,halogenOS-dependencies/vendor_qcom-opensource_data-ipa-cfg-mgr,,False,0.0,,,,Hector,,,hector,hector,['197465'],community,Binding
721363,Clojars,shaman,clojure client for predictionIO API,,EPL-1.0,https://github.com/timgluz/shaman,2,0,,1,356965,GitHub,timgluz/shaman,clojure client for Prediction.IO,False,1.0,EPL-1.0,,,predictionIO,,,predictionio,predictionio,['573443'],community,Binding
721891,Clojars,synaptic,Neural Networks in Clojure,,EPL-1.0,https://github.com/japonophile/synaptic,2,0,,0,357342,GitHub,japonophile/synaptic,Neural Networks in Clojure,False,82.0,EPL-1.0,,,Neural Networks,,,neural networks,neuralnetworks,"['844820', '20141962']",community,Binding
722401,Clojars,clojure-nltk,Python's NLTK for Clojure (interop / partial port).,,,https://github.com//,6,0,,0,,,,,,,,,,NLTK,,,nltk,nltk,['845081'],community,Binding
725317,CocoaPods,GamepadBridge,Brings Gamepad API support to iOS WebKit,,MIT,https://github.com/conradev/GamepadBridge,1,0,,0,360337,GitHub,conradev/GamepadBridge,HTML5 Gamepad API support for iOS,False,7.0,MIT,,,Gamepad,https://github.com/conradev/GamepadBridge,github,gamepad,gamepad,['38470828'],community,Binding
727060,CocoaPods,mango-ios,This is the iOS SDK that allows interaction with Mango API.,,MIT,https://github.com/mango/mango-ios,1,0,,0,361930,GitHub,Mango/mango-ios,This is the iOS SDK that allows interaction with Mango API,False,5.0,MIT,,,Mango,https://developers.getmango.com,getmango,mango,mango,['19555071'],community,Binding
727849,CocoaPods,NovaSDK,SDK to control Nova off-camera flash hardware.,,MIT,https://github.com/novaphotos/nova-ios-sdk,7,0,,2,362667,GitHub,novaphotos/nova-ios-sdk,Official iOS SDK for Nova BluetoothLE iPhone flash,False,10.0,MIT,,,Nova,https://github.com/novaphotos/nova-ios-sdk,github,nova,nova,['12196552'],community,Binding
728265,CocoaPods,OpenCV,OpenCV (Computer Vision) for iOS,,BSD-3-Clause,,29,0,,193,,,,,,,,,,OpenCV,https://opencv.org/,opencv,opencv,opencv,"['851991', '852587', '8250162']",same_homepage_url,Binding
729876,CocoaPods,STSpriteKit,SpriteKit helpers and additions. Parallax Node,,MIT,https://github.com/iSofTom/STSpriteKit,5,0,,0,364522,GitHub,iSofTom/STSpriteKit,SpriteKit helpers and additions,False,40.0,MIT,,,Parallax,https://github.com/iSofTom/STSpriteKit,github,parallax,parallax,['36931043'],community,Binding
730851,CocoaPods,ViSearch,A Visual Search API solution.,,MIT,https://github.com/visenze/visearch-sdk-ios,22,0,,0,365429,GitHub,visenze/visearch-sdk-ios,ViSearch SDK for IOS,False,9.0,MIT,,,Visual Search,https://github.com/visenze/visearch-sdk-ios,github,visual search,visualsearch,['20396416'],community,Binding
733495,npm,h2o.js,Node.js bindings to H2O,"machine learning,predictive analytics,predictive modeling,data mining,computational statistics,statistics,statistical learning,clustering,classification,regression,deep learning",MIT,https://github.com/h2oai/h2o.js,3,2,,0,367352,GitHub,h2oai/h2o.js,"Node.js bindings to H2O, the open-source prediction engine for big data science.",False,18.0,MIT,,,H2O,https://github.com/h2oai/h2o.js,github,h2o,h2o,['14294801'],community,Binding
734721,Rubygems,baobab,ID3 decision trees for machine learning in Ruby,,MIT,https://github.com/jleeothon/baobab,3,0,,0,368129,GitHub,jleeothon/baobab,An ID3 implementation for machine learning applications in Ruby,False,0.0,MIT,,,ID3,https://github.com/jleeothon/baobab,github,id3,id3,['4932403'],community,Binding
737016,PyPI,gp-learn,"Genetic Programming in Python, with a scikit-learn like API",,BSD-3-Clause,,0,0,,0,,,,,,,,,,scikit-learn,UNKNOWN,UNKNOWN,scikit learn,scikitlearn,['845049'],community,Binding
737491,CPAN,Catalyst-Runtime,The Catalyst Framework Runtime,,Artistic-1.0-Perl,http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits/Catalyst-Runtime.git;a=summary,177,261,,0,,,,,,,,,,Catalyst,http://dev.catalyst.perl.org/,perl,catalyst,catalyst,"['36671021', '40313495']",community,Binding
737769,PyPI,gplearn,"Genetic Programming in Python, with a scikit-learn inspired API",,BSD-3-Clause,https://github.com/trevorstephens/gplearn,5,0,,7,402861,GitHub,trevorstephens/gplearn,"Genetic Programming in Python, with a scikit-learn inspired API",False,742.0,BSD-3-Clause,,"genetic-programming,machine-learning,python,scikit-learn,symbolic-regression",scikit-learn,https://github.com/trevorstephens/gplearn,github,scikit learn,scikitlearn,['845049'],community,Binding
738194,npm,ludwig-api,"RESTful API for Ludwig, the collaborative testing tool",test,AGPL-3.0,https://github.com/sgmap/ludwig-api,10,0,,3,370635,GitHub,betagouv/ludwig-api,Ludwig REST API,False,0.0,AGPL-3.0,Unmaintained,,Ludwig,https://github.com/sgmap/ludwig-api,github,ludwig,ludwig,['37953612'],community,Binding
738965,PyPI,pyramid_jinja2,Jinja2 template bindings for the Pyramid web framework,web wsgi pylons pyramid,Other,https://github.com/Pylons/pyramid_jinja2,36,15,,253,371170,GitHub,Pylons/pyramid_jinja2,Jinja2 templating system bindings for the Pyramid web framework,False,69.0,Other,,,Pyramid,https://github.com/Pylons/pyramid_jinja2,github,pyramid,pyramid,['10568701'],community,Binding
740131,Packagist,tomphp/hal-client,A client library for navigating HAL APIs,"rest,api,client,hal,hypermedia,HATEOAS",MIT,https://github.com/tomphp/hal-client,2,0,,0,371984,GitHub,tomphp/hal-client,A client library for navigating HAL APIs. ,False,2.0,MIT,,,HAL,,,hal,hal,['4824482'],community,Binding
740685,PyPI,marshmallow-form,a wrapper of marshmallow for form library like behavior,"marshmallow,form",Other,https://github.com/podhmo/marshmallow-form,2,0,,3,372246,GitHub,podhmo/marshmallow-form,(this is broken package. not support latest marshmallow) a wrapper of marshmallow for form library like behavior,False,7.0,,,,marshmallow,https://github.com/podhmo/marshmallow-form,github,marshmallow,marshmallow,['30144092'],community,Binding
746065,npm,ember-rosie,Ember addon for the Rosie factory library,ember-addon,MIT,https://github.com/ebryn/ember-rosie,1,0,,0,375297,GitHub,ebryn/ember-rosie,An Ember addon for the Rosie factory library,False,4.0,MIT,,,Rosie,https://github.com/ebryn/ember-rosie,github,rosie,rosie,['15919748'],community,Binding
746094,npm,opencv-copy,Node Bindings to OpenCV,"opencv,computer,vision,quadrocopter",MIT,https://github.com/oneminute/node-opencv,6,2,,0,375321,GitHub,oneminute/node-opencv,OpenCV Bindings for node.js,True,3.0,MIT,,,OpenCV,https://github.com/oneminute/node-opencv,github,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
749074,npm,east-mysql,"MySQL adapter for ""east"" (node.js database migration tool)","database,db,migrate,mysql,east",MIT,https://github.com/riggerthegeek/east-mysql,3,1,,0,377216,,,,,,,,,east,https://github.com/riggerthegeek/east-mysql,github,east,east,"['26771604', '37183832']",community,Binding
753650,PyPI,nefertari,REST API framework for Pyramid,web wsgi bfg pylons pyramid rest api elasticsearch,Other,https://github.com/ramses-tech/nefertari,17,0,,22,399549,GitHub,ramses-tech/nefertari,Nefertari is a REST API framework sitting on top of Pyramid and ElasticSearch,False,52.0,Apache-2.0,,"pyramid,python",Pyramid,https://github.com/ramses-tech/nefertari,github,pyramid,pyramid,['10568701'],community,Binding
753776,npm,tapef,Tape API with Mocha's error output,"tape,test,testing,tap",MIT,https://github.com/timoxley/tapef,2,3,,2,380200,GitHub,timoxley/tapef,Tape API with Mocha's error output. A hack.,False,2.0,MIT,,,Tape,https://github.com/timoxley/tapef,github,tape,tape,['40775741'],community,Binding
757267,npm,robin-js-sdk,A JavaScript SDK to communicate with the Robin platform.,,Apache-2.0,https://github.com/robinpowered/robin-js-sdk-public,2,1,,6,382434,GitHub,robinpowered/robin-js-sdk-public,Robin Javascript SDK,False,1.0,Apache-2.0,,"javascript,robin,sdk",Robin,https://github.com/robinpowered/robin-js-sdk-public,github,robin,robin,['38166515'],community,Binding
771107,Rubygems,forte_ruby,Ruby gem for Forte API,,MIT,,3,0,,0,,,,,,,,,,Forte,,,forte,forte,['40086441'],community,Binding
774079,Pub,electron,Electron wrapper for dart,,BSD-3-Clause,https://github.com/grimshield/electron.dart,4,0,,5,393364,GitHub,rwl/electron,Dart library for Electron desktop applications,False,16.0,BSD-3-Clause,,,Electron,https://gitlab.com/grimshield/electron.dart,gitlab,electron,electron,['25543319'],community,Binding
785019,npm,grunt-electron,Package Electron apps,"gruntplugin,electron,package,packager,build,distribute,app,apps",MIT,https://github.com/sindresorhus/grunt-electron,13,10,,291,455315,GitHub,sindresorhus/grunt-electron,Package Electron apps,False,66.0,MIT,,,Electron,https://github.com/sindresorhus/grunt-electron,github,electron,electron,['25543319'],community,Binding
788920,Cargo,opencv,Rust bindings for OpenCV,"opencv,vision",MIT,https://github.com/twistedfall/opencv-rust,67,2,,8,853046,GitHub,twistedfall/opencv-rust,Rust bindings for OpenCV 3 & 4,False,298.0,MIT,,,OpenCV,,,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
788996,npm,basic-winston,a basic wrapper for winston,"winston,logger",MIT,https://github.com/feliun/basic-winston,1,1,,0,458282,GitHub,feliun/basic-winston,A basic wrapper for winston,False,0.0,,,,winston,https://github.com/feliun/basic-winston,github,winston,winston,['72007'],community,Binding
790062,PyPI,python-fuelclient,Command line interface and Python API wrapper for Fuel.,,Apache-2.0,,8,0,,35,,,,,,,,,,Fuel,https://docs.fuel-infra.org/fuel-dev,fuel-infra,fuel,fuel,['830048'],community,Binding
791204,npm,angular-hal-collection,Provides for interacting with HAL collections in AngularJS,,MIT,https://github.com/mrkrstphr/angular-hal-collection,1,0,,2,460256,GitHub,mrkrstphr/angular-hal-collection,Provides for interacting with HAL collections in AngularJS,False,1.0,MIT,,,HAL,https://github.com/mrkrstphr/angular-hal-collection,github,hal,hal,['4824482'],community,Binding
793371,Packagist,edgemailer/edgemailer-php,PHP library for interacting with the Edgeconnect HTTP API,"rest,api,edgeconnect",MIT,https://github.com/edgemailer/edgemailer-php,5,0,,0,463150,GitHub,EdgeConnect/edgeconnect-php,PHP library for interacting with the Edgemailer HTTP API.,False,0.0,,,,Edgeconnect,,,edgeconnect,edgeconnect,['37753306'],community,Binding
794614,npm,farmer-cli,Farmer API client (desktop tool),"docker,farmer client,farmer,paas,container",BSD-2-Clause,https://github.com/majidgolshadi/farmer-cli,13,0,,0,483565,GitHub,farmer-project/farmer-cli,Command-line client for managing a Farmer server,False,10.0,MIT,,,Farmer,https://github.com/majidgolshadi/farmer-cli,github,farmer,farmer,['41230434'],community,Binding
795068,Rubygems,bio-picard,API of Picard tool,,GPL-3.0,,11,0,,0,,,,,,,,,,Picard,http://rubygems.org/gems/bio-picard,rubygems,picard,picard,['19752995'],community,Binding
796486,npm,granular-logger,A Winston wrapper to allow time-based log files,"logging,log-rotation,winston",MIT,https://github.com/iwhitfield/granular-logger,1,3,,0,1203391,GitHub,whitfin/granular-logger,A Winston wrapper to allow time-based log files,False,0.0,MIT,,,Winston,https://github.com/iwhitfield/granular-logger,github,winston,winston,['72007'],community,Binding
805114,Rubygems,footy,A simple plugin for accessing your football API @ football-api.com,,MIT,https://github.com/laiqjafri/Footy,2,0,,0,476597,GitHub,laiqjafri/Footy,A gem to access API @ football-api.com in ruby style,False,1.0,,,,football,http://github.com/laiqjafri/Footy,github,football,football,"['35900555', '38986496']",community,Binding
806056,PyPI,idalink,An interface to the insides of IDA!,,GPL-3.0-only,https://github.com/zardus/idalink,3,1,,9,3700469,GitHub,zardus/idalink,Some glue facilitating remote use of IDA (the Interactive DisAssembler) Python API.,False,47.0,BSD-2-Clause,,,IDA,https://github.com/zardus/idalink,github,ida,ida,['5464487'],community,Binding
808257,npm,methal,Wrapper around the HAL API.,,ISC,https://github.com/aloukili/MetHAL,8,2,,4,482567,GitHub,aloukili/MetHAL,module qui interroge l'api HAL du dépôts de metadonnée,False,0.0,,Removed,,HAL,https://github.com/aloukili/MetHAL,github,hal,hal,['4824482'],community,Binding
811100,npm,winston-safe,A wrapper on Winston to aid prevention of PII issues,"winston,pii,WTF,FML",MIT,[email protected]:npm-enterprise/winston-safe.git,2,0,,0,,,,,,,,,,Winston,,,winston,winston,['72007'],community,Binding
815206,npm,vw-stream,Vowpal Wabbit Node.js Stream,"Vowpal Wabbit,Machine Learning,Stochastic Gradient Descent,Online Learning",MIT,https://github.com/someben/vw-stream,7,1,,0,804308,GitHub,someben/vw-stream,Vowpal Wabbit wrapper for Node.js using streams,False,4.0,MIT,,,Vowpal Wabbit,https://github.com/someben/vw-stream,github,vowpal wabbit,vowpalwabbit,"['852009', '39434262']",community,Binding
817461,PyPI,vindinium,Python client for vindinium.,vindinium game python,MIT,,3,0,,0,,,,,,,,,,vindinium,https://guithub.com/renatopp/vindinium-python/releases,guithub,vindinium,vindinium,['924715'],community,Binding
820678,npm,fann-lite,pure javascript version of fann (fast artificial neural net library) with zero npm-dependencies (compiled from emscripten),"ann,fann,net,neural-net,nn",MIT,https://github.com/kaizhu256/node-fann-lite,5,1,,0,12048992,GitHub,kaizhu256/node-fann-lite,pure javascript version of fann (fast artificial neural net library) with zero npm-dependencies (compiled from emscripten),False,2.0,,,,fann,https://github.com/kaizhu256/node-fann-lite,github,fann,fann,"['852353', '27851746']",community,Binding
822137,npm,infer-bin,"Binary wrapper for Infer - A static analyzer for Java, C and Objective-C","cli-app,cli,binary,infer,facebook,wrapper,static,analyzer,analysis,detect,bugs,android,ios,java,c,objective-c",MIT,https://github.com/sindresorhus/infer-bin,5,1,,0,811394,GitHub,sindresorhus/infer-bin,"Binary wrapper for Infer - A static analyzer for Java, C and Objective-C",False,15.0,MIT,Unmaintained,deprecated,Infer,https://github.com/sindresorhus/infer-bin,github,infer,infer,"['30583387', '34137446', '36743724']",community,Binding
823582,npm,node-red-node-alchemy-sentiment,Node-RED node to access alchemy API for sentiment analsyis of text,"node-red,alchemyAPI,sentiment,text analysis",Apache-2.0,https://hub.jazz.net/git/smc2/sqldbdashdb,4,2,,0,,,,,,,,,,alchemy,,,alchemy,alchemy,"['13491787', '40396672']",community,Binding
828010,Maven,com.fredhopper.environment:environment-api,Environment API,,Apache-2.0,https://github.com/sdl/environment-api,3,0,,1,817736,GitHub,sdl/environment-api,Environment API,False,1.0,Apache-2.0,,,Environment,https://github.com/sdl/environment-api,github,environment,environment,['12467565'],community,Binding
833971,PyPI,chainer-cuda-deps,Install dependent packages to use Chainer on CUDA,,Other,,3,0,,2,,,,,,,,,,Chainer,http://chainer.org/,chainer,chainer,chainer,['845458'],community,Binding
834005,PyPI,Owlready,"A module for ontology-oriented programming in Python: load OWL 2.0 ontologies as Python objects, modify them, save to OWL XML, and perform reasoning via HermiT. It can also generate dialog boxes for editing instances.",,LGPL-3.0+,https://bitbucket.org/jibalamy/owlready,5,0,,5,24641031,Bitbucket,jibalamy/owlready,"A Python module for ontology-oriented programming: load OWL ontologies as Python objects, modify them, save to OWL XML, and perform reasoning via HermiT. It can also generate dialog boxes for editing instances.",False,,,,,OWL,https://bitbucket.org/jibalamy/owlready,bitbucket,owl,owl,['14048954'],community,Binding
834563,Clojars,wilson,Opinionated Reagent bindings for Bootstrap components.,,EPL-1.0,,29,0,,0,829523,GitHub,RackSec/wilson,Opinionated Reagent tools for Bootstrap,False,6.0,EPL-1.0,,,Reagent,,,reagent,reagent,['28705875'],community,Binding
836895,PyPI,cvimage,Chainable wrapper for OpenCV's python bindings.,"opencv,chainable",Other,https://github.com/kremonte/cvimage,2,0,,1,830779,GitHub,danrouse/cvimage,Chainable python class for OpenCV image operations,False,1.0,MIT,,,OpenCV,https://github.com/kremonte/cvimage,github,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
844128,Clojars,reagent-reforms,Reforms bindings for Reagent.,,EPL-1.0,https://github.com/bilus/reagent-reforms,8,0,,6,835922,GitHub,bilus/reagent-reforms,Reagent bindings for Reforms.,False,10.0,EPL-1.0,,,Reagent,,,reagent,reagent,['28705875'],community,Binding
844528,Cargo,stemmer,"Stemming library for Rust, using bindings to Snowball C implementation",,BSD-2-Clause,https://github.com/lady-segfault/stemmer-rs,6,3,,9,836535,GitHub,lise-henry/stemmer-rs,"Stemming library for Rust, using bindings to Snowball C implementation",False,7.0,,,,Snowball,https://github.com/lise-henry/stemmer-rs,github,snowball,snowball,['22783638'],community,Binding
846821,PyPI,marshmallow-mongoengine,Mongoengine integration with the marshmallow (de)serialization library,mongoengine marshmallow,MIT,https://github.com/touilleMan/marshmallow-mongoengine,24,0,,7,840646,GitHub,touilleMan/marshmallow-mongoengine,Mongoengine integration with marshmallow,False,23.0,MIT,,,marshmallow,https://github.com/touilleMan/marshmallow-mongoengine,github,marshmallow,marshmallow,['30144092'],community,Binding
847312,Packagist,eos-project/phpclient,Eos PHP client,,MIT,https://github.com/eos-project/phpclient,1,0,,0,842345,GitHub,eos-project/phpclient,Eos PHP client package,False,0.0,,,,Eos,,,eos,eos,['2700852'],community,Binding
856884,npm,netflix,Netflix unofficial API,,MIT,,2,2,,0,,,,,,,,,,Netflix,,,netflix,netflix,['3727191'],community,Binding
877909,Rubygems,dandelionapi,"Ruby Gem for Dandelion API service. Available endpoint: Entity Extraction, Text Similarity and Language Detection",,MIT,https://github.com/zenkay/dandelionapi-ruby,4,0,,0,902505,GitHub,zenkay/dandelionapi-ruby,"Ruby Gem for Dandelion API, Semantic Text Analytics as a service",False,4.0,MIT,,,Dandelion,https://github.com/zenkay/dandelionapi-ruby,github,dandelion,dandelion,['36159920'],community,Binding
879657,Packagist,zenkay/dandelionapi,"PHP wrapper for Dandelion API, Semantic Text Analytics as a service",,MIT,https://github.com/zenkay/dandelionapi-php,0,0,,0,903285,GitHub,zenkay/dandelionapi-php,"PHP wrapper for Dandelion API, Semantic Text Analytics as a service",False,1.0,,,,Dandelion,https://packagist.org/packages/zenkay/dandelionapi,packagist,dandelion,dandelion,['36159920'],community,Binding
880872,npm,dandelionapi,Javascript Package for Dandelion API service,"entity,sentiment",MIT,https://github.com/zenkay/dandelionapi-js,1,1,,0,5550312,GitHub,zenkay/dandelionapi-node,"Node Package for Dandelion API, Semantic Text Analytics as a service",False,1.0,,,,Dandelion,https://github.com/zenkay/dandelionapi-js,github,dandelion,dandelion,['36159920'],community,Binding
885054,PyPI,pyculiarity,A Python port of Twitter's AnomalyDetection R Package.,data anomaly detection pandas timeseries,GPL-2.0+,https://github.com/nicolasmiller/pyculiarity,6,0,,1,909001,GitHub,zrnsm/pyculiarity,A Python port of Twitter's AnomalyDetection R Package,False,264.0,GPL-3.0,,,AnomalyDetection,https://github.com/nicolasmiller/pyculiarity,github,anomalydetection,anomalydetection,"['36511641', '40722542']",community,Binding
886145,Rubygems,metrics-json-jars,Gem package of Dropwizard's Metrics JSON serialization package (https://dropwizard.github.io/metrics/3.1.0/manual/json/),,Apache-2.0,https://github.com/iconara/jar-gems,1,1,,1,39868,GitHub,iconara/jar-gems,Gems of jars,False,5.0,,,,Metrics,https://github.com/iconara/jar-gems,github,metrics,metrics,"['186909', '29729566']",community,Binding
891412,npm,uupaa.gamepad.js,Easy way to using GamePad API,"GamePad,uupaa,WebModule,Unstable",MIT,https://github.com/uupaa/GamePad.js,4,2,,1,921694,GitHub,uupaa/GamePad.js,Easy way to using GamePad API.,False,3.0,MIT,,,GamePad,https://github.com/uupaa/GamePad.js,github,gamepad,gamepad,['38470828'],community,Binding
891527,npm,tesseract.js-core,Tesseract C++ API in Pure Javascript,"ocr,tesseract,javascript,emscripten,port,c++,api,recognize,text,computer,vision,vision,language,multilingual,english",Apache-2.0,https://github.com/naptha/tesseract.js-core,16,7,,179,921790,GitHub,naptha/tesseract.js-core,Emscripten port of Tesseract C++ API,False,63.0,Apache-2.0,,,Tesseract,https://github.com/naptha/tesseract.js-core,github,tesseract,tesseract,['852560'],community,Binding
894187,npm,serialport-electron,Temporary fork to support Electron (to be deprecated),,MIT,https://github.com/ddm/node-serialport,9,4,,10,922752,GitHub,ddm/node-serialport,"Node.js package to access serial ports for reading and writing OR Welcome your robotic JavaScript overlords. Better yet, program them!",True,13.0,MIT,,,Electron,https://github.com/ddm/node-serialport,github,electron,electron,['25543319'],community,Binding
897548,PyPI,planet,Planet API Client,planet api client,Apache-2.0,https://github.com/planetlabs/planet-client-python,23,1,,26,924430,GitHub,planetlabs/planet-client-python,Python client for Planet APIs,False,136.0,Apache-2.0,,,Planet,https://github.com/planetlabs/planet-client-python,github,planet,planet,"['23682817', '38702483']",community,Binding
897976,npm,susi-nodejs,A nodejs client for SUSI,"susi,appserver,iot",MIT,https://github.com/trusch/susi-nodejs,3,0,,0,5866285,GitHub,trusch/susi-nodejs,A nodejs client for SUSI,False,0.0,,,,SUSI,https://github.com/trusch/susi-nodejs,github,susi,susi,['38284244'],community,Binding
898090,Packagist,robinhq/api,PHP wrapper for the ROBIN API,,GPL-3.0,https://github.com/ROBINHQ-COM/Api,6,2,,2,924990,GitHub,graciousagency/Api,PHP wrapper for the ROBIN API,False,1.0,,,,ROBIN,,,robin,robin,['38166515'],community,Binding
898091,Packagist,robinhq/support,Support library for the ROBIN API packages,,GPL-3.0,https://github.com/ROBINHQ-COM/Support,2,2,,3,924991,GitHub,ROBINHQ-COM/Support,Support library for the ROBIN API packages,False,0.0,,,,ROBIN,,,robin,robin,['38166515'],community,Binding
904253,npm,susi-events-nodejs,A nodejs implementation of the SUSI interface,"susi,appserver,iot",MIT,https://github.com/webvariants/susi-events-nodejs,3,0,,0,931989,GitHub,webvariants/susi-events-nodejs,A local eventsystem implementing the susi interface,False,1.0,,,,SUSI,https://github.com/webvariants/susi-events-nodejs,github,susi,susi,['38284244'],community,Binding
904543,Rubygems,football_api, Interface with football-api ,,MIT,,5,0,,0,,,,,,,,,,football,,,football,football,"['35900555', '38986496']",community,Binding
907730,npm,atm-api,atm api,"atm,api",ISC,https://github.com/atmjs/atm-api,14,2,,0,938182,GitHub,atmjs/atm-api,atm api,False,0.0,,,,atm,https://github.com/atmjs/atm-api,github,atm,atm,['31121259'],community,Binding
916403,npm,react-waterfall,React store built on top of [the new context API](https://reactjs.org/docs/context.html),"react,redux,context,store",MIT,https://github.com/didierfranc/react-waterfall,45,3,,12,33161759,GitHub,didierfranc/react-waterfall,React store built on top of the new context API,False,1271.0,MIT,,"context,flux,javascript,reactjs,redux",context,https://github.com/didierfranc/react-waterfall,github,context,context,['26252700'],community,Binding
922870,Packagist,gravityrd/php-client,PHP client to access Gravity R&D,"client,php-client,gravityrd,yusp",Apache-2.0,https://github.com/gravityrd/php-client,3,0,,0,956178,GitHub,gravityrd/php-client,Php client,False,3.0,Other,,,Gravity,,,gravity,gravity,['28024511'],community,Binding
923838,PyPI,amt,Tools for interacting with Intel's AMT,amt,Apache-2.0,https://github.com/sdague/amt,8,0,,1,957440,GitHub,sdague/amt,,False,13.0,Apache-2.0,,,AMT,https://github.com/sdague/amt,github,amt,amt,['32273536'],community,Binding
932668,PyPI,xgboost,XGBoost Python Package,,Apache-2.0,https://github.com/dmlc/xgboost,33,0,,796,339654,GitHub,dmlc/xgboost,"Scalable, Portable and Distributed Gradient Boosting (GBDT, GBRT or GBM) Library, for Python, R, Java, Scala, C++ and more. Runs on single machine, Hadoop, Spark, Flink and DataFlow",False,17996.0,Apache-2.0,,"distributed-systems,gbdt,gbm,gbrt,machine-learning,xgboost",XGBoost,https://github.com/dmlc/xgboost,github,xgboost,xgboost,['339654'],same_repo,Binding
942936,npm,bolt-sdk,SDK for accessing Bolt API,,ISC,git+https://[email protected]/bbanaloc/smartssdk.git,2,0,,0,,,,,,,,,,Bolt,https://bitbucket.org/bbanaloc/smartssdk#readme,bitbucket,bolt,bolt,"['19562400', '40784040']",community,Binding
943250,npm,susi-client-js,Javascript Client for the SUSI application Server.,"susi-client-js,iot,app server,client,javascript",MIT,https://github.com/wirsich/susi-client-js,1,1,,2,1117123,GitHub,SUSIproject/susi-client-js,Javascript Client for the SUSI application server.,False,0.0,MIT,,,SUSI,http://webvariants.github.io/susi/,github,susi,susi,['38284244'],community,Binding
944032,npm,node_translate,Translate API for node.js,,MIT,,3,1,,0,,,,,,,,,,Translate,,,translate,translate,['35774700'],community,Binding
944753,npm,daisywheel,The Steam 'Big Picture' Daisywheel ported to JS and CSS. Supports Gamepad API.,"daisywheel,daisywheeljs,gamepad,gamepad api,virtual keyboard,on-screen keyboard",MIT,https://github.com/likethemammal/daisywheeljs,24,1,,0,1118843,GitHub,likethemammal/daisywheeljs,"The Steam ""Big Picture"" Daisywheel ported to JS and CSS. Supports Gamepad API.",False,40.0,MIT,,,Gamepad,https://github.com/likethemammal/daisywheeljs,github,gamepad,gamepad,['38470828'],community,Binding
955360,CPAN,Statistics-NiceR,interface to the R programming language,,Artistic-1.0-Perl,https://github.com/zmughal/p5-Statistics-NiceR,3,0,,0,781482,GitHub,EntropyOrg/p5-Statistics-NiceR,∫ :bar_chart::star: interface to the R programming language <http://www.r-project.org/>,False,10.0,,,,R,https://github.com/zmughal/p5-Statistics-NiceR,github,r,r,['4689246'],community,Binding
956535,Maven,org.opentelecoms.sdp:sdp-api,SDP API for Java,,Apache-2.0,https://github.com/opentelecoms-org/java-sdp-api,1,2,,1,660671,GitHub,opentelecoms-org/java-sdp-api,SDP API for Java,False,4.0,,,,SDP,https://github.com/opentelecoms-org/java-sdp-api,github,sdp,sdp,['20861347'],community,Binding
960790,Maven,net.sourceforge.owlapi:benchmarks,OWL API main repository,,GPL-3.0-only,scm:git:git://github.com/owlcs/owlapi.git/benchmarks,2,0,,0,173418,GitHub,owlcs/owlapi,OWL API main repository,False,444.0,,,,OWL,,,owl,owl,['14048954'],community,Binding
960791,Maven,org.eobjects.datacleaner.extensions:DataCleaner-groovy,An extension to DataCleaner that allows scripting in the Groovy language,,LGPL-3.0-only,https://github.com/kaspersorensen/GroovyDataCleanerExtension,2,0,,0,1135122,GitHub,kaspersorensen/GroovyDataCleanerExtension,An extension to DataCleaner that allows scripting in the Groovy language,False,1.0,,,,DataCleaner,,,datacleaner,datacleaner,['5429391'],community,Binding
961260,Maven,com.gravityrd:java-client,Gravity Java client to access recommendation engine.,,GPL-3.0-only,https://github.com/gravityrd/java-client,26,0,,0,956184,GitHub,gravityrd/java-client,Java client,False,0.0,GPL-2.0,,,Gravity,https://gravityrd.com,gravityrd,gravity,gravity,['28024511'],community,Binding
962171,Maven,com.gravityrd:jsondto,JSON data access objects for gravity java client.,,GPL-3.0-only,https://github.com/gravityrd/jsondto,20,1,,1,956185,GitHub,gravityrd/jsondto,Data object to interact with the reco,False,0.0,GPL-2.0,,,gravity,https://gravityrd.com,gravityrd,gravity,gravity,['28024511'],community,Binding
964287,Maven,com.github.vinhkhuc:jcrfsuite,"Jcrfsuite is a Java interface for crfsuite, a fast implementation of Conditional Random Fields, using SWIG and class injection technique",,BSD-3-Clause,https://github.com/vinhkhuc/jcrfsuite,2,2,,7,1136824,GitHub,vinhkhuc/jcrfsuite,Java interface for CRFsuite: http://www.chokkan.org/software/crfsuite/,False,41.0,Other,,"crf,crfsuite,java,jni,machine-learning,nlp",Jcrfsuite,http://maven.apache.org,apache,jcrfsuite,jcrfsuite,['1136824'],same_repo,Binding
965089,Maven,com.truward.orion:user-service-model,Client Packages of Orion User Service,,Apache-2.0,https://github.com/truward/user-service-client.git,9,0,,0,1137140,GitHub,truward/user-service-client,Client Packages of Orion User Service,False,0.0,,,,Orion,,,orion,orion,['37981235'],community,Binding
965151,Maven,com.medallia.word4vec:Word2VecJava,Word2Vec Java Port,,MIT,https://github.com/medallia/Word2VecJava,1,0,,0,768662,GitHub,medallia/Word2VecJava,Word2Vec Java Port,False,134.0,MIT,,,Word2Vec,https://github.com/medallia/Word2VecJava,github,word2vec,word2vec,['10876949'],community,Binding
966012,Maven,ai.h2o:h2o-java-rest-bindings,H2O REST API bindings,,Apache-2.0,scm:git:https://github.com/h2oai/h2o-dev.git,46,0,,1,527263,GitHub,h2oai/h2o-3,"Open Source Fast Scalable Machine Learning Platform For Smarter Applications: Deep Learning, Gradient Boosting & XGBoost, Random Forest, Generalized Linear Modeling (Logistic Regression, Elastic Net), K-Means, PCA, Stacked Ensembles, Automatic Machine Learning (AutoML), etc.",False,4513.0,Apache-2.0,,"automatic,big-data,data-science,deep-learning,distributed,ensemble-learning,gbm,gpu,h2o,hadoop,java,machine-learning,multi-threading,naive-bayes,opensource,pca,python,r,random-forest,spark",H2O,https://github.com/h2oai/h2o-dev,github,h2o,h2o,['14294801'],community,Binding
966285,Maven,tec.uom:uom-se,Units of Measurement Implementation for Java SE JDK Integration of Unit-API / JSR 363,,BSD-3-Clause,https://github.com/unitsofmeasurement/uom-se,14,4,,9,717128,GitHub,unitsofmeasurement/uom-se,JSR 363 - Implementation for Java SE 8,False,32.0,Other,,"iot,java,java8,javase,jsr363,measure,measurement,standard,units,units-of-measure",Unit,https://github.com/unitsofmeasurement/unit-impl-se,github,unit,unit,['22536368'],community,Binding
967192,Clojars,clj-crfsuite,Clojure wrapper for CRFSuite,,Apache-2.0,https://github.com/onutech/clj-crfsuite,7,0,,0,1152496,GitHub,onai/clj-crfsuite,Clojure wrapper for CRFSuite,False,2.0,Apache-2.0,,,CRFSuite,,,crfsuite,crfsuite,['3599698'],community,Binding
967543,Packagist,artstorm/monkeylearn-api,MonkeyLearn API v2 client,"api,monkeylearn",MIT,https://github.com/artstorm/monkeylearn-api-php,2,0,,0,1152715,GitHub,artstorm/monkeylearn-api-php,MonkeyLearn API v2 PHP client,False,2.0,MIT,,,MonkeyLearn,,,monkeylearn,monkeylearn,['10115427'],community,Binding
971690,npm,sass-mercury,Mercury - Sass mixins & functions library!,"breakpoint,functions,library,mercury,mixins,sass",MIT,https://github.com/agenceepsilon/sass-mercury,8,1,,1,32918,GitHub,agenceepsilon/sass-mercury,Mercury - Sass mixins & functions library.,False,3.0,,,,Mercury,https://github.com/agenceepsilon/sass-mercury,github,mercury,mercury,['23163788'],community,Binding
975169,npm,prefix-nano,A wrapper around nano that provides the possiblity to prefix,"nano,wrapper,prefix",ISC,https://github.com/cube-io/prefix-nano,1,1,,0,1282664,GitHub,cube-io/prefix-nano,A library that wraps around nano to provide prefixing,False,0.0,ISC,,,nano,https://github.com/cube-io/prefix-nano,github,nano,nano,['3204475'],community,Binding
976223,Packagist,jerome-fix/ocr-wrapper,"A wrapper to work with OCR like Tesseract, Gocr,…","Tesseract,OCR,text recognition",MIT,https://github.com/jerome-fix/ocr-wrapper,0,0,,0,1292751,GitHub,zapoyok/ocr-wrapper,,False,0.0,MIT,,,OCR,,,ocr,ocr,"['886025', '3265657', '9676006']",community,Binding
979328,npm,chai-dom,DOM assertions for the Chai assertion library using vanilla JavaScript,"test,assertion,assert,testing,chai-plugin,browser,vendor,dom,no-jquery",Other,https://github.com/nathanboktae/chai-dom,15,206,,440,1308160,GitHub,nathanboktae/chai-dom,DOM assertions for the Chai assertion library using vanilla JavaScript,False,47.0,Other,,,Chai,https://github.com/nathanboktae/chai-dom,github,chai,chai,['16510011'],community,Binding
979592,Packagist,wanupsml/phing,Apache Ant port for PHP. Fork from phingofficial but with particular improvements. See FORK.md,"build,task,tool,phing",LGPL-3.0,https://github.com/wanupsml/phing,23,0,,0,1311353,GitHub,wanupclub/phing,PHing Is Not GNU make; it's a PHP project build system or build tool based on Apache Ant. Please refer to the Phing site for the roadmap and issue tracking.,True,0.0,LGPL-3.0,,,Ant,http://www.phing.info,phing,ant,ant,"['24849381', '27003248']",community,Binding
982091,npm,milsukiyaki,Deep Learning Library for JavaScript,Matrix,MIT,https://github.com/mil-tokyo/sukiyaki,1,1,,0,787391,GitHub,mil-tokyo/sukiyaki,Deep Learning Library for JavaScript,False,78.0,MIT,,,Deep Learning,https://github.com/mil-tokyo/sukiyaki,github,deep learning,deeplearning,"['851269', '2966203', '2989847', '3068030', '3088491', '3459073', '3522986', '3768078', '3984140', '3984213', '4387572', '4611958', '4976042', '6229890', '6995779', '11786389', '18843917', '20081109', '20241548', '21718912', '24656936', '25411819', '25454467', '26873714', '27095120', '28451439', '29254147', '30621862', '30749079', '31595197', '33132158', '33200728', '35379437', '41184013']",community,Binding
988860,npm,tape-async,A lite wrapper around tape to simplify async testing.,,MIT,https://github.com/parro-it/tape-async,11,110,,111,1991530,GitHub,parro-it/tape-async,A tiny wrapper around tape to simplify async testing.,False,24.0,MIT,,,tape,https://github.com/parro-it/tape-async,github,tape,tape,['40775741'],community,Binding
990121,npm,johnny-five-electron,Temporary fork to support Electron (to be deprecated),"arduino,raspberrypi,usb,serial,serialport,firmata,robot,spark,spark core,spark-io,spark,particle,i2c,raspberrypi,raspberry pi,rpi,raspi-io,intel galileo,galileo,galileo-io,intel edison,edison,pcduino",MIT,https://github.com/aessig/johnny-five,5,1,,1,2116797,GitHub,aessig/johnny-five,Temporary fork to support Electron (to be deprecated),True,0.0,Other,,,Electron,https://johnny-five.io,johnny-five,electron,electron,['25543319'],community,Binding
990648,npm,ensure-nano,A wrapper around nano that ensures the requested database exists,"nano,wrapper,ensure,couchdb",ISC,https://github.com/cube-io/ensure-nano,1,0,,0,2153646,GitHub,cube-io/ensure-nano,A wrapper around nano that ensures the requested database exists,False,0.0,ISC,,,nano,https://github.com/cube-io/ensure-nano,github,nano,nano,['3204475'],community,Binding
994021,npm,sarah-config-yml,YAML support for the Sarah platform,,ISC,https://github.com/dmeijboom/sarah-config-yml,1,1,,0,2250898,GitHub,dmeijboom/sarah-config-yml,Add support for YAML configuration,False,0.0,ISC,Removed,,Sarah,https://github.com/dmeijboom/sarah-config-yml,github,sarah,sarah,['15262119'],community,Binding
994565,npm,node_alchemy,A promise based JavaScript interface for the Alchemy API.,"node,javascript,promises,AlchemyAPI",MIT,,5,1,,1,,,,,,,,,,Alchemy,,,alchemy,alchemy,"['13491787', '40396672']",community,Binding
995695,npm,nnjs,Neural Network library in JavaScript,"neural network,machine learning,artificial intelligence",MPL-2.0,https://github.com/marco-c/nnjs,3,1,,0,2303536,GitHub,marco-c/nnjs,Neural Network library in JavaScript,False,0.0,Other,,,Neural Network,https://github.com/marco-c/nnjs,github,neural network,neuralnetwork,"['886132', '2416432', '3029700', '3170944', '3199049', '3332158', '7136724', '7212077', '7566135', '13715335', '20492951', '26643144', '39732365']",community,Binding
996004,npm,retap,Wrapper around tape that adds functions for testing React components,"test,tap,react,react-component",MIT,https://github.com/davidmason/retap,17,1,,1,2321317,GitHub,davidmason/retap,Wrapper around tape that adds functions for testing React components,False,2.0,MIT,,,tape,https://github.com/davidmason/retap,github,tape,tape,['40775741'],community,Binding
999771,Clojars,engagor/clj-vw,Clojure client and wrapper for vowpal wabbit,,BSD-2-Clause,https://github.com/engagor/clj-vw,13,0,,0,353808,GitHub,engagor/clj-vw,A clojure client and wrapper for vowpal wabbit.,False,15.0,BSD-2-Clause,,,vowpal wabbit,,,vowpal wabbit,vowpalwabbit,"['852009', '39434262']",community,Binding
1000108,Clojars,t6/snippets,An NLP library for Clojure,,LGPL-3.0,https://github.com/t6/snippets,1,0,,0,354826,GitHub,t6/snippets,An NLP Library for Clojure,False,0.0,LGPL-3.0,,,NLP,,,nlp,nlp,"['22309865', '31964017', '38155979']",community,Binding
1000614,Clojars,com.guokr/clj-cn-nlp,A clojure wrapper of Stanford NLP packages for Simplified Chinese users,,,https://github.com/guokr/clj-cn-nlp,3,0,,2,357572,GitHub,guokr/clj-cn-nlp,A clojure wrapper for Stanford CoreNLP package based on stan-cn-nlp Java wrapper for Simplified Chinese users,False,6.0,,,,Stanford NLP,,,stanford nlp,stanfordnlp,['37860773'],community,Binding
1001127,Clojars,vision,OpenCV wrapper for Clojure.,,,https://github.com/nakkaya/vision,1,0,,2,917474,GitHub,nakkaya/vision,OpenCV wrapper for Clojure,False,131.0,,,,OpenCV,http://nakkaya.com/vision.html,nakkaya,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
1002802,Clojars,mccraigmccraig/onyx-manifold,Onyx plugin for Manifold,,EPL-1.0,https://github.com/mccraigmccraig/onyx-manifold,4,0,,0,926392,GitHub,mccraigmccraig/onyx-manifold,onyx plugin for manifold,False,1.0,EPL-1.0,,,Manifold,,,manifold,manifold,['39285237'],community,Binding
1003254,Clojars,org.clojars.stain/owlapi-jsonld,JSON-LD parser and writer for OWL API,,,https://github.com/stain/owlapi-jsonld,2,0,,2,353632,GitHub,stain/owlapi-jsonld,JSON-LD parser and writer for OWL API,False,9.0,,,,OWL,,,owl,owl,['14048954'],community,Binding
1003462,Clojars,devn/vision,OpenCV wrapper for Clojure.,,,https://github.com/devn/vision,1,0,,0,354483,GitHub,devn/vision,OpenCV wrapper for Clojure,True,0.0,,,,OpenCV,http://nakkaya.com/vision.html,nakkaya,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
1004038,Clojars,org.clojars.r0man/clj-spark,Clojure API wrapper on the Spark project (http://spark-project.org/),,Apache-2.0,https://github.com/r0man/clj-spark,1,0,,0,355827,GitHub,r0man/clj-spark,"A Clojure api for the the Spark project (a fast, open source cluster computing system).",True,3.0,Apache-2.0,,,Spark,,,spark,spark,"['11846538', '27909023', '38722051']",community,Binding
1004086,Clojars,com.guokr.nlp/clj-cn-nlp,A clojure wrapper of Stanford NLP packages for Simplified Chinese users,,,https://github.com/guokr/clj-cn-nlp,1,0,,0,357572,GitHub,guokr/clj-cn-nlp,A clojure wrapper for Stanford CoreNLP package based on stan-cn-nlp Java wrapper for Simplified Chinese users,False,6.0,,,,Stanford NLP,,,stanford nlp,stanfordnlp,['37860773'],community,Binding
1004319,Clojars,me.arnaudsj/core.nlp,core.matrix : NLP programming API for Clojure,,EPL-1.0,https://github.com/arnaudsj/core.nlp,1,0,,0,354444,GitHub,arnaudsj/core.nlp,core.nlp : NLP programming API for Clojure,False,14.0,EPL-1.0,,,NLP,http://arnaudsj.github.io/core.nlp,github,nlp,nlp,"['22309865', '31964017', '38155979']",community,Binding
1009480,NuGet,OpenCV_3_x86_v100,This is an unofficial distribution of OpenCV.,"nativepackage,OpenCV",,,1,0,,1,,,,,,,,,,OpenCV,http://opencv.org,opencv,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
1011308,NuGet,fidou2f,FIDO Universal 2nd Factor (U2F) library for .NET. Please have a look at the project page for examples.,"2FA,FIDO,U2F,Authentication,2Factor",MIT,https://github.com/hanswolff/fido-u2f-net,1,0,,0,2361867,GitHub,hanswolff/fido-u2f-net,FIDO U2F implementation in C# .NET,False,14.0,MIT,,,FIDO,https://github.com/hanswolff/fido-u2f-net,github,fido,fido,['7032906'],community,Binding
1015638,NuGet,ROOT,"Enables C++ programs to link against ROOT libraries. This package requires that compilers for VS2012 or VS2013 are being installed. Only release mode, multithreaded DLL's are supported. See the main ROOT website for complete documentation: http://root.cern.ch","Data,Analysis,C++,ROOT,TTree,TH1,nativepackage",,https://github.com/gordonwatts/ROOTPackageBuilders,25,0,,4,2363187,GitHub,gordonwatts/ROOTPackageBuilders,"Scripts to build packages (nuget, etc.) for native ROOT libraries",False,3.0,,,,ROOT,https://github.com/gordonwatts/ROOTPackageBuilders/,github,root,root,['1975658'],community,Binding
1016519,NuGet,ROOT-Local,Enables C++ programs to link against ROOT libraries. The ROOT libraries are expected to have been installed in the standard c:\root location previously by you! Make sure you install VS2012 or VS2013 properly! See the main ROOT website for complete documentation: http://root.cern.ch,"Data,ROOT,nativepackage,C++,TTree,TH1,Analysis",,https://github.com/gordonwatts/ROOTPackageBuilders,1,0,,1,2363187,GitHub,gordonwatts/ROOTPackageBuilders,"Scripts to build packages (nuget, etc.) for native ROOT libraries",False,3.0,,,,ROOT,https://github.com/gordonwatts/ROOTPackageBuilders/,github,root,root,['1975658'],community,Binding
1018886,NuGet,OpenCvSharp3-AnyCPU,OpenCV wrapper for .NET Framework,"Image,Processing,OpenCV,Wrapper,FFI,opencvsharp",BSD-3-Clause,https://github.com/shimat/opencvsharp,30,27,,165,273105,GitHub,shimat/opencvsharp,.NET Framework wrapper for OpenCV ,False,2081.0,BSD-3-Clause,,"c-sharp,computer-vision,dotnet,dotnet-core,dotnet-core2,dotnetcore,dotnetstandard,image-processing,machine-learning,mono,native-bindings,nuget,nuget-packages,opencv,opencvsharp,wrapper",OpenCV,https://github.com/shimat/opencvsharp,github,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
1020328,npm,org.ijoewahjoedi.gpsapi,GPS Api Interface,"cordova,device",Apache-2.0,,1,1,,0,,,,,,,,,,GPS,,,gps,gps,['5336630'],community,Binding
1021545,npm,monkeylearn-client,Client for Monkeylearn API,"monkeylearn,client,classifier,extractor",ISC,https://github.com/stujo/monkeylearn-client,4,1,,0,2364633,GitHub,stujo/monkeylearn-client,Experimental Client for node / npm for the Monkeylearn API,False,1.0,,,,Monkeylearn,https://github.com/stujo/monkeylearn-client,github,monkeylearn,monkeylearn,['10115427'],community,Binding
1021910,NuGet,Daemaged.NTP,C# / .NET client for NTP,,,,2,0,,0,,,,,,,,,,NTP,,,ntp,ntp,['32528693'],community,Binding
1022697,NuGet,RestSharp.Portable.Hal.CSharp,Portable HAL client for .NET wrapped in a CSharp friendly wrapper,"REST,HAL,Client,Hypermedia,Portable",MPL-2.0,https://github.com/heartysoft/restsharp.portable.hal,13,0,,1,713643,GitHub,heartysoft/restsharp.portable.hal,A .NET HAL client inspired by traverson. F# core with a wrapper for easier C# consumption.,False,4.0,MPL-2.0,,,HAL,https://github.com/heartysoft/restsharp.portable.hal,github,hal,hal,['4824482'],community,Binding
1023112,NuGet,TableAPI,Nuget package for Squirrel the data analytics framework for .NET,"Analytics,Data,Framework",,https://github.com/sudipto80/Squirrel,3,0,,0,2365186,GitHub,sudipto80/Squirrel,Agile Data Analytics for .NET,False,2.0,,Removed,,Squirrel,https://github.com/sudipto80/Squirrel,github,squirrel,squirrel,['7267315'],community,Binding
1023481,NuGet,VowpalWabbit,Official Vowpal Wabbit library including C# interface.,"vowpal,vw,wabbit,ml,langford,learning,machine",Other,https://github.com/JohnLangford/vowpal_wabbit,122,5,,2,852009,GitHub,VowpalWabbit/vowpal_wabbit,"Vowpal Wabbit is a machine learning system which pushes the frontier of machine learning with techniques such as online, hashing, allreduce, reductions, learning2search, active, and interactive learning.",False,6767.0,Other,,"active-learning,c-plus-plus,contextual-bandits,cpp,learning-to-search,machine-learning,online-learning,reinforcement-learning",Vowpal Wabbit,https://github.com/JohnLangford/vowpal_wabbit/wiki/C%23-Binding,github,vowpal wabbit,vowpalwabbit,"['852009', '39434262']",same_repo,Binding
1026840,NuGet,Delivr.NET,Delivr.NET is a client-side library for accessing ESP (Email Service Providers) APIs running on Delivr platform.,ESP,,,23,0,,0,,,,,,,,,,ESP,,,esp,esp,['4702225'],community,Binding
1028351,NuGet,Unturned.Rocket.Foundation,"Welcome to the Rocket wiki! Rocket is an extensible Unturned 3 Server Mod. It acts as a simple wrapper around the games core functionality and loads custom commands, configurations and gameobjects. With a built in permission system and growing plugin ecosystem its the best way for server admins to customize their Unturned 3 server to their needs.","unturned,mono,rocket",,,3,0,,0,,,,,,,,,,Rocket,https://rocket.foundation/,rocket,rocket,rocket,['40247662'],community,Binding
1028546,NuGet,Sensible.PredictionIO.NET,C# wrapper for the PredictionIO API,,,,2,0,,0,,,,,,,,,,PredictionIO,,,predictionio,predictionio,['573443'],community,Binding
1028859,NuGet,VDK.EmguCV.x64,"Emgu CV is a cross platform .Net wrapper to the OpenCV image processing library. Allowing OpenCV functions to be called from .NET compatible languages such as C#, VB, VC++, IronPython etc. The wrapper can be compiled in Mono and run on Windows, Linux, Mac OS X, iPhone, iPad and Android devices.",,,,2,0,,12,,,,,,,,,,OpenCV,http://www.emgu.com/,emgu,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
1029057,PyPI,tesseract-ocr,A Python wrapper for Tesseract,"Tesseract,OCR,Cython",MIT,https://github.com/ratazzi/tesseract-ocr,1,0,,10,2366588,GitHub,ratazzi/tesseract-ocr,A Python wrapper for Tesseract,False,10.0,MIT,,,Tesseract,https://github.com/ratazzi/tesseract-ocr,github,tesseract,tesseract,['852560'],community,Binding
1029701,NuGet,VDK.EmguCV.x86,"Emgu CV is a cross platform .Net wrapper to the OpenCV image processing library. Allowing OpenCV functions to be called from .NET compatible languages such as C#, VB, VC++, IronPython etc. The wrapper can be compiled in Mono and run on Windows, Linux, Mac OS X, iPhone, iPad and Android devices.",,,,1,0,,8,,,,,,,,,,OpenCV,http://www.emgu.com/wiki/index.php/Main_Page,emgu,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
1032329,NuGet,unturned.rocket.foundation,"Welcome to the Rocket wiki! Rocket is an extensible Unturned 3 Server Mod. It acts as a simple wrapper around the games core functionality and loads custom commands, configurations and gameobjects. With a built in permission system and growing plugin ecosystem its the best way for server admins to customize their Unturned 3 server to their needs.","unturned,mono,rocket",,,3,0,,0,,,,,,,,,,Rocket,https://rocket.foundation/,rocket,rocket,rocket,['40247662'],community,Binding
1032717,NuGet,RestSharp.Portable.Hal,Portable HAL client for .NET. There's a CSharp version for CS.,"HAL,Client,Hypermedia,REST,Portable",MPL-2.0,https://github.com/heartysoft/restsharp.portable.hal,13,1,,1,713643,GitHub,heartysoft/restsharp.portable.hal,A .NET HAL client inspired by traverson. F# core with a wrapper for easier C# consumption.,False,4.0,MPL-2.0,,,HAL,https://github.com/heartysoft/restsharp.portable.hal,github,hal,hal,['4824482'],community,Binding
1032928,NuGet,OpenCvSharp3-WithoutDll,OpenCV wrapper for .NET Framework,"OpenCV,Processing,Image,FFI,Wrapper,opencvsharp",BSD-3-Clause,https://github.com/shimat/opencvsharp,25,3,,2,273105,GitHub,shimat/opencvsharp,.NET Framework wrapper for OpenCV ,False,2081.0,BSD-3-Clause,,"c-sharp,computer-vision,dotnet,dotnet-core,dotnet-core2,dotnetcore,dotnetstandard,image-processing,machine-learning,mono,native-bindings,nuget,nuget-packages,opencv,opencvsharp,wrapper",OpenCV,https://github.com/shimat/opencvsharp,github,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
1035942,Clojars,org.clojars.keorn/synaptic,Neural Networks in Clojure,,EPL-1.0,https://github.com/keorn/synaptic,1,0,,0,2415361,GitHub,keorn/synaptic,Neural Networks in Clojure,True,1.0,EPL-1.0,,,Neural Networks,,,neural networks,neuralnetworks,"['844820', '20141962']",community,Binding
1038221,npm,foundry.cli,Global CLI bindings for foundry,"foundry,cli,global",Unlicense,https://github.com/twolfson/foundry.cli,3,1,,0,2457994,GitHub,twolfson/foundry.cli,Global CLI bindings for foundry,False,1.0,Unlicense,,,foundry,https://github.com/twolfson/foundry.cli,github,foundry,foundry,['3239439'],community,Binding
1041092,PyPI,invenio-grobid,Invenio module to interact with Grobid API for metadata extraction.,invenio,GPL-2.0,https://github.com/inspirehep/invenio-grobid,3,0,,0,2588504,GitHub,inspirehep/invenio-grobid,Invenio package for integration of the Grobid metadata extraction service,False,3.0,GPL-2.0,,,Grobid,https://github.com/inspirehep/invenio-grobid,github,grobid,grobid,['1237058'],community,Binding
1044640,Clojars,org.clojars.coldnew/opencv-native-macosx-x86_64,OpenCV native libraries for Mac OSX x86_64,,,git://code.opencv.org/opencv.git,2,0,,0,,,,,,,,,,OpenCV,,,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
1046484,Clojars,org.clojars.vcharpenay/clj-owlapi,OWL API wrapper for Clojure,,,https://github.com/vcharpenay/clj-owlapi,1,0,,0,2677383,GitHub,vcharpenay/clj-owlapi,OWL API wrapper for Clojure,True,0.0,,,,OWL,,,owl,owl,['14048954'],community,Binding
1046488,Clojars,org.clojars.coldnew/opencv-native-linux-x86_64,OpenCV native libraries for Linux x86_64,,,git://code.opencv.org/opencv.git,2,0,,0,,,,,,,,,,OpenCV,,,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
1046523,npm,console-squeal,Winston wrapper for overriding console commands with Sentry and Slack support.,"sentry,slack,winston,log,logger",MIT,https://github.com/meerkats/console-squeal,2,1,,0,2677480,GitHub,meerkats/console-squeal,Winston wrapper for overriding console commands with Sentry and Slack support in nodejs.,False,2.0,MIT,,,Winston,https://github.com/meerkats/console-squeal,github,winston,winston,['72007'],community,Binding
1047915,npm,word2vec-native,Port of the word2vec distance program as a native node addon,word2vec,Apache-2.0,https://github.com/binarymax/node-word2vec-native,3,1,,1,2680374,GitHub,binarymax/node-word2vec-native,Port of the word2vec distance program to a native node.js addon,False,3.0,Apache-2.0,,,word2vec,https://github.com/binarymax/node-word2vec-native,github,word2vec,word2vec,['10876949'],community,Binding
1054115,Rubygems,quiver,Quiver is a framework for writing web APIs,,MIT,,1,0,,0,,,,,,,,,,Quiver,,,quiver,quiver,['15809459'],community,Binding
1054375,Packagist,zapoyok/ocr-wrapper,"A wrapper to work with OCR like Tesseract, Gocr,…","Tesseract,OCR,text recognition",MIT,https://github.com/zapoyok/ocr-wrapper,0,0,,0,1292751,GitHub,zapoyok/ocr-wrapper,,False,0.0,MIT,,,OCR,,,ocr,ocr,"['886025', '3265657', '9676006']",community,Binding
1055923,PyPI,pyramid_ipython,pyramid ipython pshell,,Other,https://github.com/Pylons/pyramid_ipython,2,0,,2,2689729,GitHub,Pylons/pyramid_ipython,IPython bindings for Pyramid's pshell.,False,5.0,,,,pyramid,https://github.com/Pylons/pyramid_ipython,github,pyramid,pyramid,['10568701'],community,Binding
1055928,PyPI,pyramid_bpython,pyramid bpython pshell,,Other,https://github.com/Pylons/pyramid_bpython,1,0,,0,2689760,GitHub,Pylons/pyramid_bpython,bpython bindings for Pyramid's pshell,False,0.0,,,,pyramid,https://github.com/Pylons/pyramid_bpython,github,pyramid,pyramid,['10568701'],community,Binding
1055990,Packagist,kristopherwindsor/stanfordnlp,PHP client library for the Stanford NLP API hosted @ http://nlp.stanford.edu/,,,https://github.com/kristopherwindsor/stanfordnlp,0,0,,0,2690509,GitHub,KristopherWindsor/stanfordnlp,PHP client library for the Stanford NLP API hosted @ http://nlp.stanford.edu/,False,0.0,,,,Stanford NLP,,,stanford nlp,stanfordnlp,['37860773'],community,Binding
1060180,PyPI,opencv_cffi,"A random subset of OpenCV's functionality, wrapped via CFFI",,MIT,https://github.com/Magnetic/opencv-cffi,1,0,,0,2797941,GitHub,Magnetic/opencv-cffi,"A random collection of OpenCV's functionality, wrapped via CFFI",False,6.0,MIT,,,OpenCV,https://github.com/Magnetic/opencv-cffi,github,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
1060462,npm,hub-bin,Binary wrapper for Hub - hub helps you win at git. http://hub.github.com/,"cli-app,cli",MIT,https://github.com/thejameskyle/hub-bin,1,2,,0,2798670,GitHub,thejameskyle/hub-bin,Binary wrapper for Hub - hub helps you win at git. http://hub.github.com/,False,0.0,MIT,,,Hub,https://github.com/thejameskyle/hub-bin,github,hub,hub,"['34841639', '35545110']",community,Binding
1061818,npm,electron-stream,Simple streaming wrapper around electron,,MIT,https://github.com/juliangruber/electron-stream,40,9,,196,2802353,GitHub,juliangruber/electron-stream,Streaming wrapper around electron,False,109.0,,,,electron,https://github.com/juliangruber/electron-stream,github,electron,electron,['25543319'],community,Binding
1063297,PyPI,apollo,Apollo API library,,MIT,https://github.com/galaxy-genome-annotation/python-apollo,10,0,,2,4558488,GitHub,galaxy-genome-annotation/python-apollo,Python library for talking to Apollo API,False,5.0,MIT,,"apollo,jbrowse,python",Apollo,https://github.com/galaxy-genome-annotation/python-apollo,github,apollo,apollo,['15362424'],community,Binding
1063505,Clojars,timothypratley/reanimated,Reanimated is an animation library for Reagent (ClojureScript).,,,https://github.com/timothypratley/reanimated,8,0,,8,2807618,GitHub,timothypratley/reanimated,An animation library for Reagent (ClojureScript),False,205.0,,,,Reagent,,,reagent,reagent,['28705875'],community,Binding
1064563,npm,tape-case,Tape wrapper to run multiple test case against the same system,"test,test case,test-case,tape",MIT,https://github.com/brunoscopelliti/tape-case,8,6,,4,2823197,GitHub,brunoscopelliti/tape-case,Tape wrapper to run multiple test case against the same system.,False,0.0,MIT,,,Tape,https://github.com/brunoscopelliti/tape-case,github,tape,tape,['40775741'],community,Binding
1066384,npm,dragonnodejs-bundle-skeleton,Skeleton for a bundle with the DragonNode.js Framework,,MIT,https://github.com/dragonnodejs/bundle-skeleton,2,1,,0,641239,GitHub,dragonnodejs/bundle-skeleton,Skeleton for a bundle with the DragonNode.js framework,False,0.0,MIT,,,Dragon,http://github.com/dragonnodejs/bundle-skeleton,github,dragon,dragon,['7368753'],community,Binding
1067864,npm,infusion-electron,Infusion component wrappers for Electron,,BSD-3-Clause,https://github.com/colinbdclark/infusion-electron,9,3,,5,2933382,GitHub,colinbdclark/infusion-electron,Infusion component wrappers for Atom Electron,False,3.0,BSD-3-Clause,,,Electron,http://github.com/colinbdclark/infusion-electron,github,electron,electron,['25543319'],community,Binding
1086994,Packagist,edgeconnect/edgeconnect-php,PHP library for interacting with the Edgeconnect HTTP API,"rest,api,edgeconnect",MIT,https://github.com/edgeconnect/edgeconnect-php,5,0,,0,463150,GitHub,EdgeConnect/edgeconnect-php,PHP library for interacting with the Edgemailer HTTP API.,False,0.0,,,,Edgeconnect,,,edgeconnect,edgeconnect,['37753306'],community,Binding
1087471,npm,tgan-module-api,API abstraction layer for TGAN interfaces,,ICU,https://github.com/thecan/tgan-module-api,2,0,,0,3309819,GitHub,thecan/api,API abstraction layer for TGAN interfaces,False,0.0,BSD-3-Clause,,,TGAN,https://github.com/thecan/tgan-module-api#readme,github,tgan,tgan,['30532684'],community,Binding
1088952,npm,tgan-api,API abstraction layer for TGAN interfaces,,ICU,https://github.com/thecan/api,14,9,,3,3309819,GitHub,thecan/api,API abstraction layer for TGAN interfaces,False,0.0,BSD-3-Clause,,,TGAN,http://nothing.rocks/,nothing,tgan,tgan,['30532684'],community,Binding
1090537,PyPI,summpy,"Text summarization (sentence extraction) module with simple HTTP API. (currently, supports Japanese only)","automatic summarization,natural language processing",MIT,https://github.com/recruit-tech/summpy,1,0,,1,2892835,GitHub,recruit-tech/summpy,,False,165.0,MIT,,,Text summarization,https://github.com/recruit-tech/summpy,github,text summarization,textsummarization,"['33555614', '40543384']",community,Binding
1090633,npm,burner-speech,React component that use the Speech Recognition API,react-component,ISC,https://github.com/BenNG/burner-speech,13,1,,0,3489572,GitHub,BenNG/burner-speech,React component that wrap the Speech Recognition API,False,4.0,,,,Speech Recognition,https://github.com/BenNG/burner-speech,github,speech recognition,speechrecognition,"['7708648', '34802812']",community,Binding
1091632,npm,react-realm,"A total rip-off of the Elm architecture, in React","elm,react,component,architecture,functional,redux",MIT,,7,1,,2,,,,,,,,,,Elm,,,elm,elm,"['186221', '16190324']",community,Binding
1093365,PyPI,monkeylearn,Official Python client for the MonkeyLearn API,"monkeylearn,machine learning,python",MIT,https://github.com/monkeylearn/monkeylearn-python,23,0,,14,3094939,GitHub,monkeylearn/monkeylearn-python,Official Python client for the MonkeyLearn API. Build and consume machine learning models for language processing from your Python apps.,False,112.0,MIT,,"language-processing,machine-learning,monkeylearn-api,monkeylearn-python,natural-language-processing,nlp,text-classification",MonkeyLearn,https://github.com/monkeylearn/monkeylearn-python,github,monkeylearn,monkeylearn,['10115427'],community,Binding
1094884,CocoaPods,NHNetworkTime,Network time protocol NTP for iOS.,,Apache-2.0,https://github.com/huynguyencong/NHNetworkTime,8,0,,10,3441684,GitHub,huynguyencong/NHNetworkTime,"A network time protocol (NTP) client, update the correct time.",False,75.0,Apache-2.0,,,NTP,https://github.com/huynguyencong/NHNetworkTime,github,ntp,ntp,['32528693'],community,Binding
1099229,npm,fuzzylite,A Node.js interface for the fuzzylite library,"fuzzy,fuzzylite,node",Apache-2.0,https://github.com/Scypho/node-fuzzylite,14,2,,0,3520514,GitHub,Scypho/node-fuzzylite,A Node.js interface for the fuzzylite library,False,1.0,Apache-2.0,,,fuzzylite,https://github.com/Scypho/node-fuzzylite,github,fuzzylite,fuzzylite,['2194211'],community,Binding
1100780,npm,drug-cli,CLI interface for Drug web framework,,ISC,https://github.com/semenov/dug-cli,1,0,,0,3555592,GitHub,semenov/dug-cli,,False,0.0,,,,Drug,https://github.com/semenov/dug-cli,github,drug,drug,['36512550'],community,Binding
1100825,npm,elekiter,express like electron ipc wrapper library,"electron,ipc,communication",MIT,https://github.com/airtoxin/elekiter,6,0,,0,3557378,GitHub,airtoxin/elekiter,express like electron ipc wrapper library,False,3.0,MIT,,,electron,https://github.com/airtoxin/elekiter,github,electron,electron,['25543319'],community,Binding
1101612,npm,node-alchemy,Node/Browser Client to interact with AlchemyAPI.,"alchemyAPI,client,node-alchemy,wrapper",MIT,https://github.com/kikobeats/node-alchemy,1,1,,0,3571514,GitHub,Kikobeats/node-alchemy,Node/Browser Client to interact with AlchemyAPI.,False,1.0,MIT,,,Alchemy,https://github.com/Kikobeats/node-alchemy,github,alchemy,alchemy,"['13491787', '40396672']",community,Binding
1101980,PyPI,sklearn-crfsuite,CRFsuite (python-crfsuite) wrapper which provides interface simlar to scikit-learn,,MIT,https://github.com/TeamHG-Memex/sklearn-crfsuite,9,0,,76,3580552,GitHub,TeamHG-Memex/sklearn-crfsuite,scikit-learn inspired API for CRFsuite,False,137.0,,,,CRFsuite,https://github.com/TeamHG-Memex/sklearn-crfsuite,github,crfsuite,crfsuite,['3599698'],community,Binding
1102655,PyPI,froglet,Client for Frog server,,GPL-3.0,https://github.com/hslatman/froglet,3,0,,0,3580897,GitHub,hslatman/froglet,A client for contacting a Frog server,False,0.0,GPL-3.0,,,Frog,https://github.com/hslatman/froglet,github,frog,frog,['853041'],community,Binding
1105848,npm,bundle-skeleton,Skeleton for a bundle with the DragonNode.js framework,,MIT,https://github.com/dragonnodejs/bundle-skeleton,1,0,,0,641239,GitHub,dragonnodejs/bundle-skeleton,Skeleton for a bundle with the DragonNode.js framework,False,0.0,MIT,,,Dragon,http://github.com/dragonnodejs/bundle-skeleton,github,dragon,dragon,['7368753'],community,Binding
1109119,npm,fanntom,FANN (Fast Artificial Neural Network) bindings for Node.js that use MongoDB to store information,"fann,neural,network,artificial,intelligence,neural network,artificial intelligence,machine learning,mongodb,MongoDB",,,2,1,,0,,,,,,,,,,FANN,,,fann,fann,"['852353', '27851746']",community,Binding
1109812,Packagist,monkeylearn/monkeylearn-php,Official PHP client for the MonkeyLearn API.,"php,machine learning,monkeylearn",MIT,https://github.com/monkeylearn/monkeylearn-php,9,1,,10,3769329,GitHub,monkeylearn/monkeylearn-php,Official PHP client for the MonkeyLearn API. Build and consume machine learning models for language processing from your PHP apps.,False,46.0,MIT,,"language-processing,machine-learning,monkeylearn-php,natural-language-processing,nlp,text-classification",MonkeyLearn,,,monkeylearn,monkeylearn,['10115427'],community,Binding
1112536,PyPI,python-frog,"Python binding to FROG, an NLP suite for Dutch doing part-of-speech tagging, lemmatisation, morphological analysis, named-entity recognition, shallow parsing, and dependency parsing.",nlp computational_linguistics dutch pos lemmatizer,GPL-2.0+,https://github.com/proycon/python-frog,15,0,,0,3445996,GitHub,proycon/python-frog,"Python bindings to the dutch NLP tool Frog (pos tagger, lemmatiser, NER tagger, morphological analysis, shallow parser, dependency parser)",False,32.0,GPL-3.0,,,FROG,https://github.com/proycon/python-frog,github,frog,frog,['853041'],community,Binding
1112673,npm,monkeylearn,Official Node client for the MonkeyLearn API version 3.,"monkeylearn,machine,learning,nlp,node",MIT,https://github.com/monkeylearn/monkeylearn-node,13,1,,8,3834091,GitHub,monkeylearn/monkeylearn-node,Official Node client for the MonkeyLearn API. Build and consume machine learning models for language processing from your Node apps.,False,33.0,MIT,,"language-processing,machine-learning,monkeylearn-node,natural-language-processing,nlp,text-classification",MonkeyLearn,https://github.com/monkeylearn/monkeylearn-node,github,monkeylearn,monkeylearn,['10115427'],community,Binding
1112726,npm,tgan-interface,Bootstrapping for TGAN interfaces,,ICU,https://github.com/thecan/interface,11,2,,2,3835356,GitHub,thecan/interface,Bootstrapping for TGAN interfaces,False,0.0,BSD-3-Clause,Removed,,TGAN,http://nothing.rocks/,nothing,tgan,tgan,['30532684'],community,Binding
1112728,Rubygems,cortex-snippets-client-ruby,"Provides loading of Cortex snippets for Ruby applications, with some Rails ViewHelpers",,Apache-2.0,https://github.com/cortex-cms/cortex-snippets-client-ruby,17,0,,0,3835698,GitHub,cortex-cms/cortex-snippets-client-ruby,"Provides loading of Cortex snippets for Ruby applications, with some Rails ViewHelpers",False,0.0,Apache-2.0,,,Cortex,https://github.com/cortex-cms/cortex-snippets-client-ruby,github,cortex,cortex,"['14427917', '38011472']",community,Binding
1115048,Packagist,graciousstudios/api,PHP wrapper for the ROBIN API,,GPL-3.0,https://github.com/graciousagency/Api,6,2,,1,924990,GitHub,graciousagency/Api,PHP wrapper for the ROBIN API,False,1.0,,,,ROBIN,,,robin,robin,['38166515'],community,Binding
1115208,Rubygems,monkeylearn,A simple client for the MonkeyLearn API,,MIT,https://github.com/monkeylearn/monkeylearn-ruby,11,0,,4,3911215,GitHub,monkeylearn/monkeylearn-ruby,Official Ruby client for the MonkeyLearn API. Build and consume machine learning models for language processing from your Ruby apps.,False,73.0,MIT,,"language-processing,machine-learning,natural-language-processing,nlp,rubynlp,text-classification",MonkeyLearn,https://github.com/monkeylearn/monkeylearn-ruby,github,monkeylearn,monkeylearn,['10115427'],community,Binding
1115243,Packagist,lookyman/entropy,Entropy provider library for PHP,"nette,entropy",MIT,https://github.com/lookyman/entropy,1,0,,1,3876341,GitHub,lookyman/entropy,,False,0.0,MIT,,,Entropy,,,entropy,entropy,['41041085'],community,Binding
1119461,npm,grunt-electron-itchio,Package Electron apps,"gruntplugin,electron,package,packager,build,distribute,app,apps",MIT,https://github.com/sindresorhus/grunt-electron,6,3,,0,455315,GitHub,sindresorhus/grunt-electron,Package Electron apps,False,66.0,MIT,,,Electron,https://github.com/sindresorhus/grunt-electron,github,electron,electron,['25543319'],community,Binding
1125329,npm,haleoas,HAL client,"hypermedia,rest-client,hateoas,HAL,orangutans",MIT,https://github.com/mnichols/haleoas,16,3,,2,4056426,GitHub,mnichols/haleoas,HAL hypermedia client,False,1.0,,,,HAL,https://github.com/mnichols/haleoas,github,hal,hal,['4824482'],community,Binding
1126830,PyPI,pyslibtesseract,Integration of Tesseract for Python using a shared library,python-tesseract OCR Python,Other,https://github.com/brunomacabeusbr/pyslibtesseract,13,1,,1,5457495,GitHub,brunomacabeusbr/pyslibtesseract,✏️ Integration of Tesseract for Python using a shared library,False,3.0,,,,Tesseract,https://github.com/brunomacabeusbr/pyslibtesseract,github,tesseract,tesseract,['852560'],community,Binding
1128046,npm,ant-lite,ant wrapper for Node.js,ant,MIT,https://github.com/xudafeng/ant-lite,4,6,,4,4105059,GitHub,xudafeng/ant-lite,Node.js wrapper for ant,False,3.0,MIT,,,ant,https://github.com/xudafeng/ant-lite,github,ant,ant,"['24849381', '27003248']",community,Binding
1128821,npm,opencvtest,Node Bindings to OpenCV,"opencv,computer,vision,quadrocopter",MIT,https://github.com/peterbraden/node-opencv,1,2,,0,120303,GitHub,peterbraden/node-opencv,OpenCV Bindings for node.js,False,3893.0,MIT,,,OpenCV,https://github.com/peterbraden/node-opencv,github,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
1132731,NuGet,opencv3.1,"OpenCV (Open Source Computer Vision) is a library of programming functions for realtime computer vision. OpenCV is released under a BSD license and hence it's free for both academic and commercial use. It has C++, C, Python and Java (Android) interfaces and supports Windows, Linux, Android, iOS and Mac OS. It has more than 2500 optimized algorithms. Adopted all around the world, OpenCV has more than 7 million downloads growing by nearly 200K/month. Usage ranges from interactive art, to mines inspection, stitching maps on the web on through advanced robotics.","OpenCV,nativepackage",,,1,0,,34,,,,,,,,,,OpenCV,http://opencv.org/,opencv,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
1133763,Packagist,vulcan/rivescript,"RiveScript interpreter library for PHP with Laravel support. RiveScript is a scripting language for chatterbots, making it easy to write trigger/response pairs for building up a bot's intelligence.","bot,ai,chatterbot,rivescript,axiom",MIT,https://github.com/axiom-labs/rivescript-php,7,2,,3,4155815,GitHub,axiom-labs/rivescript-php,:white_circle: A RiveScript interpreter for PHP. RiveScript is a scripting language for chatterbots.,False,17.0,MIT,,,RiveScript,http://www.rivescript.com,rivescript,rivescript,rivescript,['17777447'],community,Binding
1140815,npm,homebridge-veralink,HomeKit bridge for Vera,"homebridge,vera,veralink,homebridge-plugin",ISC,https://github.com/damianxd/VeraLink,7,0,,0,3806954,GitHub,damianxd/homebridge-vera,,False,46.0,Apache-2.0,,,Vera,https://github.com/damianxd/VeraLink,github,vera,vera,['22659098'],community,Binding
1142019,npm,homebridge-vera,HomeKit bridge for Vera,"homebridge,vera,veralink,homebridge-plugin",ISC,https://github.com/damianxd/VeraLink,37,2,,0,3806954,GitHub,damianxd/homebridge-vera,,False,46.0,Apache-2.0,,,Vera,https://github.com/damianxd/VeraLink,github,vera,vera,['22659098'],community,Binding
1143562,npm,expect-react-shallow,JSX assertions with Chai-like API (based on unexpected-react),"chai,testing,assertions,jsx,react,shallow,shallow render",MIT,https://github.com/sapegin/expect-react-shallow,4,3,,25,3209699,GitHub,sapegin/expect-react-shallow,JSX assertions with Chai-like API (based on unexpected-react-shallow),False,21.0,MIT,,,Chai,https://github.com/sapegin/expect-react-shallow,github,chai,chai,['16510011'],community,Binding
1143848,Rubygems,alchemy-flux,Ruby implementation of the Alchemy micro-service framework,,LGPL-3.0,https://github.com/LoyaltyNZ/alchemy-flux,12,1,,3,4419258,GitHub,LoyaltyNZ/alchemy-flux,Alchemy Flux is the Ruby Implementation of the Alchemy Framework Service Layer,False,10.0,LGPL-3.0,,,Alchemy,,,alchemy,alchemy,"['13491787', '40396672']",community,Binding
1145354,Packagist,crewstyle/olympus,"The Olympus framework, your simple, easy to use and powerfull framework to deploy and work with WordPress. An awesome framework build with ♥ for WordPress developers.","framework,php,composer,wordpress,capistrano,olympus",MIT,https://github.com/GetOlympus/Olympus,22,0,,0,4442224,GitHub,GetOlympus/Olympus,"Olympus, the easiest and secure way to install WordPress websites with the powerfull Zeus Core framework.",False,1.0,MIT,,"capistrano,composer,olympus,olympus-framework,wordpress,wordpress-development,wordpress-website",Olympus,,,olympus,olympus,['30174392'],community,Binding
1145393,CRAN,ores,Connector to the Objective Revision Evaluation Service (ORES),,MIT,https://github.com/Ironholds/ores,4,0,,0,4413922,GitHub,Ironholds/ores,An API client for the Objective Revision Evaluation Service for Wikipedia,False,2.0,Other,,"api-client,mediawiki,r,wikipedia",ORES,https://github.com/Ironholds/ores,github,ores,ores,['476750'],community,Binding
1154031,npm,react-wrappy-text,Wrappy text component for React,"react,reactjs,wrappy,text,animation,effect,primer",MIT,https://github.com/dkozar/react-wrappy-text,9,3,,3,4479373,GitHub,dkozar/react-wrappy-text,Wrappy text component for React,False,2.0,MIT,,,text,https://github.com/dkozar/react-wrappy-text,github,text,text,['18883762'],community,Binding
1158881,PyPI,nidaba-client,Expandable and scalable OCR pipeline client,ocr,GPL-2.0+,,5,0,,0,,,,,,,,,,OCR,,,ocr,ocr,"['886025', '3265657', '9676006']",community,Binding
1161213,npm,react-native-modal-android,The <Modal /> component has the same API as on iOS - http://facebook.github.io/react-native/docs/modal.html#content,"react,react-native,react-component,modal,android",MIT,https://github.com/iwater/react-native-modal-android,1,0,,0,4647862,GitHub,iwater/react-native-modal-android,The <Modal /> component has the same API as on iOS - http://facebook.github.io/react-native/docs/modal.html#content,False,7.0,,,,Modal,https://github.com/iwater/react-native-modal-android,github,modal,modal,['31627289'],community,Binding
1162361,Packagist,mrf/synchro,"Flow (Neos) package, which gives a command to synchronize database and resources with remote instances in both directions (push and pull). Useful for fast update of the project on development context or fast upload of the changes remotely, when working on multiple instances (e.g. live, beta, local).",,MIT,https://github.com/klamparski/Mrf.Synchro,3,0,,0,4679518,GitHub,klamparski/Mrf.Synchro,Flow/Neos database and resources synchronization script,False,1.0,,,,Flow,,,flow,flow,"['12755978', '29309986']",community,Binding
1166025,npm,mantra-core,Core API for Mantra,,MIT,https://github.com/mantrajs/mantra-core,9,23,,1274,4741658,GitHub,mantrajs/mantra-core,Collection of Core APIs used in Mantra,False,67.0,MIT,,,Mantra,https://github.com/mantrajs/mantra-core,github,mantra,mantra,['37266822'],community,Binding
1166368,npm,elm-react-component,A component-wrapper to embed Elm modules in React.js,"elm,react,react-component,embedded,embed",MIT,https://github.com/KtorZ/elm-react-component,11,0,,0,4756845,GitHub,KtorZ/elm-react-component,A React component which wraps an Elm module to be used in a React application.,False,117.0,MIT,,,Elm,https://github.com/KtorZ/elm-react-component,github,elm,elm,"['186221', '16190324']",community,Binding
1170909,npm,drs-node,Client for Delta,,ISC,https://github.com/ironbay/drs,73,1,,0,4819916,GitHub,ironbay/drs,"Fault tolerant, polyglot architecture made easy",False,0.0,,,,Delta,,,delta,delta,"['38810725', '39651144']",community,Binding
1172664,Clojars,org.onyxplatform/onyx-java,The Java API for Onyx,,EPL-1.0,https://github.com/onyx-platform/onyx-java,1,0,,0,4837579,GitHub,onyx-platform/onyx-java,[Inactive] The Java API for Onyx,False,3.0,EPL-1.0,,,Onyx,,,onyx,onyx,['12371802'],community,Binding
1176112,PyPI,py3-wordsmith,API for Wordsmith,wordsmith api,MIT,https://github.com/xACruceSalus/py3_wordsmith,1,0,,0,4905627,GitHub,xACruceSalus/py3_wordsmith,Python3 wrapper for Wordsmith API,False,1.0,Other,Removed,,Wordsmith,https://github.com/xACruceSalus/py3_wordsmith,github,wordsmith,wordsmith,['5628444'],community,Binding
1176419,Cargo,word2vec,Rust interface to word2vec.,word2vec,MIT,https://github.com/DimaKudosh/word2vec,7,0,,0,4766036,GitHub,DimaKudosh/word2vec,Rust interface to word2vec.,False,14.0,MIT,,"rust,word2vec",word2vec,https://github.com/DimaKudosh/word2vec,github,word2vec,word2vec,['10876949'],community,Binding
1178344,npm,screeps-typescript-declarations,Typescript declarations for Screeps API. To enable autocomplete and help with compilation,"Screeps,API,Typescript,Autocomplete",MIT,,28,1,,12,,,,,,,,,,Screeps,,,screeps,screeps,['15141670'],community,Binding
1178740,npm,node-sparky,Spark SDK for NodeJS,"cisco,cisco spark,spark,spark api,spark team,spark teams,spark bot,spark machine accounts,flint,webex,webex teams,webex bot",MIT,https://github.com/flint-bot/sparky,123,3,,17,17551926,GitHub,flint-bot/sparky,"Cisco Spark API for NodeJS (for support, chat with us here: https://eurl.io/#rkwLEq4fZ)",False,16.0,MIT,,"cisco,spark",Spark,https://github.com/flint-bot/sparky,github,spark,spark,"['11846538', '27909023', '38722051']",community,Binding
1179184,npm,architect-winston-logger,Wrapper for winston to use architect,,MIT,[email protected]:blossom/logger.git,8,0,,0,,,,,,,,,,winston,,,winston,winston,['72007'],community,Binding
1179324,npm,dockerfilelint,A linter for Dockerfiles to find bugs and encourage best practices,"dockerfile,lint,linter",MIT,https://github.com/replicatedhq/dockerfilelint,17,2,,4,4972914,GitHub,replicatedhq/dockerfilelint,An opinionated Dockerfile linter.,False,361.0,MIT,,"dockerfile,linter",Dockerfiles,https://github.com/replicatedhq/dockerfilelint,github,dockerfiles,dockerfiles,"['2847494', '13426539', '19997475', '22343909']",community,Binding
1184567,Maven,com.composum.sling.core:composum-sling-core-commons,general components and objects to use the Sling API,,MIT,https://github.com/ist-dresden/composum,30,0,,3,2451778,GitHub,ist-dresden/composum,yet another Apache Sling based Application Platform (asap),False,46.0,MIT,,,Sling,https://github.com/ist-dresden/composum,github,sling,sling,['29291205'],community,Binding
1185266,Maven,com.arpnetworking.metrics.extras:codahale-extra-parent,Extension to metrics-java-client which adapts the client for use in conjunction or in place of the Codahale metrics library.,,Apache-2.0,https://github.com/ArpNetworking/metrics-codahale-extra,6,0,,0,3337709,GitHub,ArpNetworking/metrics-codahale-extra,Extras for codahale metrics users,False,0.0,Apache-2.0,,,metrics,,,metrics,metrics,"['186909', '29729566']",community,Binding
1186591,Maven,org.openpnp:opencv,OpenCV packaged with native libraries and loader for multiple platforms.,,DSDP,https://github.com/openpnp/opencv,7,4,,67,3348960,GitHub,openpnp/opencv,"OpenCV Java bindings packaged with native libraries, seamlessly delivered as a turn-key Maven dependency.",True,74.0,Other,,,OpenCV,http://github.com/openpnp/opencv,github,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
1186606,Maven,com.truward.orion:user-service-spring-security,Client Packages of Orion User Service,,Apache-2.0,https://github.com/truward/user-service-client.git,9,0,,0,1137140,GitHub,truward/user-service-client,Client Packages of Orion User Service,False,0.0,,,,Orion,,,orion,orion,['37981235'],community,Binding
1189114,Maven,com.monkeylearn:monkeylearn-java,Official Java client for the MonkeyLearn API.,,MIT,https://github.com/monkeylearn/monkeylearn-java,3,0,,4,3887797,GitHub,monkeylearn/monkeylearn-java,Official Java client for the MonkeyLearn API. Build and consume machine learning models for language processing from your Java apps.,False,22.0,MIT,,"language-processing,machine-learning,monkeylearn-java,natural-language-processing,nlp,text-classification",MonkeyLearn,http://monkeylearn.com,monkeylearn,monkeylearn,monkeylearn,['10115427'],community,Binding
1189957,npm,creme,"Creme is a simple API for creating and managing DOM elements, built on top of Google's Incremental DOM.","creme,incremental-dom,incremental dom,dom,sugar",MIT,https://github.com/keeto/creme,4,0,,0,5028437,GitHub,keeto/creme,"Creme is a simple API for creating and managing DOM elements, built on top of Google's Incremental DOM.",False,2.0,MIT,,,Creme,https://github.com/keeto/creme,github,creme,creme,['37830346'],community,Binding
1191584,PyPI,python-sdcclient,SDC Client,,Other,https://github.com/telefonicaid/fiware-sdc,9,0,,1,527764,GitHub,telefonicaid/fiware-sdc,Software Deployment and Configuration for Fiware,False,2.0,Apache-2.0,,,SDC,https://github.com/telefonicaid/fiware-sdc/python-sdcclient,github,sdc,sdc,['25352847'],community,Binding
1194817,PyPI,skflow,Simplified Interface for TensorFlow for Deep Learning,"Deep Learning,Neural Networks,Google,TensorFlow,Machine Learning",Apache-2.0,https://github.com/tensorflow/skflow,1,0,,9,3368523,GitHub,tensorflow/skflow,Simplified interface for TensorFlow (mimicking Scikit Learn) for Deep Learning,False,3168.0,Apache-2.0,,,TensorFlow,https://github.com/tensorflow/skflow,github,tensorflow,tensorflow,"['3109714', '27253426', '39323364']",same_repo_owner,Binding
1199232,npm,fuhub-client,hub client,client,MIT,https://github.com/fuhub/fuhub-client,31,2,,0,5144560,GitHub,fuhub/fuhub-client,client to my fun hub,False,0.0,MIT,,,hub,https://github.com/fuhub/fuhub-client,github,hub,hub,"['34841639', '35545110']",community,Binding
1199420,PyPI,ffnetui,GUI for ffnet - feed-forward neural network for python,artificial neural networks,GPL-3.0,,3,0,,1,,,,,,,,,,ffnet,http://ffnet.sourceforge.net,sourceforge,ffnet,ffnet,['6497084'],community,Binding
1200404,npm,mango-cli-core,Core module for the mango-cli,"mango-cli,mangoweb",MIT,https://github.com/manGoweb/mango-cli-core,1,1,,0,5162999,GitHub,manGoweb/mango-cli-core,Subset of the mango-cli for a production use only...,False,1.0,MIT,,,mango,http://mangoweb.github.io/mango,github,mango,mango,['19555071'],community,Binding
1201742,npm,flow-api,The flow api library and CLI app.,"jillix,engine,tools",MIT,https://github.com/jillix/flow-api,1,1,,1,379962,GitHub,jillix/flow-api,🔆 Flow API,False,1.0,MIT,,,flow,https://github.com/jillix/flow-api,github,flow,flow,"['12755978', '29309986']",community,Binding
1202025,npm,facefinder,An experimental module using OpenCV node.js bindings to detect faces in an image.,,ISC,https://github.com/scaryguy/facefinder,3,2,,0,8154854,GitHub,scaryguy/facefinder,An experimental module using OpenCV node.js bindings to detect faces in an image.,False,2.0,,,,OpenCV,https://github.com/scaryguy/facefinder,github,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
1206416,PyPI,nn_wtf,Neural Networks Wrapper for TensorFlow,machine learning neural networks tensorflow,Apache-2.0,https://github.com/lene/nn-wtf,8,0,,0,5170733,GitHub,lene/nn-wtf,Neural Networks Wrapper for TensorFlow,False,0.0,Apache-2.0,,,TensorFlow,http://github.com/lene/nn-wtf,github,tensorflow,tensorflow,"['3109714', '27253426', '39323364']",community,Binding
1206924,npm,flow-bin-win,Binary wrapper for Flow - A static type checker for JavaScript,"cli-app,cli,bin,binary,flow,facebook,type,inference,check,checker,javascript,js,wrapper",MIT,https://github.com/aabenoja/flow-bin,2,0,,1,5377516,GitHub,aabenoja/flow-bin,Binary wrapper for Flow - A static type checker for JavaScript,True,0.0,BSD-3-Clause,,,Flow,https://github.com/aabenoja/flow-bin,github,flow,flow,"['12755978', '29309986']",community,Binding
1211491,NuGet,OpenCV-legacy,"OpenCV (Open Source Computer Vision) is a library of programming functions for realtime computer vision. OpenCV is released under a BSD license and hence it’s free for both academic and commercial use. It has C++, C, Python and Java (Android) interfaces and supports Windows, Linux, Android, iOS and Mac OS. It has more than 2500 optimized algorithms. Adopted all around the world, OpenCV has more than 7 million downloads growing by nearly 200K/month. Usage ranges from interactive art, to mines inspection, stitching maps on the web on through advanced robotics.","Computer,Vision,Image,OpenCV,Processing,nativepackage,native",,,4,0,,0,,,,,,,,,,OpenCV,http://opencv.org/,opencv,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
1211615,PyPI,pyculiar,A pure python port of Twitter's AnomalyDetection R Package.,data anomaly detection pandas timeseries,GPL-2.0+,https://github.com/wdm0006/pyculiarity,3,0,,0,5053648,GitHub,wdm0006/pyculiarity,A minimal pure python port of Twitter's AnomalyDetection R Package,True,15.0,GPL-3.0,,,AnomalyDetection,https://github.com/wdm0006/pyculiarity,github,anomalydetection,anomalydetection,"['36511641', '40722542']",community,Binding
1212417,npm,electron-speech,speech recognition cli and api for node using electron,"web,speech,electron,recognition,stt",,https://github.com/noffle/electron-speech,12,0,,1,5402632,GitHub,noffle/electron-speech,:microphone: Easy speech recognition in Node!,False,137.0,,,,speech recognition,https://github.com/noffle/electron-speech,github,speech recognition,speechrecognition,"['7708648', '34802812']",community,Binding
1213725,Cargo,enet-sys,Low level bindings to the enet C library,,MIT,https://github.com/ruabmbua/enet-sys,8,1,,3,5420693,GitHub,ruabmbua/enet-sys,Raw rust bindings to the enet C library,False,13.0,MIT,,"enet,game-development,networking,rust,udp",enet,,,enet,enet,['24799903'],community,Binding
1214117,NuGet,HoneyBear.HalClient,A lightweight fluent .NET client for navigating and consuming HAL APIs. Includes support for .NET Standard.,"JSON,REST,NetStandard,Hypermedia,HATEOAS,HAL,DotNetCore",MIT,https://github.com/eoin55/HoneyBear.HalClient,55,0,,1,4936759,GitHub,eoin55/HoneyBear.HalClient,A lightweight fluent .NET client for navigating and consuming HAL APIs.,False,25.0,MIT,,"api-client,api-rest,dotnet,dotnet-core,dotnetcore,fluent,fluent-chaining-methods,fluent-interface,hal-api,hal-client,hateoas,hateoas-hal,json,netstandard,rest,rest-api,rest-client,restapi,restful,restful-api",HAL,https://github.com/eoin55/HoneyBear.HalClient,github,hal,hal,['4824482'],community,Binding
1215820,npm,npm-cli-test,Command Line Interface for Lore (A convention driven framework for React + Redux applications),,MIT,https://github.com/storcery/lore,17,0,,0,9900435,GitHub,lore/lore,"Respectfully opinionated convention-driven framework for building React applications. Built on React, Webpack, Redux, and React Router.",False,185.0,MIT,,"framework,react,redux",Lore,https://github.com/storcery/lore,github,lore,lore,['29984059'],community,Binding
1217190,npm,koa-elm,koa wrapper for elm,,MIT,https://github.com/poying/koa-elm,4,0,,0,5971932,GitHub,poying/koa-elm,,False,1.0,,,,elm,https://github.com/poying/koa-elm,github,elm,elm,"['186221', '16190324']",community,Binding
1217860,Rubygems,bonanza-ruby-opencv,ruby-opencv is a wrapper of OpenCV for Ruby. It helps you to write computer vision programs (e.g. detecting faces from pictures) with Ruby.,,DSDP,https://github.com/ruby-opencv/ruby-opencv,9,0,,0,327063,GitHub,ruby-opencv/ruby-opencv,Versioned fork of the OpenCV gem for Ruby,True,677.0,BSD-3-Clause,,,OpenCV,https://github.com/ruby-opencv/ruby-opencv/,github,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
1220563,npm,octachore,Just a nodeJS wrapper for Tesseract,,MIT,https://github.com/Inist-CNRS/octachore,2,2,,0,6475775,GitHub,Inist-CNRS/octachore,Just another nodeJS wrapper for tesseract-ocr,False,1.0,MIT,,,Tesseract,https://github.com/Inist-CNRS/octachore,github,tesseract,tesseract,['852560'],community,Binding
1222859,npm,mongoose-pythia,"Mongoose plugin that uses the Pythia SDK to hash, store, and compare passwords.","mongoose,mongo,mongodb,password,hash,pythia,prf",MIT,https://github.com/cornelltech/mongoose-pythia,1,1,,0,6598218,GitHub,cornelltech/mongoose-pythia,"Mongoose plugin that uses the Pythia SDK to hash, store, and compare passwords.",False,0.0,MIT,,,Pythia,https://github.com/cornelltech/mongoose-pythia,github,pythia,pythia,"['10047204', '36723341']",community,Binding
1224341,npm,log-to-file-and-console-node,Simple winston wrapper transport log to file and console.,"winston,log,logger,file,console,transport",MIT,https://github.com/siutsin/log-to-file-and-console-node,4,0,,2,6617934,GitHub,siutsin/log-to-file-and-console-node,,False,0.0,MIT,,,winston,http://github.com/siutsin/log-to-file-and-console-node,github,winston,winston,['72007'],community,Binding
1225179,npm,drs,Client for Delta,,ISC,https://github.com/inboxappco/drs,3,0,,0,,,,,,,,,,Delta,,,delta,delta,"['38810725', '39651144']",community,Binding
1229178,CocoaPods,Tesseract-wrapper,Obj-C wrapper for Tesseract lib.,,MIT,https://github.com/ldiqual/tesseract-ios,1,0,,3,852150,GitHub,ldiqual/tesseract-ios,Tesseract OCR for iOS,False,588.0,MIT,,,Tesseract,https://github.com/ldiqual/tesseract-ios,github,tesseract,tesseract,['852560'],community,Binding
1235061,npm,cc-player-dxy,为丁香园定制的 CC 播放器的 API,"丁香园,CC 播放器",MIT,[email protected]:biz-developer/cc-player-dxy.git,1,0,,0,,,,,,,,,,CC,,,cc,cc,['36529672'],community,Binding
1235184,npm,blitz.js,"Blitz API, http://tv.alibaba.net/_site/blitz.js/index.html",,ISC,[email protected]:yuntv/blitzjs.git,4,0,,0,,,,,,,,,,Blitz,,,blitz,blitz,['12454418'],community,Binding
1235873,npm,node-espresso,An espresso client for node,espresso,MIT,https://github.com/paulot/node-espresso,3,1,,0,6726158,GitHub,paulot/node-espresso,An espresso db client for node,False,0.0,MIT,,,espresso,https://github.com/paulot/node-espresso,github,espresso,espresso,['10387293'],community,Binding
1239982,NuGet,Delivr.NET.Signed,Delivr.NET is a client-side library for accessing ESP (Email Service Providers) APIs running on Delivr platform.,esp,,,2,0,,0,,,,,,,,,,ESP,,,esp,esp,['4702225'],community,Binding
1245771,Rubygems,flowcommerce,Native ruby client for the Flow REST API. Detailed information at https://app.apibuilder.io/flow/api,,MIT,https://github.com/flowcommerce/ruby-sdk,188,2,,1,6848073,GitHub,flowcommerce/ruby-sdk,,False,0.0,MIT,,,Flow,https://github.com/flowcommerce/ruby-sdk,github,flow,flow,"['12755978', '29309986']",community,Binding
1245780,npm,mantra-core-native,Core API for Mantra,,MIT,https://github.com/mantrajs/mantra-core,2,2,,0,4741658,GitHub,mantrajs/mantra-core,Collection of Core APIs used in Mantra,False,67.0,MIT,,,Mantra,https://github.com/mantrajs/mantra-core,github,mantra,mantra,['37266822'],community,Binding
1251245,Rubygems,osdn-client,OSDN REST API. Currently this API is experimental release. Pelase refer documentation on https://osdn.net/projects/osdn-codes/wiki/APIGuide and you can get client libraries from https://osdn.net/projects/osdn-codes/releases/p14859 . ,,MIT,,5,1,,1,,,,,,,,,,OSDN,https://osdn.net/,osdn,osdn,osdn,['11707186'],community,Binding
1259006,PyPI,antg,Automated Neural-graph Toolkit: A Tensorflow wrapper for common deep learning tasks and rapid development of newmodels.,,Apache-2.0,,0,0,,0,,,,,,,,,,Tensorflow,http://aarontuor.xyz,aarontuor,tensorflow,tensorflow,"['3109714', '27253426', '39323364']",community,Binding
1259014,PyPI,angt,Automated Neural-graph Toolkit: A Tensorflow wrapper for common deep learning tasks and rapid development of newmodels.,"Deep Learning,Neural Networks,TensorFlow,Machine Learning,Western Washington University",Apache-2.0,,1,0,,0,,,,,,,,,,Tensorflow,http://aarontuor.xyz,aarontuor,tensorflow,tensorflow,"['3109714', '27253426', '39323364']",community,Binding
1259126,PyPI,pyenet,A python wrapper for the ENet library,development networking,BSD-3-Clause,https://github.com/piqueserver/pyenet,10,1,,5,26178299,GitHub,piqueserver/pyenet,A python wrapper for the ENet library (this fork is the source for the pypi package),True,2.0,BSD-3-Clause,,,ENet,https://github.com/piqueserver/pyenet/,github,enet,enet,['24799903'],community,Binding
1263173,Rubygems,ruby_postal,Ruby bindings for libpostal (fast address parsing/normalization),,MIT,https://github.com/openvenues/ruby_postal,5,0,,1,6463777,GitHub,openvenues/ruby_postal,Ruby bindings to libpostal for fast international address parsing/normalization,False,58.0,MIT,,,libpostal,https://github.com/openvenues/ruby_postal,github,libpostal,libpostal,['2895492'],same_repo_owner,Binding
1265432,NuGet,PureCat,Cat .Net client library,"apm,cat,log,track",MIT,https://github.com/chinaboard/PureCat,5,0,,0,4745603,GitHub,chinaboard/PureCat,Cat.Net客户端,参考了点评原生客户端和Jasmine的部分实现,False,13.0,MIT,,,Cat .Net,https://github.com/chinaboard/PureCat,github,cat net,catnet,['30792576'],community,Binding
1265592,npm,rootjs,Node bindings to the ROOT scientific framework,"binding,root,cplusplus",GPL-3.0,https://github.com/rootjs/rootjs,2,0,,0,3169692,GitHub,rootjs/rootjs,Node.js bindings for ROOT 6,False,5.0,GPL-3.0,,,ROOT,https://github.com/rootjs/rootjs,github,root,root,['1975658'],community,Binding
1268730,npm,yalo-layer,Helper functions to use with the API of Layer,"layer,yalo,promise",BSD-3-Clause,https://github.com/yalochat/layer_tools,2,1,,0,7099518,GitHub,yalochat/layer_tools,This repository contains helper functions to use the API of Layer,False,1.0,BSD-3-Clause,,,Layer,https://github.com/yalochat/layer_tools,github,layer,layer,['38723395'],community,Binding
1274044,npm,msda-translate-client,translate client,,,,1,1,,0,,,,,,,,,,translate,,,translate,translate,['35774700'],community,Binding
1277133,PyPI,antk,"Automated Neural-graph Toolkit: A Tensorflow wrapper for common deep learning tasks and rapid development of innovativemodels. Developed at Hutch Research, Western Washington University.Support for multiple input and output neural network graphs. Model visualizations and extensively documented interface. Explore tensorflow functionality and deep learning fundamentals.","Deep Learning,Neural Networks,TensorFlow,Machine Learning,Western Washington University,Recommender Systems",Other,,2,0,,0,,,,,,,,,,Tensorflow,http://aarontuor.xyz,aarontuor,tensorflow,tensorflow,"['3109714', '27253426', '39323364']",community,Binding
1277202,CocoaPods,MapLibraryWrapper,"Wrapper Swift library of Map libraries(e.g. MapKit, Google Maps).",,MIT,https://github.com/nakaji-dayo/MapLibraryWrapper,1,0,,0,5360220,GitHub,nakaji-dayo/MapLibraryWrapper,"Wrapper for iOS Map libraries(e.g. MapKit, Google Maps). written in Swift.",False,3.0,MIT,,,Map,https://github.com/nakaji-dayo/MapLibraryWrapper,github,map,map,['34414685'],community,Binding
1280195,npm,iflow-jquery,Flow Interface for jQuery,"flowInterface,flow-interface,flow,iflow",MIT,,5,2,,9,,,,,,,,,,Flow,,,flow,flow,"['12755978', '29309986']",community,Binding
1283582,PyPI,postal,Python bindings to libpostal for fast international address parsing/normalization,,MIT,https://github.com/openvenues/pypostal,12,0,,8,5382183,GitHub,openvenues/pypostal,Python bindings to libpostal for fast international address parsing/normalization,False,313.0,MIT,,"address,address-parser,binding,international,nlp",libpostal,https://github.com/openvenues/pypostal,github,libpostal,libpostal,['2895492'],same_repo_owner,Binding
1286945,npm,restflix,Netflix client,"netflix,rest,client,api,node",BSD-2-Clause,,1,0,,0,,,,,,,,,,Netflix,,,netflix,netflix,['3727191'],community,Binding
1286948,npm,netflix-api,Netflix API,"netflix,api,rest,client,node",BSD-2-Clause,,1,2,,0,,,,,,,,,,Netflix,,,netflix,netflix,['3727191'],community,Binding
1293553,NuGet,OrionWindows.Core,Library for Orion Windows,"Management,Orion,Identity",,,10,4,,0,,,,,,,,,,Orion,https://orion.shanecraven.com/,shanecraven,orion,orion,['37981235'],community,Binding
1300370,npm,rls-api,The official NodeJS module for the RLS api.,"Rocket League,Rocket League API,Rocket League Stats,Rocket League Stats API",MIT,https://github.com/RocketLeagueStats/rls-api-nodejs,4,0,,14,7299744,GitHub,RocketLeagueStats/rls-api-nodejs,,False,16.0,MIT,,,RLS,https://github.com/RocketLeagueStats/rls-api-nodejs,github,rls,rls,['40428954'],community,Binding
1307580,PyPI,Marshmallow-Peewee,Peewee integration with the marshmallow (de)serialization library.,"marshmallow,peewee",MIT,https://github.com/klen/marshmallow-peewee,34,1,,12,7428399,GitHub,klen/marshmallow-peewee,Peewee ORM integration with the marshmallow (de)serialization library.,False,38.0,MIT,,,marshmallow,https://github.com/klen/marshmallow-peewee,github,marshmallow,marshmallow,['30144092'],community,Binding
1307595,Packagist,potelo/laravel-predictionio,Laravel wrapper for PredictionIO v0.9.*,"api,wrapper,laravel,machine learning,predictionio",MIT,https://github.com/Potelo/laravel-predictionio,0,0,,0,7428488,GitHub,Potelo/laravel-predictionio,A PredictionIO wrapper for Laravel,False,2.0,,,,PredictionIO,,,predictionio,predictionio,['573443'],community,Binding
1329208,Packagist,cruxoft/bolt-api,RESTful API module for Bolt,"rest,api,bolt",Apache-2.0,https://github.com/irwtdvoys/bolt-api,43,2,,1,7821936,GitHub,irwtdvoys/bolt-api,RESTful API module for Bolt,False,0.0,Apache-2.0,,,Bolt,,,bolt,bolt,"['19562400', '40784040']",community,Binding
1332695,Packagist,droid/droid-git,Droid plugin for Git,"php,git,linkorb,droid",MIT,https://github.com/droid-php/droid-git,1,2,,2,7835840,GitHub,droid-php/droid-git,Droid plugin for Git,False,0.0,MIT,,,Droid,,,droid,droid,['30081291'],community,Binding
1347006,npm,complex-gamepad,complex module for the gamepad api,"complex,game,html5,gamepad,webgl,engine",ISC,https://github.com/faebeee/complex-gamepad,1,0,,0,8158748,GitHub,complexjs/complex-gamepad,,False,0.0,,,,gamepad,https://github.com/faebeee/complex-gamepad,github,gamepad,gamepad,['38470828'],community,Binding
1347842,NuGet,FANNCSharp-x64,"Fast Artificial Neural Network (FANN) Library is a free open source neural network library, which implements multilayer artificial neural networks in C with support for both fully connected and sparsely connected networks. Cross-platform execution in both fixed and floating point are supported. It includes a framework for easy handling of training data sets. It is easy to use, versatile, well documented, and fast. Fann C# is a wapper around FANN that lets you use the FANN libraries from C# on Windows. Currently all methods of the neural_net and training_data classes have been implemented. Additionally the new FANN parallel methods have been added as part of the NeuralNet classes.","Neural,Network,FANN,ANN,C#,backpropagation,wrapper,fast,Library,Fast,FANNCSharp,Artificial,x64",LGPL-2.1,https://github.com/joelself/FannCSharp,4,0,,3,3560725,GitHub,joelself/FannCSharp,A C# Wrapper for the Fast Artificial Neural Network library,True,17.0,LGPL-2.1,,,FANN,https://github.com/joelself/FannCSharp,github,fann,fann,"['852353', '27851746']",community,Binding
1347843,NuGet,FANNCSharp-x86,"Fast Artificial Neural Network (FANN) Library is a free open source neural network library, which implements multilayer artificial neural networks in C with support for both fully connected and sparsely connected networks. Cross-platform execution in both fixed and floating point are supported. It includes a framework for easy handling of training data sets. It is easy to use, versatile, well documented, and fast. Fann C# is a wapper around FANN that lets you use the FANN libraries from C# on Windows. Currently all methods of the neural_net and training_data classes have been implemented. Additionally the new FANN parallel methods have been added as part of the NeuralNet classes.","Neural,FANN,Network,ANN,wrapper,C#,backpropagation,fast,Library,Fast,FANNCSharp,Artificial,x86",LGPL-2.1,https://github.com/joelself/FannCSharp,4,0,,4,3560725,GitHub,joelself/FannCSharp,A C# Wrapper for the Fast Artificial Neural Network library,True,17.0,LGPL-2.1,,,FANN,https://github.com/joelself/FannCSharp,github,fann,fann,"['852353', '27851746']",community,Binding
1350213,Packagist,php-ai/php-ml,PHP-ML - Machine Learning library for PHP,"artificial intelligence,Neural network,machine learning,pattern recognition,computational learning theory,data science,feature extraction",MIT,https://github.com/php-ai/php-ml,14,17,,100,7198118,GitHub,php-ai/php-ml,PHP-ML - Machine Learning library for PHP,False,7567.0,MIT,,"artificial-intelligence,classification,cross-validation,data-mining,data-science,dataset,dimensionality-reduction,feature-extraction,machine,machine-learning,machine-learning-algorithms,machine-learning-library,neural-network,ngram-extraction,php,regression,supervised-learning,tokenization,unsupervised-learning",PHP-ML,https://php-ml.org/,php-ml,php ml,phpml,['7198118'],same_repo,Binding
1352752,npm,cafeteria,"Dumb wrapper of chai, sinon friends.","mocha,chai,sinon,javascript,test,tdd,assert,should",MIT,https://github.com/Pitzcarraldo/cafeteria,2,3,,2,8227265,GitHub,Pitzcarraldo/cafeteria,"Dumb wrapper of chai, sinon and friends.",False,0.0,,,,chai,https://github.com/Pitzcarraldo/cafeteria,github,chai,chai,['16510011'],community,Binding
1353657,npm,gamepad-api,Used Gamepad API to setup wrapper for nicer usage.,"gamepad,api,events,playstation",MIT,https://github.com/piecioshka/gamepad-api,2,1,,3,1180685,GitHub,piecioshka/gamepad-api,:hammer: Event Base handler for Gamepad API,False,1.0,,,,Gamepad,https://github.com/piecioshka/gamepad-api,github,gamepad,gamepad,['38470828'],community,Binding
1353688,npm,shower-gamepad,Support Gamepad API in shower.js (presentation architecture).,"gamepad,api,shower,presentation,slides,support",MIT,https://github.com/piecioshka/shower-gamepad,3,0,,0,1180636,GitHub,piecioshka/shower-gamepad,:hammer: Support Gamepad API in shower.js,False,0.0,,,,Gamepad,https://github.com/piecioshka/shower-gamepad,github,gamepad,gamepad,['38470828'],community,Binding
1369750,CRAN,plumber,An API Generator for R,,MIT,https://github.com/rplumber.iosite/trestletech,6,3,,12,,,,,,,,,,R,https://www.rplumber.io (site) https://github.com/trestletech/plumber (dev),io (site) https,r,r,['4689246'],community,Binding
1377082,Rubygems,rocket-ruby-sdk,"Rocket Ruby SDK to Rocket API, with this SDK you can create invoices and retrieve invoice status from out Simple Checkout System, you can make API calls when your plan have it.",,GPL-3.0-only,https://github.com/jonathanccalixto/rocket-ruby-sdk,1,0,,0,8770839,GitHub,jonathanccalixto/rocket-ruby-sdk,Ruby SDK to Rocket Systems API and Simple Checkout http://www.rocketpays.com,False,0.0,GPL-3.0,,,Rocket,https://github.com/jonathanccalixto/rocket-ruby-sdk,github,rocket,rocket,['40247662'],community,Binding
1377229,Clojars,stanfordnlp-clj,Simple wrapper for Stanford NLP tools.,,EPL-1.0,https://github.com/keorn/stanfordnlp-clj,1,0,,0,8775235,GitHub,keorn/stanfordnlp-clj,Simple Clojure wrapper for Stanford NLP tools,False,0.0,EPL-1.0,,,Stanford NLP,,,stanford nlp,stanfordnlp,['37860773'],community,Binding
1377542,npm,@modulus/logger,Winston wrapper with simplified interface,"logs,logger,exceptions,debug",MIT,git+https://github.com/onmodulus/logger.git,3,2,,3,3490767,GitHub,XervoIO/logger,Winston wrapper with simplified interface,False,1.0,MIT,,,Winston,https://github.com/onmodulus/logger#readme,github,winston,winston,['72007'],community,Binding
1377693,npm,@ephox/bolt,"Bolt, AMD-like module system for JavaScript",,Apache-2.0,https://github.com/ephox/bolt,17,23,,106,865048,GitHub,ephox/bolt,"bolt - quick, clean and easy javascript modules",False,3.0,Other,,,Bolt,https://github.com/ephox/bolt,github,bolt,bolt,"['19562400', '40784040']",community,Binding
1378972,npm,music-tag,ID3 reader and writer for NodeJS,"id3,tags,mp3",ISC,https://github.com/gnavalesi/music-tag,8,0,,2,8786122,GitHub,gnavalesi/music-tag,ID3 reader and writer for NodeJS,False,0.0,GPL-3.0,,,ID3,https://github.com/gnavalesi/music-tag,github,id3,id3,['4932403'],community,Binding
1382007,npm,@joepie91/gulp-partial-electron,A wrapper module for managing an Electron process,"gulp,partial,logging,livereload",WTFPL,http://git.cryto.net/joepie91/node-gulp-partial-electron.git,2,0,,0,,,,,,,,,,Electron,,,electron,electron,['25543319'],community,Binding
1385979,npm,igniteui-angular2,A packaged version of Ignite UI components for Angular,"ignite ui,igniteui,angular2,angular,infragistics,jquery widgets,jquery controls,data visualization,ui components,data grids",MIT,https://github.com/IgniteUI/igniteui-angular2,30,1,,5,7300659,GitHub,IgniteUI/igniteui-angular-wrappers,Ignite UI Angular component extensions by Infragistics,False,149.0,MIT,,"angular,components,extensions,ignite-ui,infragistics,ui-components",Ignite,https://github.com/IgniteUI/igniteui-angular2,github,ignite,ignite,['30366016'],community,Binding
1400470,npm,react-snake,Snake Component for React,,MIT,https://github.com/werein/react-snake,3,0,,0,5996709,GitHub,werein/react-snake,,False,0.0,MIT,,,Snake,https://github.com/werein/react-snake,github,snake,snake,['39850088'],community,Binding
1400567,Rubygems,cortex-snippets-client,"Provides loading of Cortex snippets for Ruby applications, with some Rails ViewHelpers",,Apache-2.0,https://github.com/cortex-cms/cortex-snippets-client-ruby,27,0,,0,3835698,GitHub,cortex-cms/cortex-snippets-client-ruby,"Provides loading of Cortex snippets for Ruby applications, with some Rails ViewHelpers",False,0.0,Apache-2.0,,,Cortex,https://github.com/cortex-cms/cortex-snippets-client-ruby,github,cortex,cortex,"['14427917', '38011472']",community,Binding
1401183,CocoaPods,LimeSDK,Connect your apps to Lime service,,GPL-2.0+,https://github.com/lime-company/lime-sdk-ios,1,0,,0,969313,GitHub,lime-company/lime-sdk-ios,Lime Engage SDK for iOS,False,1.0,GPL-3.0,Removed,,Lime,http://getlime.io/,getlime,lime,lime,['7026541'],community,Binding
1420227,Rubygems,wordsmith-ruby-sdk,Provides API clients for Wordsmith.,,Other,https://github.com/AutomatedInsightsInc/wordsmith-ruby-sdk,6,0,,1,9640906,GitHub,ai-wordsmith/wordsmith-ruby-sdk,A wrapper around the Wordsmith API for Ruby,False,2.0,Other,,,Wordsmith,https://github.com/AutomatedInsightsInc/wordsmith-ruby-sdk,github,wordsmith,wordsmith,['5628444'],community,Binding
1420420,npm,wordsmith-node-sdk,A Node.js wrapper for the Wordsmith API from Automated Insights,,Other,https://github.com/AutomatedInsightsInc/wordsmith-node-sdk,3,0,,1,9641055,GitHub,ai-wordsmith/wordsmith-node-sdk,A wrapper around the Wordsmith API for Node,False,10.0,Other,,,Wordsmith,https://github.com/AutomatedInsightsInc/wordsmith-node-sdk,github,wordsmith,wordsmith,['5628444'],community,Binding
1420731,npm,fable-import-electron,Fable bindings for Electron,"fable,fable-compiler,fsharp,F#",Apache-2.0,https://github.com/fable-compiler/Fable,9,0,,10,4628130,GitHub,fable-compiler/Fable,F# to JavaScript Compiler,False,1762.0,MIT,,"babel,fable,fsharp,javascript",Electron,https://github.com/fable-compiler/Fable,github,electron,electron,['25543319'],community,Binding
1421848,PyPI,smac,"SMAC3, a Python implementation of 'Sequential Model-based Algorithm Configuration'.","machine learning,algorithm configuration,hyperparameter optimization,tuning",BSD-3-Clause,,22,0,,27,,,,,,,,,,SMAC3,UNKNOWN,UNKNOWN,smac3,smac3,['12660458'],community,Binding
1428287,Rubygems,mitier,MITIE library wrapped in Ruby with FFI. See https://github.com/mit-nlp/MITIE,,MIT,https://github.com/satek/mitier,1,0,,0,9817637,GitHub,satek/mitier,MITIE library wrapped in Ruby with FFI,False,3.0,MIT,,,MITIE,http://github.com/satek/mitier,github,mitie,mitie,['852257'],community,Binding
1430236,NuGet,i2e.gesture-recognition,A .NET api for gesture recognition,"gestures,human-computer-interaction",,https://github.com/i2e-haw-hamburg/gesture-recognition,22,0,,0,6446534,GitHub,i2e-haw-hamburg/gesture-recognition,,False,0.0,,,,gesture recognition,https://github.com/i2e-haw-hamburg/gesture-recognition,github,gesture recognition,gesturerecognition,"['3826983', '40137568']",community,Binding
1430244,PyPI,cv2-wrapper,Wrapper for python opencv 2.4.12 32bit,"opencv,cv2,python",Other,https://github.com/lucasolivier/cv2-wrapper,1,0,,3,9837783,GitHub,lucasolivier/cv2-wrapper,,False,0.0,,Removed,,opencv,https://github.com/lucasolivier/cv2-wrapper,github,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
1432215,NuGet,Td.Client,TD Client Provider,,,,1,0,,0,,,,,,,,,,TD,,,td,td,['37155161'],community,Binding
1432255,PyPI,zoo,Zoo is a rpc framework for Python,,MIT,https://github.com/omsobliga/zoo,1,0,,4,,,,,,,,,,Zoo,https://github.com/omsobliga/zoo,github,zoo,zoo,['39112241'],community,Binding
1434057,npm,opencv2,Node Bindings to OpenCV,"opencv,computer,vision,quadrocopter",MIT,https://github.com/peterbraden/node-opencv,1,0,,0,120303,GitHub,peterbraden/node-opencv,OpenCV Bindings for node.js,False,3893.0,MIT,,,OpenCV,https://github.com/peterbraden/node-opencv,github,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
1434332,PyPI,cv2wrap,Wrapper for python opencv 2.4.12 32bit,"opencv,cv2,python",Other,https://github.com/lucasolivier/cv2wrap,1,0,,3,9875262,GitHub,iolucas/cv2wrap,,False,0.0,MIT,,,opencv,https://github.com/lucasolivier/cv2wrap,github,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
1436440,Cargo,tensorflow,Rust language bindings for TensorFlow.,"bindings,tensorflow",Apache-2.0,https://github.com/tensorflow/rust,20,7,,20,4944486,GitHub,tensorflow/rust,Rust language bindings for TensorFlow,False,2064.0,Apache-2.0,,"machine-learning,rust,tensorflow",TensorFlow,,,tensorflow,tensorflow,"['3109714', '27253426', '39323364']",same_repo_owner,Binding
1439031,npm,flowpipe,pipeline async utilities for javascript,"async,flowpipe,pipe,pipe,loop,loopback",ISC,https://github.com/proin/pipeflow,19,1,,2,9968595,GitHub,proin/flowpipe,pipeline async utilities for javascript,False,7.0,ISC,,,pipeline,https://github.com/proin/pipeflow,github,pipeline,pipeline,"['2699195', '3765103']",community,Binding
1439100,Rubygems,mantisrb,Ruby api client for Mantis bug tracker,,MIT,https://github.com/eiser82/mantisrb,1,0,,4,9969874,GitHub,eiser82/mantisrb,Ruby api client for Mantis bug tracker,False,0.0,MIT,,,Mantis,https://github.com/eiser82/mantisrb,github,mantis,mantis,['8640913'],community,Binding
1440995,PyPI,opencv-python,Wrapper package for OpenCV python bindings.,,MIT,https://github.com/skvark/opencv-python,30,4,,6280,8203653,GitHub,skvark/opencv-python,"Automated CI toolchain to produce precompiled opencv-python, opencv-python-headless, opencv-contrib-python and opencv-contrib-python-headless packages.",False,1066.0,Other,,"manylinux,opencv,opencv-contrib-python,opencv-python,precompiled,pypi,python,python-3,wheel",OpenCV,https://github.com/skvark/opencv-python,github,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
1441597,PyPI,doom-py,Python bindings to ViZDoom,,MIT,https://github.com/openai/doom-py,15,0,,8,9999819,GitHub,openai/doom-py,ViZDoom Python wrapper,False,52.0,MIT,,,ViZDoom,https://github.com/openai/doom-py,github,vizdoom,vizdoom,['6682416'],community,Binding
1441620,PyPI,mmtf-pyspark,A library to act as an API for mmtf-spark tools.,,Apache-2.0,https://github.com/rcsb/mmtf-pyspark,11,0,,0,9999625,GitHub,rcsb/mmtf-pyspark,,False,1.0,Apache-2.0,Removed,,mmtf-spark,https://github.com/rcsb/mmtf-pyspark.git,github,mmtf spark,mmtfspark,['25476181'],community,Binding
1446808,PyPI,cv_utils,Computer Vision or OpenCV python utility functions. It also includes basic utilities for image processing and computer vision related tasks.,"computer vision,image processing,utility,template matching,deep networks",Other,https://github.com/gmichaeljaison/cv-utils,6,0,,1,10029707,GitHub,gmichaeljaison/cv-utils,Computer Vision and OpenCV python utility functions. It also includes basic utilities for image processing and computer vision related tasks.,False,5.0,GPL-3.0,,,OpenCV,https://github.com/gmichaeljaison/cv-utils,github,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
1454465,npm,competitive-logger,A wrapper for winston,,ISC,https://github.com/ajouve/competitive-logger,7,0,,0,10055828,GitHub,ajouve/competitive-logger,,False,0.0,,,,winston,https://github.com/ajouve/competitive-logger,github,winston,winston,['72007'],community,Binding
1462394,npm,munin-hci,"Server counterpart to hugin, a library that facilitates information retrieval and centralization for longitudinal HCI studies",,MIT,https://github.com/oin/munin-hci,3,0,,0,10084370,GitHub,oin/munin-hci,"Server counterpart to hugin, a library that facilitates information retrieval and centralization for longitudinal HCI studies.",False,0.0,MIT,,,hugin,https://github.com/oin/munin-hci,github,hugin,hugin,['40354167'],community,Binding
1462419,npm,hapiest-logger,A wrapper around Winston that provides explicit functions for syslog logging levels,"hapi.js,hapiest,logger,logging,winston",ISC,https://github.com/jonathan-fulton/hapiest-logger,8,12,,10,10078608,GitHub,jonathan-fulton/hapiest-logger,,False,0.0,,,,Winston,https://github.com/jonathan-fulton/hapiest-logger,github,winston,winston,['72007'],community,Binding
1462898,npm,warp-sdk-js,Warp JavaScript SDK,"warp,js",MIT,https://github.com/dividedbyzeroco/warp-sdk-js,167,2,,2,10101626,GitHub,dividedbyzeroco/warp-sdk-js,JavaScript SDK for Warp Server,False,7.0,,,,Warp,https://github.com/dividedbyzeroco/warp-sdk-js,github,warp,warp,['793643'],community,Binding
1475703,Packagist,getolympus/olympus,"The Olympus framework, your simple, easy to use and powerfull framework to deploy and work with WordPress. An awesome framework build with ♥ for WordPress developers.","framework,php,composer,wordpress,capistrano,olympus",MIT,https://github.com/GetOlympus/Olympus,22,0,,0,4442224,GitHub,GetOlympus/Olympus,"Olympus, the easiest and secure way to install WordPress websites with the powerfull Zeus Core framework.",False,1.0,MIT,,"capistrano,composer,olympus,olympus-framework,wordpress,wordpress-development,wordpress-website",Olympus,,,olympus,olympus,['30174392'],community,Binding
1475823,npm,tbx,Toolbox for Node,,ISC,https://github.com/meg768/tbx,4,0,,0,10170123,GitHub,meg768/node-tbx,Toolbox for Node,False,0.0,,Removed,,Toolbox,https://github.com/meg768/tbx,github,toolbox,toolbox,['8342728'],community,Binding
1475884,PyPI,neon-py,NEON parser for Python,"neon,parser,config file",BSD-3-Clause,https://github.com/paveldedik/neon-py,5,0,,0,10172613,GitHub,paveldedik/neon-py,NEON parser for Python.,False,18.0,BSD-3-Clause,,"neon,nette,parsing,python,yaml",NEON,https://github.com/paveldedik/neon-py,github,neon,neon,['845216'],community,Binding
1475902,npm,sia-api,SIA REST API Wrapper,"sia,siacoin,storage,distributed",MIT,https://github.com/aspectron/sia-api,14,0,,1,10173036,GitHub,MegaStor/sia-api,,False,0.0,,,,SIA,https://github.com/aspectron/sia-api,github,sia,sia,['16694501'],community,Binding
1475963,npm,electron-meteor,Full Meteor Client for Electron,"react-component,ddp,meteor,react,electron",MIT,https://github.com/inProgress-team/electron-meteor,5,0,,0,10176136,GitHub,inProgress-team/electron-meteor,,False,11.0,MIT,,,Electron,https://github.com/inProgress-team/electron-meteor,github,electron,electron,['25543319'],community,Binding
1480715,CocoaPods,NTPKit,A Simple NTP framework for iOS,,BSD-3-Clause,https://github.com/ncvitak/NTPKit,2,0,,1,10124034,GitHub,ncvitak/NTPKit,A simple NTP framework for iOS,False,2.0,BSD-2-Clause,,,NTP,https://github.com/ncvitak/NTPKit,github,ntp,ntp,['32528693'],community,Binding
1481056,PyPI,cortex,A library for wrapping your pytorch code,deep learning neuroimaging,GPL-2.0+,https://github.com/rdevon/cortex,4,0,,0,10229294,GitHub,rdevon/cortex_old,Cortex - Deep learning tools for neuroimaging,False,29.0,GPL-3.0,,,pytorch,https://github.com/rdevon/cortex,github,pytorch,pytorch,['18883757'],community,Binding
1481772,npm,@ryancavanaugh/gamepad,Type definitions for Gamepad API from https://www.github.com/DefinitelyTyped/DefinitelyTyped,,MIT,,8,0,,0,,,,,,,,,,Gamepad,,,gamepad,gamepad,['38470828'],community,Binding
1487158,NuGet,VowpalWabbit.JSON,Official Vowpal Wabbit library including C# interface.,"vw,wabbit,ml,vowpal,langford,machine,learning",Other,https://github.com/JohnLangford/vowpal_wabbit,71,2,,0,852009,GitHub,VowpalWabbit/vowpal_wabbit,"Vowpal Wabbit is a machine learning system which pushes the frontier of machine learning with techniques such as online, hashing, allreduce, reductions, learning2search, active, and interactive learning.",False,6767.0,Other,,"active-learning,c-plus-plus,contextual-bandits,cpp,learning-to-search,machine-learning,online-learning,reinforcement-learning",Vowpal Wabbit,https://github.com/JohnLangford/vowpal_wabbit/wiki/C%23-Binding,github,vowpal wabbit,vowpalwabbit,"['852009', '39434262']",same_repo,Binding
1494797,Packagist,herzcthu/laravel-nmap,nmap wrapper for laravel 5.2,,MIT,https://github.com/herzcthu/LaravelNmap,1,0,,1,10349333,GitHub,herzcthu/LaravelNmap,Nmap wrapper for laravel,False,4.0,MIT,,,nmap,,,nmap,nmap,['852438'],community,Binding
1508005,PyPI,screeps,Library connecting to the screeps api.,,AGPL-3.0,https://github.com/TooAngel/python-screeps,6,0,,1,10471975,GitHub,TooAngel/python-screeps,Library to connect to the screeps API either via REST or websocket.,False,2.0,AGPL-3.0,,,screeps,https://github.com/TooAngel/python-screeps,github,screeps,screeps,['15141670'],same_repo_owner,Binding
1519056,PyPI,kerasio,Deep Learning for Python,,MIT,https://github.com/fchollet/keras,2,0,,0,815940,GitHub,keras-team/keras,Deep Learning for humans,False,45995.0,Other,,"data-science,deep-learning,machine-learning,neural-networks,python,tensorflow",Deep Learning,https://github.com/fchollet/keras,github,deep learning,deeplearning,"['851269', '2966203', '2989847', '3068030', '3088491', '3459073', '3522986', '3768078', '3984140', '3984213', '4387572', '4611958', '4976042', '6229890', '6995779', '11786389', '18843917', '20081109', '20241548', '21718912', '24656936', '25411819', '25454467', '26873714', '27095120', '28451439', '29254147', '30621862', '30749079', '31595197', '33132158', '33200728', '35379437', '41184013']",community,Binding
1522921,npm,translate-resx,Translate .resx files with the translation API provided by Google Cloud Platform,"translate-resx,.resx translation,resource file translations,google translate api",MIT,https://github.com/ryanluton/translate-resx,2,0,,0,10668048,GitHub,ryanluton/translate-resx,RESX Translations provided by the google translate API,False,0.0,,,,Translate,https://github.com/ryanluton/translate-resx,github,translate,translate,['35774700'],community,Binding
1523833,npm,zipkin-context-cls,A Context API implementation that uses continuation-local-storage under the hood,,Apache-2.0,https://github.com/openzipkin/zipkin-js,15,45,,65,10076291,GitHub,openzipkin/zipkin-js,Zipkin instrumentation for Node.js and browsers,False,376.0,,,"distributed-tracing,javascript,nodejs,openzipkin,tracing,zipkin",Context,https://github.com/openzipkin/zipkin-js,github,context,context,['26252700'],community,Binding
1526047,PyPI,pyramid-avro,Avro RPC Bindings for Pyramid,pyramid avro,Apache-2.0,https://github.com/packagelib/pyramid-avro,3,0,,0,10740537,GitHub,packagelib/pyramid-avro,Avro RPC Plugin for Pyramid Web Applications,False,0.0,,,,Pyramid,http://github.com/packagelib/pyramid-avro,github,pyramid,pyramid,['10568701'],community,Binding
1526064,npm,mantra-plus,Core API for Mantra,,MIT,https://github.com/sammkj/mantra-plus,8,0,,3,10722812,GitHub,sammkj/mantra-plus,Core API with extras for Mantra,False,4.0,,,,Mantra,https://github.com/sammkj/mantra-plus,github,mantra,mantra,['37266822'],community,Binding
1526343,PyPI,bob.example.cmake,Example project using Bob C++ interface,,GPL-3.0,https://github.com/bioidiap/bob.example.cmake,2,0,,0,10449339,GitHub,bioidiap/bob.example.cmake,Example package on how to use the C++ interface of Bob,False,0.0,BSD-3-Clause,Removed,,Bob,https://github.com/bioidiap/bob.example.cmake,github,bob,bob,"['681624', '18843112']",community,Binding
1526860,npm,hackerrank-cli,HackerRank Node CLI for running code online,"hackerrank,compile,run,manraj,singh,cli,code,grover",MIT,https://github.com/ManrajGrover/HackerRank-CLI,6,0,,0,10728350,GitHub,ManrajGrover/HackerRank-CLI,CLI for running code using HackerRank API,False,7.0,MIT,,,HackerRank,https://github.com/ManrajGrover/HackerRank-CLI,github,hackerrank,hackerrank,['39033611'],community,Binding
1529808,PyPI,stanza,NLP library for Python,"nlp,neural networks,machine learning",MIT,https://github.com/stanfordnlp/stanza,3,0,,1,4612461,GitHub,stanfordnlp/stanza,Stanford NLP group's shared Python tools.,False,121.0,Apache-2.0,,"natural-language-processing,nlp,python,text-analysis,text-processing",NLP,https://github.com/stanfordnlp/stanza,github,nlp,nlp,"['22309865', '31964017', '38155979']",community,Binding
1531376,PyPI,tflearn,Deep Learning Library featuring a higher-level API for TensorFlow,"TFLearn,TensorFlow,Deep Learning,Machine Learning,Neural Networks,AI",MIT,https://github.com/tflearn/tflearn,5,0,,327,7464544,GitHub,tflearn/tflearn,Deep learning library featuring a higher-level API for TensorFlow.,False,8752.0,Other,Removed,"data-science,deep-learning,machine-learning,neural-network,tensorflow,tflearn",TensorFlow,https://github.com/tflearn/tflearn,github,tensorflow,tensorflow,"['3109714', '27253426', '39323364']",community,Binding
1535932,Packagist,linkthrow/laravel-5-predictionio,Laravel 5 wrapper for PredictionIO v0.9.*,"api,wrapper,laravel,machine learning,predictionio",MIT,https://github.com/linkthrow/laravel-predictionio,7,0,,0,10956791,GitHub,linkthrow/Laravel-5-PredictionIO,Laravel PredictionIO Client,True,0.0,,Removed,,PredictionIO,,,predictionio,predictionio,['573443'],community,Binding
1538809,Rubygems,alchemy-sdk,SDK to connect to the Alchemy API.,,MIT,https://github.com/bschaeffer/alchemy-sdk,1,0,,1,10998570,GitHub,bschaeffer/alchemy-sdk,,False,0.0,,,,Alchemy,https://github.com/bschaeffer/alchemy-sdk,github,alchemy,alchemy,"['13491787', '40396672']",community,Binding
1538910,PyPI,wordsmith,A wrapper around the Wordsmith API written in python,,Other,https://github.com/AutomatedInsightsInc/wordsmith-python-sdk,2,0,,0,,,,,,,,,,Wordsmith,UNKNOWN,UNKNOWN,wordsmith,wordsmith,['5628444'],community,Binding
1542056,PyPI,arena,python interface to the are.na api,,MIT,https://github.com/frnsys/arena,5,0,,4,11070078,GitHub,frnsys/arena,python interface to the are.na API,False,12.0,,,,are.na,https://github.com/frnsys/arena,github,are na,arena,['37026823'],community,Binding
1543187,npm,hackerrank-node-wrapper,HackerRank API Node Wrapper,"hackerrank,node,wrapper,api,manraj,singh,grover",MIT,https://github.com/ManrajGrover/HackerRank-API-Node-Wrapper,4,0,,1,11090923,GitHub,ManrajGrover/HackerRank-Node-Wrapper,HackerRank API Node Wrapper,False,2.0,MIT,,,HackerRank,https://github.com/ManrajGrover/HackerRank-API-Node-Wrapper,github,hackerrank,hackerrank,['39033611'],community,Binding
1544779,NuGet,layer.dotnet,Layer API .NET portable library,Layer,,https://github.com/ahanoff/layer-api,1,0,,0,11059717,GitHub,ahanoff/layer-api,,False,1.0,,,,Layer,https://github.com/ahanoff/layer-api,github,layer,layer,['38723395'],community,Binding
1547862,PyPI,vowpalwabbit,Vowpal Wabbit Python package,fast machine learning online classification regression,BSD-1-Clause,https://github.com/JohnLangford/vowpal_wabbit,8,0,,7,852009,GitHub,VowpalWabbit/vowpal_wabbit,"Vowpal Wabbit is a machine learning system which pushes the frontier of machine learning with techniques such as online, hashing, allreduce, reductions, learning2search, active, and interactive learning.",False,6767.0,Other,,"active-learning,c-plus-plus,contextual-bandits,cpp,learning-to-search,machine-learning,online-learning,reinforcement-learning",Vowpal Wabbit,https://github.com/JohnLangford/vowpal_wabbit,github,vowpal wabbit,vowpalwabbit,"['852009', '39434262']",same_repo,Binding
1548014,npm,electron-apis,A JSON object describing Electron's APIs,"api,documentation,electron,json,markdown,node,schema",MIT,https://github.com/zeke/electron-apis,6,0,,0,11172348,GitHub,electron/electron-docs-linter,Parse and validate Electron's API documentation,False,16.0,,,,Electron,https://github.com/zeke/electron-apis,github,electron,electron,['25543319'],community,Binding
1548184,npm,calibre-serve,A calibre API and server,"calibre,express,http,sqlite",MIT,https://github.com/Xananax/calibre-serve,12,0,,0,11172913,GitHub,Xananax/calibre-serve,A node.js Calibre API and server,False,35.0,,,,calibre,https://github.com/Xananax/calibre-serve,github,calibre,calibre,['29941545'],community,Binding
1549206,Cargo,tensorflow-sys,The package provides bindings to TensorFlow.,,Apache-2.0,https://github.com/tensorflow/rust,21,2,,19,4944486,GitHub,tensorflow/rust,Rust language bindings for TensorFlow,False,2064.0,Apache-2.0,,"machine-learning,rust,tensorflow",TensorFlow,https://github.com/tensorflow/rust,github,tensorflow,tensorflow,"['3109714', '27253426', '39323364']",same_repo_owner,Binding
1550639,Cargo,tensorflux,The package provides an interface to TensorFlow.,,"Apache-2.0,MIT",https://github.com/stainless-steel/tensorflux,15,0,,0,11209387,GitHub,stainless-steel/tensorflux,Interface to TensorFlow,False,5.0,Other,,,TensorFlow,https://github.com/stainless-steel/tensorflux,github,tensorflow,tensorflow,"['3109714', '27253426', '39323364']",community,Binding
1551711,Clojars,cav/cljspark,Clojure wrapper for Spark.,,,,1,0,,0,,,,,,,,,,Spark,,,spark,spark,"['11846538', '27909023', '38722051']",community,Binding
1553032,npm,dljs,Deep Learning in JavaScript,"deep learning,machine learning",MIT,https://github.com/dherault/dljs,1,1,,0,11243912,GitHub,dherault/dljs,Deep Learning in JavaScript,False,1.0,MIT,,,Deep Learning,https://github.com/dherault/dljs,github,deep learning,deeplearning,"['851269', '2966203', '2989847', '3068030', '3088491', '3459073', '3522986', '3768078', '3984140', '3984213', '4387572', '4611958', '4976042', '6229890', '6995779', '11786389', '18843917', '20081109', '20241548', '21718912', '24656936', '25411819', '25454467', '26873714', '27095120', '28451439', '29254147', '30621862', '30749079', '31595197', '33132158', '33200728', '35379437', '41184013']",community,Binding
1560386,Cargo,qml,Safe QML bindings for Rust,"bindings,ffi,gui,qml,qt",MIT,https://github.com/White-Oak/qml-rust,9,1,,7,11374544,GitHub,White-Oak/qml-rust,QML (Qt Quick) bindings for Rust language,False,113.0,MIT,,,QML,,,qml,qml,"['24790838', '40539770']",community,Binding
1563399,Packagist,lexismith/laravel-alchemy,Package for Laravel integration with Alchemy API,,MIT,https://github.com/alexandrasmith00/laravel-alchemy,0,0,,0,11433458,GitHub,alexandrasmith00/laravel-alchemy,,False,0.0,,,,Alchemy,,,alchemy,alchemy,"['13491787', '40396672']",community,Binding
1563492,npm,node-caffe,Caffe bindings for node,caffe,MIT,https://github.com/silklabs/node-caffe,5,0,,0,16663039,GitHub,silklabs/node-caffe,Caffe bindings for node,False,24.0,,,,Caffe,https://github.com/silklabs/node-caffe,github,caffe,caffe,"['851994', '13013900']",community,Binding
1565702,Clojars,keorn/stanfordnlp-clj,Simple wrapper for Stanford NLP tools.,,EPL-1.0,https://github.com/keorn/stanfordnlp-clj,1,0,,0,8775235,GitHub,keorn/stanfordnlp-clj,Simple Clojure wrapper for Stanford NLP tools,False,0.0,EPL-1.0,,,Stanford NLP,,,stanford nlp,stanfordnlp,['37860773'],community,Binding
1567443,Rubygems,skeletor_api,The api client for accessing skeletor.,,MIT,,1,1,,0,,,,,,,,,,skeletor,https://www.github.com,github,skeletor,skeletor,['36813293'],community,Binding
1567448,npm,electron-docs-linter,A JSON object describing Electron's APIs,"api,documentation,electron,json,markdown,node,schema",MIT,https://github.com/electron/electron-docs-linter,51,5,,118,11172348,GitHub,electron/electron-docs-linter,Parse and validate Electron's API documentation,False,16.0,,,,Electron,https://github.com/electron/electron-docs-linter,github,electron,electron,['25543319'],community,Binding
1568210,Cargo,tensorflux-sys,The package provides bindings to TensorFlow.,,"Apache-2.0,MIT",https://github.com/stainless-steel/tensorflux-sys,4,1,,1,11178927,GitHub,stainless-steel/tensorflux-sys,Binding to TensorFlow,False,1.0,Other,,,TensorFlow,https://github.com/stainless-steel/tensorflux-sys,github,tensorflow,tensorflow,"['3109714', '27253426', '39323364']",community,Binding
1570492,npm,@flow-atom/electron,Flow declarations for the Electron API,,ISC,https://github.com/flow-atom/flow-electron-api,1,1,,1,10539574,GitHub,flow-atom/flow-electron-api,Flow declarations for the Atom API,False,3.0,,,,Electron,https://github.com/flow-atom/flow-electron-api,github,electron,electron,['25543319'],community,Binding
1572584,CPAN,Geo-libpostal,Perl bindings for libpostal,,BSD-2-Clause-FreeBSD,https://github.com/dnmfarrell/Geo-libpostal,7,0,,0,11685634,GitHub,dnmfarrell/Geo-libpostal,Perl bindings for libpostal,False,3.0,BSD-2-Clause,,,libpostal,,,libpostal,libpostal,['2895492'],community,Binding
1573141,Packagist,resnext/solaris-api-client,PHP Client for Solaris platform,"api,solaris,Binary Options",MIT,https://github.com/resnext/solaris-api-client,6,0,,0,11678728,GitHub,resnext/solaris-api-client,API Client for binary options platform Solaris.,False,1.0,MIT,,,Solaris,,,solaris,solaris,['38955173'],community,Binding
1579473,npm,winston-meta-wrapper,Wraps Winston logger to always add a set of metadata,"winston,metadata,wrapper",MIT,https://github.com/MicroMinion/winston-meta-wrapper,4,19,,18,11819045,GitHub,MicroMinion/winston-meta-wrapper,Wraps winston logger instance to always add a set of metadata,False,4.0,MIT,,,Winston,https://github.com/MicroMinion/winston-meta-wrapper,github,winston,winston,['72007'],community,Binding
1581689,npm,suitape,A tiny wrapper for Tape to allow grouping tests in suites,"tape,suite,test",ISC,https://github.com/jartmez/suitape,7,2,,0,11852013,GitHub,jartmez/suitape,A tiny wrapper for Tape to allow grouping tests in suites,False,1.0,,,,Tape,https://github.com/jartmez/suitape,github,tape,tape,['40775741'],community,Binding
1582657,npm,nova-base,Foundation for Nova API framework,"nova,action,framework",MIT,https://github.com/herculesinc/nova-base,30,5,,5,11881241,GitHub,herculesinc/nova-base,Foundation for Nova API framework,False,0.0,,,,Nova,https://github.com/herculesinc/nova-base,github,nova,nova,['12196552'],community,Binding
1584113,npm,react-component-tape-util,Tape wrapper to test React components without all of that boilerplate,"react,testing,tape,component",ISC,https://github.com/wethersherbs/react-component-tape-util,3,0,,0,11924301,GitHub,wethersherbs/react-component-tape-util,Testing React Components without all that boilerplate,False,0.0,ISC,,,Tape,https://github.com/wethersherbs/react-component-tape-util,github,tape,tape,['40775741'],community,Binding
1584604,Cargo,whereami,whereami for Rust,"filesystem,location,where,whereami",MIT,https://github.com/nabijaczleweli/whereami-rs,3,0,,0,11933210,GitHub,nabijaczleweli/whereami-rs,whereami for Rust,False,0.0,MIT,,,whereami,https://github.com/gpakosz/whereami,github,whereami,whereami,['13519338'],community,Binding
1585019,NuGet,opencv.win.native,Pre-built OpenCV binaries on Windows (Win32 DLLs). This package contains native builds of OpenCV3 - C++ for Visual Studio 2015/2017. (Supports x86 and x64.),"OpenCV3,CVWin,OpenCV,Cpp,ComputerVision,VS2017,C++,VisualStudio,VS2015,windows,native,Win32,nativepackage",BSD-3-Clause,https://github.com/cvwin/cvwin,17,0,,18,11945947,GitHub,cvwin/cvwin,OpenCV build for .Net and UWP.,False,5.0,BSD-3-Clause,,,OpenCV,https://github.com/cvwin/cvwin/,github,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
1587947,npm,hands,simple gamepad API interface for browser,"gamepad,API,controller",ISC,https://github.com/connorwalsh/hands-js,2,0,,0,12028678,GitHub,connorwalsh/hands-js,simple gamepad API for browser,False,0.0,,,,gamepad,https://github.com/connorwalsh/hands-js,github,gamepad,gamepad,['38470828'],community,Binding
1588992,Packagist,pili-engineering/pili-sdk-php.v2,Pili Streaming Cloud Server-Side Library For PHP.,"cloud,streaming,flv,qiniu,dash,rtmp,pili,hls,hdl,hds,web-service",MIT,https://github.com/pili-engineering/pili-sdk-php.v2,2,2,,3,12063176,GitHub,pili-engineering/pili-sdk-php.v2,"Pili Streaming Cloud Server-Side Library For PHP, Version 2",False,31.0,MIT,,,Cloud,,,cloud,cloud,"['24218227', '36852984']",community,Binding
1591995,npm,node-hackerrank,A Node.js library for the HackerRank API.,"HackerRank,Node",MIT,https://github.com/IvanFon/hackerrank,6,0,,4,12130866,GitHub,IvanFon/node-hackerrank,A Node.js library for the HackerRank API.,False,0.0,,,,HackerRank,https://github.com/IvanFon/hackerrank,github,hackerrank,hackerrank,['39033611'],community,Binding
1597653,npm,origami-crane,Connects to Origami's stack,,ISC,https://gitlab.com/origami2/crane,30,3,,2,20259937,GitLab,origami2/crane,,False,0.0,,,,Origami,https://gitlab.com/origami2/crane,gitlab,origami,origami,"['8430530', '10540491']",community,Binding
1597998,CocoaPods,OpenCV-iOS,OpenCV (Computer Vision) for iOS as a dynamic library.,,BSD-3-Clause,https://github.com/edc1591/opencv-ios,1,0,,0,12218476,GitHub,edc1591/opencv-ios,Open Source Computer Vision Library with some changes to build as a dynamic library on iOS,True,6.0,,,,OpenCV,https://github.com/edc1591/opencv-ios,github,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
1600402,PyPI,fasttext,fasttext Python bindings,,MIT,https://github.com/facebookresearch/fastText,34,3,,95,12295220,GitHub,facebookresearch/fastText,Library for fast text representation and classification.,False,20327.0,MIT,,,fasttext,https://github.com/facebookresearch/fastText,github,fasttext,fasttext,['38193711'],community,Binding
1603029,npm,origami-client,Origami stack client,,ISC,https://gitlab.com/origami2/client,24,6,,7,20260011,GitLab,origami2/client,,False,0.0,,,,Origami,https://gitlab.com/origami2/client,gitlab,origami,origami,"['8430530', '10540491']",community,Binding
1603695,Clojars,reanimated,Reanimated is an animation library for Reagent (ClojureScript).,,,https://github.com/timothypratley/reanimated,6,0,,9,2807618,GitHub,timothypratley/reanimated,An animation library for Reagent (ClojureScript),False,205.0,,,,Reagent,,,reagent,reagent,['28705875'],community,Binding
1606080,CocoaPods,SparkSDK,Spark iOS SDK,,MIT,https://github.com/webex/spark-ios-sdk,7,0,,7,12495532,GitHub,webex/spark-ios-sdk,Integrate Webex Teams into your iOS apps quickly.,False,25.0,Other,,,Spark,https://developer.webex.com,webex,spark,spark,"['11846538', '27909023', '38722051']",community,Binding
1606367,npm,google-cloud,Deprecated Cloud APIs Client Library for Node.js,"google apis client,google api client,google apis,google api,google,google cloud platform,google cloud,cloud,google bigquery,google big query,bigquery,big query,google cloud datastore,cloud datastore,datastore,google cloud dlp,cloud dlp,dlp,google cloud dns,cloud dns,dns,google cloud firestore,cloud firestore,firestore,google cloud pub/sub,google cloud pubsub,cloud pub/sub,cloud pubsub,pub/sub,pubsub,google cloud storage,cloud storage,gcs,google compute engine,compute engine,computeengine,gce,google app engine,app engine,google appengine,appengine,gae,google translate,translate,google cloud logging,cloud logging,logging,google cloud resource manager,cloud resource manager,resource manager,google cloud spanner,cloud spanner,spanner,google cloud speech,cloud speech,speech,google cloud video intelligence,cloud video intelligence,video intelligence,google cloud vision,cloud vision,vision",Apache-2.0,https://github.com/googlecloudplatform/google-cloud-node,36,66,,271,101054,GitHub,googleapis/google-cloud-node,Google Cloud Client Library for Node.js,False,1921.0,Apache-2.0,,"google-cloud,nodejs",Cloud,https://github.com/googlecloudplatform/google-cloud-node,github,cloud,cloud,"['24218227', '36852984']",community,Binding
1607075,PyPI,optimus-api,A Python API client for the Optimus image optimization service,"image compression,image optimization,image optimizer,optimus",Other,https://github.com/keycdn/python-optimus-api,6,0,,0,2424248,GitHub,keycdn/python-optimus-api,Python integration for the lossless image optimization API,False,2.0,,,,Optimus,https://github.com/keycdn/python-optimus-api,github,optimus,optimus,"['3241595', '23512093']",community,Binding
1609735,Packagist,keycdn/optimus-api,PHP Library for the Optimus API,,MIT,https://github.com/keycdn/php-optimus-api,0,0,,0,2424222,GitHub,keycdn/php-optimus-api,PHP library for the lossless image compression API,False,31.0,,,,Optimus,https://optimus.io/en/,optimus,optimus,optimus,"['3241595', '23512093']",community,Binding
1612089,PyPI,mosestokenizer,Wrappers for several pre-processing scripts from the Moses toolkit.,text tokenization pre-processing,LGPL-2.0,https://github.com/luismsgomes/mosestokenizer,5,0,,7,39599546,GitHub,luismsgomes/mosestokenizer,,False,0.0,LGPL-2.1,,,Moses,https://github.com/luismsgomes/mosestokenizer,github,moses,moses,"['885225', '37277614']",community,Binding
1613101,npm,alchemy-api-opinions-annotator,This npm module enriches a set of reviews with sentiment annotations calculated via Alchemy API.,,ISC,,1,0,,0,,,,,,,,,,Alchemy,,,alchemy,alchemy,"['13491787', '40396672']",community,Binding
1616439,Packagist,zoujingli/unit-php-sdk,PHP development of Unit SDK,unit-php-sdk,MIT,https://github.com/zoujingli/unit-php-sdk,1,1,,1,12793611,GitHub,zoujingli/unit-php-sdk,,False,0.0,MIT,Removed,,Unit,,,unit,unit,['22536368'],community,Binding
1626173,Rubygems,rex-socket,The Ruby Exploitation (Rex) Socket Abstraction Library. This library includes all of the code needed to turn sockets into Rex::Sockets with the functionality for things like L3 pivoting used by Metasploit. ,,Other,https://github.com/rapid7/rex-socket,22,3,,106,12941648,GitHub,rapid7/rex-socket,The Rex Socket Abstraction Library,False,6.0,Other,,,Rex,https://github.com/rapid7/rex-socket,github,rex,rex,['7503552'],community,Binding
1628540,PyPI,tensorbuilder,A light wrapper over TensorFlow that enables you to easily create complex deep neural networks using the Builder Pattern through a functional fluent immutable API,"tensorflow,deep learning,neural networks",MIT,https://github.com/cgarciae/tensorbuilder,12,0,,0,10745813,GitHub,cgarciae/tensorbuilder,TensorBuilder is a TensorFlow library enables you to easily create complex deep neural networks by leveraging the phi DSL to help define their structure.,False,91.0,MIT,,,TensorFlow,https://github.com/cgarciae/tensorbuilder,github,tensorflow,tensorflow,"['3109714', '27253426', '39323364']",community,Binding
1631783,PyPI,keraflow,Deep Learning for Python,,MIT,https://github.com/ipod825/keraflow,1,0,,0,13165458,GitHub,ipod825/keraflow,,False,27.0,Other,,,Deep Learning,https://github.com/ipod825/keraflow,github,deep learning,deeplearning,"['851269', '2966203', '2989847', '3068030', '3088491', '3459073', '3522986', '3768078', '3984140', '3984213', '4387572', '4611958', '4976042', '6229890', '6995779', '11786389', '18843917', '20081109', '20241548', '21718912', '24656936', '25411819', '25454467', '26873714', '27095120', '28451439', '29254147', '30621862', '30749079', '31595197', '33132158', '33200728', '35379437', '41184013']",community,Binding
1635544,Cargo,ei,erl_interface for rust,"port,erlang,erl_interface,cnode",Apache-2.0,https://github.com/tomaon/ei,3,0,,0,13093807,GitHub,tomaon/ei,erl_interface for rust,False,6.0,Other,,,erl,,,erl,erl,['24000487'],community,Binding
1639176,Packagist,flairlabs/magpie-php-sdk,Magpie PHP SDK to allow developers to connect to Magpie REST APIs,magpie,MIT,https://github.com/flairlabs/magpie-php-sdk,3,0,,1,13162597,GitHub,flairlabs/magpie-php-sdk,Magpie PHP SDK to allow developers to connect to Magpie REST APIs,False,0.0,,,,Magpie,,,magpie,magpie,['4365771'],community,Binding
1643241,Packagist,parallax_dev/sdk,parallax SDK,,MIT,https://github.com/genieshop/parallax_sdk,0,0,,0,13219687,GitHub,genieshop/parallax_sdk,,False,0.0,,,,parallax,,,parallax,parallax,['36931043'],community,Binding
1645642,NuGet,CRFSharp,CRFSharp core algorithm APIs,"Tag1,Tag2",,,1,2,,0,,,,,,,,,,CRFSharp,http://project_url_here_or_delete_this_line/,project_url_here_or_delete_this_line,crfsharp,crfsharp,['3809659'],community,Binding
1645644,NuGet,CRFSharpWrapper,The APIs wrapper for CRFSharp core algorithm,"Tag2,Tag1",,,1,1,,0,,,,,,,,,,CRFSharp,http://project_url_here_or_delete_this_line/,project_url_here_or_delete_this_line,crfsharp,crfsharp,['3809659'],community,Binding
1645726,npm,nativescript-tesseract-ios,A NativeScript plugin that wraps tesseract for iOS,"nativescript,tesseract,ecosystem:nativescript,nativescript-ios",MIT,https://github.com/roblav96/nativescript-tesseract-ios,8,0,,1,13262960,GitHub,roblav96/nativescript-tesseract-ios,,False,0.0,MIT,,,tesseract,https://github.com/roblav96/nativescript-tesseract-ios,github,tesseract,tesseract,['852560'],community,Binding
1649971,PyPI,crfst,A multi-purpose sequential tagger wrapped around CRFSuite,CRF CRFSuite sequence tagging POS chunking NER,GPL-3.0,https://github.com/savkov/CRFSuiteTagger,1,0,,0,13296772,GitHub,savkov/CRFSuiteTagger,A sequential tagger built around the pycrfsuite wrapper for CRFSuite.,False,2.0,GPL-3.0,,,CRFSuite,https://github.com/savkov/CRFSuiteTagger,github,crfsuite,crfsuite,['3599698'],community,Binding
1650363,CRAN,monkeylearn,Accesses the Monkeylearn API for Text Classifiers and Extractors,,"CNRI-Python-GPL-Compatible,CNRI-Python-GPL-Compatible",https://github.com/ropensci/monkeylearn,3,0,,0,10115427,GitHub,ropensci/monkeylearn,:monkey: R package for text analysis with Monkeylearn :monkey:,False,89.0,,,"classifier,extractor,monkeylearn,nlp,nlp-machine-learning,peer-reviewed,r,r-package,rstats",Monkeylearn,http://github.com/ropensci/monkeylearn,github,monkeylearn,monkeylearn,['10115427'],same_repo,Binding
1653227,npm,passbot.js,"Flexible and modular, chatbot adapter for Node.js",,ISC,https://github.com/jackdbernier/passbot.js,2,0,,0,13330251,GitHub,jackdbernier/passbot.js,,False,0.0,,Removed,,chatbot,https://github.com/jackdbernier/passbot.js,github,chatbot,chatbot,"['3977012', '15262198', '19073790', '25241511', '31772349']",community,Binding
1653319,PyPI,sugartensor,A slim tensorflow wrapper that provides syntactic sugar for tensor variables.,"tensorflow,sugar,sugartensor,slim,wrapper",MIT,https://github.com/buriburisuri/sugartensor,20,0,,19,13333524,GitHub,buriburisuri/sugartensor,A slim tensorflow wrapper that provides syntactic sugar for tensor variables. This library will be helpful for practical deep learning researchers not beginners.,False,353.0,MIT,,,tensorflow,https://github.com/buriburisuri/sugartensor,github,tensorflow,tensorflow,"['3109714', '27253426', '39323364']",community,Binding
1656535,PyPI,margaritashotgun,Remote memory aquisition wrapper for LiME,,MIT,https://github.com/ThreatResponse/margaritashotgun,3,0,,1,12541212,GitHub,ThreatResponse/margaritashotgun,Remote Memory Acquisition Tool ,False,63.0,MIT,,,LiME,https://github.com/ThreatResponse/margaritashotgun,github,lime,lime,['7026541'],community,Binding
1674990,CocoaPods,Kronos,Elegant NTP client in Swift,,Apache-2.0,https://github.com/Lyft/Kronos,12,0,,0,12887178,GitHub,lyft/Kronos,Elegant NTP date library in Swift,False,337.0,Other,,lyft,NTP,https://github.com/lyft/Kronos,github,ntp,ntp,['32528693'],community,Binding
1675164,npm,screeps-api,## This is a nodejs API for the game Screeps,,ISC,https://github.com/screepers/node-screeps-api,37,5,,19,12172356,GitHub,screepers/node-screeps-api,Node.js API For screeps,False,32.0,ISC,,"screeps,screeps-api",Screeps,https://github.com/screepers/node-screeps-api,github,screeps,screeps,['15141670'],community,Binding
1682828,npm,node-nnpack,Node bindings for NNPACK,NNPACK,MIT,https://github.com/silklabs/node-nnpack,1,0,,0,13517864,GitHub,silklabs/node-nnpack,Node bindings for NNPACK,False,2.0,MIT,,,NNPACK,https://github.com/silklabs/node-nnpack,github,nnpack,nnpack,['7226741'],community,Binding
1682986,npm,Winston-Wrapper,This serves as a wrapper utility around winston for the purpose of logging transaction level requests in the Express application server. This is essentially a middleware that adds to the Express req object the property `logger` that provides the methods ,,MIT,,1,0,,0,,,,,,,,,,winston,,,winston,winston,['72007'],community,Binding
1682990,npm,winston-wrapper,This serves as a wrapper utility around winston for the purpose of logging transaction level requests in the Express application server. This is essentially a middleware that adds to the Express req object the property `logger` that provides the methods ,,MIT,https://github.com/DefiantCaptain/winston-wrapper,2,0,,10,16264005,GitHub,DefiantCaptain/winston-wrapper,,False,0.0,,,,winston,https://github.com/DefiantCaptain/winston-wrapper,github,winston,winston,['72007'],community,Binding
1687557,npm,frozor-logger,A cool logger. Wraps winston.,,ISC,https://github.com/ArcticZeroo/Frozor-Logger,29,8,,6,13594292,GitHub,ArcticZeroo/frozor-logger,Custom logging module for my node projects.,False,0.0,,,,winston,https://github.com/ArcticZeroo/Frozor-Logger,github,winston,winston,['72007'],community,Binding
1689272,npm,wire-webapp-proteus,Axolotl protocol implementation for JavaScript.,,GPL-3.0,https://github.com/wireapp/proteus.js,35,3,,11,6832263,GitHub,wireapp/proteus.js,Axolotl protocol implementation for JavaScript,False,39.0,GPL-3.0,,,Axolotl,https://github.com/wireapp/proteus.js,github,axolotl,axolotl,['27867464'],community,Binding
1689281,Packagist,starfish/starfish,The Starfish PHP Microframework,,MIT,https://github.com/cristidraghici/starfish,0,0,,0,13609189,GitHub,cristidraghici/starfish,Starfish is a minimum Registry framework primarily desiged to serve JSON content and use objects.,False,8.0,MIT,,,Starfish,http://www.starfish.ml,starfish,starfish,starfish,['41084827'],community,Binding
1693979,npm,electron-oauthorize,OAuth application authorization wrapped for Electron,"electron,authorize,oauth,oauth2",MIT,https://github.com/ArtistStudio/electron-oauthorize,6,0,,0,13674903,GitHub,ArtistStudio/electron-oauthorize,"PROJECT CLOSED. This library is not recommended for production use, because you should not store application secrets publicly/on client side. Instead, build an API to pipe your requests through. OAuth authorization wrapped for Electron",False,2.0,MIT,Removed,,Electron,https://github.com/ArtistStudio/electron-oauthorize,github,electron,electron,['25543319'],community,Binding
1694551,npm,electron-api-docs,Electron's API documentation in a structured JSON format,"electron,documentation,docs,json,reference,schema,offline,api",MIT,https://github.com/electron/electron-api-docs,21,1,,4,13660408,GitHub,electron/electron-api-docs,:memo: Electron's API documentation in a structured JSON format,False,7.0,,,,Electron,https://github.com/electron/electron-api-docs,github,electron,electron,['25543319'],community,Binding
1702090,NuGet,NamedPipeExt,"Named Pipeline ext wrapper the windows named pipe to easy communicate between process/machine, it is a easy and effective way to communicate.","Pipe,Named,Wrapper",MIT,https://github.com/miemengniao/NamedPipeExt,1,0,,0,13753883,GitHub,miemengniao/NamedPipeExt,Named Pipe Extension,False,0.0,MIT,,,Pipeline,https://github.com/miemengniao/NamedPipeExt/,github,pipeline,pipeline,"['2699195', '3765103']",community,Binding
1702203,PyPI,hackerrank-sdk,Python client for HackerRank API,hackerrank code compiler online api python client,MIT,https://github.com/nikhilkumarsingh/hackerrank-sdk,8,0,,5,13762294,GitHub,nikhilkumarsingh/hackerrank-sdk,A python client for Hackerrank API,False,10.0,MIT,,"hackerrank-api,hackerrank-sdk,online-compiler,python-client",HackerRank,https://github.com/nikhilkumarsingh/hackerrank-sdk,github,hackerrank,hackerrank,['39033611'],community,Binding
1707309,Packagist,abm/kilns,Kilns: Project Oxford SDK,"Guzzle,sdk,azure,microsoft,nlp,ai,cognition,deeplearning,oxford",MIT,https://github.com/absalomedia/kilns,0,0,,0,13829627,GitHub,absalomedia/kilns,Microsoft Cognitive Services in Guzzle,False,0.0,MIT,,"microsoft-cognitive-services,php",Project Oxford,,,project oxford,projectoxford,['7011153'],community,Binding
1710069,CocoaPods,CAPKit-OpenCV24x,OpenCV (Computer Vision) for iOS.,,MIT,https://github.com/successinfo-org/CAPKit-OpenCV24x,2,0,,1,13893775,GitHub,successinfo-org/CAPKit-OpenCV24x,,False,0.0,MIT,,,OpenCV,http://opencv.org,opencv,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
1717401,Rubygems,scikit-learn,scikit-learn wrapper for Ruby,,MIT,https://github.com/mrkn/scikit-learn.rb,1,0,,0,14083865,GitHub,mrkn/scikit-learn.rb,scikit-learn wrapper for Ruby,False,4.0,MIT,,,scikit-learn,https://github.com/mrkn/scikit-learn.rb,github,scikit learn,scikitlearn,['845049'],community,Binding
1717428,npm,cordova-plugin-antplus,Cordova plugin based on ANT+ SDK for communication with ANT+ devices,"cordova,ecosystem:cordova,cordova-android,ant,ant+,weight-scale,heart-rate,blood-pressure,stride-meter,bike-speed-distance,multi-device-search",Apache-2.0,https://github.com/lmuller14/cordova-plugin-antplus,2,0,,0,14047096,GitHub,lmuller14/cordova-plugin-antplus,Cordova plugin based on ANT+ SDK for communication with ANT+ devices,False,2.0,Apache-2.0,,,ANT+,https://github.com/lmuller14/cordova-plugin-antplus,github,ant,ant,"['24849381', '27003248']",community,Binding
1717597,PyPI,oxford,This project implements a client for the Project Oxford API's.,computer vision face detection linguistics language project oxford,MIT,https://github.com/irjudson/oxford,1,0,,0,10353203,GitHub,irjudson/oxford,Project Oxford for Python,True,2.0,,,,Project Oxford,https://github.com/irjudson/oxford,github,project oxford,projectoxford,['7011153'],community,Binding
1717951,npm,hal.js,HAL (Hypertext Application Language) resource wrapper with functional modifiers,"hal,api,functional",MIT,https://github.com/henit/hal.js,2,0,,0,14112658,GitHub,henit/hal-resource,HAL (Hypertext Application Language) resource wrapper with functional modifiers,False,0.0,MIT,Removed,,HAL,https://github.com/henit/hal.js,github,hal,hal,['4824482'],community,Binding
1719170,npm,hal-resource,HAL (Hypertext Application Language) resource wrapper with functional modifiers,"hal,api,functional",MIT,https://github.com/henit/hal-resource,1,0,,0,14112658,GitHub,henit/hal-resource,HAL (Hypertext Application Language) resource wrapper with functional modifiers,False,0.0,MIT,Removed,,HAL,https://github.com/henit/hal-resource,github,hal,hal,['4824482'],community,Binding
1719309,PyPI,django-pipeline-no-future,Pipeline is an asset packaging library for Django.,,MIT,https://github.com/robinchew/django-pipeline,3,0,,0,14133043,GitHub,robinchew/django-pipeline,Pipeline is an asset packaging library for Django.,True,0.0,,,,Pipeline,https://github.com/robinchew/django-pipeline,github,pipeline,pipeline,"['2699195', '3765103']",community,Binding
1723119,npm,electron-ipc-server,An IPC server with an API similar to Express.js' for Electron,"electron,ipc",MIT,https://github.com/loque/electron-ipc-server,4,0,,2,14262369,GitHub,loque/electron-ipc-server,An IPC server with an API similar to Express.js' for Electron,False,6.0,MIT,,,Electron,https://github.com/loque/electron-ipc-server,github,electron,electron,['25543319'],community,Binding
1723145,npm,laravel-elixir-elm,A package to provide support for compiling Elm in Laravel Elixir 6,"laravel,elixir,elm",MIT,https://github.com/tightenco/laravel-elixir-elm,2,0,,1,13901335,GitHub,tightenco/laravel-elixir-elm,,False,3.0,MIT,,,Elm,https://github.com/tightenco/laravel-elixir-elm,github,elm,elm,"['186221', '16190324']",community,Binding
1724366,CocoaPods,ViSearchSwiftDev,A Visual Search API solution.,,MIT,https://github.com/thehung111/ViSearchSwiftSDK,1,0,,0,14235615,GitHub,thehung111/ViSearchSwiftSDK,Swift SDK for ViSearch (development),False,0.0,MIT,,,Visual Search,https://github.com/thehung111/ViSearchSwiftSDK,github,visual search,visualsearch,['20396416'],community,Binding
1727747,NuGet,SFA.DAS.ApiTokens.Client,Provides a WebApi DelegatingHandler to handle DAS API tokens,,MIT,https://github.com/SkillsFundingAgency/das-shared-packages,2,0,,5,10224160,GitHub,SkillsFundingAgency/das-shared-packages,,False,2.0,MIT,,,DAS,https://github.com/SkillsFundingAgency/das-shared-packages,github,das,das,['40364900'],community,Binding
1728029,CocoaPods,ViSearchSDK,A Visual Search API solution (Swift SDK),,MIT,https://github.com/visenze/visearch-sdk-swift,7,0,,1,14282917,GitHub,visenze/visearch-sdk-swift,,False,0.0,MIT,,,Visual Search,https://github.com/visenze/visearch-sdk-swift,github,visual search,visualsearch,['20396416'],community,Binding
1728220,npm,simple-id3.js,Simple ID3 parser library in Javascript,,MIT,https://github.com/Eyevinn/id3.js,1,0,,0,14338853,GitHub,Eyevinn/id3.js,Simple ID3 parser in Javascript,False,0.0,MIT,,,ID3,https://github.com/Eyevinn/id3.js,github,id3,id3,['4932403'],community,Binding
1730075,NuGet,BrightWire.CUDA.Net4.x64,Bright Wire CUDA adds GPU support to Bright Wire. This lets you run Bright Wire machine learning on a Maxwell or better NVIDIA GPU.,"learning,machine,linear,algebra,neural,cuda,network,gpu,machinelearning",MIT,https://github.com/jdermody/brightwire,25,0,,1,13807473,GitHub,jdermody/brightwire,Bright Wire is an open source machine learning library for .NET with GPU support (via CUDA),False,86.0,MIT,,"convolutional-neural-networks,csharp,cuda,cuda-support,gpu,gpu-support,machine-learning,machine-learning-library,machinelearning,neural-network,recurrent-neural-networks",Bright Wire,https://github.com/jdermody/brightwire,github,bright wire,brightwire,['13807473'],same_repo,Binding
1730398,Rubygems,word2vec,A simple wrapper for word2vec.,,MIT,https://github.com/cafedomancer/word2vec,2,0,,0,14390195,GitHub,cafedomancer/word2vec,A simple wrapper for word2vec.,False,2.0,MIT,,,word2vec,https://github.com/cafedomancer/word2vec,github,word2vec,word2vec,['10876949'],community,Binding
1735779,npm,hapi-winston,hapi plugin for winston,"hapi,winston",ISC,https://github.com/ColorfulCow/hapi-winston,7,2,,0,14546696,GitHub,ColorfulCow/hapi-winston,a winstion plugin for hapi,False,2.0,,,,winston,https://github.com/ColorfulCow/hapi-winston,github,winston,winston,['72007'],community,Binding
1736521,npm,opencv-temp-fork,Node Bindings to OpenCV,"opencv,computer,vision,quadrocopter",MIT,https://github.com/peterbraden/node-opencv,1,0,,0,120303,GitHub,peterbraden/node-opencv,OpenCV Bindings for node.js,False,3893.0,MIT,,,OpenCV,https://github.com/peterbraden/node-opencv,github,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
1739477,Clojars,com.taoensso/tengen,Simple let-based Reagent component fns for Clojure/Script,,EPL-1.0,https://github.com/ptaoussanis/tengen,2,0,,0,14559657,GitHub,ptaoussanis/tengen,Simple let-based Reagent component fns for Clojure/Script,False,23.0,EPL-1.0,,,Reagent,https://www.taoensso.com,taoensso,reagent,reagent,['28705875'],community,Binding
1739542,Clojars,tengen,Simple let-based component fns API for Reagent,,EPL-1.0,https://github.com/ptaoussanis/tengen,1,0,,0,14559657,GitHub,ptaoussanis/tengen,Simple let-based Reagent component fns for Clojure/Script,False,23.0,EPL-1.0,,,Reagent,https://www.taoensso.com,taoensso,reagent,reagent,['28705875'],community,Binding
1751255,npm,tape-promised,Promise wrapper around tape,"tape,promise,async,await",MIT,https://github.com/rainydio/tape-promised,1,0,,0,14870006,GitHub,rainydio/tape-promised,Promise wrapper around tape,False,0.0,,,,tape,https://github.com/rainydio/tape-promised,github,tape,tape,['40775741'],community,Binding
1754349,PyPI,python-meteosclient,Client library for Meteos API,,Apache-2.0,https://github.com/openstack/python-meteosclient,0,0,,0,16064405,GitHub,openstack/python-meteosclient,Python client for Meteos REST API.,False,3.0,Other,,,Meteos,https://github.com/openstack/python-meteosclient,github,meteos,meteos,['14562081'],same_repo_owner,Binding
1755454,npm,react-lamp,A react UI package for working with the genie keyboard control library (https://github.com/kentcdodds/genie),,MIT,,3,0,,0,,,,,,,,,,genie,,,genie,genie,['5137537'],community,Binding
1760469,PyPI,riseml,RiseML API client,RiseML,,,26,0,,6,,,,,,,,,,RiseML,https://riseml.com,riseml,riseml,riseml,['30976363'],community,Binding
1760892,npm,joymap,A Gamepad API wrapper and mapping tool.,"gamepad,joystick",MIT,https://github.com/diegodoumecq/joymap,20,0,,1,4102262,GitHub,diegodoumecq/joymap,A Javascript Gamepad API wrapper and mapping tool,False,6.0,MIT,,"browser-api,functional-programming,gamepad,gamepad-api,gamepad-library,joystick,observable-streams,rxjs",Gamepad,https://github.com/diegodoumecq/joymap,github,gamepad,gamepad,['38470828'],community,Binding
1770840,Packagist,steffenbrem/mango-sdk-php,Mango SDK for PHP,,,https://github.com/steffenbrem/mango-sdk-php,0,0,,0,15135493,GitHub,steffenbrem/mango-sdk-php,Mango SDK for PHP,False,0.0,,,,Mango,,,mango,mango,['19555071'],community,Binding
1776818,Packagist,indielab/heartbeat-restclient,Heartbeat API Restclient,"api,heartbeat",,https://github.com/heartbeatgmbh/restclient,0,0,,0,15174034,GitHub,heartbeatgmbh/restclient,The REST Client for the Heartbeat Business API.,False,0.0,,,,Heartbeat,https://heartbeat.gmbh,heartbeat,heartbeat,heartbeat,['855933'],community,Binding
1779898,PyPI,pyagrum,pyAgrum is a Python wrapper for the C++ aGrUM library,probabilities probabilistic-graphical-models inference diagnosis,Other,,34,0,,0,,,,,,,,,,aGrUM,https://agrum.gitlab.io/,gitlab,agrum,agrum,['28957565'],community,Binding
1782032,CocoaPods,CastorSDK,CastorSDK is a SDK that allows you to sell 3D printed models directly from your app.,,MIT,https://github.com/eladsc/CastorSDK,5,0,,0,15241229,GitHub,eladsc/CastorSDK,CastorSDK is a SDK that allows you to sell 3D printed models directly from your app.,False,0.0,MIT,,,Castor,https://github.com/eladsc/CastorSDK,github,castor,castor,['22441184'],community,Binding
1786000,npm,tensorflow-serving-node-client,Node gRPC client for TensorFlow Serving server,"tensorflow,serving,client,grpc,node",MIT,https://github.com/alexey-ernest/tensorflow-serving-node-client,1,0,,0,15308338,GitHub,alexey-ernest/tensorflow-serving-node-client,Node gRPC client for TensorFlow Serving server,False,4.0,MIT,,,TensorFlow,https://github.com/alexey-ernest/tensorflow-serving-node-client,github,tensorflow,tensorflow,"['3109714', '27253426', '39323364']",community,Binding
1786460,NuGet,evoleap.Licensing,"Software licensing client API for elm, a cloud-based, enterprise grade software licensing platform.","evoleap,licensing,elm",,,12,1,,0,,,,,,,,,,elm,http://www.evoleap.com/,evoleap,elm,elm,"['186221', '16190324']",community,Binding
1793763,PyPI,flair-client,Flair API Client,,Other,,6,0,,0,,,,,,,,,,Flair,https://api.flair.co,flair,flair,flair,['36196679'],community,Binding
1794132,npm,elm-architecture,The Elm Architecture in JavaScript,"elm,elm-architecture",MIT,https://github.com/jas-chen/elm-architecture,10,0,,0,15382245,GitHub,jas-chen/elm-architecture,The Elm Architecture in JavaScript,False,10.0,MIT,,,Elm,https://github.com/jas-chen/elm-architecture,github,elm,elm,"['186221', '16190324']",community,Binding
1799239,npm,@blrrt/cordova-plugin-speech-recognition-ios-browser-polyfill,Cordova iOS polyfill for the Speech Recognition API,"api,browser,cordova,ecosystem:cordova,ios,polyfill,recognition,speech",Unlicense,https://github.com/blrrt/cordova-plugin-speech-recognition-ios-browser-polyfill,3,0,,0,15411907,GitHub,Blrrt/cordova-plugin-speech-recognition-ios-browser-polyfill,Cordova iOS polyfill for the Speech Recognition API,False,0.0,,,,Speech Recognition,https://github.com/blrrt/cordova-plugin-speech-recognition-ios-browser-polyfill,github,speech recognition,speechrecognition,"['7708648', '34802812']",community,Binding
1799463,npm,electron-definitelytyped,Automatically generated definitely typed files for the Electron API,,MIT,,9,0,,0,,,,,,,,,,Electron,,,electron,electron,['25543319'],community,Binding
1803948,PyPI,rle_python_interface,Retro Learning Environment Python Interface based on Ben Goodrich's work,,GPL-2.0+,https://github.com/nadavbh12/Retro-Learning-Environment,9,0,,2,3164775,GitHub,nadavbh12/Retro-Learning-Environment,The Retro Learning Environment (RLE) -- a learning framework for AI,False,171.0,Other,,"dqn,game-engine,machine,machine-learning,reinforcement-learning",Retro Learning Environment,https://github.com/nadavbh12/Retro-Learning-Environment,github,retro learning environment,retrolearningenvironment,['3164775'],same_repo,Binding
1804429,npm,arcade-machine,"arcade-machine is an Angular plugin to provide navigation and interactive semantics using the GamePad API. This allows the application to be navigated using a controller connected to a PC, the PC's keyboard, or on Universal Windows Platform (UWP) web appl",,MIT,https://github.com/mixer/arcade-machine,79,1,,0,16218700,GitHub,mixer/arcade-machine,":video_game: Input abstraction layer for gamepads, keyboards, and UWP apps in Angular. For React, check out https://github.com/mixer/arcade-machine-react",False,13.0,Other,,"angular,angular2,gamepad,gamepad-api,uwp,xbox,xbox-controller",GamePad,https://github.com/mixer/arcade-machine,github,gamepad,gamepad,['38470828'],community,Binding
1809619,Cargo,mli,Machine Learning Interface for Rust,"machine,learning,tensor,combinator",MIT,https://github.com/vadixidav/mli,4,1,,3,5003681,GitHub,vadixidav/mli,Machine Learning Interface for Rust,False,4.0,MIT,,,Machine Learning,,,machine learning,machinelearning,"['113510', '123393', '451682', '891138', '1318598', '2389617', '2456176', '2850219', '2977058', '3066073', '3148379', '3259553', '3292657', '3405323', '3475124', '3574990', '3717975', '3783065', '3846101', '3851927', '3931944', '4120798', '4156641', '4870873', '5063686', '5254425', '5430915', '5441164', '5707646', '6199166', '6819314', '7350018', '8328684', '10171844', '10799026', '12833721', '13022438', '13902036', '15167279', '16741108', '17782202', '18759210', '19024239', '20190259', '20511326', '21373845', '21829776', '24010317', '24228355', '25620673', '27488091', '27979765', '28444822', '29187136', '30400786', '30621806', '31560698', '31914843', '32462325', '33792389', '34247198', '34924346', '35120942', '35948367', '36683499', '36769599', '37693690', '38413590', '38460760', '38795134', '39035634', '39740941', '40096843', '40351290']",community,Binding
1818403,npm,veralabs,"Javascript library for Vera API endpoints""",,ISC,,1,0,,0,,,,,,,,,,Vera,,,vera,vera,['22659098'],community,Binding
1827261,PyPI,pytrain,Machinelearning library for python,,MIT,https://github.com/becxer/pytrain,12,0,,0,8921792,GitHub,becxer/pytrain,Machine Learning library for python,False,12.0,MIT,,"apriori,clustering,crf,dbscan,decision-trees,feedforward-neural-network,hmm,kmeans,knn,linear-regression,logistic-regression,machine-learning,naive-bayes,neural-network,numpy,pattern-recognition,python,svm",Machinelearning,https://github.com/becxer/pytrain,github,machinelearning,machinelearning,"['113510', '123393', '451682', '891138', '1318598', '2389617', '2456176', '2850219', '2977058', '3066073', '3148379', '3259553', '3292657', '3405323', '3475124', '3574990', '3717975', '3783065', '3846101', '3851927', '3931944', '4120798', '4156641', '4870873', '5063686', '5254425', '5430915', '5441164', '5707646', '6199166', '6819314', '7350018', '8328684', '10171844', '10799026', '12833721', '13022438', '13902036', '15167279', '16741108', '17782202', '18759210', '19024239', '20190259', '20511326', '21373845', '21829776', '24010317', '24228355', '25620673', '27488091', '27979765', '28444822', '29187136', '30400786', '30621806', '31560698', '31914843', '32462325', '33792389', '34247198', '34924346', '35120942', '35948367', '36683499', '36769599', '37693690', '38413590', '38460760', '38795134', '39035634', '39740941', '40096843', '40351290']",community,Binding
1827498,Rubygems,stellar-sdk,Stellar client library,,Apache-2.0,https://github.com/bloom-solutions/ruby-stellar-sdk,8,4,,10,17062776,GitHub,bloom-solutions/ruby-stellar-sdk,Main Stellar client library for the Ruby language,True,2.0,Apache-2.0,,,Stellar,http://github.com/bloom-solutions/ruby-stellar-sdk,github,stellar,stellar,['32858101'],community,Binding
1827572,CocoaPods,WarpSDK,The Warp iOS SDK is a library designed to work with projects built on-top of the Warp Server.,,MIT,https://github.com/kuyazee/WarpSDK-iOS,16,0,,0,14120046,GitHub,kuyazee/WarpSDK-iOS,The Warp iOS SDK is a library designed to work with projects built on-top of the Warp Server.,False,0.0,MIT,Removed,,Warp,https://github.com/dividedbyzeroco/warp-server,github,warp,warp,['793643'],community,Binding
1840310,npm,marsclient,Mars Javascript Client Library,,MIT,,44,0,,0,,,,,,,,,,Mars,,,mars,mars,['37505128'],community,Binding
1846612,npm,@jpjuni0r/mantra-core,Core API for Mantra,,MIT,https://github.com/jpJuni0r/mantra-core,3,0,,0,15790356,GitHub,jpJuni0r/mantra-core,Collection of Core APIs used in Mantra,True,0.0,MIT,,,Mantra,https://github.com/jpJuni0r/mantra-core,github,mantra,mantra,['37266822'],community,Binding
1850009,Maven,com.opitzconsulting.orcas:orcas-domainextension-plsql-main,orcas main api,,Apache-2.0,https://github.com/opitzconsulting/orcas,6,1,,0,535498,GitHub,opitzconsulting/orcas,Oracle schema management framework,False,25.0,Apache-2.0,,"java,oracle,schema-management",orcas,http://opitzconsulting.github.io/orcas,github,orcas,orcas,['30241722'],community,Binding
1850031,npm,aknpm,Alink Node Package Manager Client,"aknpm,cnpm,npm,npminstall",MIT,[email protected]:alixz/aknpm.git,8,0,,0,,,,,,,,,,Alink,https://www.npmjs.com/package/aknpm,npmjs,alink,alink,['40135681'],community,Binding
1860187,CocoaPods,TrueTime,NTP library for Swift. Get the true time impervious to device clock changes.,,Apache-2.0,https://github.com/instacart/TrueTime.swift,9,0,,7,13324024,GitHub,instacart/TrueTime.swift,NTP library for Swift and Objective-C. Get the true time impervious to device clock changes.,False,360.0,Apache-2.0,,"ios,ntp,ntp-client,swift,truetime",NTP,https://github.com/instacart/TrueTime.swift,github,ntp,ntp,['32528693'],community,Binding
1937319,NuGet,opencv.win.native.static,Pre-built OpenCV binaries on Windows. This package contains native builds of OpenCV3 - C++ for Visual Studio 2015. (Supports x86 and x64.),"CVWin,OpenCV,Cpp,Computer,Vision,VS2015,C++,studio,windows,Win32,visual,native,nativepackage",BSD-3-Clause,https://github.com/cvwin/cvwin,2,0,,0,11945947,GitHub,cvwin/cvwin,OpenCV build for .Net and UWP.,False,5.0,BSD-3-Clause,,,OpenCV,https://github.com/cvwin/cvwin/,github,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
1937820,npm,resin-dockerfilelint,A linter for Dockerfiles to find bugs and encourage best practices,"dockerfile,lint,linter",MIT,https://github.com/CameronDiver/dockerfilelint,1,0,,0,16260841,GitHub,CameronDiver/dockerfilelint,An opinionated Dockerfile linter.,True,0.0,,,,Dockerfiles,https://github.com/replicatedhq/dockerfilelint,github,dockerfiles,dockerfiles,"['2847494', '13426539', '19997475', '22343909']",community,Binding
1941348,npm,react-native-modal-wrapper,"Wrapper component that extends the react native Modal component, adding overlay clickable behavior and allowing swipe in and out in all directions","react,native,react-native,react-component,modal,dialog,ios,android,overlay-modal,lightbox",MIT,https://github.com/raynor85/react-native-modal-wrapper,19,0,,7,16247269,GitHub,raynor85/react-native-modal-wrapper,"Wrapper component that extends the react native Modal component, adding overlay clickable behavior and allowing swipe in and out in all directions",False,65.0,MIT,,,Modal,https://github.com/raynor85/react-native-modal-wrapper,github,modal,modal,['31627289'],community,Binding
1941783,NuGet,OpenCV.Win.Core,"Pre-built OpenCV 3.x binaries on Windows (UWP). This package contains native builds of OpenCV3 - C++ (x86, x64, arm). Note that VideoIO, and all dependent modules, require UWP Desktop extensions.","Computer,OpenCV,Vision,Cpp,universal,windows,CVWin,visual,C++,studio,native,Win32,VS2015,UWP",BSD-3-Clause,https://github.com/cvwin/cvwin,10,14,,14,11945947,GitHub,cvwin/cvwin,OpenCV build for .Net and UWP.,False,5.0,BSD-3-Clause,,,OpenCV,https://github.com/cvwin/cvwin,github,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
1941784,NuGet,OpenCV.Win.ImgProc,"Pre-built OpenCV 3.x binaries on Windows (UWP). This package contains native builds of OpenCV3 - C++ (x86, x64, arm). Note that VideoIO, and all dependent modules, require UWP Desktop extensions.","OpenCV,CVWin,windows,visual,Computer,universal,native,VS2015,Vision,Cpp,C++,UWP,Win32,studio",BSD-3-Clause,https://github.com/cvwin/cvwin,8,11,,14,11945947,GitHub,cvwin/cvwin,OpenCV build for .Net and UWP.,False,5.0,BSD-3-Clause,,,OpenCV,https://github.com/cvwin/cvwin,github,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
1941785,NuGet,OpenCV.Win.ImgCodecs,"Pre-built OpenCV 3.x binaries on Windows (UWP). This package contains native builds of OpenCV3 - C++ (x86, x64, arm). Note that VideoIO, and all dependent modules, require UWP Desktop extensions.","CVWin,OpenCV,Cpp,Vision,Computer,C++,VS2015,visual,studio,universal,windows,UWP,native,Win32",BSD-3-Clause,https://github.com/cvwin/cvwin,8,7,,1,11945947,GitHub,cvwin/cvwin,OpenCV build for .Net and UWP.,False,5.0,BSD-3-Clause,,,OpenCV,https://github.com/cvwin/cvwin,github,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
1941786,NuGet,OpenCV.Win.VideoIO,"Pre-built OpenCV 3.x binaries on Windows (UWP). This package contains native builds of OpenCV3 - C++ (x86, x64, arm). Note that VideoIO, and all dependent modules, require UWP Desktop extensions.","OpenCV,Computer,Vision,CVWin,C++,Cpp,Win32,windows,universal,UWP,native,studio,VS2015,visual",BSD-3-Clause,https://github.com/cvwin/cvwin,8,6,,1,11945947,GitHub,cvwin/cvwin,OpenCV build for .Net and UWP.,False,5.0,BSD-3-Clause,,,OpenCV,https://github.com/cvwin/cvwin,github,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
1941787,NuGet,OpenCV.Win.HighGUI,"Pre-built OpenCV 3.x binaries on Windows (UWP). This package contains native builds of OpenCV3 - C++ (x86, x64, arm). Note that VideoIO, and all dependent modules, require UWP Desktop extensions.","OpenCV,Computer,CVWin,Cpp,Vision,VS2015,C++,visual,windows,UWP,studio,universal,native,Win32",BSD-3-Clause,https://github.com/cvwin/cvwin,8,5,,1,11945947,GitHub,cvwin/cvwin,OpenCV build for .Net and UWP.,False,5.0,BSD-3-Clause,,,OpenCV,https://github.com/cvwin/cvwin,github,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
1941920,NuGet,OpenCV.Win.Calib3D,"Pre-built OpenCV 3.x binaries on Windows (UWP). This package contains native builds of OpenCV3 - C++ (x86, x64, arm). Note that VideoIO, and all dependent modules, require UWP Desktop extensions.","studio,VS2015,C++,Computer,OpenCV,windows,visual,native,universal,Win32,UWP,Cpp,Vision,CVWin",BSD-3-Clause,https://github.com/cvwin/cvwin,3,2,,1,11945947,GitHub,cvwin/cvwin,OpenCV build for .Net and UWP.,False,5.0,BSD-3-Clause,,,OpenCV,https://github.com/cvwin/cvwin,github,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
1941921,NuGet,OpenCV.Win.ObjDetect,"Pre-built OpenCV 3.x binaries on Windows (UWP). This package contains native builds of OpenCV3 - C++ (x86, x64, arm). Note that VideoIO, and all dependent modules, require UWP Desktop extensions.","OpenCV,CVWin,Vision,Computer,C++,VS2015,universal,visual,Cpp,windows,UWP,studio,native,Win32",BSD-3-Clause,https://github.com/cvwin/cvwin,3,0,,0,11945947,GitHub,cvwin/cvwin,OpenCV build for .Net and UWP.,False,5.0,BSD-3-Clause,,,OpenCV,https://github.com/cvwin/cvwin,github,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
1941922,NuGet,OpenCV.Win.Stitching,"Pre-built OpenCV 3.x binaries on Windows (UWP). This package contains native builds of OpenCV3 - C++ (x86, x64, arm). Note that VideoIO, and all dependent modules, require UWP Desktop extensions.","OpenCV,CVWin,Computer,Vision,Cpp,C++,VS2015,studio,visual,windows,universal,UWP,native,Win32",BSD-3-Clause,https://github.com/cvwin/cvwin,3,0,,0,11945947,GitHub,cvwin/cvwin,OpenCV build for .Net and UWP.,False,5.0,BSD-3-Clause,,,OpenCV,https://github.com/cvwin/cvwin,github,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
1941923,NuGet,OpenCV.Win.VideoStab,"Pre-built OpenCV 3.x binaries on Windows (UWP). This package contains native builds of OpenCV3 - C++ (x86, x64, arm). Note that VideoIO, and all dependent modules, require UWP Desktop extensions.","OpenCV,CVWin,Computer,C++,VS2015,Vision,visual,Cpp,universal,windows,studio,UWP,native,Win32",BSD-3-Clause,https://github.com/cvwin/cvwin,3,0,,0,11945947,GitHub,cvwin/cvwin,OpenCV build for .Net and UWP.,False,5.0,BSD-3-Clause,,,OpenCV,https://github.com/cvwin/cvwin,github,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
1941924,NuGet,OpenCV.Win.Features2D,"Pre-built OpenCV 3.x binaries on Windows (UWP). This package contains native builds of OpenCV3 - C++ (x86, x64, arm). Note that VideoIO, and all dependent modules, require UWP Desktop extensions.","Computer,CVWin,OpenCV,Vision,Cpp,VS2015,C++,visual,studio,windows,universal,UWP,native,Win32",BSD-3-Clause,https://github.com/cvwin/cvwin,3,3,,0,11945947,GitHub,cvwin/cvwin,OpenCV build for .Net and UWP.,False,5.0,BSD-3-Clause,,,OpenCV,https://github.com/cvwin/cvwin,github,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
1941925,NuGet,OpenCV.Win.FLANN,"Pre-built OpenCV 3.x binaries on Windows (UWP). This package contains native builds of OpenCV3 - C++ (x86, x64, arm). Note that VideoIO, and all dependent modules, require UWP Desktop extensions.","OpenCV,Computer,CVWin,Cpp,Vision,C++,VS2015,visual,studio,universal,windows,UWP,Win32,native",BSD-3-Clause,https://github.com/cvwin/cvwin,3,4,,1,11945947,GitHub,cvwin/cvwin,OpenCV build for .Net and UWP.,False,5.0,BSD-3-Clause,,,OpenCV,https://github.com/cvwin/cvwin,github,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
1941926,NuGet,OpenCV.Win.Shape,"Pre-built OpenCV 3.x binaries on Windows (UWP). This package contains native builds of OpenCV3 - C++ (x86, x64, arm). Note that VideoIO, and all dependent modules, require UWP Desktop extensions.","OpenCV,CVWin,Computer,Cpp,C++,Vision,visual,VS2015,studio,universal,UWP,windows,native,Win32",BSD-3-Clause,https://github.com/cvwin/cvwin,3,0,,0,11945947,GitHub,cvwin/cvwin,OpenCV build for .Net and UWP.,False,5.0,BSD-3-Clause,,,OpenCV,https://github.com/cvwin/cvwin,github,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
1941927,NuGet,OpenCV.Win.ML,"Pre-built OpenCV 3.x binaries on Windows (UWP). This package contains native builds of OpenCV3 - C++ (x86, x64, arm). Note that VideoIO, and all dependent modules, require UWP Desktop extensions.","OpenCV,CVWin,C++,Computer,Vision,VS2015,universal,Cpp,visual,windows,UWP,Win32,native,studio",BSD-3-Clause,https://github.com/cvwin/cvwin,3,5,,1,11945947,GitHub,cvwin/cvwin,OpenCV build for .Net and UWP.,False,5.0,BSD-3-Clause,,,OpenCV,https://github.com/cvwin/cvwin,github,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
1941928,NuGet,OpenCV.Win.Video,"Pre-built OpenCV 3.x binaries on Windows (UWP). This package contains native builds of OpenCV3 - C++ (x86, x64, arm). Note that VideoIO, and all dependent modules, require UWP Desktop extensions.","OpenCV,CVWin,Computer,Vision,Cpp,VS2015,C++,visual,windows,studio,UWP,Win32,universal,native",BSD-3-Clause,https://github.com/cvwin/cvwin,3,2,,13,11945947,GitHub,cvwin/cvwin,OpenCV build for .Net and UWP.,False,5.0,BSD-3-Clause,,,OpenCV,https://github.com/cvwin/cvwin,github,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
1941929,NuGet,OpenCV.Win.Photo,"Pre-built OpenCV 3.x binaries on Windows (UWP). This package contains native builds of OpenCV3 - C++ (x86, x64, arm). Note that VideoIO, and all dependent modules, require UWP Desktop extensions.","OpenCV,CVWin,Computer,Vision,C++,VS2015,Cpp,visual,windows,studio,UWP,native,universal,Win32",BSD-3-Clause,https://github.com/cvwin/cvwin,3,1,,0,11945947,GitHub,cvwin/cvwin,OpenCV build for .Net and UWP.,False,5.0,BSD-3-Clause,,,OpenCV,https://github.com/cvwin/cvwin,github,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
1946576,NuGet,HolisticWare.Samsung.Gesture,Samsung SDK Xamarin bindings Gesture (Xamarin.Android),"xamarin, ,pcl,android,monoandroid,monodroid,xamarin.android",,,1,0,,0,,,,,,,,,,Gesture,https://www.samsung.com/,samsung,gesture,gesture,['5378398'],community,Binding
1946903,NuGet,PicNet.XGBoost,.Net wrapper for the XGBoost machine learning library. Targeted for x64 and supports .Net Framework versions 4.0 and above.,"tree,learning,machine,boosted,xgboost",Apache-2.0,https://github.com/PicNet/XGBoost.Net,23,0,,2,16469151,GitHub,PicNet/XGBoost.Net,.Net wrappers for the awesome XGBoost library,False,33.0,Apache-2.0,,,XGBoost,https://github.com/PicNet/XGBoost.Net,github,xgboost,xgboost,['339654'],community,Binding
1957166,Packagist,dees040/alchemy-api,Laravel wrapper for the AlchemyAPI.,"laravel,alchemyapi,laravel-alchemy-api",Apache-2.0,https://github.com/dees040/laravel-alchemyapi,5,0,,1,16526952,GitHub,dees040/laravel-alchemyapi,AlchemyApi with a Laravel flavor.,False,0.0,,,,Alchemy,,,alchemy,alchemy,"['13491787', '40396672']",community,Binding
1957286,npm,sling-connector,Helps connect to Sling API endpoints,,ISC,,14,3,,0,,,,,,,,,,Sling,,,sling,sling,['29291205'],community,Binding
1968179,Packagist,johnshopkins/wp-acf-hub-api,ACF field allowing users to select content from the Hub API.,,MIT,https://github.com/johnshopkins/wp-acf-hub-api,5,0,,0,6002599,GitHub,johnshopkins/wp-acf-hub-api,,False,0.0,,Removed,,Hub,,,hub,hub,"['34841639', '35545110']",community,Binding
1980685,Rubygems,tensorflow_serving_client,A Ruby client library for Tensorflow Serving,,MIT,https://github.com/nubbel/tensorflow_serving_client-ruby,2,0,,0,16663782,GitHub,nubbel/tensorflow_serving_client-ruby,A Ruby client library for Tensorflow Serving,False,7.0,MIT,,,Tensorflow,https://github.com/nubbel/tensorflow_serving_client-ruby,github,tensorflow,tensorflow,"['3109714', '27253426', '39323364']",community,Binding
1985474,NuGet,FooCorp.TestXGB,.Net wrapper for the XGBoost machine learning library.,"boosted,learning,tree,machine,xgboost",Apache-2.0,https://github.com/PicNet/XGBoost.Net,6,0,,0,16469151,GitHub,PicNet/XGBoost.Net,.Net wrappers for the awesome XGBoost library,False,33.0,Apache-2.0,,,XGBoost,https://github.com/PicNet/XGBoost.Net,github,xgboost,xgboost,['339654'],community,Binding
1988604,npm,scrollmonitor-parallax,A simple parallax API,"scrolling,parallax",MIT,https://github.com/stutrek/scrollmonitor-parallax,4,0,,0,16744615,GitHub,stutrek/scrollmonitor-parallax,A simple parallax API,False,89.0,,,,parallax,https://github.com/stutrek/scrollmonitor-parallax,github,parallax,parallax,['36931043'],community,Binding
1993645,npm,moses-client,Moses Client Library for Web Applications,"Moses,Exodus",MIT,https://exodusfinancas.visualstudio.com/DefaultCollection/_git/Moses.Client,11,1,,0,,,,,,,,,,Moses,,,moses,moses,"['885225', '37277614']",community,Binding
2017285,npm,tensorflow-node,Tensorflow for node.js,"tensorflow,tf,machinelearning,ml,deeplearning,dl,neuralnetworks,nn,javascript,js",MIT,https://github.com/kmalakoff/tensorflow-node,2,0,,0,16737991,GitHub,kmalakoff/tensorflow-node,Tensorflow for node.js,False,4.0,MIT,,,Tensorflow,https://github.com/kmalakoff/tensorflow-node,github,tensorflow,tensorflow,"['3109714', '27253426', '39323364']",community,Binding
2027667,Packagist,jidaikobo/locomo,package of fuelPHP,,MIT,https://github.com/jidaikobo/locomo,4,0,,0,17126689,GitHub,jidaikobo/locomo,,False,0.0,,,,fuel,,,fuel,fuel,['830048'],community,Binding
2032862,Packagist,jidaikobo/pdf,package of fuelPHP,,MIT,https://github.com/jidaikobo/pdf,1,1,,1,17130891,GitHub,jidaikobo/pdf,,False,0.0,,,,fuel,,,fuel,fuel,['830048'],community,Binding
2032863,Packagist,jidaikobo/excel,package of fuelPHP,,MIT,https://github.com/jidaikobo/excel,1,1,,1,17139176,GitHub,jidaikobo/excel,,False,0.0,,,,fuel,,,fuel,fuel,['830048'],community,Binding
2038009,npm,national-rail-darwin, national rail's darwin soap based api,"national-rail,darwin,trains,rail",MIT,https://github.com/d5039m/national-rail-darwin,19,1,,4,17218138,GitHub,mattsalt/national-rail-darwin,JS module abstracting national rail's SOAP API,False,14.0,MIT,,,darwin,https://github.com/d5039m/national-rail-darwin,github,darwin,darwin,['40400525'],community,Binding
2038437,npm,testing-dll-package,DLL package for React apps.,,Apache-2.0,,1,0,,0,,,,,,,,,,DLL,,,dll,dll,['5766550'],community,Binding
2038471,npm,apollo-angular,"Use your GraphQL data in your Angular app, with the Apollo Client","ngx,apollo,graphql,angular,schematics,angular-schematics",MIT,https://github.com/apollographql/apollo-angular,56,49,,461,8804574,GitHub,apollographql/apollo-angular,"A fully-featured, production ready caching GraphQL client for Angular and every GraphQL server 🎁",False,756.0,MIT,,"angular,apollo-client,apollographql,graphql,graphql-client,typescript",Apollo,https://www.apollographql.com/docs/angular/,apollographql,apollo,apollo,['15362424'],community,Binding
2060415,Pub,owl,"Client libraries (annotations and utilities) for the owl source code generator. It supports JSON serialization, HTTP APIs and SQL CRUD. ",,,https://github.com/agilord/owl,8,7,,7,17407521,GitHub,agilord/owl,"Dart source code generator for JSON serialization, HTTP APIs and SQL CRUD.",False,14.0,,,,owl,https://github.com/agilord/owl,github,owl,owl,['14048954'],community,Binding
2060954,NuGet,VowpalWabbit.Azure,Official Vowpal Wabbit library including C# interface,"wabbit,vowpal,langford,learning,machine,azure,ml,vw",Other,https://github.com/JohnLangford/vowpal_wabbit,16,0,,0,852009,GitHub,VowpalWabbit/vowpal_wabbit,"Vowpal Wabbit is a machine learning system which pushes the frontier of machine learning with techniques such as online, hashing, allreduce, reductions, learning2search, active, and interactive learning.",False,6767.0,Other,,"active-learning,c-plus-plus,contextual-bandits,cpp,learning-to-search,machine-learning,online-learning,reinforcement-learning",Vowpal Wabbit,https://github.com/JohnLangford/vowpal_wabbit/wiki/C%23-Binding,github,vowpal wabbit,vowpalwabbit,"['852009', '39434262']",same_repo,Binding
2070435,Rubygems,data_validation,A ruby interface over the DataValidation service.,,MIT,https://github.com/SparkUpFR/datavalidation-gem,1,0,,0,17229364,GitHub,SparkUpFR/datavalidation-gem,,False,2.0,MIT,,,DataValidation,https://github.com/SparkUpFR/datavalidation-gem,github,datavalidation,datavalidation,['37021433'],community,Binding
2070539,PyPI,ImageSource,Image sequence abstraction for OpenCV.,image sequence video,MIT,https://github.com/smidm/imagesource,2,0,,2,17456361,GitHub,smidm/imagesource,Image sequence abstraction for Python.,False,1.0,MIT,,,OpenCV,https://github.com/smidm/imagesource,github,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
2076931,PyPI,pydarts,Python binding of Darts,,Apache-2.0,https://github.com/jxpress/pydarts,6,0,,0,17667239,GitHub,jxpress/pydarts,,False,2.0,,,,Darts,https://github.com/jxpress/pydarts,github,darts,darts,['36863929'],community,Binding
2092121,NuGet,ITZONE.1.Net.Pkcs11.dll,Custom package to expose DLL,DLL,,,1,0,,0,,,,,,,,,,DLL,https://sourceforge.net/projects/pkcs11net/,sourceforge,dll,dll,['5766550'],community,Binding
2092122,NuGet,ITZONE.Net.Pkcs11.dll,Custom package to expose DLL,DLL,,,1,0,,0,,,,,,,,,,DLL,https://sourceforge.net/projects/pkcs11net/,sourceforge,dll,dll,['5766550'],community,Binding
2095998,npm,design-api,Design API service,"rest,api,restful,node,service",BSD-2-Clause,,1,0,,0,,,,,,,,,,Design,,,design,design,['33132201'],community,Binding
2096144,npm,map-api,Map API service,"rest,api,restful,node,service",BSD-2-Clause,,1,0,,0,,,,,,,,,,Map,,,map,map,['34414685'],community,Binding
2097406,npm,maply,Map API service,"rest,api,restful,node,service",BSD-2-Clause,,1,0,,0,,,,,,,,,,Map,,,map,map,['34414685'],community,Binding
2099152,npm,maphub,Map API service,"rest,api,restful,node,service",BSD-2-Clause,,1,0,,0,,,,,,,,,,Map,,,map,map,['34414685'],community,Binding
2102817,Packagist,onekit/speaker-recognition-bundle,Integrates Speaker Recognition API from Microsoft Cognitive Services with Symfony2.,"Symfony2,voice,verify,speech,identify,recognition,enroll,speaker",MIT,https://github.com/onekit/speaker-recognition-bundle,0,0,,0,17823099,GitHub,onekit/speaker-recognition-bundle,Integrates Speaker Recognition API from Microsoft Cognitive Services with Symfony2.,False,4.0,MIT,,,Speaker Recognition,,,speaker recognition,speakerrecognition,['26547758'],community,Binding
2103117,npm,flow-interfaces-angular,Flow interfaces for angular,,ISC,https://github.com/canastro/flow-interfaces-angular,1,4,,0,17850687,GitHub,canastro/flow-interfaces-angular,Flow interfaces for Angular JS,True,0.0,,,,Flow,https://github.com/canastro/flow-interfaces-angular,github,flow,flow,"['12755978', '29309986']",community,Binding
2105544,npm,dandelion-api,Unofficial Dandelion API JS,,ISC,,4,1,,1,,,,,,,,,,Dandelion,,,dandelion,dandelion,['36159920'],community,Binding
2112000,CocoaPods,AMRAdapterAdcolony,Adcolony adapter for AMR SDK.,,Other,https://github.com/admost/AMR-IOS-ADAPTER-ADCOLONY,27,0,,0,17858140,GitHub,admost/AMR-IOS-ADAPTER-ADCOLONY,,False,0.0,,,,AMR,http://www.admost.com/,admost,amr,amr,['14308902'],community,Binding
2112091,CocoaPods,Bolt,Bolt iOS payment SDK.,,MIT,https://github.com/boltapp/bolt-ios,1,0,,0,17013381,GitHub,BoltApp/bolt-ios,iOS client for Bolt checkout,False,0.0,MIT,,,Bolt,https://bolt.com,bolt,bolt,bolt,"['19562400', '40784040']",community,Binding
2112097,CocoaPods,AMRAdapterNexage,Nexage adapter for AMR SDK.,,Other,https://github.com/admost/AMR-IOS-ADAPTER-NEXAGE,11,0,,0,16789228,GitHub,admost/AMR-IOS-ADAPTER-NEXAGE,,False,0.0,,,,AMR,http://www.admost.com/,admost,amr,amr,['14308902'],community,Binding
2112245,CocoaPods,AMRAdapterConversant,Conversant adapter for AMR SDK.,,Other,https://github.com/admost/AMR-IOS-ADAPTER-CONVERSANT,6,0,,0,18458116,GitHub,admost/AMR-IOS-ADAPTER-CONVERSANT,,False,0.0,,,,AMR,http://www.admost.com/,admost,amr,amr,['14308902'],community,Binding
2112359,CocoaPods,AMRAdapterUnity,Unity Ads adapter for AMR SDK.,,Other,https://github.com/admost/AMR-IOS-ADAPTER-UNITYADS,28,0,,0,18458164,GitHub,admost/AMR-IOS-ADAPTER-UNITYADS,,False,0.0,,,,AMR,http://www.admost.com/,admost,amr,amr,['14308902'],community,Binding
2112368,CocoaPods,AMRAdapterFyber,Fyber adapter for AMR SDK.,,Other,https://github.com/admost/AMR-IOS-ADAPTER-FYBER,17,0,,0,16792650,GitHub,admost/AMR-IOS-ADAPTER-FYBER,,False,0.0,,,,AMR,http://www.admost.com/,admost,amr,amr,['14308902'],community,Binding
2112405,CocoaPods,AMRAdapterAdfalcon,Adfalcon adapter for AMR SDK.,,Other,https://github.com/admost/AMR-IOS-ADAPTER-ADFALCON,7,0,,0,16791332,GitHub,admost/AMR-IOS-ADAPTER-ADFALCON,,False,0.0,,,,AMR,http://www.admost.com/,admost,amr,amr,['14308902'],community,Binding
2112448,CocoaPods,AMRAdapterInmobi,Inmobi adapter for AMR SDK.,,Other,https://github.com/admost/AMR-IOS-ADAPTER-INMOBI,14,0,,0,18457434,GitHub,admost/AMR-IOS-ADAPTER-INMOBI,,False,0.0,,,,AMR,http://www.admost.com/,admost,amr,amr,['14308902'],community,Binding
2112481,CocoaPods,AMRAdapterAmazon,Amazon adapter for AMR SDK.,,Other,https://github.com/admost/AMR-IOS-ADAPTER-AMAZON,13,0,,0,18458206,GitHub,admost/AMR-IOS-ADAPTER-AMAZON,,False,0.0,,,,AMR,http://www.admost.com/,admost,amr,amr,['14308902'],community,Binding
2112506,CocoaPods,AMRAdapterInloco,Inloco adapter for AMR SDK.,,Other,https://github.com/admost/AMR-IOS-ADAPTER-INLOCO,6,0,,0,16793488,GitHub,admost/AMR-IOS-ADAPTER-INLOCO,,False,0.0,,,,AMR,http://www.admost.com/,admost,amr,amr,['14308902'],community,Binding
2112553,CocoaPods,AMRAdapterFlurry,Flurry adapter for AMR SDK.,,Other,https://github.com/admost/AMR-IOS-ADAPTER-FLURRY,17,0,,0,18449425,GitHub,admost/AMR-IOS-ADAPTER-FLURRY,,False,0.0,,,,AMR,http://www.admost.com/,admost,amr,amr,['14308902'],community,Binding
2112627,CocoaPods,AMRAdapterLoopme,Loopme adapter for AMR SDK.,,Other,https://github.com/admost/AMR-IOS-ADAPTER-LOOPME,11,0,,0,18458290,GitHub,admost/AMR-IOS-ADAPTER-LOOPME,,False,0.0,,,,AMR,http://www.admost.com/,admost,amr,amr,['14308902'],community,Binding
2112698,CocoaPods,AMRAdapterRevmob,Revmob adapter for AMR SDK.,,Other,https://github.com/admost/AMR-IOS-ADAPTER-REVMOB,8,0,,0,16750123,GitHub,admost/AMR-IOS-ADAPTER-REVMOB,,False,0.0,,,,AMR,http://www.admost.com/,admost,amr,amr,['14308902'],community,Binding
2112779,CocoaPods,AMRAdapterApplovin,Applovin adapter for AMR SDK.,,Other,https://github.com/admost/AMR-IOS-ADAPTER-APPLOVIN,34,0,,0,18440567,GitHub,admost/AMR-IOS-ADAPTER-APPLOVIN,,False,0.0,,,,AMR,http://www.admost.com/,admost,amr,amr,['14308902'],community,Binding
2112801,CocoaPods,AMRAdapterNativex,NativeX adapter for AMR SDK.,,Other,https://github.com/admost/AMR-IOS-ADAPTER-NATIVEX,9,0,,0,18458389,GitHub,admost/AMR-IOS-ADAPTER-NATIVEX,,False,0.0,,,,AMR,http://www.admost.com/,admost,amr,amr,['14308902'],community,Binding
2112818,CocoaPods,AMRAdapterAppnext,Appnext adapter for AMR SDK.,,Other,https://github.com/admost/AMR-IOS-ADAPTER-APPNEXT,14,0,,0,18441523,GitHub,admost/AMR-IOS-ADAPTER-APPNEXT,,False,0.0,,,,AMR,http://www.admost.com/,admost,amr,amr,['14308902'],community,Binding
2112853,CocoaPods,AMRAdapterSmaato,Smaato adapter for AMR SDK.,,Other,https://github.com/admost/AMR-IOS-ADAPTER-SMAATO,14,0,,0,18458424,GitHub,admost/AMR-IOS-ADAPTER-SMAATO,,False,0.0,,,,AMR,http://www.admost.com/,admost,amr,amr,['14308902'],community,Binding
2112907,CocoaPods,AMRAdapterAdmob,Admob adapter for AMR SDK.,,Other,https://github.com/admost/AMR-IOS-ADAPTER-ADMOB,38,0,,0,16601888,GitHub,admost/AMR-IOS-ADAPTER-ADMOB,,False,0.0,,,,AMR,http://www.admost.com/,admost,amr,amr,['14308902'],community,Binding
2113001,CocoaPods,HRLAlgorithms,(DEPRECATED) Wrapper around LearnKit.,,MIT,https://github.com/HeartRateLearning/HRLAlgorithms,6,0,,3,17232419,GitHub,HeartRateLearning/HRLAlgorithms,(DEPRECATED) Wrapper around LearnKit,False,0.0,MIT,,"knn,machine-learning,machinelearning",LearnKit,https://github.com/HeartRateLearning/HRLAlgorithms,github,learnkit,learnkit,['3647432'],community,Binding
2113009,CocoaPods,AMRAdapterChartboost,Chartboost adapter for AMR SDK.,,Other,https://github.com/admost/AMR-IOS-ADAPTER-CHARTBOOST,17,0,,0,16788553,GitHub,admost/AMR-IOS-ADAPTER-CHARTBOOST,,False,0.0,,,,AMR,http://www.admost.com/,admost,amr,amr,['14308902'],community,Binding
2113014,CocoaPods,AMRAdapterMobfox,Mobfox adapter for AMR SDK.,,Other,https://github.com/admost/AMR-IOS-ADAPTER-MOBFOX,18,0,,0,16748513,GitHub,admost/AMR-IOS-ADAPTER-MOBFOX,,False,0.0,,,,AMR,http://www.admost.com/,admost,amr,amr,['14308902'],community,Binding
2113021,CocoaPods,AMRAdapterSupersonic,Supersonic adapter for AMR SDK.,,Other,https://github.com/admost/AMR-IOS-ADAPTER-SUPERSONIC,4,0,,0,18458710,GitHub,admost/AMR-IOS-ADAPTER-SUPERSONIC,,False,0.0,,,,AMR,http://www.admost.com/,admost,amr,amr,['14308902'],community,Binding
2113071,CocoaPods,AMRAdapterTapjoy,Tapjoy adapter for AMR SDK.,,Other,https://github.com/admost/AMR-IOS-ADAPTER-TAPJOY,23,0,,0,18458941,GitHub,admost/AMR-IOS-ADAPTER-TAPJOY,,False,0.0,,,,AMR,http://www.admost.com/,admost,amr,amr,['14308902'],community,Binding
2113242,CocoaPods,AMRAdapterVungle,Vungle adapter for AMR SDK.,,Other,https://github.com/admost/AMR-IOS-ADAPTER-VUNGLE,26,0,,0,18459203,GitHub,admost/AMR-IOS-ADAPTER-VUNGLE,,False,0.0,,,,AMR,http://www.admost.com/,admost,amr,amr,['14308902'],community,Binding
2113392,CocoaPods,AMRAdapterMopub,Mopub adapter for AMR SDK.,,Other,https://github.com/admost/AMR-IOS-ADAPTER-MOPUB,32,0,,0,16697145,GitHub,admost/AMR-IOS-ADAPTER-MOPUB,,False,0.0,,,,AMR,http://www.admost.com/,admost,amr,amr,['14308902'],community,Binding
2114666,npm,screeps-js-api,Screeps API for NodeJS inspired by node-screeps-api (https://github.com/screepers/node-screeps-api).,,ISC,https://github.com/ShadowRyanis/screeps-js-api,9,0,,0,18537031,GitHub,ShadowRyanis/screeps-js-api,Nodejs API for the game Screeps,False,0.0,,,,Screeps,https://github.com/ShadowRyanis/screeps-js-api,github,screeps,screeps,['15141670'],community,Binding
2115710,CocoaPods,OpenCV-Dynamic,OpenCV (Computer Vision) for iOS as a dynamic framework.,,BSD-3-Clause,https://github.com/legoless/opencv-dynamic,7,0,,7,18613931,GitHub,Legoless/OpenCV-Dynamic,OpenCV iOS Dynamic Framework Podspec,False,16.0,Other,,opencv,OpenCV,https://github.com/legoless/opencv-dynamic,github,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
2119164,npm,flow-classy-type-wrapper,"Type-wrappers for Flow, quickly defined with ES6 classes.","flow,flowtype",Apache-2.0,https://github.com/damncabbage/flow-classy-type-wrapper,6,0,,0,18893275,GitHub,damncabbage/flow-classy-type-wrapper,"Type-wrappers for Flow, quickly defined with ES6 classes.",False,7.0,Other,,"flow,flowtype,javascript,type-safety",Flow,https://github.com/damncabbage/flow-classy-type-wrapper,github,flow,flow,"['12755978', '29309986']",community,Binding
2119229,Packagist,tuna-cms/tuna,Tuna CMS main package,,MIT,https://github.com/Tuna-CMS/tuna,2,1,,0,18887610,GitHub,Tuna-CMS/tuna-bundle,Tuna CMS TunaBundle (integrating all bundles),False,0.0,MIT,,,Tuna,,,tuna,tuna,['34447612'],community,Binding
2122141,Packagist,krzysztofmazur/ntp-client,NTP client,,MIT,https://github.com/krzysztofmazur/ntp-client,2,1,,1,19068590,GitHub,krzysztofmazur/ntp-client,,False,1.0,MIT,,,NTP,,,ntp,ntp,['32528693'],community,Binding
2122402,Packagist,tuna-cms/tuna-bundle,Tuna CMS main package,,MIT,https://github.com/Tuna-CMS/tuna-bundle,6,1,,1,18887610,GitHub,Tuna-CMS/tuna-bundle,Tuna CMS TunaBundle (integrating all bundles),False,0.0,MIT,,,Tuna,,,tuna,tuna,['34447612'],community,Binding
2124421,Packagist,juliardi/c45,C4.5 Implementation in PHP,,MIT,https://github.com/juliardi/C45,2,0,,0,19306476,GitHub,juliardi/C45,C4.5 Implementation in PHP,False,0.0,MIT,,,C4.5,,,c4 5,c45,['34920407'],community,Binding
2125784,npm,node-qml-raub,QML interoperation addon for Node.js,qml,MIT,https://github.com/raub/node-qml,33,2,,0,19374426,GitHub,node-3d/qml-raub,QML interoperation for Node.js,False,4.0,MIT,,"addon,bindings,graphics,native,node-3d,offscreen-rending,qml",QML,http://github.com/raub,github,qml,qml,"['24790838', '40539770']",community,Binding
2126664,npm,hedgehog-client,Client library for the Hedgehog Educational Robotics Controller,"hedgehog,controller,pria,robotics,robot,education",AGPL-3.0,https://github.com/PRIArobotics/HedgehogNodeClient,20,0,,0,17286922,GitHub,PRIArobotics/HedgehogNodeClient,NodeJS client library for the Hedgehog Educational Robotics Controller,False,3.0,AGPL-3.0,,,Hedgehog,https://github.com/PRIArobotics/HedgehogNodeClient,github,hedgehog,hedgehog,['6250954'],community,Binding
2127665,Packagist,fastd/api,:rocket: A hige performance API framework in PHP,,MIT,https://github.com/JanHuang/api,2,0,,0,19516623,GitHub,fastdlabs/dobee,:rocket: A hige performance API framework in PHP,False,7.0,MIT,,"api,fastd,high-performance,http,server,swoole",:rocket,https://fastdlabs.com,fastdlabs,rocket,rocket,['40247662'],community,Binding
2128627,Packagist,fastd/dobee,:rocket: A hige performance API framework in PHP,FastD,MIT,https://github.com/fastdlabs/dobee,18,0,,0,19516623,GitHub,fastdlabs/dobee,:rocket: A hige performance API framework in PHP,False,7.0,MIT,,"api,fastd,high-performance,http,server,swoole",:rocket,https://fastdlabs.com,fastdlabs,rocket,rocket,['40247662'],community,Binding
2129356,npm,moses-client-providers,Defaults for Moses Client Library for Web Applications,"Moses,Exodus",MIT,https://exodusfinancas.visualstudio.com/DefaultCollection/_git/Moses.Client,31,0,,0,,,,,,,,,,Moses,,,moses,moses,"['885225', '37277614']",community,Binding
2131673,npm,aws-sdk-elm,WIP -- AWS SDK for elm,"aws,sdk,elm",Apache-2.0,https://github.com/ktonon/aws-sdk-elm,2,0,,0,18992983,GitHub,ktonon/aws-sdk-elm,Deprecated. Replaced by elm-aws-core and elm-aws-generate,False,10.0,Apache-2.0,,,elm,https://github.com/ktonon/aws-sdk-elm,github,elm,elm,"['186221', '16190324']",community,Binding
2134686,npm,layer-client,Platform agnostic client for Layer (works with React Native),"layer,chat,react,native,web",Apache-2.0,https://github.com/evanrs/layer-client,1,0,,0,18165591,GitHub,evanrs/layer-client,Platform agnostic client for Layer,False,0.0,Apache-2.0,,,Layer,https://github.com/evanrs/layer-client,github,layer,layer,['38723395'],community,Binding
2139579,CocoaPods,AMRAdapterPubnative,Pubnative adapter for AMR SDK.,,Other,https://github.com/admost/AMR-IOS-ADAPTER-PUBNATIVE,5,0,,0,18564677,GitHub,admost/AMR-IOS-ADAPTER-PUBNATIVE,,False,0.0,,,,AMR,http://www.admost.com/,admost,amr,amr,['14308902'],community,Binding
2139596,CocoaPods,AMRAdapterAdmost,Admost adapter for AMR SDK.,,Other,https://github.com/admost/AMR-IOS-ADAPTER-ADMOST,25,0,,0,18514030,GitHub,admost/AMR-IOS-ADAPTER-ADMOST,,False,0.0,,,,AMR,http://www.admost.com/,admost,amr,amr,['14308902'],community,Binding
2139662,CocoaPods,AMRAdapterStartapp,Startapp adapter for AMR SDK.,,Other,https://github.com/admost/AMR-IOS-ADAPTER-STARTAPP,10,0,,0,18511204,GitHub,admost/AMR-IOS-ADAPTER-STARTAPP,,False,0.0,,,,AMR,http://www.admost.com/,admost,amr,amr,['14308902'],community,Binding
2139686,CocoaPods,AMRAdapterAvocarrot,Avocarrot adapter for AMR SDK.,,Other,https://github.com/admost/AMR-IOS-ADAPTER-AVOCARROT,7,0,,0,18562554,GitHub,admost/AMR-IOS-ADAPTER-AVOCARROT,,False,0.0,,,,AMR,http://www.admost.com/,admost,amr,amr,['14308902'],community,Binding
2140192,PyPI,pyppl,A Python PiPeLine framework,,MIT,https://github.com/pwwang/PyPPL,55,13,,0,19872396,GitHub,pwwang/PyPPL,PyPPL - A Python PiPeLine framework.,False,39.0,Apache-2.0,,"dot,jinja2,pipeline,pipeline-framework,python,workflow,workflow-engine",PiPeLine,https://github.com/pwwang/PyPPL,github,pipeline,pipeline,"['2699195', '3765103']",community,Binding
2140467,npm,ddry-tape,Optional dependency wrapper mounting Tape JS as ddry test harness,"ddry,tape",MIT,https://github.com/ddry/ddry-tape,6,0,,0,19853745,GitHub,ddry/ddry-tape,Optional dependency wrapper mounting Tape JS as ddry test harness,False,0.0,MIT,,,Tape,https://github.com/ddry/ddry-tape,github,tape,tape,['40775741'],community,Binding
2140683,npm,deepdetect-js,DeepDetect JS client,"deepdetect,deep-learning,machine-learning,rest-api,client,javascript,request",MIT,https://github.com/jolibrain/deepdetect-js,54,0,,3,35971758,GitHub,jolibrain/deepdetect-js,DeepDetect javascript client,False,7.0,MIT,,"browser,deepdetect,javascript,machine-learning,nodejs",DeepDetect,https://deepdetect.com,deepdetect,deepdetect,deepdetect,['2808898'],same_repo_owner,Binding
2143429,npm,@node-py/nltk,Native NLTK bindings with node-friendly API.,"python,nlp,nltk,natural,language,processing",MIT,git+https://github.com/node-py/py-nltk.git,3,0,,0,,,,,,,,,,NLTK,https://github.com/node-py/py-nltk#readme,github,nltk,nltk,['845081'],community,Binding
2144067,npm,@avh4/node-elm-compiler,A Node.js interface to the Elm compiler binaries (v0.16).,"elm,compiler,node",BSD-3-Clause,https://github.com/rtfeldman/node-elm-compiler,1,0,,0,352063,GitHub,rtfeldman/node-elm-compiler,A Node.js interface to the Elm compiler binaries.,False,144.0,BSD-3-Clause,,,Elm,https://github.com/rtfeldman/node-elm-compiler,github,elm,elm,"['186221', '16190324']",community,Binding
2144641,npm,@aabenoja/flow-bin,Binary wrapper for Flow - A static type checker for JavaScript,"cli-app,cli,bin,binary,flow,facebook,type,inference,check,checker,javascript,js,wrapper",MIT,https://github.com/sindresorhus/flow-bin,1,0,,0,100041,GitHub,flowtype/flow-bin,Binary wrapper for Flow - A static type checker for JavaScript,False,507.0,Other,,,Flow,https://github.com/sindresorhus/flow-bin,github,flow,flow,"['12755978', '29309986']",community,Binding
2147098,npm,@datafire/prd-prsn,DataFire integration for EPS APIs,,MIT,git+https://github.com/DataFire/integrations.git,2,0,,0,,,,,,,,,,EPS,https://github.com/DataFire/integrations#readme,github,eps,eps,['36267120'],community,Binding
2150246,npm,hal-crawler,Hal Client for JavaScript,hal,Apache-2.0,git+https://github.com/StuckiSimon/HalCrawler.git,18,1,,1,19711963,GitHub,StuckiSimon/HalCrawler,Hal Client for JavaScript,False,4.0,Apache-2.0,,,Hal,https://github.com/StuckiSimon/HalCrawler#readme,github,hal,hal,['4824482'],community,Binding
2150360,PyPI,pyramid-restful-framework,RESTful API framework for Pyramid.,,BSD-3-Clause,https://github.com/danpoland/pyramid-restful-framework,34,0,,2,20021995,GitHub,danpoland/pyramid-restful-framework,A RESTful API framework for Pyramid based on the patterns used in django-rest-framework.,False,4.0,BSD-2-Clause,,,Pyramid,https://github.com/danpoland/pyramid-restful-framework,github,pyramid,pyramid,['10568701'],community,Binding
2151367,Packagist,akamuraasai/hackerrank_api,A package to comunicate with Hacker Rank API.,,MIT,https://github.com/akamuraasai/HackerRankAPI,2,0,,0,20041719,GitHub,akamuraasai/HackerRankAPI,A package to comunicate with Hacker Rank API.,False,0.0,,,,Hacker Rank,,,hacker rank,hackerrank,['39033611'],community,Binding
2151451,npm,laravel-elm,A package to provide support for compiling Elm in Laravel,"laravel,elm",MIT,https://github.com/loganhenson/laravel-elm,5,0,,0,20048224,GitHub,loganhenson/laravel-elm,A package to provide support for compiling Elm in Laravel,False,2.0,MIT,,,Elm,https://github.com/loganhenson/laravel-elm,github,elm,elm,"['186221', '16190324']",community,Binding
2153490,CPAN,AI-NNVMCAPI,Swig interface to nnvm c api,,Apache-2.0,,8,1,,0,,,,,,,,,,nnvm,,,nnvm,nnvm,['13090304'],community,Binding
2155141,npm,vulcano-cli,Vulcan CLI,"vulcano,cli",MIT,https://github.com/vulcan-estudios/vulcano-cli,1,0,,0,20219017,GitHub,vulcan-estudios/vulcano-cli,Vulcano CLI,False,0.0,MIT,,,Vulcan,https://github.com/vulcan-estudios/vulcano-cli,github,vulcan,vulcan,['36910719'],community,Binding
2156246,PyPI,canton,Light-weight TensorFlow Wrapper,deep learning framework,MIT,https://github.com/ctmakro/canton,23,0,,0,20271147,GitHub,ctmakro/canton,yet another DL framework,False,6.0,,,,TensorFlow,https://github.com/ctmakro/canton,github,tensorflow,tensorflow,"['3109714', '27253426', '39323364']",community,Binding
2157809,CPAN,Catmandu-Adlib,Catmandu interface to Adlib,,Artistic-1.0-Perl,https://github.com/thedatahub/Catmandu-Adlib,2,0,,0,20312084,GitHub,thedatahub/Catmandu-Adlib,Catmandu::Adlib - Catmandu interface to Adlib.,False,0.0,Other,,,Adlib,https://github.com/thedatahub/Catmandu-Adlib,github,adlib,adlib,['29636654'],community,Binding
2159074,npm,oscar-assistant-api,API server for OSCAR assistant,,Apache-2.0,https://github.com/eheikes/oscar,1,0,,0,20455353,GitHub,eheikes/oscar,OSCAR Assistant,False,0.0,Apache-2.0,,,OSCAR,https://github.com/eheikes/oscar/api,github,oscar,oscar,['28326496'],community,Binding
2160209,NuGet,SharpLearning.Common.Interfaces,Provides common interfaces for SharpLearning.,,Other,https://github.com/mdabros/SharpLearning,41,10,,4,20394092,GitHub,mdabros/SharpLearning,Machine learning for C# .Net ,False,227.0,Other,,"adaboost,cross-validation,csharp,decision-trees,deep-learning,dotnet,ensemble-learning,gradient-boosting-machine,learning,machine,machine-learning,metrics,neural-nets,opensource,random-forest",SharpLearning,https://github.com/mdabros/SharpLearning,github,sharplearning,sharplearning,['20394092'],same_repo,Binding
2160730,CRAN,dlib,Allow Access to the 'Dlib' C++ Library,,BSL-1.0,,2,0,,0,,,,,,,,,,Dlib,,,dlib,dlib,"['891695', '20356305']",community,Binding
2165107,npm,superhal,Javascript HAL Client,"HAL,HATEOAS,REST,RESTful,Javascript,Hypertext,Hypermedia,Hyperlink,Client,Superagent",MIT,https://github.com/mathieumast/superhal,2,1,,0,22385512,GitHub,mathieumast/superhal,Javascript HAL Client,False,0.0,MIT,,,HAL,http://github.com/mathieumast/superhal,github,hal,hal,['4824482'],community,Binding
2168409,PyPI,bob.db.voicepa,Audio voicePA Presentation Attack Database Access API for Bob,,BSD-3-Clause,,7,0,,1,,,,,,,,,,Bob,http://gitlab.idiap.ch/bob/bob.db.voicepa,idiap,bob,bob,"['681624', '18843112']",community,Binding
2168915,npm,football-api,Simple Node.js API abstraction for football-api.com,,MIT,git+ssh://[email protected]/beevelop/football-api.git,1,0,,0,21460051,GitHub,beevelop/football-api,,False,0.0,,,,football,https://github.com/beevelop/football-api#readme,github,football,football,"['35900555', '38986496']",community,Binding
2170227,Packagist,heartbeat/restclient,Heartbeat API Restclient,"api,heartbeat",,https://github.com/heartbeatgmbh/restclient,0,0,,0,15174034,GitHub,heartbeatgmbh/restclient,The REST Client for the Heartbeat Business API.,False,0.0,,,,Heartbeat,https://heartbeat.gmbh,heartbeat,heartbeat,heartbeat,['855933'],community,Binding
2171101,npm,halifier,helper toolset for building HAL API with express,,WTFPL,git+https://github.com/disjunction/halifier.git,6,0,,0,22499392,GitHub,disjunction/halifier,,False,0.0,,,,HAL,https://github.com/disjunction/halifier#readme,github,hal,hal,['4824482'],community,Binding
2171539,PyPI,eos-py,Python bindings for eos - A lightweight 3D Morphable Face Model fitting library in modern C++11/14,,Apache-2.0,https://github.com/patrikhuber/eos,15,0,,1,2700852,GitHub,patrikhuber/eos,A lightweight 3D Morphable Face Model fitting library in modern C++11/14,False,981.0,Apache-2.0,,"3d-face,3d-face-reconstruction,3dmm,c-plus-plus,computer-vision,cpp14,cpp17,cross-platform,face-models,image-processing,machine-learning,modern-cpp,python",eos,https://github.com/patrikhuber/eos,github,eos,eos,['2700852'],same_repo,Binding
2172584,PyPI,keras_cli,Keras command line client,,,https://github.com/paulfitz/keras_cli,1,0,,0,,,,,,,,,,Keras,https://github.com/paulfitz/keras_cli,github,keras,keras,['815940'],community,Binding
2174007,Rubygems,manifoldco_provider,Ruby client for Manifold's provider API,,BSD-3-Clause,https://github.com/manifoldco/ruby-manifoldco-provider,1,0,,0,21481616,GitHub,manifoldco/ruby-manifoldco-provider,Ruby client for Manifold's provider API,False,0.0,BSD-3-Clause,,,Manifold,https://github.com/manifoldco/ruby-manifoldco-provider,github,manifold,manifold,['39285237'],community,Binding
2174008,Rubygems,manifoldco,Ruby client for Manifold's API,,BSD-3-Clause,https://github.com/manifoldco/ruby-manifoldco,1,0,,0,21481570,GitHub,manifoldco/ruby-manifoldco,Ruby client for Manifold's API,False,0.0,BSD-3-Clause,,,Manifold,https://github.com/manifoldco/ruby-manifoldco,github,manifold,manifold,['39285237'],community,Binding
2177347,Packagist,autodesk-forge/client,"Forge PHP SDK: Enables you to easily integrate the Forge REST APIs into your application, including OAuth, Data Management,Model Derivative, and Design Automation","php,api,sdk,swagger",Apache-2.0,https://github.com/Autodesk-Forge/forge-api-php-client,1,0,,0,21624097,GitHub,Autodesk-Forge/forge-php-client,"Forge PHP SDK: Enables you to easily integrate the Forge REST APIs into your application, including OAuth, Data Management,Model Derivative, and Design Automation",False,15.0,Apache-2.0,,,Forge,,,forge,forge,['23506943'],community,Binding
2177796,Rubygems,ruby-framenet,"This is a Ruby interface to FrameNet, a lexical database of English word usage. It includes version 1.7 of the FrameNet data, and Ruby classes for querying them.",,BSD-3-Clause,https://bitbucket.org/ged/ruby-framenet,4,0,,0,21716630,Bitbucket,ged/ruby-framenet,,False,,,,,FrameNet,http://deveiate.org/projects/ruby-framenet,deveiate,framenet,framenet,['40308833'],community,Binding
2179859,NuGet,HubCommon.NET,Common Hub communication library for .NET,"bdio,open,BlackDuck,hub,security,source",Apache-2.0,https://github.com/blackducksoftware/hub-nuget,13,3,,0,20875942,GitHub,blackducksoftware/hub-nuget,Black Duck Hub NuGet integration. ,False,1.0,Apache-2.0,Unmaintained,integration,Hub,https://github.com/blackducksoftware/hub-nuget,github,hub,hub,"['34841639', '35545110']",community,Binding
2183818,npm,starfish-sdk,Javascript wrapper for Starfish APIs,,MIT,https://github.com/silverspringnetworks/starfish-js,15,0,,0,21911175,GitHub,silverspringnetworks/starfish-js,Itron Networked Solutions Data Platform JavaScript SDK,False,2.0,Other,,"iot,sdk",Starfish,https://github.com/silverspringnetworks/starfish-js,github,starfish,starfish,['41084827'],community,Binding
2185122,npm,rainbow-cli,Rainbow CLI application based on the Rainbow SDK for Node.js,"ALE,SDK,Node.js,CLI,Rainbow",MIT,https://github.com/Rainbow-CPaaS/Rainbow-CLI-SDK,71,0,,0,22466082,GitHub,Rainbow-CPaaS/Rainbow-CLI-SDK,The Alcatel-Lucent Enterprise (ALE) Rainbow CLI application is an shell tool for connecting to Rainbow and doing administrative tasks.,False,6.0,Other,,,Rainbow,https://github.com/Rainbow-CPaaS/Rainbow-CLI-SDK.git,github,rainbow,rainbow,"['29176751', '31379301']",community,Binding
2186014,npm,yodal,Another pure javascript implementation of Modal on React Native. This library is heavily insprited by (react-native-simple-modal)[https://github.com/bodyflex/react-native-simple-modal],,MIT,,1,0,,0,,,,,,,,,,Modal,,,modal,modal,['31627289'],community,Binding
2186377,npm,apollo-cache,Core abstract of Caching layer for Apollo Client,"apollo,graphql,cache,apollo-client",MIT,https://github.com/apollographql/apollo-client,101,85,,5782,5415939,GitHub,apollographql/apollo-client,":rocket: A fully-featured, production ready caching GraphQL client for every UI framework and GraphQL server",False,12934.0,MIT,,"apollo-client,apollographql,graphql,graphql-client,typescript",Apollo,https://github.com/apollographql/apollo-client,github,apollo,apollo,['15362424'],community,Binding
2186387,npm,context-core,Context SDK for Linux,,,https://github.intel.com/CFS/Context_Linux.git#release_branch,2,0,,0,,,,,,,,,,Context,,,context,context,['26252700'],community,Binding
2187237,npm,npmdoc-winston,#### api documentation for [winston (v2.3.1)](https://github.com/winstonjs/winston#readme) [![npm package](https://img.shields.io/npm/v/npmdoc-winston.svg?style=flat-square)](https://www.npmjs.org/package/npmdoc-winston) [![travis-ci.org build-status](h,"documentation,winston",MIT,git+https://github.com/npmdoc/node-npmdoc-winston.git,5,0,,0,22901784,GitHub,npmdoc/node-npmdoc-winston,,False,0.0,,,,winston,https://github.com/npmdoc/node-npmdoc-winston,github,winston,winston,['72007'],community,Binding
2187738,npm,voiceactor,Uses the speech recognition API to intelligently handle speech recognition and text to speech.,,MIT,git+https://github.com/O-XInnovation/babel-base.git,6,0,,0,3916837,GitHub,O-XInnovation/babel-base,A Babel build system following KISS principles.,False,0.0,MIT,,,speech recognition,https://github.com/O-XInnovation/babel-base#README.md,github,speech recognition,speechrecognition,"['7708648', '34802812']",community,Binding
2190294,npm,winston-tracer,More configurable wrapper around winston,"winston,logger,tracer",ISC,git+https://github.com/mikalai-silivonik/winston-tracer.git,1,0,,0,22221510,GitHub,mikalai-silivonik/winston-tracer,More configurable wrapper around winston,False,0.0,MIT,,,winston,https://github.com/mikalai-silivonik/winston-tracer#readme,github,winston,winston,['72007'],community,Binding
2190650,PyPI,layer,tensorflow custom comfort wrapper,,Apache-2.0,,4,0,,8,,,,,,,,,,tensorflow,,,tensorflow,tensorflow,"['3109714', '27253426', '39323364']",community,Binding
2190854,CRAN,tensorflow,R Interface to 'TensorFlow',,Apache-2.0,https://github.com/rstudio/tensorflow,16,14,,40,13782163,GitHub,rstudio/tensorflow,TensorFlow for R,False,1154.0,Apache-2.0,,,TensorFlow,https://github.com/rstudio/tensorflow,github,tensorflow,tensorflow,"['3109714', '27253426', '39323364']",community,Binding
2191352,npm,chilkat_electron_win32,Chilkat classes for Electron (Node.js),"chilkat,SSH,SFTP,FTP,FTPS,POP3,SMTP,REST,JWT,OAuth2,IMAP,Certificate,ASN.1,PKCS7,Signature,RSA,DSA,ECC,S3,S/MIME,MIME,Email,PFX,PEM,SCP,Java KeyStore,GZip,DKIM,MHT,HMAC,Hashing,Compression,Socket,TLS,SSL,SSH Tunnel,Encoding,Charset,Zip,HTTP,Encryption",Other,,2,0,,0,,,,,,,,,,Electron,,,electron,electron,['25543319'],community,Binding
2193190,npm,@topica314/apitore,Apitore API wrapper for NLP,,MIT,,4,0,,0,,,,,,,,,,NLP,,,nlp,nlp,"['22309865', '31964017', '38155979']",community,Binding
2195017,npm,@markonis/cloudwatch-logger,Simple wrapper around Winston that sets up an opinionated logger for AWS CloudWatch,"AWS,CloudWatch,Winston,Express",MIT,git+https://github.com/Markonis/cloudwatch-logger.git,3,0,,0,,,,,,,,,,Winston,https://github.com/Markonis/cloudwatch-logger#readme,github,winston,winston,['72007'],community,Binding
2196800,PyPI,DbscanApi,A Dbscan api.,dbscan,MIT,https://github.com/udicatnchu/DbscanApi,3,0,,0,20817461,GitHub,UDICatNCHU/DbscanApi,,False,1.0,MIT,,,Dbscan,https://github.com/udicatnchu/DbscanApi,github,dbscan,dbscan,"['9476232', '27378703']",community,Binding
2197783,PyPI,pycrayon,Crayon client for python,,,https://github.com/torrvision/crayon,5,0,,9,,,,,,,,,,Crayon,https://github.com/torrvision/crayon,github,crayon,crayon,['17271116'],same_repo_url_owner,Binding
2197835,PyPI,pyh2o,H2O HTTP server library,h2o http server library,MIT,https://github.com/iceb0y/pyh2o,6,0,,0,,,,,,,,,,H2O,https://github.com/iceb0y/pyh2o,github,h2o,h2o,['14294801'],community,Binding
2197838,PyPI,pyhector,Python wrapper for the Hector simple climate model,climate model climate change,AGPL-3.0,https://github.com/openclimatedata/pyhector,19,0,,1,19183732,GitHub,openclimatedata/pyhector,Python interface for the simple global climate carbon-cycle model Hector,False,21.0,AGPL-3.0,,"climate-model,hector-model,python-wrapper",Hector,https://github.com/openclimatedata/pyhector,github,hector,hector,['197465'],community,Binding
2198319,PyPI,tfinterface,A light wrapper over TensorFlow that enables you to easily create complex deep neural networks using the Builder Pattern through a functional fluent immutable API,tensorflow,MIT,https://github.com/cgarciae/tfinterface,15,0,,0,23615306,GitHub,cgarciae/tfinterface,,False,1.0,MIT,,,TensorFlow,https://github.com/cgarciae/tfinterface,github,tensorflow,tensorflow,"['3109714', '27253426', '39323364']",community,Binding
2200585,npm,cosium-opencvjs,JavaScript Bindings for OpenCV,,BSD-4-Clause,https://github.com/Cosium/opencvjs,4,1,,0,24250644,GitHub,Cosium/opencvjs,JavaScript Bindings for OpenCV,True,0.0,,,,OpenCV,https://github.com/Cosium/opencvjs,github,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
2201300,Rubygems,mayo,Mayo provides an interface for connecting async I/O implementations with applications,,,https://github.com/rbishop/mayo,1,0,,0,,,,,,,,,,Mayo,https://github.com/rbishop/mayo,github,mayo,mayo,['40515317'],community,Binding
2202830,PyPI,electron-inject,An electron application wrapper that utilizes the remote debug console to inject code into electron applications to enable developer tools,"electron,inject,devtools,developer tools",GPL-3.0,https://github.com/tintinweb/electron-inject,4,0,,0,22388855,GitHub,tintinweb/electron-inject,Inject javascript into closed source electron applications e.g. to enable developer tools for debugging.,False,85.0,,,"debugging-tool,electron,electron-app",electron,https://github.com/tintinweb/electron-inject/,github,electron,electron,['25543319'],community,Binding
2206554,PyPI,redis_timeseries,Timeseries API built on top of Redis,redis_timeseries,MIT,https://github.com/ryananguiano/python-redis-timeseries,9,0,,0,22399591,GitHub,ryananguiano/python-redis-timeseries,,False,10.0,MIT,,,Timeseries,https://github.com/ryananguiano/python-redis-timeseries,github,timeseries,timeseries,['40379788'],community,Binding
2206895,NuGet,Tizen.NUI,"Tizen NUI is the UI Framework based on DALi (Dynamic Animation Library) 3D Graphic engine. It is a quick and easy way of allowing developers to create Rich UI Applications like Image/Video galleries, Music players, Games, Homescreens/launch pads, and so on.",,,,2,1,,0,,,,,,,,,,DALi,https://www.tizen.org/,tizen,dali,dali,"['2966313', '36724859', '36929918']",community,Binding
2207039,npm,ocr-sdk,OCR Javascript SDK,,Apache-2.0,,1,0,,0,,,,,,,,,,OCR,,,ocr,ocr,"['886025', '3265657', '9676006']",community,Binding
2207829,npm,electron-typescript-definitions,Automatically generated TypeScript definitions files for the Electron API,,MIT,https://github.com/electron/electron-typescript-definitions,43,6,,77,15426987,GitHub,electron/typescript-definitions,Convert the Electron API JSON file to electron.d.ts,False,73.0,,,,Electron,https://github.com/electron/electron-typescript-definitions,github,electron,electron,['25543319'],community,Binding
2208257,npm,nodecv,Node.js binding to OpenCV,"nodecv,opencv",MIT,https://github.com/macacajs/nodecv,23,1,,2,22972374,GitHub,macacajs/nodecv,Node.js binding to OpenCV,False,44.0,MIT,,"nodejs,opencv",OpenCV,http:////github.com/macacajs/nodecv,,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
2208261,PyPI,persephone-client-py,A Python client for the Persephone REST API,python visual-regression-testing,MIT,https://github.com/karamanolev/persephone-client-py,2,0,,0,22594245,GitHub,karamanolev/persephone-client-py,A thin Python client for the Persephone REST API,False,0.0,MIT,,,Persephone,http://github.com/karamanolev/persephone-client-py,github,persephone,persephone,['31811854'],community,Binding
2208879,Packagist,autodesk/forge-client,"Forge PHP SDK: Enables you to easily integrate the Forge REST APIs into your application, including OAuth, Data Management,Model Derivative, and Design Automation","php,api,sdk,swagger",Apache-2.0,https://github.com/Autodesk-Forge/forge-php-client,3,0,,0,21624097,GitHub,Autodesk-Forge/forge-php-client,"Forge PHP SDK: Enables you to easily integrate the Forge REST APIs into your application, including OAuth, Data Management,Model Derivative, and Design Automation",False,15.0,Apache-2.0,,,Forge,,,forge,forge,['23506943'],community,Binding
2209585,NuGet,tvn-cosine.nlp.stanford,a .net wrapper for Stanford Nlp.,"NLP,dotNet,stanford",,,1,0,,0,,,,,,,,,,Stanford Nlp,https://github.com/tvn-cosine/,github,stanford nlp,stanfordnlp,['37860773'],community,Binding
2211796,Maven,com.karumi:dexter,Dexter is an Android library to handle runtime permissions for Marshmallow easily,,Apache-2.0,https://github.com/karumi/Dexter,25,0,,723,3333755,GitHub,Karumi/Dexter,Android library that simplifies the process of requesting permissions at runtime.,False,4187.0,Apache-2.0,,"android,android-library,permissions",Dexter,https://github.com/karumi/Dexter,github,dexter,dexter,['219500'],community,Binding
2212088,Rubygems,filterjs-rails,Filter.js for Ruby on Rails,,MIT,https://github.com/kyamaguchi/filterjs-rails,1,0,,1,22786422,GitHub,kyamaguchi/filterjs-rails,Filter.js for Ruby on Rails,False,0.0,MIT,,,Filter.js,https://github.com/kyamaguchi/filterjs-rails,github,filter js,filterjs,['3186188'],community,Binding
2213380,npm,node-word2vec,word2vec interface for node.js,"word2vec,word,vector",MIT,https://github.com/fourseasonslab/word2vec,7,0,,0,20955881,GitHub,fourseasonslab/word2vec,npm package for word2vec,False,5.0,Apache-2.0,,,word2vec,https://github.com/fourseasonslab/word2vec,github,word2vec,word2vec,['10876949'],community,Binding
2214708,npm,npmdoc-limdu,#### api documentation for [limdu (v0.9.3)](https://github.com/erelsgl/limdu#readme) [![npm package](https://img.shields.io/npm/v/npmdoc-limdu.svg?style=flat-square)](https://www.npmjs.org/package/npmdoc-limdu) [![travis-ci.org build-status](https://api,"documentation,limdu",MIT,git+https://github.com/npmdoc/node-npmdoc-limdu.git,3,0,,0,22754092,GitHub,npmdoc/node-npmdoc-limdu,,False,0.0,MIT,,,limdu,https://github.com/npmdoc/node-npmdoc-limdu,github,limdu,limdu,['112589'],community,Binding
2214769,npm,npmdoc-mercury,#### basic api documentation for [mercury (v14.1.0)](https://github.com/Raynos/mercury) [![npm package](https://img.shields.io/npm/v/npmdoc-mercury.svg?style=flat-square)](https://www.npmjs.org/package/npmdoc-mercury) [![travis-ci.org build-status](http,"documentation,mercury",MIT,https://github.com/npmdoc/node-npmdoc-mercury,3,0,,0,22875659,GitHub,npmdoc/node-npmdoc-mercury,,False,0.0,MIT,,,mercury,https://github.com/npmdoc/node-npmdoc-mercury,github,mercury,mercury,['23163788'],community,Binding
2215025,npm,npmdoc-oboe,#### api documentation for [oboe (v2.1.3)](http://oboejs.com) [![npm package](https://img.shields.io/npm/v/npmdoc-oboe.svg?style=flat-square)](https://www.npmjs.org/package/npmdoc-oboe) [![travis-ci.org build-status](https://api.travis-ci.org/npmdoc/nod,"documentation,oboe",MIT,git+https://github.com/npmdoc/node-npmdoc-oboe.git,2,0,,0,22880356,GitHub,npmdoc/node-npmdoc-oboe,,False,0.0,MIT,,,oboe,https://github.com/npmdoc/node-npmdoc-oboe,github,oboe,oboe,['33726084'],community,Binding
2215488,npm,npmdoc-synaptic,#### basic api documentation for [synaptic (v1.0.10)](http://synaptic.juancazala.com) [![npm package](https://img.shields.io/npm/v/npmdoc-synaptic.svg?style=flat-square)](https://www.npmjs.org/package/npmdoc-synaptic) [![travis-ci.org build-status](http,"documentation,synaptic",MIT,https://github.com/npmdoc/node-npmdoc-synaptic,4,0,,0,22750011,GitHub,npmdoc/node-npmdoc-synaptic,,False,0.0,MIT,,,synaptic,https://github.com/npmdoc/node-npmdoc-synaptic,github,synaptic,synaptic,['155906'],community,Binding
2215882,npm,adsk-forge-cli,Interact with Forge API from the command line.,,Apache-2.0,git+https://github.com/Autodesk/forge-cli.git,2,0,,0,22890809,GitHub,Autodesk/forge-cli,Forge Command Line Interface (CLI) is a unified tool to manage your Forge services,False,3.0,,,,Forge,https://github.com/Autodesk/forge-cli#readme,github,forge,forge,['23506943'],community,Binding
2216561,PyPI,opencv-contrib-python,Wrapper package for OpenCV python bindings.,,MIT,https://github.com/skvark/opencv-python,21,1,,468,8203653,GitHub,skvark/opencv-python,"Automated CI toolchain to produce precompiled opencv-python, opencv-python-headless, opencv-contrib-python and opencv-contrib-python-headless packages.",False,1066.0,Other,,"manylinux,opencv,opencv-contrib-python,opencv-python,precompiled,pypi,python,python-3,wheel",OpenCV,https://github.com/skvark/opencv-python,github,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
2218122,npm,wego-sdk,Wego SDK,,ISC,https://github.com/wego/wego-sdk-js,2,0,,0,29547421,GitHub,wego/wego-sdk-js,Wego SDK for web,False,1.0,,,,Wego,https://github.com/wego/wego-sdk-js,github,wego,wego,['36781480'],community,Binding
2218828,npm,react-in-electron,Electron API wrapped in React components,"react,electron",MIT,git+https://github.com/piotrdubiel/react-in-electron.git,1,0,,0,23025737,GitHub,piotrdubiel/react-in-electron,,False,0.0,MIT,,,Electron,https://github.com/piotrdubiel/react-in-electron#readme,github,electron,electron,['25543319'],community,Binding
2224623,NuGet,FuelSDK-DotNet,"The Fuel SDK for C# provides easy access to ExactTarget's Fuel API Family services, including a collection of REST APIs and a SOAP API. These APIs provide access to ExactTarget functionality via common collection types.",FuelSdk,Other,https://github.com/smunuswami/FuelSDK-DotNet,2,0,,0,23124797,GitHub,smunuswami/FuelSDK-DotNet,,False,0.0,Other,,,Fuel,https://github.com/smunuswami/FuelSDK-DotNet,github,fuel,fuel,['830048'],community,Binding
2225649,Clojars,clj-tf,Using Tensorflow with Clojure,,EPL-1.0,https://github.com/feldi/clj-tf,3,0,,0,22714469,GitHub,feldi/clj-tf,A Clojure library for using TensorFlow,False,3.0,EPL-1.0,,"clojure,machine-learning,tensorflow",Tensorflow,,,tensorflow,tensorflow,"['3109714', '27253426', '39323364']",community,Binding
2227758,npm,train-node,Training Node.JS,,ISC,,1,0,,0,,,,,,,,,,Training,,,training,training,['37910205'],community,Binding
2228985,npm,npmdoc-convnetjs,#### basic api documentation for [convnetjs (v0.3.0)](http://convnetjs.com) [![npm package](https://img.shields.io/npm/v/npmdoc-convnetjs.svg?style=flat-square)](https://www.npmjs.org/package/npmdoc-convnetjs) [![travis-ci.org build-status](https://api.,"documentation,convnetjs",MIT,https://github.com/npmdoc/node-npmdoc-convnetjs,2,0,,0,23281035,GitHub,npmdoc/node-npmdoc-convnetjs,,False,0.0,MIT,,,convnetjs,https://github.com/npmdoc/node-npmdoc-convnetjs,github,convnetjs,convnetjs,['843864'],community,Binding
2229184,npm,npmdoc-inferno,api documentation for [inferno (v3.0.4)](https://github.com/infernojs/inferno#readme) [![npm package](https://img.shields.io/npm/v/npmdoc-inferno.svg?style=flat-square)](https://www.npmjs.org/package/npmdoc-inferno) [![travis-ci.org build-status](https://,"documentation,inferno",MIT,git+https://github.com/npmdoc/node-npmdoc-inferno.git,1,0,,0,23282361,GitHub,npmdoc/node-npmdoc-inferno,,False,0.0,MIT,,,inferno,https://github.com/npmdoc/node-npmdoc-inferno,github,inferno,inferno,['25463843'],community,Binding
2229459,npm,npmdoc-flow,api documentation for flow (v0.2.3) [![npm package](https://img.shields.io/npm/v/npmdoc-flow.svg?style=flat-square)](https://www.npmjs.org/package/npmdoc-flow) [![travis-ci.org build-status](https://api.travis-ci.org/npmdoc/node-npmdoc-flow.svg)](https://,"documentation,flow",MIT,https://github.com/npmdoc/node-npmdoc-flow,1,0,,0,23266068,GitHub,npmdoc/node-npmdoc-flow,,False,0.0,MIT,,,flow,https://github.com/npmdoc/node-npmdoc-flow,github,flow,flow,"['12755978', '29309986']",community,Binding
2230171,npm,npmdoc-machina,#### basic api documentation for [machina (v2.0.0)](http://machina-js.org/) [![npm package](https://img.shields.io/npm/v/npmdoc-machina.svg?style=flat-square)](https://www.npmjs.org/package/npmdoc-machina) [![travis-ci.org build-status](https://api.trav,"documentation,machina",MIT,https://github.com/npmdoc/node-npmdoc-machina,2,0,,0,23289867,GitHub,npmdoc/node-npmdoc-machina,,False,0.0,MIT,,,machina,https://github.com/npmdoc/node-npmdoc-machina,github,machina,machina,['38209025'],community,Binding
2230816,npm,npmdoc-osprey,#### basic api documentation for [osprey (v0.4.1)](https://github.com/mulesoft/osprey) [![npm package](https://img.shields.io/npm/v/npmdoc-osprey.svg?style=flat-square)](https://www.npmjs.org/package/npmdoc-osprey) [![travis-ci.org build-status](https:/,"documentation,osprey",MIT,https://github.com/npmdoc/node-npmdoc-osprey,2,0,,0,23266692,GitHub,npmdoc/node-npmdoc-osprey,,False,0.0,MIT,,,osprey,https://github.com/npmdoc/node-npmdoc-osprey,github,osprey,osprey,['289540'],community,Binding
2232657,npm,npmdoc-nano,#### basic api documentation for [nano (v6.2.0)](http://github.com/dscape/nano) [![npm package](https://img.shields.io/npm/v/npmdoc-nano.svg?style=flat-square)](https://www.npmjs.org/package/npmdoc-nano) [![travis-ci.org build-status](https://api.travis,"documentation,nano",MIT,https://github.com/npmdoc/node-npmdoc-nano,4,0,,0,22698161,GitHub,npmdoc/node-npmdoc-nano,,False,0.0,MIT,,,nano,https://github.com/npmdoc/node-npmdoc-nano,github,nano,nano,['3204475'],community,Binding
2234328,npm,@xervo/logger,Winston wrapper with simplified interface,"debug,exceptions,logger,logs",MIT,git+https://github.com/XervoIO/logger.git,1,0,,0,3490767,GitHub,XervoIO/logger,Winston wrapper with simplified interface,False,1.0,MIT,,,Winston,https://github.com/XervoIO/logger#readme,github,winston,winston,['72007'],community,Binding
2235226,Maven,org.brunocvcunha.inutils4j:inutils4j,Utilities API for Java,,Apache-2.0,https://github.com/brunocvcunha/inutils4j,8,3,,3,7160062,GitHub,brunocvcunha/inutils4j,:nut_and_bolt: Utilities API for Java,False,6.0,Apache-2.0,,"java,productivity,string,utilities",Utilities,http://github.com/brunocvcunha/inutils4j,github,utilities,utilities,['13233585'],community,Binding
2237845,Maven,com.theneura:android-sdk,"Neura SDK for Android maximizes the performance of apps and devices by making them more user-centric - allowing them to respond in a meaningful way to each individual person. Neura employs mature Machine Learning algorithms and semantic tagging to understand the importance of places, events and other people to the user.",,Eurosym,https://github.com/NeuraLabs/api_sampler_android,43,0,,3,,,,,,,,,,Neura,https://dev.theneura.com,theneura,neura,neura,['28908379'],community,Binding
2238085,Maven,at.favre.lib:dali,"Dali is an image blur library for Android. It is easy to use, fast and extensible. Dali contains several modules for either static blurring, live blurring and animations.",,Apache-2.0,https://github.com/patrickfav/Dali,5,0,,9,12376081,GitHub,patrickfav/Dali,"Dali is an image blur library for Android. It contains several modules for static blurring, live blurring and animations.",False,915.0,Apache-2.0,,"android,android-library,animation,blur,image-manipulation,live-blurring,renderscript",Dali,https://github.com/patrickfav/Dali,github,dali,dali,"['2966313', '36724859', '36929918']",community,Binding
2238215,Maven,org.alluxio:alluxio-keyvalue-client,Client of Alluxio Key Value Store,,Apache-2.0,https://github.com/alluxio/alluxio,15,4,,20,168500,GitHub,Alluxio/alluxio,"Alluxio, data orchestration for analytics and machine learning in the cloud",False,4449.0,Apache-2.0,,"alluxio,data-analysis,data-orchestration,hadoop,memory-speed,presto,spark,tensorflow,virtual-distributed-filesystem",Alluxio,http://alluxio.org/,alluxio,alluxio,alluxio,['168500'],same_repo,Binding
2238346,Maven,org.alluxio:alluxio-core-server,Server implementation of Alluxio core,,,,13,5,,32,,,,,,,,,,Alluxio,,,alluxio,alluxio,['168500'],community,Binding
2238347,Maven,org.alluxio:alluxio-shell,A Linux shell-like interface to interact with Alluxio,,,,13,2,,50,,,,,,,,,,Alluxio,,,alluxio,alluxio,['168500'],community,Binding
2238514,Maven,org.alluxio:alluxio-keyvalue-server,Servers of Alluxio Key Value Store,,Apache-2.0,https://github.com/alluxio/alluxio,15,3,,22,168500,GitHub,Alluxio/alluxio,"Alluxio, data orchestration for analytics and machine learning in the cloud",False,4449.0,Apache-2.0,,"alluxio,data-analysis,data-orchestration,hadoop,memory-speed,presto,spark,tensorflow,virtual-distributed-filesystem",Alluxio,http://alluxio.org/,alluxio,alluxio,alluxio,['168500'],same_repo,Binding
2239255,Maven,org.alluxio:alluxio-core-client,Distribution of client for Alluxio core,,,,13,5,,10,,,,,,,,,,Alluxio,,,alluxio,alluxio,['168500'],community,Binding
2239907,Maven,org.tensorflow:libtensorflow,Pure-Java code for the TensorFlow machine intelligence library.,,,,30,2,,2,,,,,,,,,,TensorFlow,,,tensorflow,tensorflow,"['3109714', '27253426', '39323364']",community,Binding
2241226,Maven,com.github.johnlangford:vw-jni," A wrapper around Vowpal Wabbit that allows use through Java. This wrapper is designed to be self contained. Because of the use of JNI, a number of platforms are supported in this JAR. If your platform is not supported please feel free to add it by modifying src/main/bin/build.sh accordingly. ",,MIT,https://github.com/JohnLangford/vowpal_wabbit,4,2,,2,852009,GitHub,VowpalWabbit/vowpal_wabbit,"Vowpal Wabbit is a machine learning system which pushes the frontier of machine learning with techniques such as online, hashing, allreduce, reductions, learning2search, active, and interactive learning.",False,6767.0,Other,,"active-learning,c-plus-plus,contextual-bandits,cpp,learning-to-search,machine-learning,online-learning,reinforcement-learning",Vowpal Wabbit,https://github.com/JohnLangford/vowpal_wabbit,github,vowpal wabbit,vowpalwabbit,"['852009', '39434262']",same_repo,Binding
2242764,PyPI,pyramid_mako,Mako template bindings for the Pyramid web framework,web wsgi pylons pyramid,Other,https://github.com/Pylons/pyramid_mako,8,7,,55,726755,GitHub,Pylons/pyramid_mako,Mako templating system bindings for the Pyramid web framework,False,21.0,Other,,,Pyramid,https://github.com/Pylons/pyramid_mako,github,pyramid,pyramid,['10568701'],community,Binding
2244306,PyPI,owl-tools,Toolchain for the Owl Embedded Python Runtime System,,DSDP,,6,0,,0,,,,,,,,,,Owl,UNKNOWN,UNKNOWN,owl,owl,['14048954'],community,Binding
2244525,PyPI,opencv-cython,An alternative OpenCV wrapper,opencv python cython numpy computer vision,Other,,0,0,,0,,,,,,,,,,OpenCV,http://code.google.com/p/opencv-cython/,google,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
2245598,PyPI,wabbit_wappa,Wabbit Wappa is a full-featured Python wrapper for the Vowpal Wabbit machine learning utility.,wabbit_wappa,MIT,https://github.com/mokelly/wabbit_wappa,3,0,,2,2070643,GitHub,mokelly/wabbit_wappa,Wabbit Wappa is a full-featured Python wrapper for the Vowpal Wabbit machine learning utility.,False,100.0,MIT,,,Vowpal Wabbit,https://github.com/mokelly/wabbit_wappa,github,vowpal wabbit,vowpalwabbit,"['852009', '39434262']",community,Binding
2246778,PyPI,pyramid_genshi,Genshi template bindings for the Pyramid web framework,bfg pyramid pylons genshi templates,MIT,https://github.com/victorlin/pyramid_genshi,6,0,,0,10162064,GitHub,fangpenlin/pyramid_genshi,,False,2.0,MIT,,,Pyramid,https://github.com/victorlin/pyramid_genshi,github,pyramid,pyramid,['10568701'],community,Binding
2249755,Rubygems,eco-source,JavaScript source code for the Eco (Embedded CoffeeScript template language) compiler,,MIT,https://github.com/sstephenson/eco,1,0,,410,17507,GitHub,sstephenson/eco,Embedded CoffeeScript templates,False,1778.0,MIT,,,Eco,https://github.com/sstephenson/eco/,github,eco,eco,['23826587'],community,Binding
2250337,NuGet,Owl.Core,The core code of the Owl framework,"tensorflow,machine,tensor,learning,owl",MIT,https://github.com/mateuszzwierzycki/Owl,1,1,,1,22990889,GitHub,mateuszzwierzycki/Owl,The core code of the Owl framework,False,24.0,MIT,,,Owl,https://github.com/mateuszzwierzycki/Owl,github,owl,owl,['14048954'],community,Binding
2250404,NuGet,Owl.GH.Common,The GH types wrappers fro the Owl framework,"machine,learning,owl,tensor,tensorflow",MIT,https://github.com/mateuszzwierzycki/Owl,1,0,,1,22990889,GitHub,mateuszzwierzycki/Owl,The core code of the Owl framework,False,24.0,MIT,,,Owl,https://github.com/mateuszzwierzycki/Owl,github,owl,owl,['14048954'],community,Binding
2251403,npm,npmdoc-opencv,#### api documentation for opencv (v6.0.0) [![npm package](https://img.shields.io/npm/v/npmdoc-opencv.svg?style=flat-square)](https://www.npmjs.org/package/npmdoc-opencv) [![travis-ci.org build-status](https://api.travis-ci.org/npmdoc/node-npmdoc-opencv,"documentation,opencv",MIT,git+https://github.com/npmdoc/node-npmdoc-opencv.git,1,0,,0,23391695,GitHub,npmdoc/node-npmdoc-opencv,,False,0.0,MIT,,,opencv,https://github.com/npmdoc/node-npmdoc-opencv,github,opencv,opencv,"['851991', '852587', '8250162']",community,Binding
2252087,npm,npmdoc-neuralnet,#### basic api documentation for [neuralnet (v1.0.1)](https://github.com/panchishin/neuralnet) [![npm package](https://img.shields.io/npm/v/npmdoc-neuralnet.svg?style=flat-square)](https://www.npmjs.org/package/npmdoc-neuralnet) [![travis-ci.org build-s,"documentation,neuralnet",MIT,https://github.com/npmdoc/node-npmdoc-neuralnet,2,0,,0,23399954,GitHub,npmdoc/node-npmdoc-neuralnet,,False,0.0,MIT,,,neuralnet,https://github.com/npmdoc/node-npmdoc-neuralnet,github,neuralnet,neuralnet,"['3652110', '6586968', '12284588', '22826813', '27006604']",community,Binding
2257300,npm,bullet3,Bullet3 build compatible with node.js native bindings,,ISC,https://github.com/modulesio/bullet3,3,0,,0,23463092,GitHub,modulesio/bullet3,"Bullet Physics SDK: real-time collision detection and multi-physics simulation for VR, games, visual effects, robotics, machine learning etc.",True,0.0,,,,Bullet3,https://github.com/modulesio/bullet3,github,bullet3,bullet3,['852055'],community,Binding
2257562,PyPI,opentc-util,The util package of OpenTC (A text classification engine using machine learning),machine learning cnn svm bayesian,MIT,https://github.com/cahya-wirawan/opentc-util,6,0,,3,23469027,GitHub,cahya-wirawan/opentc-util,"The utility/base module for the opentc, opentc-icap and opentc-web",False,0.0,MIT,,,OpenTC,https://github.com/cahya-wirawan/opentc-util,github,opentc,opentc,['22719271'],same_repo_owner,Binding
2259448,npm,npmdoc-chimp,#### api documentation for [chimp (v0.48.0)](https://github.com/xolvio/chimp#readme) [![npm package](https://img.shields.io/npm/v/npmdoc-chimp.svg?style=flat-square)](https://www.npmjs.org/package/npmdoc-chimp) [![travis-ci.org build-status](https://api,"documentation,chimp",MIT,https://github.com/npmdoc/node-npmdoc-chimp,1,0,,0,23443198,GitHub,npmdoc/node-npmdoc-chimp,,False,0.0,MIT,,,chimp,https://github.com/npmdoc/node-npmdoc-chimp,github,chimp,chimp,"['7073535', '11609201']",community,Binding
2260632,Maven,org.tensorflow:tensorflow,TensorFlow for Java: A software library for machine intelligence.,,,,37,7,,217,,,,,,,,,,TensorFlow,,,tensorflow,tensorflow,"['3109714', '27253426', '39323364']",community,Binding
2260918,npm,qm7-han-plugin,HAN plugin wrapper for placing ads from the Honey Ad Network.,"ecosystem:cordova,cordova-ios,cordova-android",MIT,,17,0,,0,,,,,,,,,,HAN,,,han,han,['38692553'],community,Binding
2262720,npm,scrollmonitor-parallax-joeonmars-fork,A simple parallax API,"scrolling,parallax",MIT,https://github.com/stutrek/scrollmonitor-parallax,1,0,,0,16744615,GitHub,stutrek/scrollmonitor-parallax,A simple parallax API,False,89.0,,,,parallax,https://github.com/stutrek/scrollmonitor-parallax,github,parallax,parallax,['36931043'],community,Binding
2262763,npm,scrollmonitor-simple-parallax,A simple parallax API,"scrolling,parallax",MIT,https://github.com/stutrek/scrollmonitor-parallax,1,0,,0,16744615,GitHub,stutrek/scrollmonitor-parallax,A simple parallax API,False,89.0,,,,parallax,https://github.com/stutrek/scrollmonitor-parallax,github,parallax,parallax,['36931043'],community,Binding
2263538,npm,ssg-node-express,SSG Node Express Modules,,MIT,,4,0,,1,,,,,,,,,,SSG,,,ssg,ssg,['40358898'],community,Binding
2263898,NuGet,EdIlyin.Elm.Core,"Brings to the F# Elm language core package modules like Json.Encode, Json.Decode, Basics, Debug, Result, Tuple, etc","brings,to,the,fsharp,package,language,modules,elm,json,decode,like,encode,basics,tuple,debug,etc,result,core",Unlicense,https://github.com/ed-ilyin/fsharp-elm-core,7,0,,0,23611311,GitHub,ed-ilyin/EdIlyin.FSharp.Elm.Core,"Brings to the F# Elm language core package modules like Json.Encode, Json.Decode, Basics, Debug, Result, Tuple, etc",False,0.0,Unlicense,,,Elm,https://github.com/ed-ilyin/fsharp-elm-core,github,elm,elm,"['186221', '16190324']",community,Binding
2266226,Cargo,gravity,Rust bindings for the Gravity API,"ffi,gravity,gravity-language,gravity-rs",MIT,https://github.com/Bruflot/gravity-rs,4,0,,0,23646976,GitHub,Bruflot/gravity-rs,Rust bindings for the Gravity API,False,2.0,MIT,,,Gravity,,,gravity,gravity,['28024511'],community,Binding
2267388,npm,node-crfsuite,NodeJS link to the CRFSuite library,"crf,crfsuite",MIT,https://github.com/bertmsk/node-crfsuite,2,0,,0,23696567,GitHub,bertmsk/node-crfsuite,NodeJS link to the CRFSuite library,False,1.0,,,,CRFSuite,https://github.com/bertmsk/node-crfsuite,github,crfsuite,crfsuite,['3599698'],community,Binding
2268379,NuGet,Gravity.Client,"Client and Contracts for Gravity API. FREE register at ""http://gravityapi.azurewebsites.net/Account/Register"" in order to be able to use Gravity API","selenium,scrapping,scrap,qa,test,api,automation,gravity,appium,crawling,crawl,testing",,,19,0,,0,,,,,,,,,,Gravity,http://universe-systems.com/registration,universe-systems,gravity,gravity,['28024511'],community,Binding
2268382,NuGet,Gravity.Services.Core,"Gravity API core functionality, which can be hosted as a service on platforms like Console Application, ASP.NET Web API, Service Fabric Service, .NET Core application, WCF Selfhost, etc. FREE register at ""http://gravityapi.azurewebsites.net/Account/Register"" in order to be able to use Gravity API","crawl,crawling,gravity,qa,scrap,api,appium,automation,scrapping,selenium,testing,test",,,25,0,,0,,,,,,,,,,Gravity,http://universe-systems.com/registration,universe-systems,gravity,gravity,['28024511'],community,Binding
2268383,NuGet,Gravity.Services.DataContracts,Data Contracts (DTOs) for all Gravity API Products,"test,crawl,automation,testing,appium,crawling,selenium,gravity,scrap,api,qa,scrapping",,,173,1,,0,,,,,,,,,,Gravity,https://g-api.azurewebsites.net/Identity/Account/Register,azurewebsites,gravity,gravity,['28024511'],community,Binding
2269229,Maven,fr.vsct.tock:tock-nlp-api-service,Services for Nlp API,,,,44,0,,1,,,,,,,,,,Nlp,,,nlp,nlp,"['22309865', '31964017', '38155979']",community,Binding
2269789,NuGet,EdIlyin.FSharp.Elm.Core,"Brings to the F# Elm language core package modules like Json.Encode, Json.Decode, Basics, Debug, Result, Tuple, etc","brings,to,the,fsharp,elm,language,core,package,like,modules,encode,json,decode,basics,debug,result,tuple,etc",Unlicense,https://github.com/ed-ilyin/EdIlyin.FSharp.Elm.Core,30,4,,1,23611311,GitHub,ed-ilyin/EdIlyin.FSharp.Elm.Core,"Brings to the F# Elm language core package modules like Json.Encode, Json.Decode, Basics, Debug, Result, Tuple, etc",False,0.0,Unlicense,,,Elm,https://github.com/ed-ilyin/EdIlyin.FSharp.Elm.Core,github,elm,elm,"['186221', '16190324']",community,Binding
2270238,Cargo,squirrel-sys,FFI bindings to the squirrel language.,,MIT,https://github.com/robbym/squirrel-sys,3,0,,0,23788602,GitHub,robbym/squirrel-sys,,False,0.0,,,,squirrel,https://github.com/robbym/squirrel-sys,github,squirrel,squirrel,['7267315'],community,Binding
2270863,PyPI,Owlready2,"A package for ontology-oriented programming in Python: load OWL 2.0 ontologies as Python objects, modify them, save them, and perform reasoning via HermiT. Includes an optimized RDF quadstore.",,LGPL-3.0+,https://bitbucket.org/jibalamy/owlready2,22,1,,12,23805874,Bitbucket,jibalamy/owlready2,"Owlready2 is a module for ontology-oriented programming in Python. It can load OWL 2.0 ontologies as Python objects, modify them, save them, and perform reasoning via HermiT. Owlready2 includes an optimized RDF quadstore.",False,,,,,OWL,https://bitbucket.org/jibalamy/owlready2,bitbucket,owl,owl,['14048954'],community,Binding