Choosing GUI Module for Python

2009-11-09 Thread Antony
Hi all
   I just wanted to know which module is best for developing designing
interface in python .
i have come across some modules which are listed here . please tell
your suggestions and comments to choose best one
 1. PyGTK
 2. PyQT
 3. PySide
 4.  wxPython
 5 . TKinter

Also i need to know is there any IDE for developing these
things . . .

-- 
http://mail.python.org/mailman/listinfo/python-list


Re: Choosing GUI Module for Python

2009-11-09 Thread Antony
On Nov 9, 11:49 am, r  wrote:
> On Nov 8, 10:49 pm, Antony  wrote:
>
> > Hi all
> >    I just wanted to know which module is best for developing designing
> > interface in python .
> > i have come across some modules which are listed here . please tell
> > your suggestions and comments to choose best one
> >  1. PyGTK
> >  2. PyQT
> >  3. PySide
> >  4.  wxPython
> >  5 . TKinter
>
> > Also i need to know is there any IDE for developing these
> > things . . .
>
> You may want to offer a little more info, like what exactly you are
> looking to do with such GUI. are your needs for a  VW, Corvette, or
> Mercedes? etc, etc. All these kits have pros and cons, some better for
> this some for that, yadda yadda

I would like to know about that pros and cons only ...
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: Choosing GUI Module for Python

2009-11-10 Thread Antony
On Nov 11, 3:08 am, Simon Hibbs  wrote:
> On 10 Nov, 10:40, Lorenzo Gatti  wrote:
>
> > I also would like to use PySide, but unlike PyQt and Qt itself it
> > doesn't seem likely to support Windows in the foreseeable future. A
> > pity, to put it mildly.
>
> It's not been ruled out. They don't officialy support the Mac either,
> but according to posts on the mailing list a independent developer has
> got it working in MacOS X at some level. Since QT runs on Windows,
> porting to the Windows version of QT shouldn't be hard.
>
> PySide is for the future, not the present, but it gives me a lot more
> confidence in using and recomending PyQT to know that there is so much
> work being put in to make sure it has a great future.
>
> Simon Hibbs

Thanks All
  I have got an idea,the way i need to choose GUI module in Python ,
As "r" said i am going to start from tkinter without any IDE .
if i need any advanced feature then i will move on to some other
module
First i have to try the code ...

-- 
http://mail.python.org/mailman/listinfo/python-list


Re: "Strong typing vs. strong testing"

2010-10-01 Thread Antony

On 9/30/2010 9:06 AM, Seebs wrote:


At $dayjob, they give us months between feature complete and shipping,

Lucky you
-Antony
--
http://mail.python.org/mailman/listinfo/python-list


Re: cmd2, an extenstion of cmd that parses its argument list

2012-05-31 Thread Antony Lee
I am already using shlex.split() (this is a customizable hook).

On Thu, May 31, 2012 at 03:42:19PM -0400, Adam Tauno Williams wrote:
> On Thu, 2012-05-31 at 15:21 -0400, Adam Tauno Williams wrote: 
> > On Thu, 2012-04-26 at 12:16 -0700, [email protected] wrote: 
> > > On Sunday, March 18, 2012 10:12:24 PM UTC-7, [email protected] wrote:
> > > > Dear all,
> > > > I would like to announce the first public release of cmd2, an extension 
> > > > of the standard library's cmd with argument parsing, here: 
> > > > https://github.com/anntzer/cmd2.
> > > Due to an already existing Cmd2 on PyPI, I have renamed the project to 
> > > parsedcmd, which is also a better description of what the module does.
> > > https://github.com/anntzer/parsedcmd 
> > > > Cmd2 is an extension built around the excellent cmd module of the 
> > > > standard
> > > > library.  Cmd allows one to build simple custom shells using ``do_*`` 
> > > > methods,
> > > > taking care in particular of the REPL loop and the interactive help.  
> > > > However,
> > > > no facility is given for parsing the argument line (do_* methods are 
> > > > passed the
> > > > rest of the line as a single string argument).
> > > > With Cmd2, ``do_*`` methods are type-annotated, either using Python 3's
> > > > function annotation syntax, or with an ad-hoc ``annotate`` decorator, 
> > > > allowing
> > > > the dispatcher to parse the argument list for them.
> > This is much the same functionality added to Cmd by Cmd2.
> > Perhaps you could collaborate with Cmd2's author and merge your two
> > extensions.
> 
> Since you split() the string in argument parsing document values cannot
> contain whitespace; such as -file="Yo Yo Ma Ma.txt".  Perhaps using
> shlex() or some other means to initially break-up the strings would be a
> better option?
> 


-- 
http://mail.python.org/mailman/listinfo/python-list


looking for tool for developping GUI in wxPython

2005-09-28 Thread Antony Kummel
Hi,
 
I'm looking for a relativaly stable tool (preferbly free) for developping GUI in wxPython over Windows platform. Stability is mostly in the sense that the generated code is stable. The important parameters for me are the stability of the tool, the ease of use, and the ability to seperate the generated code from the controller (the code doing the stuff behind the GUI). Sugestions, ideas and other insights are welcome.
BTW, I already looked at wxGlade, Boa and others and got a first impression, but I'm trying to understand how popular they are, how good they are in the long term, and how do users of these tools feel about them.
 
