1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-06-17 00:07:37 +02:00

add __main__.py entrypoint

This commit is contained in:
Kelly Brazil
2022-07-30 12:14:10 -07:00
parent 0993fec114
commit ff7f830f65
2 changed files with 6 additions and 1 deletions

View File

@ -2,8 +2,10 @@ jc changelog
xxxxxxxx v1.20.5
- Add IP Address string parser
- Fix `lsusb` command parser for output containing a `Device Qualifier` section
- Fix `lsusb` command parser for output containing a `Device Qualifier` and
`Binary Object Store Descriptor` sections
- Change LANG=C to LC_ALL=C in locale instructions
- Add `__main__.py` to package allowing `python -m jc` usage
20220723 v1.20.4
- Fix URL string parser path list for URLs ending in a forward slash

3
jc/__main__.py Normal file
View File

@ -0,0 +1,3 @@
import jc.cli
jc.cli.main()