|
First
|
Prev |
Next
|
Last
Pages: 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355
Python with Ecmascript Hello, for my Python application (Windows platform) to be standards compliant, I need to embbed Ecmascript(Javascript) interpreter - I need to execute plugins written in this language. Which engine is suitable for Python, I have found bunch of them. Any recomendations are welcome. To be more specific, I think... 11 Jul 2008 15:05
Margins in the Tkinter Text widget Okay, so i am trying to have some sort of formatting going on in a textbox, and I need left margins. I see that there are two, one for the first line and th other for every line but that line. My program gives a word and a list of definitions for the word. So my question is how can I make the it repeat itse... 5 Jul 2008 07:25
Not necessarily related to python Web Crawlers Hi Does anyone here have a good recommendation for an open source crawler that I could get my hands on? It doesn't have to be python based. I am interested in learning how crawling works. I think python based crawlers will ensure a high degree of flexibility but at the same time I am also torn between looking for ... 6 Jul 2008 06:51
Tkinter Text widget get() Hey guys. I am having trouble understanding the get() method from the Tkinter Text() widget. It isn't like the entry.get() one I am used to. I know you have to put tags in, or at least I read. I tried this but it didn't work. I think I was putting the tags in wrong but I am not sure. I just need an example.... 5 Jul 2008 05:23
pythoncom InternetExplorer.Application don't work in vista || firefox pythoncom ? H! I using a script that opens a internet page in a small window (what I can control) In XP everything was working fine, but now I'm using Vista with IE7 and this is what happends now: First a small window opens at the postion x0 y0 (like I want) but then IE thinks "Hey lets open a other main window too". An... 7 Jul 2008 13:31
multi-platform browser embedding I fiddled a little with pyGTK and was quite happy to discover gtkMozEmbed because I want to write an application for Linux and Windows with a powerful browser widget. Unfortunatly I couldnt find a way to make gtkMozEmbed work on Windows. Are there alternatives? I'm lazy so I prefer to download binaries for Windows ... 6 Jul 2008 08:53
ANN: eric 4.1.6 released Hi, this is to inform all of you about the immediate availability of eric 4.1.5. It is a bug fix release. As usual, it is available via http://www.die-offenbachs.de/eric/index.html. Eric4 is a Python IDE written using PyQt4 and QScintilla2. It comes with batteries included. For more details see the link ab... 5 Jul 2008 04:22
Getting metadata from any database ? hello, I want to create a (local) database viewer for all databases, it's working now for sqlite3 (python 2.5), and I now want to get it working through odbc, so I can manage most other databases. In sqlite I can get the metadata (tables, stored views, procedures, etc) through pragma statements. Is there a ... 5 Jul 2008 04:22
how to get selected filename in FileSelectBox hi i am using tix FileSelectBox in my application .I want to get the selected filename as a string i do this as follows fselectbox=FileSelectBox(someframe) fselectbox.__setitem__("dir",join(fselectbox.cget("dir"),"..")) fselectbox.pack(side=LEFT) .... selectedfile=fselectbox.selection.cget("value") fselect... 5 Jul 2008 03:21
Python XML-RPC Server with clientside Javascript Hello everyone, I have used Python SimpleXMLRPCServer to expose several methods to be used. My Python script creates a free-standing server and not a CGI script. I have tested its exposed methods using the following Python script: import xmlrpclib s = xmlrpclib.ServerProxy('http://localhost:8765') print s.my... 5 Jul 2008 08:26 |