Skip to content

Commit

Permalink
minor readme updates including more badges
Browse files Browse the repository at this point in the history
  • Loading branch information
joernhees committed May 12, 2016
1 parent 640d569 commit 5ee60ff
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions README.md
@@ -1,5 +1,12 @@
RDFLib
======
[![Build Status](https://travis-ci.org/RDFLib/rdflib.png?branch=master)](https://travis-ci.org/RDFLib/rdflib)
[![Coveralls branch](https://img.shields.io/coveralls/RDFLib/rdflib/master.svg)](https://coveralls.io/r/RDFLib/rdflib?branch=master)
[![GitHub stars](https://img.shields.io/github/stars/RDFLib/rdflib.svg)](https://github.com/RDFLib/rdflib/stargazers)
[![PyPI](https://img.shields.io/pypi/v/rdflib.svg)](https://pypi.python.org/pypi/rdflib)
[![PyPI](https://img.shields.io/pypi/dm/rdflib.svg)](https://pypi.python.org/pypi/rdflib)
[![PyPI](https://img.shields.io/pypi/pyversions/rdflib.svg)](https://pypi.python.org/pypi/rdflib)


RDFLib is a Python library for working with RDF, a simple yet
powerful language for representing information as graphs.
Expand Down Expand Up @@ -30,7 +37,7 @@ g=rdflib.Graph()
g.load('http://dbpedia.org/resource/Semantic_Web')

for s,p,o in g:
print s,p,o
print s,p,o
```

The components of the triples are URIs (resources) or Literals
Expand All @@ -54,7 +61,7 @@ dbpedia=Namespace('http://dbpedia.org/ontology/')
abstracts=list(x for x in g.objects(semweb, dbpedia['abstract']) if x.language=='en')
```

See also *./examples*
See also [./examples](./examples)


Features
Expand Down Expand Up @@ -85,11 +92,6 @@ More information is available on the project webpage:

https://github.com/RDFLib/rdflib/

Continuous integration status details available from travis.ci, test coverage from coveralls:

[![Build Status](https://travis-ci.org/RDFLib/rdflib.png?branch=master)](https://travis-ci.org/RDFLib/rdflib)
[![Coverage Status](https://coveralls.io/repos/RDFLib/rdflib/badge.png?branch=master)](https://coveralls.io/r/RDFLib/rdflib?branch=master)

The documentation can be built by doing::

$ python setup.py build_sphinx
Expand Down

0 comments on commit 5ee60ff

Please sign in to comment.