Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/corydolphin/ohack-search
A simple flask application to allow students to search through MailMan archives, specifically targetted at Helpme.
https://github.com/corydolphin/ohack-search
Last synced: about 1 month ago
JSON representation
A simple flask application to allow students to search through MailMan archives, specifically targetted at Helpme.
- Host: GitHub
- URL: https://github.com/corydolphin/ohack-search
- Owner: corydolphin
- Created: 2012-11-04T21:22:14.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2012-11-09T03:54:39.000Z (about 12 years ago)
- Last Synced: 2023-03-23T11:43:54.774Z (almost 2 years ago)
- Language: JavaScript
- Size: 1.4 MB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# http://ohack-search.herokuapp.com
A simple flask application to allow students to search through MailMan archives, specifically targetted at Helpme.
#TODO
* Authorization and IP-walling to ensure users are on campus needs to be finalized.
* Finish exposing a search API for easy integration into fwol.in via JSON#Search API:
The search API is accessible from the /search route. Simply pass in a urlencoded query parameter, i.e. /search?query=hello
Output is JSON, format subject to change. Currently weird and nested.```
{
"emails": {
"(Some Thread ID)" : [
{
"body":[
"Paragraph One of email One",
"Paragraph Two of email One"
],
"date": "Thu, 8 Nov 2012 17:32:40 -0500",
"threadId":"(Some Thread ID",
"subject": "Some subject"
}
{
"body":[
"Paragraph One of email Two",
"Paragraph Two of email Two"
],
"date": "Thu, 8 Nov 2012 18:32:40 -0500",
"threadId":"(Some Thread ID",
"subject": "R.E. Some subject"
}
]
}
```