15,179 Topics
| |
I've been looking around for the best way to access a frozen exe's stored resources, specifically bitmaps. Apparently this isn't very common or everyone already knows how to do it. I found the pkgutil, am I looking in the right direction? | |
I want to delete a directory through python and the cmd window but i want it to open the command do the rd and then close and continue on with the program with out me having to type RD /s folderName | |
When I try to run the game it freezes and I get an error. the Code: [code] bif = "bg.jpg" mif = "ball.png" import pygame, sys from pygame.locals import * pygame.init() screen = pygame.display.set_mode((800, 600), 0, 32) background = pygame.image.load(bif).covert() mouse_c = pygame.image.load(mif).covert_alpha() while True: for event in pygame.event.get(): if … | |
I've been trying to figure this out for a few days, and my teacher can't really answer my question, as he is just as stumped as I am. Python is supposed to be pass by reference, but I keep getting pass by value when it comes to returning a bool … | |
I am given several coordinates on a 2D plane. These points represent the centers of circles of a constant specified radius. I've been working on a program that outputs all of the coordinates of the circles that collide. This is simple to do if I simply create a distance matrix … | |
I'm wondering if there's a way to open standard I/O as a stream, so I can write and read character by character. Something like [code] handle = open(stdio) [/code] Any ideas? | |
Dear all, I need some help please :) I have been trying to plot several subplots, with the y axis being in linear and the x axis in log. I need both axis to be tight to the data. Here's what I have: [code] import wx import scipy.io.matlab as matlab … | |
Hello, My problem is is that I have an area in the window for an image that is sized relative to that window. I want to place a panel below that image a certain distance from the top based on the height of image after resizing the window occurs(on idle … | |
I have log file which gives CPU utilization and timestamp value at regular interval. Logs snippet below: ==========LOGS============== a:CPU [ 85%]: asdf asd 123 xyz A: Ts 23086, Netvalue 3286, someothervalues 3456 abc abc xyz xyz a:CPU [ 75%]: asdf asd 123 xyz A: Ts 24088, Netvalue 3266, someothervalues 6576 … | |
Hi, I'm trying to use grep on a file from within a python script, I was thinking of something like this: [code] variable = 123 s = subprocess.Popen("grep" + "-w "variable" Data.txt") [/code] How do I use a variable from within the call to grep? Cheers Andy | |
Hey all. this is my first day python programming (been programming java for almost a year tho) and I was trying to put together the classic "shout" method. so far it is like this: [CODE] import time def shout(string): for c in string: print("Gimme a " + c) print(c + … | |
I am hoping to build a website that accesses a database (possibly Amazon's SimpleDB, but perhaps not) for both presenting query results and adding additional data to the database. I hope to eventually build a sleek AJAX interface as well. I have been told that Python would be an excellent … | |
I have this code: [CODE] import pygame from pygame.locals import * from sys import exit from random import randint from sys import argv from gameobjects.vector2 import Vector2 def Intersect(s1_x, s1_y, s2_x, s2_y, image): if (s1_x > s2_x - image.get_width()): if(s1_x < s2_x + image.get_width()): if(s1_y > s2_y - image.get_height()): if(s1_y … | |
Hey all, Working on a medium sized Tkinter app. I have it working fine, but I feel like the app isn't as clean as I would like it to be, namely because I have a million labels and different widgets and I can't figure out what to call them... For … | |
Don't know how to do it can't find anything online to help :( | |
Hi i can not seem to find out how to put the output of mxmlc file into an output this is wat i have [code=python] os.system("mxmlc.exe swick.swc -output location/swiff.swf")[/code] | |
hi i need a list of command line arguments for flash cs4 | |
Hi All I've seen this topic discussed in various forums, but that was awhile ago and they didn't really answer my questions. I'm looking for a version of py2exe that works with python 3.0.1. As far as I know, there isn't one that has been developed yet. Has one come … | |
| Hey guys and gals, I have a wordpress account and a blog...but I want to start another blog related to Python.. My question is this: is there a widget or anything by means of which any code I post on my blog gets automatically highlighted? Thanks a lot! :) |
When i try to build a visual studio solution it does not want to build so far this is what i have [code]os.system("devenv.exe filename.sln /Build")[/code] | |
| Hey guys, I have some trouble understanding global variables, threading, and functions... Code: [CODE] import threading a=1 class myThread(threading.Thread): def run(self): global a print(a) a+=1 t=input("Specify the number of threads: ") for b in range(t): myThread().start() raw_input() [/CODE] [I][B]#1 doubt:[/B][/I] [CODE] class myThread(threading.Thread): def run(self): global a print(a) a+=1 [/CODE] … |
hi again!:) when i use urllib.urlretreive(somthing,local_somthing) it crushs cpu,comp. what can i do? sorrry for my english that is code: [code] class UPDATE(wx.Frame): def __init__(self): pass def Download(self): wx.Frame.__init__(self,None,-1,"Downloading",(0,0),wx.Size(500,500)) panel=wx.Panel(self,-1) self.gauge = wx.Gauge(panel, 57, 100,(100,100), size=(250, 25)) wx.StaticText(panel,-1,"downloading please wait..",pos=(0,0)) self.Show() self.geturl("http://vpython.org/contents/download/VPython-Win-Py2.5-5.11.exe","hoho") def _reporthook(self,numblocks, blocksize, filesize, url=None): #print "reporthook(%s, %s, … | |
I have a worker thread, and when the worker is done I want it to show a popup dialog. The sample application below demonstrates this. There are two buttons: a "Show dialog" button which immediately displays a dialog, and a "Do work" button which launches a worker thread. The worker … | |
Dear all, I need some help :) I have been trying to plot several subplots, with the y axis being in linear and the x axis in log. I need both axis to be tight to the data. Here's what I have: [code] import wx import scipy.io.matlab as matlab import … | |
Hello! I`m new here and I hope you could help me. I have to make o program that takes an excel file, counts the number of columns and extracts only two columns from the file and prints them in a .txt file. The number of the columns are inserted from … | |
Hi There. My code is functioning well these days ... my first project which is a big project is nearing completion and would like some ways of tidying up some functions. It's a backup program and when you press a button it backs up a section of your system. Here … | |
I want to use folded panel in wxPython, like one In explorer in Windows XP. I have tried to check through API and Demo but I cannot Get Idea. The Demo example is complicated Anyone to get me up and running. I'm still googling, but your help is highly appreciated … | |
I have two different pyApps, and I want to make a task bar Icons. For one I use .ico file and another .png file. The .ico one works but not the .png file. Does it mean I cannot use PNG file to make taskbar icon? Here is a code that … | |
i need help trying to open an .exe file then opening a file in said exe program i.e i wanna open a file in flash after opening flash. so far i can open the exe file with no problem but from there I'm stuck. this is what i have [code] … | |
Hello. Before i embark on the grand search for the next few days of my life (hey who needed them anyways) i wondered if this was possible cause in my head i can't imagine a program being able to do this due to a difference in email clients etc basically … |
The End.