-
Notifications
You must be signed in to change notification settings - Fork 1
/
app-twitter-sentiment-manifest.json
97 lines (81 loc) · 2.28 KB
/
app-twitter-sentiment-manifest.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
{
"manifest-version": 1,
"name": "app-twitter-sentiment",
"version": "0.3.0",
"description": "A simple Databox example app for the twitter driver",
"author": "Anthony Brown <[email protected]> ()",
"license": "MIT",
"databox-type":"app",
"tags": [
"app",
"twitter",
"sentiment",
"demo",
"example"
],
"homepage": "https://github.com/me-box/app-twitter-sentiment",
"repository": {
"type": "git",
"url": "git+https://github.com/me-box/app-twitter-sentiment.git"
},
"packages":[
{
"name":"Twitter User timeline sentiment analysis",
"purpose":"Performs sentiment analysis on a twitter users timeline",
"install":"required",
"risk":"",
"benefits":"sentiment analysis",
"datastores":["DS_twitterUserTimeLine","DS_testActuator"]
},
{
"name":"Twitter Hashtag sentiment analysis",
"purpose":"Performs sentiment analysis on a set twitter hashtags",
"install":"required",
"risk":"",
"benefits":"sentiment analysis",
"datastores":["DS_twitterHashTagStream"]
}
],
"allowed-combinations":[
],
"datasources":[
{
"type":"twitterUserTimeLine",
"required":true,
"name":"twitterUserTimeLine",
"clientid":"DS_twitterUserTimeLine",
"granularities":[
]
},
{
"type":"testActuator",
"required":true,
"name":"testActuator",
"clientid":"DS_testActuator",
"granularities":[
]
},
{
"type":"twitterHashTagStream",
"required":true,
"name":"twitterHashTagStream",
"clientid":"DS_twitterHashTagStream",
"granularities":[
]
}
],
"export-whitelist": [
{
"url": "https://export.amar.io/",
"description": "Exports the calculated sentiment to amar.io"
}
],
"resource-requirements": {
"store":"core-store"
},
"providedDataTypes": [
{"type": "twitter:sentiment:UserTimeline"},
{"type": "twitter:sentiment:HashTag"}
],
"volumes": []
}