Last active
August 2, 2023 13:07
-
-
Save haakov/4228ff6a14486641add538483093e86b to your computer and use it in GitHub Desktop.
Standalone GNU Radio XML -> YAML block converter script
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Short script for converting GNU Radio XML blocks to YAML blocks | |
# without having to start GRC | |
# | |
# Please note that this program _WILL_ overwrite files. | |
# | |
# How to use: | |
# 1. Save this file to grc/converter/cmdline_converter.py | |
# 2. Navigate back to the GNU Radio project root | |
# 3. Run: python3 -m grc.converter.cmdline_converter [name.xml] | |
# 4. Your YAML file has been created, called [name.block.yml] | |
# | |
# You can also specify the output filename: | |
# python3 -m grc.converter.cmdline_converter [input.xml] [output.block.yml] | |
# | |
import sys | |
from . import block | |
if not (1 < len(sys.argv) < 4): | |
print("Navigate to the project root and run the following:") | |
print(" python3 -m grc.converter.cmdline_converter [input.xml]") | |
print("") | |
exit() | |
if len(sys.argv) == 3: | |
output = open(sys.argv[-1], "w") | |
input = block.from_xml(sys.argv[-2]) | |
else: | |
output_filename = sys.argv[-1].split(".")[0] + ".block.yml" | |
output = open(output_filename, "w") | |
input = block.from_xml(sys.argv[-1]) | |
block.dump(input, output) | |
print("Dumped to " + output_filename) |
Try replacing
from . import block
with
from gnuradio.grc.converter import block
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
I am trying your cmdline_converter.py and I am getting:
ImportError: cannot import name 'block' from 'grc.converter' (unknown location)
Any advice appreciated.
Thanks,
Sam