What is Meaningful Web?
We aim to extract structured information from a web resource:
url --> meaningfulweb engine --> structured information
Homepage:
Artifacts:
- meaningfulweb-opengraph.jar <- open graph parser
- meaningfulweb-core.jar <-- core engine
- meaningfulweb-app.war <-- web application
Build:
Build and release are managed via Maven: http://maven.apache.org/
- build all: under meaningfulweb, do: mvn clean install
- start webapp: under meaningfulweb-app/, do: mvn jetty:run
application should be running at: http://localhost:8080/
the rest service should be running at: http://localhost:8080/get-meaning?url=xxx
Example:
http://localhost:8080/get-meaning?url=http://www.google.com
Sample Code:
// extract the best image representing an url
String url = "http://www.google.com"
MetaContentExtractor extractor = new MetaContentExtractor();
MeaningfulWebObject obj = extractor.extractFromUrl(url);
String bestImageURL = obj.getImage();
String title = obj.getTitle();
String description = obj.getDescription();
String domain = obj.getDomain();
...
Bugs:
File bugs here