A command-line tool that reads data from stdin and writes processed data to stdout.
Basic usage:
echo "[1, 2, 3]" | python3 scripts/hello_world.pyRun tests:
# Run all tests
python3 tests/run_tests.py
# Run unit tests only
python3 -m unittest discover tests/unit -t .
# Run integration tests only
python3 -m unittest discover tests/integration -t .