1
2
3 """
4 doapfiend
5 =========
6
7 U{http://trac.doapspace.org/doapfiend}
8
9 Description
10 -----------
11 doapfiend is a command-line client and library for querying, creating and
12 displaying DOAP (Description of a Project) RDF profiles.
13
14 doapfiend uses RDFAlchemy and rdflib to parse and serialize DOAP.
15
16 Plugins
17 -------
18 Plugins can be written for editing DOAP, scraping websites and creating DOAP,
19 searching for DOAP in SPARQL endpoints, displaying DOAP in various formats such
20 as HTML etc.
21
22
23 """
24
25
26
27 import logging
28 log = logging.getLogger()
29 log.setLevel(logging.ERROR)
30
31 __docformat__ = 'epytext'
32 __version__ = '0.1.0'
33 __author__ = 'Rob Cakebread <rob@doapspace.org>'
34 __copyright__ = '(C) 2007-2008 Rob Cakebread'
35 __license__ = 'BSD-2'
36