Using Help inside Python

2009-05-03 Thread rose
Hi, I have an idea of the basics of programming language in general. How to access help in python i.e. help followed by something or to get to know about some inbuilt module or method etc. how do I access help from within the IDLE using the help command. Thank You. -- http://mail.pytho

Re: Using Help inside Python

2009-05-03 Thread rose
On May 3, 8:15 pm, Steven D'Aprano wrote: > On Sun, 03 May 2009 07:49:49 -0700, rose wrote: > > Hi, > >             I have an idea of the basics of programming language in > > general. How to access help in python i.e. help followed by something or > > to get to k

acteress images and movies

2008-06-28 Thread rose
acteress images and movies you want download the latest songs and movie pictures! in the next film nametha play a role of queen!! want more comments! click it! http://trichysathya.blogspot.com *** -- http://mail

acteress images and movies

2008-06-28 Thread rose
acteress images and movies you want download the latest songs and movie pictures! in the next film nametha play a role of queen!! want more comments! click it! http://trichysathya.blogspot.com *** -- http://mail

INSTALLATION DOES NOT WORK FRO GITBASH COMMAND LINE

2022-08-23 Thread Gladstone Rose
Why is my installation of Python does not work at the command line for git bash. I get the following message bash: python3: command not found Sent from Mail for Windows -- https://mail.python.org/mailman/listinfo/python-list

Dynamic classes

2005-11-25 Thread Dave Rose
Hello all. I was wondering if creating classes could be dynamic. I want to know if I can make a class Person, then read in a list of names (say people's names) so then I can have a class instance created for each name in the list? Why do I want to do this? I was just thinking if I had a na

Re: Dynamic classes

2005-11-26 Thread Dave Rose
gt; wrote in message news:[EMAIL PROTECTED] >>>>>> "Dave Rose" <[EMAIL PROTECTED]> (DR) wrote: > >>DR> Hello all. >>DR> I was wondering if creating classes could be dynamic. I want to know >>DR> if I can make a class Person, then re

GIS Related Scripting Issue

2005-08-17 Thread Mike Rose
grps_data, exported_data1_dbf, "AGE_PERC MEAN;home_perc MEAN", "")   # Process: Append...     gp.Append_management("C:\\temp\data2.dbf", exported_data_dbf__2_, "TEST")     #Move to the next fc in the list     fc = fcs.Next()

