-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(package/trend): expressions dataset and structure
- Loading branch information
Showing
17 changed files
with
109 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Trend Package | ||
|
||
The trend package contains modules related to trends. | ||
|
||
## Modules | ||
|
||
### GitHub | ||
|
||
WIP... | ||
|
||
#### Usage | ||
|
||
WIP... | ||
|
||
### Product Hunt | ||
|
||
WIP... | ||
|
||
#### Usage | ||
|
||
WIP... |
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"github": { | ||
"options": {} | ||
}, | ||
"producthunt": { | ||
"options": {} | ||
} | ||
} |
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"github": { | ||
}, | ||
"producthunt": { | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"github": { | ||
}, | ||
"producthunt": { | ||
} | ||
} |
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"github": [ | ||
"What are the trends on GitHub?", | ||
"Give me the GitHub trends", | ||
"What's trending on GitHub?", | ||
"What are the trends on GH?", | ||
"Give me the GH trends", | ||
"What's trending on GH?" | ||
], | ||
"producthunt": [ | ||
"What are the trends on Product Hunt?", | ||
"Give me the Product Hunt trends", | ||
"What's trending on Product Hunt?", | ||
"What are the trends on PH?", | ||
"Give me the PH trends", | ||
"What's trending on PH?", | ||
"What's trending on ProductHunt?" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"github": [ | ||
"Quelles sont les tendances sur GitHub ?", | ||
"Donne-moi les tendances GitHub", | ||
"Qu'est-ce qu'il y a en tendance sur GitHub ?", | ||
"Quelles sont les tendances sur GH ?", | ||
"Donne-moi les tendances GH", | ||
"Qu'est-ce qu'il y a en tendance sur GH ?" | ||
], | ||
"producthunt": [ | ||
"Quelles sont les tendances sur Product Hunt ?", | ||
"Donne-moi les tendances Product Hunt", | ||
"Qu'est-ce qu'il y a en tendance sur Product Hunt ?", | ||
"Quelles sont les tendances sur PH ?", | ||
"Donne-moi les tendances PH", | ||
"Qu'est-ce qu'il y a en tendance sur PH ?" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/usr/bin/env python | ||
# -*- coding:utf-8 -*- | ||
|
||
import requests | ||
import utils | ||
|
||
def github(string, entities): | ||
"""WIP...""" | ||
|
||
return utils.output('end', 'done') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/usr/bin/env python | ||
# -*- coding:utf-8 -*- | ||
|
||
import requests | ||
import utils | ||
|
||
def producthunt(string, entities): | ||
"""WIP...""" | ||
|
||
return utils.output('end', 'done') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
'use strict' | ||
|
||
describe('trend:github', async () => { | ||
|
||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
'use strict' | ||
|
||
describe('trend:producthunt', async () => { | ||
|
||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
1.0.0 |