-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Proposal: Use prettytable in CLI #9195
base: master
Are you sure you want to change the base?
Conversation
Goes from: ``` 02ff2c07042dd5bde23fe108b048f76f cancelled user (email=[redacted] 801167da3548c3f4613235528f6399f3 finished device 7b9bbc4c33fa062a8e297b73b8a472ed finished device b258fca310f2305c10abb3c42dca4906 finished user (email=[redacted] f1e0c71d31c1dec07699b0e06b2fa8c2 cancelled user (email=[redacted] ``` To ``` +----------------------------------+-----------+--------+------------+ | Invitation token | Status | Type | Email | +==================================+===========+========+============+ | 02ff2c07042dd5bde23fe108b048f76f | cancelled | user | [redacted] | +----------------------------------+-----------+--------+------------+ | 801167da3548c3f4613235528f6399f3 | finished | device | | +----------------------------------+-----------+--------+------------+ | 7b9bbc4c33fa062a8e297b73b8a472ed | finished | device | | +----------------------------------+-----------+--------+------------+ | b258fca310f2305c10abb3c42dca4906 | finished | user | [redacted] | +----------------------------------+-----------+--------+------------+ | f1e0c71d31c1dec07699b0e06b2fa8c2 | cancelled | user | [redacted] | +----------------------------------+-----------+--------+------------+ ``` Or in csv format: ``` Invitation token,Status,Type,Email 02ff2c07042dd5bde23fe108b048f76f,cancelled,user,[redacted] 801167da3548c3f4613235528f6399f3,finished,device, 7b9bbc4c33fa062a8e297b73b8a472ed,finished,device, b258fca310f2305c10abb3c42dca4906,finished,user,[redacted] f1e0c71d31c1dec07699b0e06b2fa8c2,cancelled,user,[redacted] ```
9c8d22b
to
adc69d2
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's nice !
Are they other place where this output could be useful ?
It's surely because I'm working on it but maybe the shared recovery info and list would benefit from that kind of (maybe optional) display.
I'm really not convinced by this:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
see comment #9195 (comment)
Goes from:
To
Or in csv format: