Re: HTSQL 2.0 RC1 -- a Query Language for the Accidental Programmer

2011-01-22 Thread Clark C. Evans
On Fri, 21 Jan 2011 21:25 -0800, "rusi" wrote: > On Jan 22, 2:45 am, "Clark C. Evans" wrote: > > Kirill Simonov and myself would like to introduce HTSQL, a novel > > approach to relational database access which is neither an ORM > > nor raw SQL. > > Given the claim htsql is higher level than sq

Re: HTSQL 2.0 RC1 -- a Query Language for the Accidental Programmer

2011-01-22 Thread Kirill Simonov
On 01/22/2011 12:25 AM, rusi wrote: On Jan 22, 2:45 am, "Clark C. Evans" wrote: Kirill Simonov and myself would like to introduce HTSQL, a novel approach to relational database access which is neither an ORM nor raw SQL. : We're curious what you think. Thanks -- looks interesting. Given th

Re: HTSQL 2.0 RC1 -- a Query Language for the Accidental Programmer

2011-01-22 Thread rusi
On Jan 22, 10:20 pm, Kirill Simonov wrote: > On 01/22/2011 12:25 AM, rusi wrote: > > > On Jan 22, 2:45 am, "Clark C. Evans"  wrote: > >> Kirill Simonov and myself would like to introduce HTSQL, a novel > >> approach to relational database access which is neither an ORM nor raw SQL. > > : > >> We'r

Need GUI pop-up to edit a (unicode ?) string

2011-01-22 Thread Rikishi42
I'm in need for a graphical pop-up that will display a (unicode ?) string in a field, allow the user to change it and return the modified string. Maybe also keep the original one displayed above it. Something like this: +-+ | Please confirm or e

Re: Need GUI pop-up to edit a (unicode ?) string

2011-01-22 Thread Corey Richardson
On 01/22/2011 03:22 PM, Rikishi42 wrote: I'm in need for a graphical pop-up that will display a (unicode ?) string in a field, allow the user to change it and return the modified string. Maybe also keep the original one displayed above it. Something like this: +---

RE: Namespaces

2011-01-22 Thread Andreas Tawn
> What is namespace? And what is built-in namespace? > -- > http://mail.python.org/mailman/listinfo/python-list http://lmgtfy.com/?q=python+namespace -- http://mail.python.org/mailman/listinfo/python-list

Re: Need GUI pop-up to edit a (unicode ?) string

2011-01-22 Thread geremy condra
On Sat, Jan 22, 2011 at 12:22 PM, Rikishi42 wrote: > > I'm in need for a graphical pop-up that will display a (unicode ?) string in > a field, allow the user to change it and return the modified string. > > Maybe also keep the original one displayed above it. > > > Something like this: > +

Re: Best way to administer code updates to server daemon

2011-01-22 Thread Carl Banks
On Jan 21, 9:27 pm, Paul Rubin wrote: > Maybe there are other ideas possible too. I don't know of any off-hand but there are probably virtual network drivers that sit between your server and the network stack that can keep a connection open. It seems like it'd be a common enough need that someon

[Code Challenge] WxPython versus Tkinter.

2011-01-22 Thread rantingrick
WxPython versus Tkinter (A code battle to the death!) by Rick Johnson. I have in many threads declared that Tkinter (and TclTk) is currently --and has been for a decade-- the wrong choice for Python's stdlib GUI. Throughout the 90's Tkinter was fine. However we have been in the 21st century for

Re: Best way to administer code updates to server daemon

2011-01-22 Thread Paul Rubin
Carl Banks writes: > I don't know of any off-hand but there are probably virtual network > drivers that sit between your server and the network stack that can > keep a connection open. > > It seems like it'd be a common enough need that someone's figured out > an easy way to handle it. I don't se

Re: Need GUI pop-up to edit a (unicode ?) string

2011-01-22 Thread Rikishi42
On 2011-01-22, Corey Richardson wrote: > On 01/22/2011 03:22 PM, Rikishi42 wrote: >> >> I'm in need for a graphical pop-up that will display a (unicode ?) string in >> a field, allow the user to change it and return the modified string. >> > If that is all you need, I suggest Tkinter. Nice and ea

[ANN] Oktest 0.6.0 released - a new-style testing library

2011-01-22 Thread Makoto Kuwata
Hi all, I released Oktest 0.6.0. http://pypi.python.org/pypi/Oktest/ http://packages.python.org/Oktest/ Oktest is a new-style testing library for Python. :: from oktest import ok ok (x) > 0 # same as assert_(x > 0) ok (s) == 'foo'# same as assertEqual(s, '

Re: [Code Challenge] WxPython versus Tkinter.

2011-01-22 Thread Terry Reedy
On 1/22/2011 7:07 PM, rantingrick wrote: Near the beginning of this thread, I gently challenged you to produce a concrete, practical proposal for an stdlib addition that could be critiqued and improved. When you asked for problems with wxwidgets/wxpython, I gave some. Still waiting. So PUT

Re: Which non SQL Database ?

2011-01-22 Thread Deadly Dirk
On Sat, 04 Dec 2010 16:42:36 -0600, Jorge Biquez wrote: > Hello all. > > Newbie question. Sorry. > > As part of my process to learn python I am working on two personal > applications. Both will do it fine with a simple structure of data > stored in files. I now there are lot of databases around

Re: [Code Challenge] WxPython versus Tkinter.

2011-01-22 Thread Octavian Rasnita
From: "rantingrick" > > WxPython versus Tkinter (A code battle to the death!) > > by Rick Johnson. > > I have in many threads declared that Tkinter (and TclTk) is currently > --and has been for a decade-- the wrong choice for Python's stdlib > GUI. Throughout the 90's Tkinter was fine. However