Thanks,
Antony Kummel 
		Yahoo! for Good 
Click here to donate to the Hurricane Katrina relief effort. 
-- 
http://mail.python.org/mailman/listinfo/python-list

ANNOUNCE: PyPHP, Python programming using the PHP web framework

2004-12-10 Thread Antony Lesuisse
PyPHP the python php bridge
===

Download it at http://lesuisse.net/pyphp-0.1.tgz

WARNING this is experimental !

Summary:


PyPHP enables Python programming in the PHP web framework.
PyPHP is not yet another Python Web framework, it is the PHP web framework made
available to Python programmers.

With PyPHP you get the best of both Python and PHP world:
- The power, cleanness and robustness of the Python language
- The much used, developped and maintained PHP framework

The most useful PHP framework features you get access to are:
- Session management (using pickle you are be able to store your python objects
  in the PHP sessions)
- Persistent database connections
- HTTP authentification
- Ouput buffering and header/cookie management

While most python programmers would favor the Python Standard Library to the
PHP functions library, PyPHP allows PHP programmers to use the PHP functions
from their Python code and brings new features to the Python programmers.


Quickstart:
---

Hello world in pyphp, hello.php:

---

from pyphp import php

print "Hello World"
---

Accessing php functions, test.php:

---

# vim:syntax=python:
from pyphp import php

php.header("Content-Type: text/plain")
print "Hello from python\n"
print php.explode("/","/etc/passwd")
php.eval("print_r($_SERVER);")


--
Antony Lesuisse
-- 
http://mail.python.org/mailman/listinfo/python-list


Implement multiprocessing without inheriting parent file handle

2014-03-21 Thread Antony Joseph
Hi all,

How can i implement multiprocessing without inherit file descriptors from
my parent process?

Please help me.

regards,
Antony
-- 
https://mail.python.org/mailman/listinfo/python-list


Re: VIM: Python type indented-block command equivalent to % for C?

2007-03-08 Thread Antony Scriven
[F-ups set to comp.editors]

Paddy3118 wrote:

 > Not python:
 > but python type
 > indented text
 >
 > Notice the blank line above.
 > It could have several
 > spaces or tabs, and still
 > be a part of the block
 > beginning 'Not python:':
 >   The block ends at the
 >   first non-blank line
 >   with less indent.
 >
 > Assuming that only space characters are allowed
 > for indenting, is their a way to yank a Python
 > block like y% works for C , or a way to move to
 > the end of a block defined by indentation?

I expect there are scripts for Python. Try googling and
www.vim.org. Anyway I'm not sure that I understand your
description 100%, but try something like this.

   :ono = /\n.*\%<=indent('.')c\S\\|\%$/+0

Now try d= y= etc. Also note that I've made it work
linewise. And take look at :help /\%v if you want it to
work with tabs. --Antony

-- 
http://mail.python.org/mailman/listinfo/python-list


Second mortgage loans

2008-08-09 Thread Antony Vijayendran
The arrears rate stood at 1.33 percent of all mortgages by the end of
the first half, up from 1.10 percent at the end of 2007 and 1.02
percent at the end of the first half of last year, the CML said.

The CML is maintaining its forecast of 45,000 total possessions and
170,000 mortgages in arrears of more than three months by the end of
the year.


There are a total of around 11.74 million mortgages in the UK, the CML
said.

[EMAIL PROTECTED]


Copyright Thomson Financial News Limited 2008. All rights reserved.

The copying, republication or redistribution of Thomson Financial News
Content, including by framing or similar means, is expressly
prohibited without the prior written consent of Thomson Financial
News.
Neither the Subscriber nor Thomson Financial News warrants the
completeness or accuracy of the Service or the suitability of the
Service as a trading aid and neither accepts any liability for losses
howsoever incurred. The content on this site, including news, quotes,
data and other information, is provided by Thomson Financial News and
its third party content providers for your personal information only,
and neither Thomson Financial News nor its third party content
providers shall be liable for any errors, inaccuracies or delays in
content, or for any actions taken in reliance thereon.

http://www.my-quickloans.com
--
http://mail.python.org/mailman/listinfo/python-list


Python Programmer needed in the LA area

2010-10-07 Thread Capstick, Antony H
I am looking for an experienced Person or Company located in Southern 
California to develop and implement a graphical track map operating in MS 
Windows that will be used to display graphical information for a new Disney 
attraction.

Implementer Qualifications
General requirements:

* Experience developing graphical user interfaces for Windows (or 
cross-platform tool sets which support Windows)

* Ability to develop custom "widgets" for graphical user interfaces - 
in addition to the standard widgets (text boxes, list boxes, etc), custom 
widgets must be used by the track map application.

* Experience with simple animation of widgets on-screen, including the 
ability to translate and rotate bitmaps with masks to any position within a 
window

* Experience with developing network-enabled applications specifically 
using UDP and custom protocols.

* Experience using Excel.

If WDI existing environment is used, additional requirements include:

* Experience using Python as a primary development language on the 
Windows platform

* Ability to understand partially documented Python code
Experience using the wxWidgets cross-platform graphical user interface 
development library, and preferably the wxPython bindings for Python.

Please contact Antony Capstick at
 818-544-3230


-- 
http://mail.python.org/mailman/listinfo/python-list