Re: Access a class in another python script

2015-10-07 Thread Terry Reedy
On 10/8/2015 2:24 AM, DBS wrote: I'm using Python 3.5 and have two python scripts where one needs access to a class in the other script for authentication purposes. Any python .py file can be either run as a main program or module (ie, script) or imported as a module by another module. If a f

Access a class in another python script

2015-10-07 Thread DBS
Hello, I'm using Python 3.5 and have two python scripts where one needs access to a class in the other script for authentication purposes. The scripts runs through GitHub to poll for all pull requests and pull requests that meet a certain condition. The call from the second script to the class

Re: Is there a Windows Python SIG?

2015-10-07 Thread Chris Angelico
On Thu, Oct 8, 2015 at 4:15 PM, Anthony Papillion wrote: > Over the next few months, I'll be working on a project using Python on > Microsoft Windows. While I'm doing this project, I'd also like to contribute > in any way I can to making Python in Windows better. > > Does anyone know if there

Is there a Windows Python SIG?

2015-10-07 Thread Anthony Papillion
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Over the next few months, I'll be working on a project using Python on Microsoft Windows. While I'm doing this project, I'd also like to contribute in any way I can to making Python in Windows better. Does anyone know if there is a Windows SIG?

Re: error installation GR python

2015-10-07 Thread Mark Lawrence
On 08/10/2015 03:32, halim hamadi wrote: I want to install GR plot in python using pip, but I receive an error when installing GR. Collecting gr Using cached gr-0.16.0.tar.gz Complete output from command python setup.py egg_info: Traceback (most recent call last): File "",

error installation GR python

2015-10-07 Thread halim hamadi
I want to install GR plot in python using pip, but I receive an error when installing GR. Collecting gr Using cached gr-0.16.0.tar.gz Complete output from command python setup.py egg_info: Traceback (most recent call last): File "", line 20, in File "C:\Users\HALIMH~1\App

Re: Trouble running

2015-10-07 Thread Gene Heskett
On Wednesday 07 October 2015 12:05:08 Denis McMahon wrote: > On Mon, 05 Oct 2015 19:06:04 +0100, Cameroni123 ™ wrote: > > Hi I have recently installed python on windows 10 and I’m trying to > > save in order to run the module and I cant I don’t know why, could > > you please help? > > Based on the

Re: change data in large excel file(more than 240 000 rows on sheet)

2015-10-07 Thread Joel Goldstick
On Wed, Oct 7, 2015 at 10:18 AM, Mark Lawrence wrote: > On 07/10/2015 15:13, gall.pavgal.g...@gmail.com wrote: > >> Hi Guys, >> I need to change data in large excel file(more than 240 000 rows on >> sheet), it's possible through win32com.client, but i need use Linux OS ... >> Please, could you ad

Re: certifi or tornadoweb broken? What is happening here?

2015-10-07 Thread Laura Creighton
There is discussion here about problems with ubuntu certificate handling. https://bugs.python.org/issue23476, with links to ubuntu bugs that you should read. No promises that this is your bug, but seems possible. Laura -- https://mail.python.org/mailman/listinfo/python-list

Re: reg multiple login python

2015-10-07 Thread Emile van Sebille
On 10/7/2015 2:24 AM, harirammanohar...@gmail.com wrote: On Thursday, 1 October 2015 12:35:01 UTC+5:30, hariramm...@gmail.com wrote: Hi All, Is there anyway i can login to remote servers at once and do the activity, i can do one by one using for loop.. Thanks in advance. how to handle this

Re: Trouble running

2015-10-07 Thread Denis McMahon
On Mon, 05 Oct 2015 19:06:04 +0100, Cameroni123 ™ wrote: > Hi I have recently installed python on windows 10 and I’m trying to save > in order to run the module and I cant I don’t know why, could you please > help? Based on the comprehensive problem description I have waved my magic wand. It sho

Re: change data in large excel file(more than 240 000 rows on sheet)

2015-10-07 Thread Mark Lawrence
On 07/10/2015 15:13, gall.pavgal.g...@gmail.com wrote: Hi Guys, I need to change data in large excel file(more than 240 000 rows on sheet), it's possible through win32com.client, but i need use Linux OS ... Please, could you advise some-thing suitable! best regards, Pavel. http://www.python-

change data in large excel file(more than 240 000 rows on sheet)

2015-10-07 Thread gall . pavgal . gall
Hi Guys, I need to change data in large excel file(more than 240 000 rows on sheet), it's possible through win32com.client, but i need use Linux OS ... Please, could you advise some-thing suitable! best regards, Pavel. -- https://mail.python.org/mailman/listinfo/python-list

