rdflib 0.2.2 rdflib: ^0.2.2 copied to clipboard
A pure Dart package for working with RDF (resource description framework).
0.2.2 #
graph.dart
- fix a bug of parsing and serializing
@base
and:
- fix a bug of parsing and serializing
0.2.1 #
graph.dart
:- remove comments before parsing
- add function to add a triple to groups by passing in subject, predicate and object as strings
- update prefixes context for 'a' (rdf:type)
- fix a bug of causing duplicated triples added to the graph
0.2.0 #
grammar_parser.dart
: customize evaluators for different parsed result- Support every rule specified in the documentation)
- Will support parsing and ignoring comment
#
in the future
graph.dart
: add a new parsing function to utilize new grammar parser- Support serializing full form of triples to shorter and simpler forms
- Will support parsing with file path in the future
0.1.10 #
- Use dart
petitparser
package to rewrite a few of the parsing functions of turtle file base on the rules naive_parser.dart
: support parsing forHEX
,UCHAR
,IRIREF
,PN_CHARS_BASE
- Include test cases for the above rules in
test/naive_parser_test.dart
- Include test cases for the above rules in
grammar_parser.dart
: support modular grammar definitions for the above rules
0.1.9 #
term.dart
: updateisValidUri
to static methodgraph.dart
: add support for reading different forms in subject/predicate/object to full URIRef form- Case 1:
<valid_uri>
=>URIRef(valid_uri)
- Case 2:
<invalid_uri>
=> (there should be a default base to interpret this invalid uri)URIRef(base_uri+invalid_uri)
- Case 3:
a:b
=>URIRef(context[a]+b)
- Case 4:
:a
=> (there should be a shorthand prefix:
in namespace prefix section)URIRef(shorthand_uri+a)
- Case 1:
0.1.8 #
graph.dart
: add support for parsing and writing@base
and@prefix :
in namespace prefixes sectionconstants.dart
: create constants in this file to be imported to other files if necessary
0.1.7 #
graph.dart
: add function inGraph
to parse a whole text string in additional to a file.- Add a corresponding example for parsing full text string.
0.1.6 #
graph.dart
: fix issue of encryption/decryption by using a different keysha256
is for quick verification of hashed passphrasesha512
is for encryption/decryption
0.1.5 #
graph.dart
: adding optional decryption for the encryptedttl
file- Note the encrypted file must contain a hashed key triple (for quick verification of password) and the encrypted data triple
sha256
is used for hashing and verifying the passwordAES
is the only supported decryption now (depends onencrypt
)
0.1.4 #
graph.dart
: adding optional encryption when serializing graph data tottl
file.AES
is the default encryptionsha256
is used for generating hashed passphrase- new encrypted file will still be a valid
ttl
file with original contents encrypted in one triple
0.1.3 #
Adding acknowledgement for RDFLib
Adding examples for reading and writing a full ttl
file, check it out in the example/
folder!
graph.dart
:- fixing bugs in reading lines ending with
.
,,
and;
- [partly] fixing prefix lines starting with ':' and '@base'
- fixing bugs in reading single numeric values (with no specified datatypes)
- fixing bugs in reading lines ending with
0.1.2 #
Updating description and GitHub repository.
0.1.1 #
Renaming rdfgraph
to rdflib
. (GitHub repository stays the same)
0.1.0 #
graph.dart
: supporting reading local turtle file into aGraph
instance in memory- updating
example/rdfgraph_example3.dart
to demonstrate parsing localttl
file
0.0.11 #
graph.dart
: adding functionaddObjectProperty()
to link two named triple individuals together- updating
example/rdfgraph_example2.dart
to demonstrate linking triples
0.0.10 #
term.dart
:Literal
default constructor can parse integer, float/double, and date time strings with correspondingXSD
typesgraph.dart
: adding named individual- Adding derived SOLID Health Ontology Example examples for demonstration
- Updating
README.md
to include new examples
0.0.9 #
Updating pub.dev page sidebar homepage link to new ANUSII GitHub repository.
0.0.8 #
namespace.dart
: adding default namespaces (e.g.,RDF
,RDFS
,OWL
, andXSD
) with reserved vocabulary of OWL 2 including special treatment, refer to this link for more detailstriple.dart
: converting single string value in object to aLiteral
instance with datatypexsd:string
term.dart
:- refactoring constructor to accept full URI
- updating base address later if need be
- adding
Literal
class with data type and language options for more specific object description
graph.dart
:- updating contexts when adding triples with different types
- serializing prefixes based on contexts
0.0.7 #
Improve serialize()
by shortening full URIRef
instance to the bound namespace name.
0.0.6 #
Update Graph
class:
- add
bind()
method to bind string to a namespace for code readability - add
serialize()
method to export the graph toturtle
format file.
Update documentation based on dart guide here
0.0.5 #
Move example code to the top example/
folder.
0.0.4 #
Add methods to find subjects and objects based on the criteria in the graph.
Update package description with what it can do currently.
Add example file in example/
folder.
Tidy up unused imports.
0.0.3 #
Add examples, refer to README.
- Namespace
- add RDF and FOAF (incomplete lists)
- URIRef
- add comments
- update methods
- Triple
- update method
0.0.2 #
Add the following simple naive classes:
- Graph
- Namespace
- URIRef
- Triple
Functionalities in creating the graph:
- add triple to the graph
- this will not add duplicates because a set structure is used to store the triples
0.0.1 #
Take baby steps in creating RDFGraph package.