Re: any author you find very good has written a book on Python?

2022-09-07 Thread TheSeeker
On Monday, September 5, 2022 at 9:23:04 PM UTC-5, Meredith Montgomery wrote: > I never read a book on Python. I'm looking for a good one now. I just > searched the web for names such as Charles Petzold, but it looks like he > never wrote a book on Python. I also searched for Peter Seibel, but he

Problems with pip (Windows 10)

2018-05-03 Thread TheSeeker
Dear All, Within the past week I have run into a problem with pip on my work machine (Windows 10, x64, Python 3.6) where pip errors like so: C:\>c:\Python36\Scripts\pip install --trusted-host pypi.org --trusted-host pypi.python.org --trusted-host files.pythonhosted.org --no-color --default-tim

Re: Validating regexp

2017-08-09 Thread TheSeeker
On Tuesday, August 8, 2017 at 11:38:34 AM UTC-5, larry@gmail.com wrote: > Anyone have any code or know of any packages for validating a regexp? > > I have an app that allows users to enter regexps for db searching. > When a user enters an invalid one (e.g. 'A|B|' is one I just saw) it > causes

Re: How to pretty mathematical formulas in Python? Similar to Mathematica formats.

2015-06-11 Thread TheSeeker
On Thursday, June 11, 2015 at 1:33:12 PM UTC-5, Sebastian M Cheung wrote: > How to pretty mathematical formulas in Python? Similar to Mathematica formats. > > Are there good packages to prettify mathematica formulas in Python? Sympy (http://www.sympy.org/en/index.html) has some capabilities to p

Re: Smallest/cheapest possible Python platform?

2012-05-26 Thread TheSeeker
On Saturday, May 26, 2012 10:34:19 AM UTC-5, Roy Smith wrote: > What's the smallest/cheapest/lowest-power hardware platform I can run > Python on today? I'm looking for something to use as a hardware > controller in a battery-powered device and want to avoid writing in C > for this project. >

Re: Porting Python to an embedded system

2012-03-04 Thread TheSeeker
On Sunday, March 4, 2012 4:58:50 AM UTC-6, Justin Drake wrote: > I am working with an ARM Cortex M3 on which I need to port Python > (without operating system). What would be my best approach? I just > need the core Python and basic I/O. The python-on-a-chip project (p14p) (http://code.google.com/

Re: Deditor 0.2.2

2010-11-10 Thread TheSeeker
On Nov 10, 7:51 am, Kruptein wrote: > On Nov 10, 12:49 pm, TheSeeker wrote: > > > > > > > > > > > On Nov 9, 10:04 am, Kruptein wrote: > > > > On Nov 8, 3:01 pm, Jean-Michel Pichavant > > > wrote: > > > > > TheSeek

Re: Deditor 0.2.2

2010-11-10 Thread TheSeeker
On Nov 9, 10:04 am, Kruptein wrote: > On Nov 8, 3:01 pm, Jean-Michel Pichavant > wrote: > > > > > > > > > > > TheSeeker wrote: > > > On Nov 6, 7:06 am, Kruptein wrote: > > > >> Hey, > > > >> I released version 0.

Re: Deditor 0.2.2

2010-11-09 Thread TheSeeker
On Nov 9, 10:04 am, Kruptein wrote: > On Nov 8, 3:01 pm, Jean-Michel Pichavant > wrote: > > > > > > > > > > > TheSeeker wrote: > > > On Nov 6, 7:06 am, Kruptein wrote: > > > >> Hey, > > > >> I released version 0.

Re: Deditor 0.2.2

2010-11-08 Thread TheSeeker
On Nov 6, 7:06 am, Kruptein wrote: > Hey, > > I released version 0.2.2 of my pythonic text-editor  Deditor. > It adds the use of projects, a project is a set of files which you can > open all at once to make development much faster and easier. > > For more information visit launchpad:http://launch

Re: Float precision and float equality

2009-12-06 Thread TheSeeker
discrepancies in a calculation I was doing, until i realized > that the actual numbers were on the scale of 10**11, and the > difference was around 10**1, so it really didn't matter.) > > Carl Banks Maybe it's the gin, but "Plus, it's not something that's never foolproof.' +1 QOTW Cheers, TheSeeker -- http://mail.python.org/mailman/listinfo/python-list

Examples of Python driven Microsoft UI Automation wanted

2009-07-09 Thread TheSeeker
Hi, I am embarking on teaching myself Microsoft UI Automation using Python as the scripting language. I have asked some questions in the IronPython users group, but have yet to get a response, so I thought I would broaden the audience by asking here. Specifically, I have a WinForms application I

Re: Best 3d graphics kit for CAD program???

2009-02-09 Thread TheSeeker
On Feb 9, 2:08 pm, r wrote: > On Feb 9, 1:33 pm, Stef Mientki wrote: > > > Maya ? > > Blender ? > > I forgot: > > pySoy > > Intensity > > Thanks Stef, > I actually got OpenGL to install(finally) and now i am thinking ? > maybe? i should just go with OpenGL using the wxglcanvas. I have been > also

Re: win32gui

2009-01-09 Thread TheSeeker
On Jan 9, 7:34 am, Gandalf wrote: > Hi, everyone > I'm searching the win32gui lib to find a way to get the text under the > user cursor. > so far I managed to find only the controller ID which under the cursor > this way > > cursorID = win32gui.WindowFromPoint(win32gui.GetCursorPos()) > > their is

Re: Adding Microsoft objects in Boa Constuctor Palette

2008-08-07 Thread TheSeeker
On Aug 6, 5:59 pm, Sid K <[EMAIL PROTECTED]> wrote: > This is what I wanted to do: > > Add Microsoft Active objects like Excel sheets and Word files to the > Palette in Boa Constructor. There is a User tab in the GUI builder > menu, but I'm not sure how to use/enable it. > > 1. Does anyone know how

Re: how to create GUI dynamically

2008-07-21 Thread TheSeeker
On Jul 21, 8:19 am, [EMAIL PROTECTED] wrote: > Hi; > > i m working on a project where i need run time creation of GUI. > > i have some no. of entities for which i want checkboxes in front of > them which can be checked/ unchecked by user. > > But the problem is that the number and name of entities

Re: Accessing a URL file Remotely

2007-11-29 Thread TheSeeker
On Nov 29, 3:13 pm, mcl <[EMAIL PROTECTED]> wrote: > I have been given a url of CSV file (http://hostname/dir/file.csv), > which when I put the full URL in a web browser shows the contents of > the file. > > I want to be able to use the CSV module to read that file, which I > have successfully used

Re: Set operations on object attributes question

2007-10-23 Thread TheSeeker
Hi, Thanks for the response! (See below for more discussion) On Oct 23, 10:39 am, Raymond Hettinger <[EMAIL PROTECTED]> wrote: > [Duane] > > > LoTuples1 = [(1,1,0),(1,2,1),(1,3,3)] > > Set1=set(LoTuples1) > > LoTuples2 = [(2,1,3),(2,2,4),(2,3,2)] > > Set2=set(LoTuples2) > > > What I would like to

Set operations on object attributes question

2007-10-23 Thread TheSeeker
Hi, I have run into something I would like to do, but am not sure how to code it up. I would like to perform 'set-like' operations (union, intersection, etc) on a set of objects, but have the set operations based on an attribute of the object, rather than the whole object. For instance, say I hav

Re: Python Wrapper for C# Com Object

2006-12-29 Thread TheSeeker
Hi, A question. Why in your C-version are your doing: X_com_ptr->SetID(10); and in the Python version: interface.SetID() ? I don't know anything of your COM object, but does SetID require a parameter? Duane [EMAIL PROTECTED] wrote: > [EMAIL PROTECTED] skrev: > > > [EMAIL PROTECTED] skrev:

Re: intercepting keypresses, mouse movements, joystick movements.

2006-10-09 Thread TheSeeker
bryan rasmussen wrote: > Hi, > > I've been looking at autohotkey to do some different usability hacks > for windows http://www.autohotkey.com/ > one of the benefits of this language is it allows one to catch > keyboard usage, joystick usage, and mouse usage inputs very easily at > a global level o

Re: A cross platform systray icon

2006-09-11 Thread TheSeeker
Nick Craig-Wood wrote: > Does anyone have some hints / tips / experience with making a cross > platform systray icon? It should work on Windows, Gnome and KDE at > minimum. > > I've seen the win32all code which is very similar to the C code I've > written before for Windows. It would be a small

Re: Watching serial port activity.

2006-05-30 Thread TheSeeker
Hi, Have you looked into slsnif (http://www.dakotacom.net/~ymg/software.html) Duane -- http://mail.python.org/mailman/listinfo/python-list

Re: Problem with wrapping GNU Units

2006-04-04 Thread TheSeeker
Hi, Perhaps in another revision, as utilizing Unum, while cool, would be quite a change to my code. Could it be that the readline library used by GNU Units can detect the difference between a 'real' tty and a pipe? If so, how can I trick it? Thanks, Duane -- http://mail.python.org/mailman/list

Problem with wrapping GNU Units

2006-04-03 Thread TheSeeker
Hi, As part of a larger project, I am trying to use the GNU Units program to provide unit conversions between quantities. My first iteration, which worked OK, was to simply use units as a command-line app, and capture its output. The larger program however, calls the conversion routine many times,

Re: wxPython Notebook crash when pressing alt key

2005-09-21 Thread TheSeeker
Hi, Works for me: Python 2.4 (#60, Nov 30 2004, 11:49:19) [MSC v.1310 32 bit (Intel)] wxPython 2.6.1.0 Duane -- http://mail.python.org/mailman/listinfo/python-list