1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
# gordf
[](https://github.com/spdx/tools-golang/actions) [](https://coveralls.io/github/RishabhBhatnagar/gordf?branch=master)
gordf is a package which provides a parser for RDF files linearized using RDF/XML format. It will be used to represent the rdf files in memory and write back in possibly different formats like json, and xml.
# License
[MIT](https://github.com/spdx/goRdf/blob/master/LICENSE.txt)
# Requirements
At present, gordf does not require any addittional packages except the base library packages of golang.
# Installation Guide
Make sure that the `GOPATH` and `GOROOT` variables is correctly set in the current environment.
Recommended go-version is go1.4
* Using GoLang's Package Manager
<pre>go get github.com/spdx/gordf</pre>
* Directly From GitHub
<pre> git clone github.com/spdx/gordf gordf </pre>
* Getting a Specific Version
<pre> go get -u github.com/spdx/gordf@vx.y.z </pre>
`vx.y.z` is a valid version from the tags of this repository.
* Updating the Local Installation
<pre> go get -u github.com/spdx/gordf </pre>
# Development Status
The repository is in its preliminary stage of development. It might have some defects. For reporting any issue, you can raise a ticket [here](https://github.com/spdx/goRdf/issues).
|