15,175 Topics
| |
Hi all, Could someone help with the position of text on screen in pygame. Basic structure would look something like this below. now I like the user to input the text position starting at top left and moving 1 space at a time until end of that line then onto … | |
Hello, i am writing a simple GUI Builder, and I finished all the part that leads to the code that will be put into the window which is viewed to the user, and my problem is i want to the code to be sort of refreshed to view the changes … | |
[B]hi all using telnetlib, I am issuing a 'top' command on a remote host. Top seems to continue indefinitely. On a terminal, I can use CTRL+c to suspend the process... What can be passed in telnet.write() equivalently to suspend the process , yet retain the output so far... pls help … | |
how to store the output of a telnet session on a local machine, so that it can be used further for calculations?? | |
[CODE]import re, os, sys sys.stdout = open('c:\\Fummy_Tasks\\RECONSTR_ANALYSIS\\04052010\\test1_Strings\\log1.txt', 'a') memdump = open('c:\\Fummy_Tasks\\RECONSTR_ANALYSIS\\04052010\\test1_Strings\\test.txt','rb') count = 1 while 1: memdump_line = memdump.readline() if not memdump_line:break evidence = open('c:\\Fummy_Tasks\\RECONSTR_ANALYSIS\\04052010\\test1_Strings\\word1.txt','rb') for x in range (0,len(memdump_line)-3): while 1: evidence_line = evidence.readline() if not evidence_line:break if memdump_line[x]==evidence_line[0] and memdump_line[x+1]==evidence_line[1] and memdump_line[x+2]==evidence_line[2]: print memdump_line print count count = … | |
Friends, Exploring a Model Based Open Source testing framework, Written in Python, called PyModel. [url]http://staff.washington.edu/jon/pymodel/www/[/url] I am trying hard to start using it, but no success. Can any one let me know where to place these files and how to run them ? Thanks in Advance. Regards S | |
Hi, I am a beggining Python NLTK user. I regularly review word documents with word counts between 5K and 10K. Can someone share a small fragment of code that would import the word doc, or a text doc so that I can use NLTK modules to generate qualitative and quantative … | |
Hey guys! I was just coding a script to type a keyboard remotely from a network address. I have everything worked out; except the networking part. How am I able to get, for example, a string from a networked device? Is there a particular library used to achieve this? Thanks … | |
Hi I am trying to do a simple thing but I am stuck :(. Basically, I have 4 texts. I want to compare text 2 with text 1 and text 4 with text 3, then save these differences into two different texts so that these differences can then be compared. … | |
[B]Ah! Never mind! I forgot you could embed classes such as:[/B] [code]class Heroes(): class Lords(): class Phill(): hp = 25 >>> Heroes.Lords.Phill.hp 25[/code] ------------------------------------------------------ I am attempting to write an RPG in Python. I am not worrying about the battle system or mapping quite yet, and am more focused on … | |
Hi folks. I'm currently looking at developing a client app in Python. I have a server app developed in C++ that captures wifi data and then my app connects to the server and grabs the data relating to the wifi access points and then inserts this into a MySQL DB. … | |
Hi guys I am looking to create the following as shown below. Anybody able to give me a hand as im really struggling to make the rectangles different lengths. | |
Hello, I am working on a project, and I cant seem to get around a part of it, which is really crucial to the program.. I am using WX btw for GUI, but unfortunately, I want when a button clicked, to open a new Miniframe and take the values and … | |
[code] 09:00 Johnny Bravo 10:25 Dexter laboratory 11:55 Cow & Chicken ..................... 18:10 I am weasel .................. [/code] Anyone knows a method to implement if i enter 10:30 to print whats on at that hour? (Cow & CHicken in my case) Thanks. | |
# I have created a program that takes input and sorts it. # I have also set up a program that takes to lists, combines them, and lists them together in order. # The thing I am trying to do ((using the random module, random(), randint(), seed(), and shuffle() )) … | |
Hello ,I want to find between what numbers of a list exist a specific number: For example if i enter 15,i should be between 13 and 21. [code] list = [1,5,9,11,13,21,27,29,32] for index in range(len(list)): if num > list[index] and num < list[index + 1]: ............................................... [/code] But with this … | |
[B]hi all.... i m writting a script using telnet session in linux............ first i want to read 1)read free message 2)process memory usage 3)%cpu usage then using snmpwalk i want to repeat 1,2,3 after doing this i want to calculate difference before snmp walk and after snmp walk....... i m … | |
how can we draw arc using turtle graphics. any guidance would be great regards | |
hey... I've been working on my first GUI for a while now, and I just need some input on it... first off... the image object won't work for tex0-type formatting... so I have to make each pixel from the data provided... I've gotten as far as reading the 32 byte … | |
Hi there, I am very new to python and wx and all that and I have a problem with my program, I'm trying to save what's been drawn on the screen,but just cant make it work. Here is the code: [CODE] import wx class MPanel(wx.Window): def __init__(self, parent): wx.Window.__init__(self, parent) … | |
This little code snippet shows you how you save a wxPython canvas drawing to a standard image file. | |
I have a python program in my system...i need to execute this program in other systems connected through a lan and show the o/p there...can nybody help pls... | |
hi all, i want to calculate the difference b/w two terms i.e,(actual memory usage-after snmp walk message usage) | |
how to use file open ...... i want to read 1.process memory usage 2.cpu memory usage 3.free memory usage thanks in advance | |
[code] text = "Some text here 09:00 - Movies 10:00 - Cartoons 11:00 SPorts .... 20:00 - News Another text here" [/code] I am trying to get only the parts with the time in front.Here is my code: [code] match = findall('\d\d:\d\d\s-\s\D+', text) [/code] My problem is that at the … | |
[B]hi, my problem is as such... I am establishing a telnet session to an IP using telnetlib module. I read the free memory on the board using telnet.write("free\n"). after this i call a system command 'snmpwalk' to walk the MIBs of the IP above. I again need to establish the … | |
Alright, I have a problem with a program that I am trying to write. The purpose of the program is to solve 1 specific algorithm. That algorithm is send + more = money. The program is supposed to find the value of each letter and return them to you. I … | |
this is the therapist code- [CODE]import string import regex import whrandom #---------------------------------------------------------------------- # translate: take a string, replace any words found in dict.keys() # with the corresponding dict.values() #---------------------------------------------------------------------- def translate(str,dict): words = string.split(string.lower(str)) keys = dict.keys(); for i in range(0,len(words)): if words[i] in keys: words[i] = dict[words[i]] return string.join(words) … | |
Im trying to make a blackjack game that uses a graphical interface, it executes just fine and my IDE isn't giving any error reports which is making it really difficult to finish it. I posted some of my worries about why it won't operate. Any help, general comments, or wise … | |
Hello i have recently learned the basics of python and today i have been playing with urllib. What i intended for this function was for it to connect to my site, fill out the form wich will write to my sites database. I know my php is working properly but … |
The End.