|
@@ -21,6 +21,42 @@ from lakesuperior.store.ldp_rs.lmdb_store import TxnManager
|
|
logger = logging.getLogger(__name__)
|
|
logger = logging.getLogger(__name__)
|
|
app_globals = env.app_globals
|
|
app_globals = env.app_globals
|
|
|
|
|
|
|
|
+__doc__ = '''
|
|
|
|
+Primary API for resource manipulation.
|
|
|
|
+
|
|
|
|
+Quickstart:
|
|
|
|
+
|
|
|
|
+>>> # First import default configuration and globals—only done once.
|
|
|
|
+>>> import lakesuperior.default_env
|
|
|
|
+>>> from lakesuperior.api import resource
|
|
|
|
+>>> # Get root resource.
|
|
|
|
+>>> rsrc = resource.get('/')
|
|
|
|
+>>> # Dump graph.
|
|
|
|
+>>> set(rsrc.imr())
|
|
|
|
+{(rdflib.term.URIRef('info:fcres/'),
|
|
|
|
+ rdflib.term.URIRef('http://purl.org/dc/terms/title'),
|
|
|
|
+ rdflib.term.Literal('Repository Root')),
|
|
|
|
+ (rdflib.term.URIRef('info:fcres/'),
|
|
|
|
+ rdflib.term.URIRef('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'),
|
|
|
|
+ rdflib.term.URIRef('http://fedora.info/definitions/v4/repository#Container')),
|
|
|
|
+ (rdflib.term.URIRef('info:fcres/'),
|
|
|
|
+ rdflib.term.URIRef('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'),
|
|
|
|
+ rdflib.term.URIRef('http://fedora.info/definitions/v4/repository#RepositoryRoot')),
|
|
|
|
+ (rdflib.term.URIRef('info:fcres/'),
|
|
|
|
+ rdflib.term.URIRef('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'),
|
|
|
|
+ rdflib.term.URIRef('http://fedora.info/definitions/v4/repository#Resource')),
|
|
|
|
+ (rdflib.term.URIRef('info:fcres/'),
|
|
|
|
+ rdflib.term.URIRef('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'),
|
|
|
|
+ rdflib.term.URIRef('http://www.w3.org/ns/ldp#BasicContainer')),
|
|
|
|
+ (rdflib.term.URIRef('info:fcres/'),
|
|
|
|
+ rdflib.term.URIRef('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'),
|
|
|
|
+ rdflib.term.URIRef('http://www.w3.org/ns/ldp#Container')),
|
|
|
|
+ (rdflib.term.URIRef('info:fcres/'),
|
|
|
|
+ rdflib.term.URIRef('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'),
|
|
|
|
+ rdflib.term.URIRef('http://www.w3.org/ns/ldp#RDFSource'))}
|
|
|
|
+
|
|
|
|
+'''
|
|
|
|
+
|
|
def transaction(write=False):
|
|
def transaction(write=False):
|
|
'''
|
|
'''
|
|
Handle atomic operations in a store.
|
|
Handle atomic operations in a store.
|