15,181 Topics
| |
Are their people willing to help testing/contributing to a python project? (if this is not a 'legal' subject, feel free to delete it; I wasn't sure) | |
I would like to specify a file for manipulation from the command line. I am new to python so I'm not really sure how to begin this. I am guessing that I need some options? | |
I have a script which looks at multiple values within a large database, and draws coordinates on a floatcanvas. I also have some thresehold variables attached to a slider widget. As the slider changes the thresehold value, the canvas is redrawn...well...sort of. It draws the new objects over the old, … | |
Hi all. :) I'm having trouble with pygame, images and transparency. Lets say I have an image...a circle to keep it simple (for example only). What I want is to be able to draw the image, but with only the circle showing (ie. not a white box around it). Oh … | |
[CODE]import os f = open(r'c:\Fummy_Tasks\Fummy_Forensic\19012010\IMAGES.txt') mkdir_name = 'mkdir c:\\Fummy_Tasks\\Fummy_Forensic\\19012010\\test2_Strings' print mkdir_name os.system(mkdir_name) mkdir_name = 'mkdir c:\\Fummy_Tasks\\Fummy_Forensic\\19012010\\test2_Memdmp' print mkdir_name os.system(mkdir_name) f = open(r'c:\\process_list_test2.img.txt','r') process_id = f.readline() while True: process_info = f.readline() if not process_info: break process_PID = process_info.split() openfilename = 'c:\\python26\\python.exe c:\\volatility-1.3_Beta\\volatility memdmp -f c:\\Fummy_Tasks\\Fummy_Forensic\\19012010\\test2.img -p %s' % (process_PID[1]) print openfilename … | |
Hi All, Good day to everyone! I'm new to Python (and relatively new to scripting, at that), and really benefited from looking at examples on this site, you guys are great! I'm trying to do the following, and need help please: 1. Read an input file, each line formatted as … | |
Could anyone tel me that how can I link two widgets in PyQt4. one more thing I want to know. I have created a tabbed view. How can I add the vcontents in a tabbed view? | |
how to read the output of the html, Actaully I am writing a small text as output whenever I invoke the html file but when I am using urllib.read() or webbrowser.read() I am able to read the source of the html rather than its output. I am a begineer So … | |
Hi, I'm in the process of creating a program that will allow any client connected to a simple server to voice chat. To start small, I only want the server to play the sound it is receiving from the clients -- the server will not be sending voice to any … | |
| Dear Folks, I am trying to use python-idiom to reverse a list of lists so that, for example, a = [[1, 2], ['apple', 'orange']] becomes b = [['orange', 'apple'], [2, 1]] My code for this at present is: [CODE] import copy a = [[1, 2], ["apple", "orange"]] if type(a) is … |
Hey guys, I recently found out how to make .py an exe using py2exe and I also found another program called "Smart Install Maker." I bought the license and wanted to let you know if you want to send me your .py, I will package it for you for free. … | |
I am new to PyQt... I wanted to know how to add the contents in each tab of the tabbed view. Also, I wanted to know how to link two widgets./ | |
Hello. I'm new here, and a student taking a course in Python. I'm completely lost as to what I should put in the numerator for this part: [CODE] def compactness(self): # TODO: compute the percentage of filler words to total words # lower percentage is more compact # students to … | |
Hi all, I have been poking wx document and also google but i havent prevailed. All I need is to get all drives C, D, E etc just like my computer is. What is the trick? Thanks | |
I want to use a proxy in my code. What I'm trying to do is open a list of proxies from a .txt and load them as the proxy. If I just can get the code to use proxy, I'm sure I can figure out the rest. Here is my … | |
Hi, How can i pass an xml file from python to flex 3..? Any one can help me...... with example code | |
I was wondering if anyone knows of any resources about building a custom importer. I've found this: [url]http://www.doughellmann.com/PyMOTW/sys/imports.html[/url]. I am also aware of PEP 302 and PEP 369 and imp and importlib. Are there any other resources I might need? | |
Hi, im a begginer to python, and i've been doing it a small while now, i've been attempting some puzzles of a website, and have met a small problem, and i can't find it. My code is below and i will explain my problem, ask how to sort it, and … | |
Hi, i'm working on simple fullscreen launcher application, to use it with remote on my HTPC media center to launch xbmc, stepmania, nes emulator, etc I'd like to use png icons with transparency, but there is a problem. In alpha channel of loaded icons i can see the back frame's … | |
Please forgive my ignorance but forever I've been in the habit of building a library of useful subroutines which I call from an application I am building. Recently the language has been python - a distinct departure from my experience. I've been unable to create a reasonable library. Here's the … | |
Hi, I am wondering about how to insert an image(.png) file into excel sheet using python.I have also tried converting .png file into .bmp file, but met with no success. I have tried using insert_bitmap() function, it doesn't give any exceptions. But the resulting excel file that is created is … | |
Anyone have a Python logic map or Python logic flow chart? An example can be seen on the right under History: [URL="http://en.wikipedia.org/wiki/Usenet#History"]http://en.wikipedia.org/wiki/Usenet#History [/URL] This would be very helpful for all users. | |
I'm trying to figure this out, but every google I do just brings up garbage. What I'm trying to do is split a string at an * I want the string to be in 2 parts basically. So.. Say the string is 2478*72-432*823-74 What I want to do is split … | |
Hi,everyone. I've been trying to extend Python's file type but I'm new to Python so I don't know if I'm going about it the right way. I hope someone can help me out with this or point me in the right direction. The problem isn't really subclassing file, but a … | |
I have never done any programming in my life but I have decided to go into engineering and in doing so we have to take this intro to programming course and I am pretty clueless. I am starting to get the hang of how python works but to put my … | |
Hi, my professor's site is down so I can't access his notes. but basically I need to make a 4 bar mechanism on canvas like this. and then have the top most point draw stuff as the bar rotates etc.. how can i do that with Tkinter? [URL=http://img521.imageshack.us/i/screenshotmn.png/][IMG]http://img521.imageshack.us/img521/8250/screenshotmn.png[/IMG][/URL] | |
I have installed the Python Imaging Library. But i am not able to use it. When I run the script in windows it says "ImportError: No module named ImageGrab" I also created the PATH VARIABLE called PYTHONPATH and gave the location of the installed modules. Please help. | |
Hello... I have problem with regex, I want to get the tables from another site... the regex is re.compile(r'<table.*?>(.*?)</table>') but when I get the tables I don't know how to return the value into the tables. [CODE=Python] #html = the page tbl = re.compile(r'<table.*?>(.*?)</table>') return tbl.sub('', html) #return html without … | |
hi i use python with twill/mechanize to post some texts to my web sites. strangely it works sometimes and sometimes not. i use twill browser to go to the page with the form, then post the texts and 'press' post button. the fields and button are correct. something like: [CODE]>>> … | |
Greetings everyone!! First of all, I'm a python newbie; my apology in advance if I'm being silly with my question but I really hope some one can help me on this. I got myself a project (just to start) to read iTunes library .xml file - iTunes Music Library.xml - … |
The End.