Re: I forgot to wind up my example .... ; (

2005-04-29 Thread Dave Rose
So, I forgot the last part of my example that might gel in your mind why Objects are useful in certain situations. Ok so you maybe followed my example of the shopping cart. Let's just forget for a moment the use for shopping carts is for websites. Let's just say you were going to write the l

Trouble with Multi-threading

2013-12-10 Thread dan . rose
at is it that I should look for or turn on to find out what is blocking this program from creating the threads. --- Daniel Rose IT Technical Analyst, MSS Development Parker Hannifin Corporation dan.r...@parker.com 216-896-335

arrays in python

2006-02-10 Thread Kermit Rose
From: Kermit Rose Date: 02/10/06 17:36:34 To: [EMAIL PROTECTED] Subject: Arrays Hello. I want to write a program in python using integer arrays. I wish to calculate formulas using 200 digit integers. I could not find any documentation in python manual about declaring arrays. I

Re: 2-dimensional data structures

2006-02-18 Thread Kermit Rose
    From: anthonyberet Date: 02/18/06 17:11:01 To: python-list@python.org Subject: Re: 2-dimensional data structures     I am not sure how to most efficiently identify which region any given square on the grid is actually in - any thoughts, for those that have done this? - I don't want a mas

Byte-operations.

2005-05-18 Thread Dave Rose
I hope someone can please help me. A few months ago, I found a VBS file, MonitorEDID.vbs on the internet. It is great in that it will extract from the registry of Windows the serial number of the attached monitor. (System Administration / PC Inventory usage is obvious) Standalone, it works fi

refactoring, unit testing, ant, etc.

2005-06-08 Thread Dave Rose
Hello all I've been learning Python for the past few months, reading tutorials and postings here. I've bought the personal Komodo then downloaded Eclipse with Pydev. IDLE also is a staple of everyday use. ~10 years ago, I had CS as a minor in college. I learned some C and modula-2 to nam

Python to open command script file

2008-12-11 Thread dave rose
Hello all I would like to know how to do the following. I'd like to have a generic python program that the user will open a command-script file to do actions. So, my python program will get a list of servers, enumerate them within a checklistbox in wxpython. Then I want to open a command-file

Re: Python interface problem with Windows

2010-06-26 Thread Kermit Rose
On 6/26/2010 5:27 PM, Robert Kern wrote: I do not provide Python support in private email. Please try the python-list: http://mail.python.org/mailman/listinfo/python-list or its USENET gateway: news:comp.lang.python On Sat, Jun 26, 2010 at 16:23, Kermit Rose wrote: Hello Robert. I

2. Re: Python interface problem with Windows (Benjamin Kaplan)

2010-06-27 Thread Kermit Rose
do not know how to import code from any other directory than the default, C:\Python26. And how do I save the code in a different directory than the default, c:\Python26? Kermit Rose -- http://mail.python.org/mailman/listinfo/python-list

Re: What's the difference between VAR and _VAR_?

2005-09-09 Thread S. D. Rose
I can't get the value of the variable (out of the class function) if it has two leading underscores. -Dave >>> class encrypt: def encrypt(self, userValue): self.initialNumber = userValue self.__secretSeed = 7 return self.initialNumber * self.__secretSeed >>> enc = encrypt() >>> enc.encryp

Python Image Library

2005-12-16 Thread S. D. Rose
I have a question about PIL. I get a 50k photo from a MySQL table, convert it to grey-scale, do some rotations, etc. Then I want to put it back. It seems that after I do the greyscale, it converts from 'JPEG' to 'RAW'. Can anyone tell me how I convert the image back to 'JPEG' and then insert th

Re: Python Image Library

2005-12-16 Thread S. D. Rose
Sorry-- meant to post to comp.python.image "S. D. Rose" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > I have a question about PIL. > > I get a 50k photo from a MySQL table, convert it to grey-scale, do some > rotations, etc. Then I want to put it bac

File object question

2005-12-22 Thread S. D. Rose
Hello all. If I read a binary file: file = open('c:\\logo.gif', 'rw'') # Read from FS as one way to get the object, d/l from website another... file.read() is there anyway I can determine the 'size' of the object file? (Without going to the filesystem and reading the filesize from the directory

Re: Pydev questions: versions and keybindings

2005-12-22 Thread S. D. Rose
Would (Eclipse) Help | About -> [Plug-in Details] | Plug-in Name -> PyDev - Python Development Environment do the trick for you? -Dave "Kenneth McDonald" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > I'm trying to find out if I have the most recent version of Pydev for > Eclipse

Re: File object question

2005-12-23 Thread S. D. Rose
Yes, len() will do what I want. I didn't realize it would work with binary, I thought it was good only for variables, lists, etc. Thanks! -Dave "Kent Johnson" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > S. D. Rose wrote: > > Hello all.

Help extracting info from HTML source ..

2007-01-25 Thread s. d. rose
Hello All. I am learning Python, and have never worked with HTML. However, I would like to write a simple script to audit my 100+ Netware servers via their web portal. I was reading Chapter 8 of Dive into Python, which deals with this topic. In the web portal of the server, there is a sect

Dell Support Web Site Automation.

2006-04-25 Thread S. D. Rose
Hello all. Awhile back I was playing with win32all package to get system information from the Dell PCs. However, I'm using a win32 program, bginfo, to get the information on the PC and insert it into a MySQL database. Of the fields I'm recording, I am saving the system serial number. I was w

Spam levels.

2018-02-10 Thread C W Rose via Python-list
I've been reading a limited range of Usenet groups since the late 1980s, and until the recent problems in comp.lang.python had never bothered with any sort of filtering; it's easier just to ignore people. However, the sheer volume of spam in comp.lang.python finally defeated me, so I set up a fil

Respam levels.

2018-02-13 Thread C W Rose via Python-list
nal-september.org!.POSTED!not-for-mail > Message-ID: <4sd3le-ct4@tanner.seckford.org> > From: C W Rose > Newsgroups: comp.lang.python > Subject: Spam levels. > Date: Sat, 10 Feb 2018 14:57:40 + > Lines: 49 > Organization: None > Injection-Info:

Re: Filtering computer.lang.python

2018-04-11 Thread C W Rose via Python-list
Thomas Jollans wrote: > > Welcome to python-list/comp.lang.python! > > This isn't originally a Google group. Google just mirrors the old USENET > group, which is awash with spam. > > There is also a mailing list version of this group (posts are mirrored > both ways) at https://mail.python.org/m

Re: Spam levels.

2018-05-22 Thread C W Rose via Python-list
m wrote: > W dniu 10.02.2018 o 15:57, C W Rose pisze: >> No other groups (in the limited set which I read) have the problem, >> and I don't understand why the spammers neither spam a range of >> groups, nor change their adddresses more frequently. It may be >> tha

Re: Python indentation (3 spaces)

2018-10-07 Thread C W Rose via Python-list
Ryan Johnson wrote: > The point that OP is trying to make is that a fixed standard that is > distinguishable from the even-spacing Tab-length convention in code and > text editors will establish a level of trust between the end developer and > upstream developers or co-developers who may not have