Re: Hiding code from intruders, a different slant on an old question

2015-10-07 Thread alister
On Wed, 07 Oct 2015 10:38:37 +0100, cl wrote: > I know questions similar to this are often asked but my reasons for > wanting to do this (and thus ways it can be done) are slightly > different. > > I have a number of little utility scripts (python and others) which I > use to automate the process

Re: Hiding code from intruders, a different slant on an old question

2015-10-07 Thread Littlefield, Tyler
On 10/7/2015 5:38 AM, c...@isbd.net wrote: > I know questions similar to this are often asked but my reasons for > wanting to do this (and thus ways it can be done) are slightly different. > > I have a number of little utility scripts (python and others) which I > use to automate the process of dec

Re: Finding Blank Columns in CSV

2015-10-07 Thread Jaydip Chakrabarty
On Tue, 06 Oct 2015 20:20:40 +0200, Peter Otten wrote: > Jaydip Chakrabarty wrote: > >> On Tue, 06 Oct 2015 14:33:51 +0200, Peter Otten wrote: >> >>> Jaydip Chakrabarty wrote: >>> On Tue, 06 Oct 2015 01:34:17 +1100, Chris Angelico wrote: > On Tue, Oct 6, 2015 at 1:06 AM, Tim Chas

certifi or tornadoweb broken? What is happening here?

2015-10-07 Thread Nagy László Zsolt
Here is an MWE: import certifi import tornado.ioloop import tornado.httpclient io_loop = tornado.ioloop.IOLoop.current() def test(): global io_loop url = "https://www.saaspass.com/sd/rest/applications/x/tokens?password=x"; # Just a test application! ht

Hiding code from intruders, a different slant on an old question

2015-10-07 Thread cl
I know questions similar to this are often asked but my reasons for wanting to do this (and thus ways it can be done) are slightly different. I have a number of little utility scripts (python and others) which I use to automate the process of decrypting and displaying things like files containing

Re: Windows 32-bit Python 3.5 Install Failure

2015-10-07 Thread Laura Creighton
In a message of Tue, 06 Oct 2015 23:39:19 +0100, Ben Thompson writes: >Hi, > >I just tried using the 32-bit Python 3.5 installer for Windows from >python.org. The program seemed to run OK, I ticked the path box but >there seems to be no working python 3.5 on my (32-bit, XP) computer. The >screen

Re: reg multiple login python

2015-10-07 Thread harirammanohar159
On Thursday, 1 October 2015 12:35:01 UTC+5:30, hariramm...@gmail.com wrote: > Hi All, > > Is there anyway i can login to remote servers at once and do the activity, i > can do one by one using for loop.. > > Thanks in advance. how to handle this ? any one pls help... -- https://mail.python.or

Re: Pyserial and Ubuntu Linux kernel 3.13.0-65-generic

2015-10-07 Thread Dave Farrance
Rob Gaddi wrote: >So, this is odd. I'm running Ubuntu 14.04, and my system did a kernel >upgrade from the repository from 3.13.0-63-generic to 3.13.0-65-generic. >And pyserial (2.7, installed through pip) stopped working. When KDE's "Plasma 5" appeared with Kubuntu 15.04, I found it to be to

Re: Finding Blank Columns in CSV

2015-10-07 Thread Peter Otten
Peter Otten wrote: > I really meant it when I asked you to post the code you actually ran, and > the traceback it produces. Anyway, here's a complete script that should work. It uses indices instead names, but the underlying logic is the same. #!/usr/bin/env python import csv import sys from co

Re: Just installed python and it says python34.dll is missing

2015-10-07 Thread Chris Angelico
On Wed, Oct 7, 2015 at 2:39 AM, Lisa Twede wrote: > > I tried re-downloading python and it gave me an option to repair, so I tried > that. But it still throws the same error. > > > > I downloaded Python 3.5.0 for Windows. Exactly what did you install, on what system, and what's throwing the err

Re: Windows 32-bit Python 3.5 Install Failure

2015-10-07 Thread Chris Angelico
On Wed, Oct 7, 2015 at 9:39 AM, Ben Thompson wrote: > My guess is that what is advertised as a 32-binary installer actually > installed a 64-bit version (because the error message described above is > what I get if I try and run a 64-bit binary). To check that I had not > accidentally downloaded t

Just installed python and it says python34.dll is missing

2015-10-07 Thread Lisa Twede
I tried re-downloading python and it gave me an option to repair, so I tried that. But it still throws the same error. I downloaded Python 3.5.0 for Windows. Lisa Twede Staff Software Developer Products ltw...@ep.com PHONE (818) 955-4311 FAX [Entertainment Partners: an emp