https://github.com/chekos/hsds-data-tool
A small CLI to work (validate and transform) data against the Human Services Data Specification standard.
https://github.com/chekos/hsds-data-tool
Last synced: 23 days ago
JSON representation
A small CLI to work (validate and transform) data against the Human Services Data Specification standard.
- Host: GitHub
- URL: https://github.com/chekos/hsds-data-tool
- Owner: chekos
- License: apache-2.0
- Created: 2022-03-09T02:05:32.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-03-09T19:03:18.000Z (over 4 years ago)
- Last Synced: 2025-09-29T16:52:36.439Z (9 months ago)
- Language: Python
- Homepage:
- Size: 25.4 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# hsds-data-tool
[](https://pypi.org/project/hsds-data-tool/)
[](https://github.com/chekos/hsds-data-tool/releases)
[](https://github.com/chekos/hsds-data-tool/actions?query=workflow%3ATest)
[](https://github.com/chekos/hsds-data-tool/blob/master/LICENSE)
Data validator and transformer for Human Services Data Standard.
## Installation
Install this tool using `pip`:
$ pip install hsds-data-tool
## Usage
Usage instructions go here.
## Development
To contribute to this tool, first checkout the code. Then create a new virtual environment:
cd hsds-data-tool
python -m venv venv
source venv/bin/activate
Or if you are using `pipenv`:
pipenv shell
Now install the dependencies and test dependencies:
pip install -e '.[test]'
To run the tests:
pytest