https://github.com/edsu/dev8d-linked-data
some experiments with linked data available from the dev8d conference
https://github.com/edsu/dev8d-linked-data
Last synced: about 1 year ago
JSON representation
some experiments with linked data available from the dev8d conference
- Host: GitHub
- URL: https://github.com/edsu/dev8d-linked-data
- Owner: edsu
- Created: 2010-02-12T07:37:05.000Z (over 16 years ago)
- Default Branch: master
- Last Pushed: 2010-02-20T02:32:31.000Z (over 16 years ago)
- Last Synced: 2025-05-08T22:14:53.185Z (about 1 year ago)
- Language: Python
- Homepage:
- Size: 938 KB
- Stars: 7
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
This little project is a linked-data experiment with data from the
dev8d semantic media wiki . For any of
this to work you'll need to have the python module rdflib installed.
http://rdflib.net
Description:
The crawl.py script will crawl rdf for users and their affiliations on the
dev8d semantic media wiki. It then grabs the rdf for the dev8d programme.
After that it will lookup each users twitter profile on
http://semantictweet.com using the twitter id that was found in the dev8d wiki.
Just start it up like so and it'll persist the triples to a on disk berkeleydb
backed triplestore:
./crawl.py
You should be able to rerun crawl.py and it will be able to add, update and
remove assertions as they are changed on the dev8d wiki.
The dump.py script will dump all the triples as rdf/xml to stdout:
./dump.py > dump.rdf
The dump_foaf.py will dump out social network information for dev8d attendees as
rdf/xml to stdout. This is basically a subset of the full dump that only
includes assertions about foaf:Person resources:
./dump_foaf.py > foaf.rdf
Finally the planet_config.py will use the homepage information pulled from the
dev8d wiki to locate a users homepage, and then try to autodiscover the feed url
for their blog. The resulting information is then written to stdout as a
Planet Venus configuration file for blog aggregation:
./planet_config.py > planet.ini
You can see an example running at:
http://inkdroid.org/planet-dev8d
More about Planet Venus can be found at:
http://intertwingly.net/code/venus/
TODO:
- danbri suggested using open social api
- semantictweet.com only lists first 100 friends (what to do?)
- maybe pull in descriptions of events from the wiki?
- maybe persist sydnicated feed urls to the store so they don't have to
be looked up again every time planet_config.py is run?
Author:
Ed Summers