-
Notifications
You must be signed in to change notification settings - Fork 30
RDF tools Jupyter doc #174
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
| "cell_type": "markdown", | ||
| "metadata": {}, | ||
| "source": [ | ||
| "##RDFWriter class" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Whitespace after ## missing. ;)
| "cell_type": "markdown", | ||
| "metadata": {}, | ||
| "source": [ | ||
| "##RDFReader class" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See ## comment above.
| "f = tempfile.NamedTemporaryFile(mode='w', suffix=\".ttl\")\n", | ||
| "path = f.name\n", | ||
| "\n", | ||
| "# possible to use 'ttl' instead of 'turtle'\n", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Using format ttl here (and in all occurrences below) leads to the error PluginException: No plugin registered for (ttl, <class 'rdflib.serializer.Serializer'>) when I'm running the notebook. I'm using python3.5 with rdflib v4.2.1. Maybe we just use format turtle everywhere to avoid any version conflicts in general.
| @@ -0,0 +1,380 @@ | |||
| { | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove the whitespace from the filename RDF tools.ipynb.
| "cell_type": "markdown", | ||
| "metadata": {}, | ||
| "source": [ | ||
| "**RDF (Resource Description Framework)** is one of the three foundational [Semantic Web](https://en.wikipedia.org/wiki/Semantic_Web) technologies, the other two being SPARQL and OWL.\n", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please provide the proper citation or rewrite this paragraph.
| "cell_type": "markdown", | ||
| "metadata": {}, | ||
| "source": [ | ||
| "" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As far as I saw on the dublincore page, their content is licensed under the "Creative Commons Attribution 3.0 Unported License" (bottom of the dublincode page). We are allowed to use the graph, as long as we properly cite it, please check the details via the link they provide. ;)
| "cell_type": "markdown", | ||
| "metadata": {}, | ||
| "source": [ | ||
| "Let's create the example odML document." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you also provide a link to the odML tutorial at this point? (https://g-node.github.io/python-odml/tutorial.html)
|
Changes requested here are handled via PR #173. |
Documentation of RDF tools.