File: README.md

package info (click to toggle)
golang-github-spdx-gordf 0.0~git20221230.b735bd5-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 324 kB
  • sloc: makefile: 4
file content (31 lines) | stat: -rw-r--r-- 1,490 bytes parent folder | download
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
[![Build Status](https://github.com/RishabhBhatnagar/goRdf/workflows/go%20test/badge.svg)](https://github.com/spdx/tools-golang/actions)  [![Coverage Status](https://coveralls.io/repos/github/RishabhBhatnagar/gordf/badge.svg?branch=master)](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).