On 18-10-2016 19:14, Gipper wrote:
> On Friday, October 14, 2016 at 1:05:03 PM UTC-5, Irmen de Jong wrote:
>> On 14-10-2016 7:31, Gipper wrote:
>>> I'm trying to run a script that calls pyhop (from pyhop import pyhop).
>>> Details here > https://docs.extrahop.com/5.0/extrahop-python-api/#metrics
On Friday, October 14, 2016 at 1:05:03 PM UTC-5, Irmen de Jong wrote:
> On 14-10-2016 7:31, Gipper wrote:
> > I'm trying to run a script that calls pyhop (from pyhop import pyhop).
> > Details here > https://docs.extrahop.com/5.0/extrahop-python-api/#metrics
> >
> > I've followed the directions
On 14-10-2016 7:31, Gipper wrote:
> I'm trying to run a script that calls pyhop (from pyhop import pyhop).
> Details here > https://docs.extrahop.com/5.0/extrahop-python-api/#metrics
>
> I've followed the directions to install and import pyhop, but no matter what
> I do, I always get the follow
I do see one problem there...
if __name__ == 'main':
t = nBaseTest('nBaseTest')
t.logon()
That should be:
if __name__ == "__main__":
t = nBaseTest('nBaseTest')
t.logon()
It should be like that in both files.
--
http://mail.python.org/mailman/listinfo/python-list
Thanks for posting.
pythonpath = .;c:\maxq\bin\testScripts; c:\maxq\bin;c:\maxq\jython
Both files are in c:\maxq\bin\testScripts. Also I do not get the
message "no module named...:
File nCreateIncident.py, the importer:
from PyHttpTestCase import PyH