Re: configargparse - reading option from config only

2021-08-27 Thread Loris Bennett
Richard Damon writes: > On 8/26/21 6:01 AM, Loris Bennett wrote: >> Hi, >> >> When using configargparse, it seems that if a value is to be read from a >> config file, it also has to be defined as a command-line argument in >> order to turn up as an attribute in the parser namespace. >> >> I can

Re: configargparse - reading option from config only

2021-08-27 Thread Loris Bennett
tuxifreund writes: > Hello, > > you could use the argparse module[1] to parse command line arguments and > configparser[2] to parse configuration files following the ini file > structure. Is that what you are expecting? I have used the combination of argparse and configparser before. However,

RE: matplotlib questions

2021-08-27 Thread Schachner, Joseph
Complete documentation link (this link works) : https://matplotlib.org/stable/contents.html --- Joseph S. Teledyne Confidential; Commercially Sensitive Business Data -Original Message- From: Steve Sent: Thursday, August 26, 2021 11:48 AM To: python-list@python.org Subject: matplot

sha3 internal state export & import

2021-08-27 Thread rmlibre
The hashlib module's SHA3 functions (specifically, sha3_256 & sha3_512) are not able to be pickled as far as I'm able to see. I know that the internal state of a SHA3 object can be easily represented by two unique values, the 1600-bit `S`-state value, and the last, smaller than `r`-rate number of b

Re: matplotlib questions

2021-08-27 Thread David Lowry-Duda
> I am trying to modify the "Bar Graph Demo" at > https://matplotlib.org/stable/gallery/index.html, Lines, bars, and > markers > but the more I experiment and change the code, the more messed up it > becomes. It is much easier to give constructive suggestions if you give a minimum runnable code

Re: configargparse - reading option from config only

2021-08-27 Thread Richard Damon
On 8/27/21 3:37 AM, Loris Bennett wrote: > Richard Damon writes: > >> On 8/26/21 6:01 AM, Loris Bennett wrote: >>> Hi, >>> >>> When using configargparse, it seems that if a value is to be read from a >>> config file, it also has to be defined as a command-line argument in >>> order to turn up as a

RE: matplotlib questions

2021-08-27 Thread Steve
I would like to know how the data is placed on the Y-axis and at the tops of the bars. The data is not being shown properly. With some exceptions, it looks as if the data is getting sorted independently from the dates. OK, here is the code: == # https: