forked from ericwhyne/darpa_open_catalog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MEMEX-software.json
executable file
·2768 lines (2766 loc) · 81.9 KB
/
MEMEX-software.json
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
[
{
"DARPA Program": "MEMEX",
"Program Teams": [
"InferLink"
],
"Contributors": [
""
],
"Sub-contractors": [
""
],
"Software": "Landmark Extractor",
"Internal Link": "",
"External Link": "https://github.com/inferlink/extraction",
"Public Code Repo": "https://github.com/inferlink/extraction.git",
"Instructional Material": "https://github.com/inferlink/extraction",
"Stats": "extraction",
"Description": "Library to extract semi-structured data from similar web pages based on rules. (Python)",
"Internal Code Repo": "",
"License": [
"ALv2"
],
"Languages": [
"Python"
],
"Platform Requirements": [
""
],
"Dependent modules": [
""
],
"Dependent module URLs": [
""
],
"Component modules": [
""
],
"Component module URLs": [
""
],
"Industry": [
""
],
"Functionality": [
""
],
"Categories": [
"Text Extraction"
],
"New Date": "20150729",
"Update Date": ""
},
{
"DARPA Program": "MEMEX",
"Program Teams": [
"Carnegie Mellon University"
],
"Contributors": [
""
],
"Sub-contractors": [
""
],
"Software": "TAD (Temporal Anomaly Detector)",
"Internal Link": "https://memexproxy.com/wiki/display/MEM/Carnegie+Mellon+University",
"External Link": "https://github.com/autonlab/tad",
"Public Code Repo": "https://github.com/autonlab/tad.git",
"Instructional Material": "https://github.com/autonlab/tad",
"Stats": "TAD",
"Description": "Temporal scan anomaly detection algorithm for time series. (Python)",
"Internal Code Repo": "",
"License": [
"MIT"
],
"Languages": [
"Python"
],
"Platform Requirements": [
""
],
"Dependent modules": [
""
],
"Dependent module URLs": [
""
],
"Component modules": [
""
],
"Component module URLs": [
""
],
"Industry": [
""
],
"Functionality": [
"Anomaly detection"
],
"Categories": [
"Time series statistics"
],
"New Date": "20150729",
"Update Date": ""
},
{
"DARPA Program": "MEMEX",
"Program Teams": [
"MIT-LL"
],
"Contributors": [
""
],
"Sub-contractors": [
""
],
"Software": "Text.jl",
"Internal Link": "",
"External Link": "https://github.com/mit-nlp/Text.jl",
"Public Code Repo": "https://github.com/mit-nlp/Text.jl.git",
"Instructional Material": "",
"Stats": "Text.jl",
"Description": "Text.jl provided numerous tools for text processing optimized for the Julia language. Functionality supported include algorithms for feature extraction, text classification, and language identification. (Julia)",
"Internal Code Repo": "",
"License": [
"ALv2"
],
"Languages": [
"Julia"
],
"Platform Requirements": [
""
],
"Dependent modules": [
"MLBase"
],
"Dependent module URLs": [
"Dependent Modules can all be downloaded from the Julia Central Repository"
],
"Component modules": [
"(Devectorize, DataStructures, GZip, Iterators) Stage, Ollam"
],
"Component module URLs": [
"Component modules listed in parentheses are available via the Julia Central Repository. Stage and Ollam are available for manual install via https://github.com/saltpork/Stage.jl and https://github.com/mit-nlp/Ollam.jl"
],
"Industry": [
""
],
"Functionality": [
"Text Processing",
"Metadata Extraction",
"Machine Learning"
],
"Categories": [
"Natural Language Processing"
],
"New Date": "20150414",
"Update Date": ""
},
{
"DARPA Program": "MEMEX",
"Program Teams": [
"SRI International"
],
"Contributors": [
""
],
"Sub-contractors": [
""
],
"Software": "Hidden Service Forum Spider",
"Internal Link": "",
"External Link": "http://public.mtc.sri.com/MEMEX/",
"Public Code Repo": "http://public.mtc.sri.com/MEMEX/forumSpider.tar.gz",
"Instructional Material": "",
"Stats": "",
"Description": "An interactive web forum analysis tool that operates over Tor hidden services. This tool is capable of passive forum data capture and posting dialog at random or user-specifiable intervals. (Python)",
"Internal Code Repo": "",
"License": [
"SRI open source license"
],
"Languages": [
"Python"
],
"Platform Requirements": [
"Linux"
],
"Dependent modules": [
"scrapy",
"torsocks"
],
"Dependent module URLs": [
"http://www.scrapy.org",
"https://github.com/dgoulet/torsocks/"
],
"Component modules": [
""
],
"Component module URLs": [
""
],
"Industry": [
""
],
"Functionality": [
"Anonymity",
"privacy",
"censorship circumvention"
],
"Categories": [
"Infrastructure"
],
"New Date": "20150414",
"Update Date": "20150414"
},
{
"DARPA Program": "MEMEX",
"Program Teams": [
"SRI International"
],
"Contributors": [
""
],
"Sub-contractors": [
""
],
"Software": "HSProbe (The Tor Hidden Service Prober)",
"Internal Link": "",
"External Link": "http://public.mtc.sri.com/MEMEX/",
"Public Code Repo": "http://public.mtc.sri.com/MEMEX/hsprobe-2.1.tar.gz",
"Instructional Material": "",
"Stats": "",
"Description": "HSProbe is a python multi-threaded STEM-based application designed to interrogate the status of Tor hidden services (HSs) and extracting hidden service content. It is an HS-protocol savvy crawler, that uses protocol error codes to decide what to do when a hidden service is not reached. HSProbe tests whether specified Tor hidden services (.onion addresses) are listening on one of a range of pre-specified ports, and optionally, whether they are speaking over other specified protocols. As of this version, support for HTTP and HTTPS is implemented. Hsprobe takes as input a list of hidden services to be probed and generates as output a similar list of the results of each hidden service probed. (Python)",
"Internal Code Repo": "",
"License": [
"SRI open source license"
],
"Languages": [
"Python"
],
"Platform Requirements": [
"Linux"
],
"Dependent modules": [
"socksipy",
"torstem"
],
"Dependent module URLs": [
"http://code.google.com/p/socksipy-branch/",
"https://stem.torproject.org/"
],
"Component modules": [
""
],
"Component module URLs": [
""
],
"Industry": [
""
],
"Functionality": [
"Anonymity",
"privacy",
"censorship circumvention"
],
"Categories": [
"Infrastructure"
],
"New Date": "20150414",
"Update Date": "20150414"
},
{
"DARPA Program": "MEMEX",
"Program Teams": [
"The Tor Project",
"SRI International"
],
"Contributors": [
""
],
"Sub-contractors": [
""
],
"Software": "Tor",
"Internal Link": "",
"External Link": "https://www.torproject.org/",
"Public Code Repo": "https://gitweb.torproject.org/tor.git/",
"Instructional Material": "",
"Stats": "",
"Description": "The core software for using and participating in the Tor network. (C)",
"Internal Code Repo": "",
"License": [
"BSDv3"
],
"Languages": [
"C"
],
"Platform Requirements": [
""
],
"Dependent modules": [
""
],
"Dependent module URLs": [
""
],
"Component modules": [
""
],
"Component module URLs": [
""
],
"Industry": [
""
],
"Functionality": [
"Anonymity",
"privacy",
"censorship circumvention"
],
"Categories": [
"Infrastructure"
],
"New Date": "20150413",
"Update Date": "20150413"
},
{
"DARPA Program": "MEMEX",
"Program Teams": [
"Diffeo, Inc."
],
"Contributors": [
""
],
"Sub-contractors": [
""
],
"Software": "Dossier Stack",
"Internal Link": "https://memexproxy.com/wiki/display/MEM/Dossier+Stack",
"External Link": "http://dossier-stack.readthedocs.org",
"Public Code Repo": "https://github.com/dossier",
"Instructional Material": "",
"Stats": "",
"Description": "Dossier Stack provides a framework of library components for building active search applications that learn what users want by capturing their actions as truth data. The frameworks web services and javascript client libraries enable applications to efficiently capture user actions such as organizing content into folders, and allows back end algorithms to train classifiers and ranking algorithms to recommend content based on those user actions. (Python, JavaScript, Java)",
"Internal Code Repo": "",
"License": [
"MIT"
],
"Languages": [
"Python",
"JavaScript",
"Java"
],
"Platform Requirements": [
"Available as a docker container or can install on python 2.7 via pip"
],
"Dependent modules": [
""
],
"Dependent module URLs": [
""
],
"Component modules": [
""
],
"Component module URLs": [
""
],
"Industry": [
""
],
"Functionality": [
"active search and recommendations framework",
"machine learning tools for active ranking"
],
"Categories": [
"Machine Learning"
],
"New Date": "20150410",
"Update Date": ""
},
{
"DARPA Program": "MEMEX",
"Program Teams": [
"Carnegie Mellon University"
],
"Contributors": [
""
],
"Sub-contractors": [
""
],
"Software": "TJBatchExtractor",
"Internal Link": "https://memexproxy.com/wiki/display/MEM/Carnegie+Mellon+University",
"External Link": "https://github.com/mille856/CMU_memex_kickoff",
"Public Code Repo": "https://github.com/mille856/CMU_memex.git",
"Instructional Material": "",
"Stats": "CMU_memex_kickoff",
"Description": "Regex based information extractor for online advertisements (Java).",
"Internal Code Repo": "",
"License": [
"MIT"
],
"Languages": [
"Java"
],
"Platform Requirements": [
""
],
"Dependent modules": [
""
],
"Dependent module URLs": [
""
],
"Component modules": [
""
],
"Component module URLs": [
""
],
"Industry": [
"Escort"
],
"Functionality": [
"Information extraction"
],
"Categories": [
"Natural Language Processing"
],
"New Date": "20150410",
"Update Date": ""
},
{
"DARPA Program": "MEMEX",
"Program Teams": [
"Georgetown University"
],
"Contributors": [
""
],
"Sub-contractors": [
""
],
"Software": "Dumpling",
"Internal Link": "https://memexproxy.com/wiki/display/MEM/Georgetown+University",
"External Link": "http://www.dumplingproject.org",
"Public Code Repo": "https://github.com/jiezhou0731/Dumpling.git",
"Instructional Material": "",
"Stats": "Dumpling",
"Description": "Dumpling implements a novel dynamic search engine which refines search results on the fly. Dumpling utilizes the Winwin algorithm and the Query Change retrieval Model (QCM) to infer the user's state and tailor search results accordingly. Dumpling provides a friendly user interface for user to compare the static results and dynamic results. (Java, JavaScript, HTML, CSS)",
"Internal Code Repo": "https://github.com/jiezhou0731/Dumpling",
"License": [
"Public Domain"
],
"Languages": [
"Java",
"JavaScript",
"HTML",
"CSS"
],
"Platform Requirements": [
"Ubuntu"
],
"Dependent modules": [
""
],
"Dependent module URLs": [
""
],
"Component modules": [
""
],
"Component module URLs": [
""
],
"Industry": [
""
],
"Functionality": [
"Dynamic Information Retrieval",
"Information Retrieval Modeling",
"Session Search",
"Search Engine"
],
"Categories": [
"Information Retrieval",
"Search Algorithms",
"Machine Learning"
],
"New Date": "20150410",
"Update Date": ""
},
{
"DARPA Program": "MEMEX",
"Program Teams": [
"Georgetown University"
],
"Contributors": [
""
],
"Sub-contractors": [
""
],
"Software": "TREC-DD Annotation",
"Internal Link": "https://memexproxy.com/wiki/display/MEM/Georgetown+University",
"External Link": "https://github.com/shawn67/TREC-DD-Annotation-Tool",
"Public Code Repo": "https://github.com/shawn67/TREC-DD-Annotation-Tool.git",
"Instructional Material": "",
"Stats": "TREC-DD-Annotation-Tool",
"Description": "This Annotation Tool supports the annotation task in creating ground truth data for TREC Dynamic Domain Track. It adopts drag and drop approach for assessor to annotate passage-level relevance judgement. It also supports multiple ways of browsing and search in various domains of corpora used in TREC DD. (Python, JavaScript, HTML, CSS)",
"Internal Code Repo": "https://github.com/shawn67/TREC-DD-Annotation-Tool",
"License": [
"Public Domain"
],
"Languages": [
"Python",
"HTML",
"CSS",
"JavaScript"
],
"Platform Requirements": [
"Chrome 4.0+",
"Firefox 3.5+",
"IE 9+",
"Safari 6.0+"
],
"Dependent modules": [
""
],
"Dependent module URLs": [
""
],
"Component modules": [
""
],
"Component module URLs": [
""
],
"Industry": [
""
],
"Functionality": [
"TREC",
"Dynamic Domain",
"Human annotation",
"Evaluation",
"Search Result Evaluation"
],
"Categories": [
"Search Result Evaluation"
],
"New Date": "20150410",
"Update Date": ""
},
{
"DARPA Program": "MEMEX",
"Program Teams": [
"Georgetown University"
],
"Contributors": [
""
],
"Sub-contractors": [
""
],
"Software": "CubeTest",
"Internal Link": "https://memexproxy.com/wiki/display/MEM/Georgetown+University",
"External Link": "https://github.com/trec-dd/trec-dd-metrics/tree/master/cube-test/cubetest",
"Public Code Repo": "https://github.com/trec-dd/trec-dd-metrics.git",
"Instructional Material": "",
"Stats": "cubetest",
"Description": "Official evaluation metric used for evaluation for TREC Dynamic Domain Track. It is a multiple-dimensional metric that measures the effectiveness of complete a complex and task-based search process. (Perl)",
"Internal Code Repo": "https://github.com/trec-dd/trec-dd-metrics/tree/master/cube-test/cubetest",
"License": [
"Public Domain"
],
"Languages": [
"Perl"
],
"Platform Requirements": [
"Unix"
],
"Dependent modules": [
""
],
"Dependent module URLs": [
""
],
"Component modules": [
""
],
"Component module URLs": [
""
],
"Industry": [
""
],
"Functionality": [
"TREC Dynamic Domain",
"Evaluation",
"System Evaluation",
"Retrieval Algorithm Evaluation"
],
"Categories": [
"Search Result Evaluation"
],
"New Date": "20150410",
"Update Date": ""
},
{
"DARPA Program": "MEMEX",
"Program Teams": [
"Hyperion Gray, LLC",
"Scrapinghub"
],
"Contributors": [
""
],
"Sub-contractors": [
""
],
"Software": "Autologin",
"Internal Link": "",
"External Link": "https://github.com/TeamHG-Memex/autologin",
"Public Code Repo": "https://github.com/TeamHG-Memex/autologin.git",
"Instructional Material": "",
"Stats": "autologin",
"Description": "AutoLogin is a utility that allows a web crawler to start from any given page of a website (for example the home page) and attempt to find the login page, where the spider can then log in with a set of valid, user-provided credentials to conduct a deep crawl of a site to which the user already has legitimate access. AutoLogin can be used as a library or as a service. (Python)",
"Internal Code Repo": "",
"License": [
"ALv2"
],
"Languages": [
"Python"
],
"Platform Requirements": [
"Linux 64bit"
],
"Dependent modules": [
""
],
"Dependent module URLs": [
""
],
"Component modules": [
""
],
"Component module URLs": [
""
],
"Industry": [
""
],
"Functionality": [
"Web Crawling",
"Login",
"Autologin"
],
"Categories": [
"Data Collection"
],
"New Date": "20150410",
"Update Date": ""
},
{
"DARPA Program": "MEMEX",
"Program Teams": [
"Hyperion Gray, LLC",
"Scrapinghub"
],
"Contributors": [
""
],
"Sub-contractors": [
""
],
"Software": "Formasaurus",
"Internal Link": "",
"External Link": "https://github.com/TeamHG-Memex/Formasaurus",
"Public Code Repo": "https://github.com/TeamHG-Memex/Formasaurus.git",
"Instructional Material": "",
"Stats": "Formasaurus",
"Description": "Formasaurus is a Python package that tells users the type of an HTML form: is it a login, search, registration, password recovery, join mailing list, contact form or something else. Under the hood it uses machine learning. (Python)",
"Internal Code Repo": "",
"License": [
"ALv2"
],
"Languages": [
"Python"
],
"Platform Requirements": [
"Linux 64bit"
],
"Dependent modules": [
""
],
"Dependent module URLs": [
""
],
"Component modules": [
""
],
"Component module URLs": [
""
],
"Industry": [
""
],
"Functionality": [
"Web Crawling",
"Form Identification"
],
"Categories": [
"Data Collection"
],
"New Date": "20150410",
"Update Date": ""
},
{
"DARPA Program": "MEMEX",
"Program Teams": [
"Hyperion Gray, LLC",
"Scrapinghub"
],
"Contributors": [
""
],
"Sub-contractors": [
""
],
"Software": "HG Profiler",
"Internal Link": "",
"External Link": "https://github.com/TeamHG-Memex/hgprofiler",
"Public Code Repo": "https://github.com/TeamHG-Memex/hgprofiler.git",
"Instructional Material": "",
"Stats": "hgprofiler",
"Description": "HG Profiler is a tool that allows users to take a list of entities from a particular source and look for those same entities across a pre-defined list of other sources. (Python)",
"Internal Code Repo": "",
"License": [
"ALv2"
],
"Languages": [
"Python"
],
"Platform Requirements": [
"Linux 64bit"
],
"Dependent modules": [
""
],
"Dependent module URLs": [
""
],
"Component modules": [
""
],
"Component module URLs": [
""
],
"Industry": [
""
],
"Functionality": [
"Web Crawling",
"Personas",
"Entity Research"
],
"Categories": [
"Data Collection"
],
"New Date": "20150410",
"Update Date": ""
},
{
"DARPA Program": "MEMEX",
"Program Teams": [
"Hyperion Gray, LLC",
"Scrapinghub"
],
"Contributors": [
""
],
"Sub-contractors": [
""
],
"Software": "SourcePin",
"Internal Link": "",
"External Link": "https://github.com/TeamHG-Memex/memex-pinterest",
"Public Code Repo": "https://github.com/TeamHG-Memex/memex-pinterest.git",
"Instructional Material": "",
"Stats": "memex-pinterest",
"Description": "SourcePin is a tool to assist users in discovering websites that contain content they are interested in for a particular topic, or domain. Unlike a search engine, SourcePin allows a non-technical user to leverage the power of an advanced automated smart web crawling system to generate significantly more results than the manual process typically does, in significantly less time. The User Interface of SourcePin allows users to quickly across through hundreds or thousands of representative images to quickly find the websites they are most interested in. SourcePin also has a scoring system which takes feedback from the user on which websites are interesting and, using machine learning, assigns a score to the other crawl results based on how interesting they are likely to be for the user. The roadmap for SourcePin includes integration with other tools and a capability for users to actually extract relevant information from the crawl results. (Python, JavaScript)",
"Internal Code Repo": "",
"License": [
"ALv2"
],
"Languages": [
"Python",
"JavaScript"
],
"Platform Requirements": [
"Linux 64bit"
],
"Dependent modules": [
""
],
"Dependent module URLs": [
""
],
"Component modules": [
""
],
"Component module URLs": [
""
],
"Industry": [
""
],
"Functionality": [
"Web Crawling",
"Information Retrieval",
"Search",
"Machine Learning"
],
"Categories": [
"Data Collection"
],
"New Date": "20150410",
"Update Date": ""
},
{
"DARPA Program": "MEMEX",
"Program Teams": [
"Hyperion Gray, LLC",
"Scrapinghub"
],
"Contributors": [
"Diffeo"
],
"Sub-contractors": [
""
],
"Software": "Frontera",
"Internal Link": "",
"External Link": "http://frontera.readthedocs.org/en/latest/",
"Public Code Repo": "https://github.com/scrapinghub/frontera.git",
"Instructional Material": "",
"Stats": "frontera",
"Description": "Frontera (formerly Crawl Frontier) is used as part of a web crawler, it can store URLs and prioritize what to visit next. (Python)",
"Internal Code Repo": "",
"License": [
"BSD"
],
"Languages": [
"Python"
],
"Platform Requirements": [
"Linux 64bit"
],
"Dependent modules": [
""
],
"Dependent module URLs": [
""
],
"Component modules": [
""
],
"Component module URLs": [
""
],
"Industry": [
""
],
"Functionality": [
"Web Crawling",
"Machine Learning"
],
"Categories": [
"Data Collection"
],
"New Date": "20150410",
"Update Date": ""
},
{
"DARPA Program": "MEMEX",
"Program Teams": [
"Hyperion Gray, LLC",
"Scrapinghub"
],
"Contributors": [
""
],
"Sub-contractors": [
""
],
"Software": "Distributed Frontera",
"Internal Link": "",
"External Link": "http://distributed-frontera.readthedocs.org/en/latest/",
"Public Code Repo": "https://github.com/scrapinghub/distributed-frontera.git",
"Instructional Material": "",
"Stats": "distributed-frontera",
"Description": "Distributed Frontera is an extension to Frontera (https://github.com/scrapinghub/frontera), providing replication, sharding, and isolation of all parts of Frontera-based crawler to scale and distribute it. Frontera (also in the DARPA Open Catalog) is a crawl frontier framework, the part of a crawling system that decides the logic and policies to follow when a crawler is visiting websites (what pages should be crawled next, priorities and ordering, how often pages are revisited, etc.). (Python)",
"Internal Code Repo": "",
"License": [
"BSD"
],
"Languages": [
"Python"
],
"Platform Requirements": [
"Linux 64bit"
],
"Dependent modules": [
""
],
"Dependent module URLs": [
""
],
"Component modules": [
""
],
"Component module URLs": [
""
],
"Industry": [
""
],
"Functionality": [
"Web Crawling",
"Distribruted",
"Broad Crawl"
],
"Categories": [
"Data Collection"
],
"New Date": "20150807",
"Update Date": ""
},
{
"DARPA Program": "MEMEX",
"Program Teams": [
"Hyperion Gray, LLC",
"Scrapinghub"
],
"Contributors": [
""
],
"Sub-contractors": [
""
],
"Software": "Arachnado",
"Internal Link": "",
"External Link": "https://github.com/TeamHG-Memex/arachnado",
"Public Code Repo": "https://github.com/TeamHG-Memex/arachnado.git",
"Instructional Material": "",
"Stats": "arachnado",
"Description": "Arachnado is a simple management interface for launching a deep crawl of a specific website. It provides a Tornado-based HTTP API and a web UI for a Scrapy-based crawler. (Python)",
"Internal Code Repo": "",
"License": [
"MIT"
],
"Languages": [
"Python"
],
"Platform Requirements": [
"Linux 64bit"
],
"Dependent modules": [
""
],
"Dependent module URLs": [
""
],
"Component modules": [
""
],
"Component module URLs": [
""
],
"Industry": [
""
],
"Functionality": [
"Web Crawling",
"Deep Crawl"
],
"Categories": [
"Data Collection"
],
"New Date": "20150807",
"Update Date": ""
},
{
"DARPA Program": "MEMEX",
"Program Teams": [
"Hyperion Gray, LLC",
"Scrapinghub"
],