|  Next  |  Last
Pages: 1 2 3 4 5 6 7 8 9 10 11
installing something to a virtualenv when it's already in site-packages
I have ipython installed via apt. I can go to the command line and type 'ipython' and it will work. If I try to install ipython to a virtualenv, I get this: $ pip install -E env/ ipython Requirement already satisfied: ipython in /usr/share/pyshared Installing collected packages: ipython Successfully installed i... 19 Mar 2010 04:53
Bug in Python APscheduler module.
Hi , I looked everywhere and could find no mention of this(might be looking in the wrong places point me please..). the Python package Advanced python scheduler seems to have a bug with the unschedule func. When passing the function of an object it doesn't remove it from the scheduler. but works fine wit... 19 Mar 2010 03:48
example of ssl with SimpleXMLRPCServer in 2.6?
Anyone have an example of using the new ssl module with SimpleXMLRPCServer in 2.6? Thanks, -- -Rowland ... 18 Mar 2010 23:27
Truoble With A Search Script for ImageBin.org
Brandon Conner wrote: Hey Pythoners, its my first post here, yay! I'm trying to develop a script that will return the results of a POST request that should list all images uploaded by a user. However, when i run the script, i get returned the HTML of the page with the search form. I am wonde... 18 Mar 2010 23:27
GC is very expensive: am I doing something wrong?
I am loading a dictionary from a text file and constructing a trie data structure in memory. However, it takes longer than I'm happy with - about 12 seconds on my computer. I profiled it, came up with some clever ideas to cut down on the work (such as by exploiting the fact that the dictionary is sorted) and was on... 19 Mar 2010 01:38
should writing Unicode files be so slow
I have a simple program to read a text (.csv) file and split it into several smaller files. Tonight I decided to write a unicode variant and was surprised at the difference in performance. Is there a better way? from __future__ import with_statement import codecs def _rowreader(filename, separator='\t'... 18 Mar 2010 22:20
Need to create subprocess...
Hello, I have to run a program as a child process inside my python program and redirect it's output through a pipe to a parent program process. So, I wrote this: pipe = Popen('example_program', shell=True, bufsize=0, stdout=PIPE).stdout and it works great. Now, in parent program I need to wait for a some... 18 Mar 2010 14:18
Install 2.6.4 as non-admin on Windows
How do I install python 2.6.4 on Windows without admin privileges? Can I install it on a machine I control, zip up the contents, copy it across to an admin-restricted machine, and set up a couple of environemtn variables? Does python install files to system directories, making this impossible? ... 18 Mar 2010 11:39
sqlite3, memory db and multithreading
The problem is simple: I have multiple threads within one program. At least 2 threads have to have access to in-memory sqlite database. It is not possible to pass sqlite objects to those threads because an exception is rised: ProgrammingError: SQLite objects created in a thread can only be used in that same ... 19 Mar 2010 03:48
url2lib (windows 7) does not notice when network reconnects (getaddrinfo problem)
On 18 мар, 00:47, News123 <news1...(a)free.fr> wrote: Hi, I'd like to write a function, that knows when the 'internet' is reachable.. My setup is a windows7 host with a wireless USB modem. The modem might connect / disconnect any time. I thought I write a small function just checking whether I ... 18 Mar 2010 07:02
ARE YOU ARE FAMILIAR WITH ANY COMPUTER LANGUAGE-GET GOOD LUCK
http://123maza.com/75/expressions ... 18 Mar 2010 05:55
did anybody play with python and window mobile broadband?
Hi, I'd like to use a mobile broadband device with a windows python app. Did anybody play already with python and the window mobile broadband interface? I'm looking for examples: - how to connect/disconnect a mobile broadband device (currently I use rasdial. not sure it's the best solution) - to obtain th... 18 Mar 2010 16:37
 |  Next  |  Last
Pages: 1 2 3 4 5 6 7 8 9 10 11