Skip to content

Commit

Permalink
proc: gather and parse egps messages
Browse files Browse the repository at this point in the history
  • Loading branch information
gauteh committed Oct 28, 2024
1 parent 0f83c41 commit 18b5b80
Show file tree
Hide file tree
Showing 6 changed files with 665 additions and 9 deletions.
3 changes: 2 additions & 1 deletion sfy-processing/sfy/cli/sfydata.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
from datetime import datetime, timezone
import coloredlogs
import logging
import json as pyjson

logger = logging.getLogger(__name__)

Expand Down Expand Up @@ -63,7 +64,7 @@ def json(dev, file):
hub = Hub.from_env()
buoy = hub.buoy(dev)
pck = buoy.json_package(file)
print(pck)
print(pyjson.dumps(pck))

@sfy.command(help='List all events')
@click.argument('dev')
Expand Down
Loading

0 comments on commit 18b5b80

Please sign in to comment.