项目作者: StationA

项目描述 :
No-bullshit n-triples encoder/decoder
高级语言: Python
项目地址: git://github.com/StationA/triforce.git
创建时间: 2016-11-03T18:42:49Z
项目社区:https://github.com/StationA/triforce

开源协议:MIT License

下载


triforce

No-bullshit n-triples encoder/decoder

Getting Started

Installing from Github

  1. pip install git+https://github.com/StationA/triforce.git#egg=triforce

Installing from source

  1. git clone https://github.com/StationA/triforce.git
  2. cd triforce
  3. pip install .

Usage

Encoding a subject, predicate, value as an n-triple

  1. triforce encode 'http://stationa.xyz' 'http://schema.org/name' 'Station A'
  2. # <http://stationa.xyz> <http://schema.org/name> "Station A" .

Contributing

When contributing to this repository, please follow the steps below:

  1. Fork the repository
  2. Submit your patch in one commit, or a series of well-defined commits
  3. Submit your pull request and make sure you reference the issue you are addressing

Running tests

  1. tox -e dev