Re: SSHLibrary (PyNaCl and Cryptography) inst for Python 3.6.4 in Windows 10

2018-10-17 Thread Saila
keskiviikko 17. lokakuuta 2018 20.18.55 UTC+3 Thomas Jollans kirjoitti: > On 2018-10-17 16:41, Saila wrote: > > Hi > > Has somebody been able to install SSHLIbrary from sources (all libs with > > offline installations) on virtual Win 10 for Python 3.6.4? > > > > Python 3.6.4 ... [MSC v. 1900 64 b

namedtuples anamoly

2018-10-17 Thread Vinodhini Balusamy
Hi, I tried using namedtuples and just found a behaviour which I am not able to conclude as correct behaviour. from collections import namedtuple (n, categories) = (int(input()), input().split()) Grade = namedtuple('Grade', categories) Grade.ID = 1 #print(Grade.ID) ob = Grade(10, 50) print(ob.ID

Re: Is it dangeous when using custom metaclass?

2018-10-17 Thread dieter
jf...@ms4.hinet.net writes: > ... > Hard to find the document of type.__init__. I can only guess it does nothing, > at least no thing serious, to avoid trouble the metaclass's __init__ may > cause in a class hierarchy:-) You always have the possibility to look at the source. All classes have co

RE: Advice on law firm

2018-10-17 Thread Ryan Johnson
Correction: specializing in warranty of merchantability, software licenses, and possibly class action suits. Sent from Mail for Windows 10 From: Ryan Johnson Sent: Wednesday, October 17, 2018 9:26 PM To: python-list@python.org Subject: Advice on law firm Anyone know a good US based law firm tha

Advice on law firm

2018-10-17 Thread Ryan Johnson
Anyone know a good US based law firm that specializes in software licenses and class action suits? Sent from Mail for Windows 10 -- https://mail.python.org/mailman/listinfo/python-list

Re: SSHLibrary (PyNaCl and Cryptography) inst for Python 3.6.4 in Windows 10

2018-10-17 Thread Thomas Jollans
On 2018-10-17 16:41, Saila wrote: > Hi > Has somebody been able to install SSHLIbrary from sources (all libs with > offline installations) on virtual Win 10 for Python 3.6.4? > > Python 3.6.4 ... [MSC v. 1900 64 bit (AMD 64)] > > Also Microsoft Visual Studio 2017 is installed (also vc_redist.x64

Re: check whether a process is still running on remote hosts

2018-10-17 Thread tina_zy_qian--- via Python-list
On Tuesday, October 16, 2018 at 2:14:26 PM UTC-7, tina_z...@yahoo.com wrote: > I newly learned Python, and I need to wrap up a script to do following. > > Env: > 1: One launcher Linux VM (from where to run the Python script) > 2. 100+ Linux VM > > requirement: > In general, run a remote_script on

SSHLibrary (PyNaCl and Cryptography) inst for Python 3.6.4 in Windows 10

2018-10-17 Thread Saila
Hi Has somebody been able to install SSHLIbrary from sources (all libs with offline installations) on virtual Win 10 for Python 3.6.4? Python 3.6.4 ... [MSC v. 1900 64 bit (AMD 64)] Also Microsoft Visual Studio 2017 is installed (also vc_redist.x64.exe) SSHLinrary worked with Python 2.7 (there

Re: Is it dangeous when using custom metaclass?

2018-10-17 Thread jfong
dieter at 2018/10/17 UTC+8 PM 1:15:01 wrote: > jf...@ms4.hinet.net writes: > > Gregory Ewing at 2018/10/16 UTC+8 PM 2:01:01 wrote > >> jf...@ms4.hinet.net wrote: > >> > class Structure(metaclass=StructureMeta): ... > >> > > >> > class PolyHeader(Structure): ... > >> > > >> > As my understanding,