15,193 Topics
![]() | |
Got this memory error frequently in CherryPy so some of our users could not access many pages. 2009/04/01 21:18:14 INFO Traceback (most recent call last): File "D:\Python24\lib\site-packages\cherrypy\_cphttptools.py", line 274, in run finalize() File "D:\Python24\lib\site-packages\cherrypy\_cphttptools.py", line 576, in finalize content = ''.join([chunk for chunk in response.body]) MemoryError Anyone could recommend some … | |
I'm trying to write a program for a small school project. It involves a use inputing two numbers one representing kills and one deaths. The user inputs the numbers than the program should divide the kills by the number of deaths and put out the number. My problem is that … | |
hi everyone, i have wrote the database code like this try: import MySQLdb import _mysql_exceptions as DB_EXC cxn = MySQLdb.connect(host='10.0.2.2') if(cxn != 0): tkMessageBox.showinfo("Text", "you can update ur local database to server") else: tkMessageBox.showinfo("Text", "there is no connection please try again") cxn.close() except ImportError , e: return None when there … | |
Hi. I have the terrible problem that I never finish my projects because i get bored or distracted with other stuff. So, I wanted to make something really easy: text-game. Its about greek warriors in the olympics, so I need to assign a large number of attributes to each warrior. … | |
Hi, I have 2 columns of data, separated by a space, which I am trying to import into 2 variables as a tuple. Each column as a variable. I know the program would involve something using line.split() or line.strip() but I can't figure out how I would do it. Also … | |
i have written a simple text game and i would like people to comment on my style and comment on things that i could improve on. [code=python] #=============================# # Copyright Tom Tetlaw (c) 2009 # #=============================# import random items = ["pot plant","painting","vase","lampshade","shoe"] keyLocation = random.randrange(1, 5) print "You went to … | |
I'm very new to python, so this is very basic. I'm using the same basis i used on an add row program, which is probably why it comes up adding a row. When i read it back to myself, it seems to make sense. Thanks in advance for any help. … | |
Hi, I am in deep need of some good ideas about how could I test an application server written with twisted, testing it with twisted trial. The way the application server works is by using a home-made XML protocol. A client logs in by sending an authorization request, it receives … | |
hi, does anyone have or know were i can get some coding for a fractual curve any curve that is or may be a Dragon Curve. thanks | |
I wrote my rock paper scissors game for glass, but i used a recursion and not a while loop. I haven't been able to get my while loop to work at all, part of the reason i didn't put it there in the first place. Also, i have to test … | |
Hi pythonians I am trying to sort a Numpy array by field, but I am having trouble setting up the fields. I think I may have the dtype wrong. I keep getting a TypeError: "expected a readable buffer object". Here is a sample of the infile: 1480 CL 9 2004 … | |
Hi everyone! First, sorry for my bad English! I have a problem with httplib... I must send XML contain throu HTTP protocol, and here is my code [CODE] import sys import httplib xml = """ <?xml version="1.0" encoding="utf-8"?><!DOCTYPE Doc SYSTEM "TenorOAM.dtd"> <Doc date="1196693972484" from="10.1.1.180" nid="CMS000001" sid="94" to="85.90.74.15"> <ReqMsg><MsgHead mid="1"/><Cmd><New><ObjPath><Instance otype="Null" … | |
Hi! im trying to create an object in python, but when i try to call the length of that object, it says "Mp3tag instance has no attribute '__len__'" i know i can define a method on the "object"(i dont know if im creating the object in the right way) called … | |
Here is my assignment with the directions. ###Programmer Brian Austin ###FOP ###3/30/09 ###Assignment 8 ###Using a loop, allow the user to input as many student names as they like and store the names in a list. in title format #then write the list of names to a file named NAMES. … | |
Hi, how can I open an image and get the R,G,B values of just the first line? [code] from PIL import Image im=Image.open("image.bmp") img=im.getcolors() print img [/code] I've tried im.getdata() , im.histogram, etc.... but again, what I'm looking for is more of R,G,B pixel counts for just the 1st line … | |
Hi guys, I have a program where I need to load csv files. I have the problem where some loaded csv files have a comma as delimiter and other csv files have semicolon delimiters. For the functionality of the bigger program I want to use the load function and when … | |
what are some methods for open()? i want to know when the end of file is incountered like so: [CODE] def saveFile(filename): fout = open(filename 'w') while not fout.EOF(): fout.write(havnt figured out what to do here but dw bout it) [/CODE] any ideas? | |
im doing a tut for Tkinter and in it they do this: [CODE]tkFileDialog.askopenfilename()[/CODE] but when i run it i get this error: Traceback (most recent call last): File "C:\Documents and Settings\tom\Desktop\Programing\Python\c++ + python\main.py", line 67, in <module> if __name__ == "__main__": main() File "C:\Documents and Settings\tom\Desktop\Programing\Python\c++ + python\main.py", line 64, … | |
Hi all, I want to classify movie reviews as positive or negative using machine learning techniques and I want to do this using python. Can any one suggest me how to these things in python. Thanks In Advance :) -Dilip Kumar Kola | |
Is it possible to write a python code to enter password when connect to a bluetooth module? Project that I am doing now is control ON/OFF ports on development board, so to make it more secure I would like to add a password function before get to control ports. | |
how do i exicute python scripts in a c++ program? and what uses would it have? | |
how can i make a slidebar control a variable found in a class?? (in tkinter) | |
Hello all, well, I am new to these forums, and fairly new to Python. I know some python though, so I am not a complete "newb" so to speak. But I was wondering how to have python while loops work for two variables or strings or w.e. here's a piece … | |
I've got a CSV file which has a bunch of stock information I need to whittle down to a specific format for another program to read. The first line in the CSV file contains the header, the CSV file contains 29 keys and I need to get down to 11. … | |
hi guys.. hw can i set the position of a scale (slidebar) on screen in tkinter?? | |
[CODE] def translate(response): """Translates an English word into Pig Latin.""" # Initial lists and strings vowels = ["a", "e", "i", "o", "u", "A", "E", "I", "O", "U", "y", "Y"] consonants = ["b", "c", "d", "f", "g", "h", "j", "k", "l", "m", "n", "p", "q", "r", "s", "t", "v", "w", "x", … | |
For an application, I need to parse a string which contains urls and their titles. For example: 'name="My Mobile Blog" url="http://caydab565.blogspot.com/" name="Creative Disaster" url="http://kevinlara.blogspot.com/" ...' name means title of url here. I want list of strings which contain both title and url. For example: ['name="My Mobile Blog" url="http://caydab565.blogspot.com/"','name="Creative Disaster" url="http://kevinlara.blogspot.com/"'] … | |
Hi everyone. I'm having a little trouble trying to understand what argument passing really is. I know that it 'passes' arguments, but what does that actually mean and how can you use it to my advantage? ex: [CODE] def New(spam,n=1): [/CODE] so what does that actually do? | |
Greetings all, I'm trying to post data to a form on a web page using urllib2. Thus far I've had success however once data is entered in the form and the form is submitted, a second confirmation page is loaded where I need to click an 'OK' button again. Here … |
The End.