I need help with this python regex

2018-04-27 Thread Ed Manning
Here is the source code. import re log = open("csg.txt", "r") # Opens a file call session.txt regex = re.compile(r'policy id \d+') # search for the policy ID regex1 = re.compile(r'log count \d+') # search for the policy ID for match in log: x = regex.findall(match) y = regex1.findall(m

Re: Understanding pdb result

2018-04-27 Thread Steven D'Aprano
On Fri, 27 Apr 2018 10:34:27 -0700, Rich Shepard wrote: > Running python3-3.6.5 and wxPython-4.0.1 on Slackware-14.2. > >The module begins this way: > > #!/usr/bin/env python3 > > import sys, os > import pdb > import wx [...] >Please pass me a pointer to a resource that teaches me how

Understanding pdb result

2018-04-27 Thread Rich Shepard
Running python3-3.6.5 and wxPython-4.0.1 on Slackware-14.2. The module begins this way: #!/usr/bin/env python3 import sys, os import pdb import wx When pdb is invoked and I step through the code I get these results: $ python3 -m pdb openEDMS.py /home/rshepard/development/openEDMS/openE

Re: Passing all pandas DataFrame columns to function as separate parameters

2018-04-27 Thread Thomas Jollans
On 27/04/18 15:50, zljubi...@gmail.com wrote: > Hi, > > I have pandas DataFrame with several columns. I have to pass all columns as > separate parameter to a function. > > Something like this if I have 4 columns. > > f, p = stats.f_oneway(df_piv.iloc[:, 0], df_piv.iloc[:, 1], df_piv.iloc[:, >

Passing all pandas DataFrame columns to function as separate parameters

2018-04-27 Thread zljubisic
Hi, I have pandas DataFrame with several columns. I have to pass all columns as separate parameter to a function. Something like this if I have 4 columns. f, p = stats.f_oneway(df_piv.iloc[:, 0], df_piv.iloc[:, 1], df_piv.iloc[:, 2], df_piv.iloc[:, 3]) As number of columns varies, how to do

Fwd: Reporting Documentation Bug in Documentation » The Python Tutorial »6.Modules

2018-04-27 Thread VijithNambiar
Hi I think there is a bug in the section https://docs.python.org/3/ tutorial/modules.html#more-on-modules where the outputs of the statements below is given as wrong as it is starting with a '0' >>> import fibo as fib>>> fib.fib(500)0 1 1 2 3 5 8 13 21 34 55 89 144 233 377 >>> import fibo as fib>

Re: Question about Decimal and rounding

2018-04-27 Thread Frank Millman
"Thomas Jollans" wrote in message news:19223891-2006-d496-bdfe-32776834e...@tjol.eu... On 27/04/18 10:21, Frank Millman wrote: > I have an object which represents a Decimal type. > > It can receive input from various sources. It has to round the value to > a particular scale factor before sto

Re: Question about Decimal and rounding

2018-04-27 Thread Thomas Jollans
On 27/04/18 10:21, Frank Millman wrote: > Hi all > > I have an object which represents a Decimal type. > > It can receive input from various sources. It has to round the value to > a particular scale factor before storing it. The scale factor can vary, > so it has to be looked up every time, whic

Re: setuptools setup.py commands are unintuitive and undiscoverable (--help-commands should replace --help)

2018-04-27 Thread Thomas Jollans
On 27/04/18 06:06, jimbo1qaz wrote: > Frequently I have encountered projects packaged using setuptools, with a > setup.py. To find out how to install it, I usually turned to Stack Overflow > (https://stackoverflow.com/a/1472014) which doesn't explain what options > exist or do. > > Surprisingly, n

Question about Decimal and rounding

2018-04-27 Thread Frank Millman
Hi all I have an object which represents a Decimal type. It can receive input from various sources. It has to round the value to a particular scale factor before storing it. The scale factor can vary, so it has to be looked up every time, which is a slight overhead. I thought I could speed it

How to add values from test steps in pytest excel report

2018-04-27 Thread Sum
Hi, I am using python 2.7 and pytest version 3.2.1 I am using pytest excel plugin to run the pytest and generate test report in excel format. Step to install pytest excel : pip install pytest-excel I am running my pytest test using below : py.test --excelreport=report.xls e_test.py Output Test

setuptools setup.py commands are unintuitive and undiscoverable (--help-commands should replace --help)

2018-04-27 Thread jimbo1qaz
Frequently I have encountered projects packaged using setuptools, with a setup.py. To find out how to install it, I usually turned to Stack Overflow (https://stackoverflow.com/a/1472014) which doesn't explain what options exist or do. Surprisingly, neither "setup.py" nor "setup.py --help" doesn't