Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/czechbol/datbox
Převod Otevřených dat ze seznamu Datových schránek z XML na jiné formáty
https://github.com/czechbol/datbox
datova-schranka go golang
Last synced: 29 days ago
JSON representation
Převod Otevřených dat ze seznamu Datových schránek z XML na jiné formáty
- Host: GitHub
- URL: https://github.com/czechbol/datbox
- Owner: czechbol
- License: mit
- Created: 2023-03-02T22:48:59.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-03-05T21:47:45.000Z (almost 2 years ago)
- Last Synced: 2024-08-03T23:30:09.785Z (4 months ago)
- Topics: datova-schranka, go, golang
- Language: Go
- Homepage:
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-golang-repositories - datbox
README
# datbox
![GitHub](https://img.shields.io/github/license/czechbol/datbox?style=for-the-badge)
![GitHub go.mod Go version](https://img.shields.io/github/go-mod/go-version/czechbol/datbox?style=for-the-badge)
![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/czechbol/datbox/go.yml?style=for-the-badge)Převádí Otevřená data ze seznamu Datových schránek z XML na jiné formáty
## Instalace
```sh
go install github.com/czechbol/datbox@latest
```## Použití
```
❯ datbox -h
Transforms XML data from https://www.mojedatovaschranka.cz/sds/welcome?part=opendata to other formatsDrops optional parameters when unused to save on disk space.
It can also read from the STDIN stream so you can pipe data to into it.
Usage:
datbox [flags]Flags:
-f, --format string Output format. Allows: "json","yaml","xml" (default "json")
-h, --help help for datbox
-o, --output-file string Output file. Otherwise the results will be printed to stdout.❯ datbox -f json data.xml -o output.json
❯ datbox -f yaml data.xml > output.yaml
❯ cat data.xml | datbox -f json -o output.json
❯ cat data.xml | datbox -f yaml > output.yaml
```