It could be handy to have a CLI tool that uses the bgpstuff client. I'd imagine this would look something like:
[chris@chris-lt01 ~]$ bgpstuff asn_name 6939
'HURRICANE'
Should be easy enough to do with console_scripts in setup.py (assumes CLI script lives in cli.py):
entry_points={
"console_scripts": [
"bgpstuff = bgpstuff.cli:cli",
],
}
It could be handy to have a CLI tool that uses the bgpstuff client. I'd imagine this would look something like:
Should be easy enough to do with console_scripts in
setup.py(assumes CLI script lives in cli.py):