Parsing and Validation library for PRISMH Files
Project description
PRISMH.CORE Overview
PRISMH.CORE is a Python package that provides basic validation and formatting functionality for data structures that adhere to the PRISMH specifications.
Example Usage
This package exposes a handful of simple functions for validating and formatting the standard PRISMH data structures:
>>> from prismh.core import validate_instrument, get_instrument_json >>> instrument = {"foo": "bar", "id": "urn:my-instrument", "title": "An Instrument Title", "record": [{"id": "field1","type": "text"}], "version": "1.0"} >>> validate_instrument(instrument) Traceback (most recent call last): ... colander.Invalid: {'': u'Unrecognized keys in mapping: "{\'foo\': \'bar\'}"'} >>> del instrument['foo'] >>> validate_instrument(instrument) >>> print get_instrument_json(instrument) { "id": "urn:my-instrument", "version": "1.0", "title": "An Instrument Title", "record": [ { "id": "field1", "type": "text" } ] }
For more information on the available functionality, please read the API documentation.
Contributing
Contributions and/or fixes to this package are more than welcome. Please submit them by forking this repository and creating a Pull Request that includes your changes. We ask that you please include unit tests and any appropriate documentation updates along with your code changes.
This project will adhere to the Semantic Versioning methodology as much as possible, so when building dependent projects, please use appropriate version restrictions.
A development environment can be set up to work on this package by doing the following:
$ virtualenv prismh $ cd prismh $ . bin/activate $ hg clone ssh://hg@bitbucket.org/prometheus/prismh.core $ pip install -e ./prismh.core[dev]
License/Copyright
This project is licensed under the GNU Affero General Public License, version 3. See the accompanying LICENSE.rst file for details.
Copyright (c) 2015, Prometheus Research, LLC
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file prismh.core-0.4.0.tar.gz
.
File metadata
- Download URL: prismh.core-0.4.0.tar.gz
- Upload date:
- Size: 32.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7bf02dbc577037c8c49fe9e6fbb022ce74fdce229bfccb5933dfc51f1fb298ee |
|
MD5 | 35329d669849904ae006bf8b87ce41b3 |
|
BLAKE2b-256 | 3fb08411fc6bc21d98592cc02deb1876826b43d768ea4157fed47d4fa3a14729 |
File details
Details for the file prismh.core-0.4.0-py2.py3-none-any.whl
.
File metadata
- Download URL: prismh.core-0.4.0-py2.py3-none-any.whl
- Upload date:
- Size: 30.0 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9048c39984ff62a6aa9b7c489dcd677e1c6a0a29ebf05f9f3685b5ee3b6377c4 |
|
MD5 | 8511a9ea9ec6b00bf02510b4ebc3bd0a |
|
BLAKE2b-256 | 821af2ce882327bdc43493f5b4043f0e426d3cd90ebd7581c5f3af6a4db369b9 |