First  |  Prev |  Next  |  Last
Pages: 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227
PyQt QThreadPool error
Hello. I have the following code: #workers = {} QtCore.QThreadPool.globalInstance().setExpiryTimeout (300000) QtCore.QThreadPool.globalInstance().setMaxThreadCount(1) for i in range(1, int(userscnt) + 1): work = wk.Worker(i) # c... 8 Jan 2010 12:46
ANN: Pymazon 0.1.0 released!
Hello, I'm happy to announce the first non-beta release of Pymazon: a python implemented downloader for the Amazon mp3 store. Improvements from the beta: - Running download status indicator - Various fixes for Windows - Some code cleanup Pymazon was created to be a simple and easy alternative for the Li... 7 Jan 2010 13:31
Recommended "new" way for config files
Hi There seems to be several strategies to enhance the old ini-style config files with real python code, for example: 1) the documentation tool sphinx uses a python file conf.py that is exefile(d) , but execfile is suppressed in Python 3 2) there is a module cfgparse on sourceforge that supports a hybrid style... 19 Jan 2010 16:54
from datetime.datetime import today not working. python2.6.4on windows
Joshua Kordani wrote: Greetings all! So I'm reading through the manual and I get to the point where it talks about packages and how to import them. namely section 6.4 in the tutorial. I wont repeat the section here, but I want to understand whats going on in the following (as typed on my computer).... 7 Jan 2010 01:25
Validating cells of a table PyQt
Hey! I am new PyQT programmer. I am trying to create a table in which cells only take in numeric data. I am unable to use setValidator on table cells. Looking around i found some material on the editor attribute but I dont know how to apply this. Any help will be appreciated Cheers! ... 7 Jan 2010 02:29
QDoubleValidator
Hey! I am new PyQt programmer and want to restrict users to allow only numeric values into a table and lineedit boxes. I found the QDoubleValidator class but am unsure as to how to implement it. (I am a little shaky on the concept of parent and how to define them). Any help would be much appreciated! ... 6 Jan 2010 23:14
getfirst and re
> I need to do something like the following: pat = re.compile('edit[0-9]*:[0-9]*') check = form.getfirst(pat) (to check things like 'edit0:1') How do I do this? Well, you can do it either as check = pat.search(string_to_search) which is pretty plainly detailed in the help for the "r... 8 Jan 2010 15:02
TypeError
Victor Subervi wrote: Hi; I get this error: /var/www/html/angrynates.com/christians/cart/simplemail/mail.py <http://angrynates.com/christians/cart/simplemail/mail.py> 153 </head> 154 <body>''' 155 commitSale() 156 myMail() 157 print ''' commitSale = <function commitSale> ... 6 Jan 2010 23:14
parsing an Excel formula with the re module
Hello, I am acessing an Excel file by means of Win 32 COM technology. For a given cell, I am able to read its formula. I want to make a map of how cells reference one another, how different sheets reference one another, how workbooks reference one another, etc. Hence, I need to parse Excel formulas. Can I do i... 15 Jan 2010 02:49
embedded python on mac - linking problem
Hi, I have a problem with linking python module with my application on mac in order to make the module available in "embedded python". My python module is contained in j3kmodule.cxx file and module initialization function is exported in j3kmodule.h j3kmodule.h: ------------ PyMODINIT_FUNC PyInit_j3k(void); ... 7 Jan 2010 07:56
First  |  Prev |  Next  |  Last
Pages: 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227