0
votes
7answers
69 views
How can a total, complete beginner read source code?
I am a complete, total beginner in programming, although I do have knowledge of CSS and HTML.
I would like to learn Python. I downloaded lots of source code but the amount of files and the complexity …
0
votes
2answers
26 views
Google App Engine Application Extremely slow
I created a Hello World website in Google App Engine. It is using Django 1.1 without any patch.
Even though it is just a very simple web page, it takes long time and often it times out.
Any …
2
votes
2answers
15 views
Fast conversion of numeric data into fixed width format file in Python
What is the fastest way of converting records holding only numeric data into fixed with format strings and writing them to a file in Python? For example, suppose record is a huge list consisting of …
0
votes
1answer
25 views
Replace Multiple lines in Jython
Hi Everyone ,
I have written a small program to replace a set of characters , but i also want two or more replace command in a single program .
Apart from it i also want to add an bracket after …
0
votes
2answers
15 views
Is there an Open Source Python library for sanitizing HTML and removing all Javascript?
I want to write a web application that allows users to enter any HTML that can occur inside a <div> element. This HTML will then end up being displayed to other users, so I want to make sure …
0
votes
0answers
22 views
Traversing FTP listing
I am trying to to get all directories' name from an FTP server and store them in hierarchical order in a multidimensional list or dict
So for example, a server that contains the following structure:
…
1
vote
2answers
32 views
How to auto-run a script
Hi everyone,
I created a script that will tell me what to wear in the morning based on the weather (ie rain slicker if it will rain, heavy jacket if it will be cold, etc). I have fairly basic …
0
votes
1answer
34 views
List view is not refreshed if setTabText() is called
Yes, I know this sounds crazy. But here's the situation.
I composed a minimal code reproducing the bug. The code creates main window with QTabWidget, which, in turn, has one tab with QListView and a …
0
votes
1answer
10 views
No readyReadStandardOutput signal from QProcess
Why do I never get the readyReadStandardOutput signal when I run the following?
import os, sys, textwrap
from PyQt4 import QtGui, QtCore
out_file = open("sleep_loop.py", 'w')
…
2
votes
2answers
275 views
Calling Python from Objective-C
I'm developing a Python/ObjC application and I need to call some methods in my Python classes from ObjC.
I've tried several stuffs with no success.
How can I call a Python method from Objective-C?
…
1
vote
6answers
129 views
Writing a Faster Python Spider
Hello, I'm writing a spider in Python to crawl a site. Trouble is, I need to examine about 2.5 million pages, so I could really use some help making it optimized for speed.
What I need to do is …
0
votes
1answer
72 views
how stackless python can be fast for concurrency ?
stackless python didn't take a good usage of multi-core, so where is the point it should be faster than python thread/multiprocessing ?
all the benchmark use stackless python tasklet to compare with …
1
vote
5answers
59 views
resampling, interpolating matrix
I'm trying to interpolate some data for the purpose of plotting. For instance, given N data points, I'd like to be able to generate a "smooth" plot, made up of 10*N or so interpolated data points.
My …
0
votes
0answers
15 views
Google Federated Login vs Hybrid Protocol vs Google Data Authentication. Whats’s the Difference?
Hi,
I am trying to implement Google Authentication in my website, in which I would also be pulling some Google Data using the Google Data API and I am using Google App Engine with Jinja2.
My …
0
votes
2answers
36 views
Django edit form based on add form?
I've made a nice form, and a big complicated 'add' function for handling it. It starts like this...
def add(req):
if req.method == 'POST':
form = ArticleForm(req.POST)
if …
