GIDForums  

Go Back   GIDForums > Computer Programming Forums
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Post New Thread
Threads in Forum : Python Forum Forum Tools Search this Forum
  Rating Thread / Thread Starter Last Post Reverse Sort Order Replies Views
Arrow
by admin
The GIDForums™ Team is proud to announce that GIDForums™ is now among one of the very first Webmaster / Programming forums to offer a custom-written Python Syntax Highlighter BBCode ( bb code) to it's valued members and readers. Please use the and tag pair to enclose any python code so that it...
24-Sep-2005 22:09
by crystalattice Go to last post
1 3,324
 
by trihaitran
I am trying to write a web scraper and am having trouble accessing pages that require authentication. I am attempting to utilise the mechanize library, but am having difficulties. The site I am trying to login is http://www.princetonreview.com/Login3.aspx?uidbadge= user:...
05-Sep-2008 14:30
by trihaitran Go to last post
2 1,057
 
by trihaitran
Hi I am trying to pull some data from a Web site: schoolfinder.com The issue is that I want to use the advanced search feature which requires logging into the Web site. I have a username and password, however I want to connect programmatically from Python. I have done data capture from the Web...
30-Aug-2008 16:02
by trihaitran Go to last post
2 428
 
by stalepretzel
Hello all, I've been doing some programming with sockets lately. I've made a "server" that listens at port 2727. Code follows: #!/usr/bin/env python import socket myTextSocket = socket.socket(socket.AF_INET, socket.SOCK_STREAM) myTextSocket.bind(('127.0.0.1',2727)) myTextSocket.listen(1) while...
21-Jun-2008 17:50
by stalepretzel Go to last post
0 585
 
by stalepretzel
Hello All, I'm having trouble using modules. I can't make anything work, and I'm wondering how to fix it. The code is: #!/usr/bin/env python from math import * angle = 0 xval = cos(angle) print xval
21-Jun-2008 12:28
by Howard_L Go to last post
6 448
 
by stalepretzel
Hey all, I'm thinking of writing a program that would allow me to connect my computer to my home phone system through the computer's phone jack. (The program could then be used as an answering machine, or as a phone, using the computer speakers/headphones and a microphone, allowing for certain...
19-Jun-2008 22:01
by crystalattice Go to last post
1 1,827
 
gen
by mocoski
i a noob in python my olny experience is in turing which is a intro to java and cant figure out how to write a program that would figure out a numbers of letters or keys etc i have no idea how to make the program write into the other program and hit enter etc.. i know there are programs that do...
17-Mar-2008 22:31
by crystalattice Go to last post
1 479
Post
by sarabhjeet
I have created one application as well as I have created help or documentation file in a .chm format for my application. Whenever I click on help menu this documentation file should open but at a time only one instance of help file should open, how to do this... I think it can be done by creating...
13-Mar-2008 02:11
by sarabhjeet Go to last post
0 430
Post
by sarabhjeet
Hello all, Actually i need to close a dialog automatically after 5-6 seconds. For it what should i do,please help me.I am using wxTimer self.MB = wx.Dialog(self,-1,"hello",pos=(-1,-1),size=(200,100),style=wx.NO_3D) self.MB.Show(True) self.timer = wx.Timer(5,self.Step(self)) self.timer.Start()
13-Mar-2008 01:02
by sarabhjeet Go to last post
2 762
 
by sigkill9
Hi, I'm trying to build a simple python program that will total how many hours a worker has worked based on a start time and end time entry but the problem is this "simple" problem is becoming very complicated and i'm affraid i'm way off base and digging deeper and deeper into a coding nightmare......
12-Mar-2008 22:01
by crystalattice Go to last post
5 1,934
 
by fonz87
Just wondering anyone here can help me getting started or show me where i can read how to write this program i have to write a program where if i put 5 it should output 55 for example, when u put 5 it will compute 1^2+2^2+3^2+4^2+5^2 and the output is 55 i got a code where its adding up all...
12-Mar-2008 21:59
by crystalattice Go to last post
4 367
 
by rbp
hello, does anyone know of a geometry library I can use with python (though not necessarily written in python) that can calculate intersections between things. For instance the intersection of 2 planes would return a line. I need to find intersections between both finite and infinite lines,...
06-Mar-2008 22:14
by crystalattice Go to last post
4 967
 
by agiduser
Hi, I need review of Python Tutorial Book for newbie, Thanks for any adivce.
29-Feb-2008 16:41
by rbp Go to last post
4 1,079
 
by john_aa
Hey guys, I am interested in knowing, what new Web Development projects you are doing, curious to know, what data base you use, and if you are using Linux or Windows platform. Also, will like to know, if there are any alternatives to Adobe products, that you may be using
29-Feb-2008 12:57
by crystalattice Go to last post
1 351
 
by php.mca
Hie All, I am newbie to python.I am creating one application which generates pdf docs. I want to open the docs to be password protected. I need such properties for that. Can anyone help me out. Thanx in advance Dushyant Joshi
29-Feb-2008 12:56
by crystalattice Go to last post
1 370
Smile
by fonz87
8O I'm trying to write a program that deletes the duplicate numbers. For example if I enter 1 1 2 4 5 7 2 I should print 1 2 4 5 7 This is what I have so far, I don't know how to get rid of the duplicates import string import math def main(): x = raw_input("Enter a number") mylist =
29-Feb-2008 12:53
by crystalattice Go to last post
1 371
 
by john_aa
Hey guys wondering, if you are using Adobe CS3 and do you think, if there are other alternatives to CS3. Would you recommend CS3 or wait for something else.
29-Feb-2008 12:45
by crystalattice Go to last post
1 360
 
by madpotential
I need help with a program that determines the number of words and characters, so far all I have is input string def wcount(f): """Print three numbers showing the count of lines, words and characters in the file f . input = words input = characters
26-Feb-2008 21:12
by fonz87 Go to last post
3 682
 
by fonz87
ok so i need help with some codes. I need to write a program that takes as input a positive integer n and generates the following shape. so for example if i put in n=5 it would come out like this 1 1 3 1 3 5 1 3 5 7 1 3 5 7 9 i have this so far but it's coming like this. where it producing doubles
14-Feb-2008 11:21
by crystalattice Go to last post
6 367
 
by fonz87
Hello people, I was just browsing around looking for help online for similar problems to help me complete some problems for class. I m new to python and some of this stuff is so confusing to understand. i have 4 problems i need help with and wondering if anyone can help me out with it ?? here are...
13-Feb-2008 13:12
by crystalattice Go to last post
4 431
Post
by sarabhjeet
Actually I have made one application and now I need to integrate the help file which is in CHM format with it, I have made one sub menu in the tool bar like this: Help->Documentation Whenever I click on documentation then that chm file should open. How to do this task, please help me.
06-Feb-2008 03:46
by sarabhjeet Go to last post
3 783
Post New Thread

Recent GIDBlogAccepted for Ph.D. program by crystalattice

Display Options Moderators
Showing threads 21 to 40 of 104 Moderators : 1
Sorted By Sort Order
From The
LuciWiz  
Forum Tools Search this Forum
Search this Forum :

Advanced Search

New posts New posts More than 15 replies or 150 views Hot thread with new posts
No new posts No new posts More than 15 replies or 150 views Hot thread with no new posts
Closed Thread Thread is closed  
 
Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Network Sites: GIDNetwork · GIDWebHosts · GIDSearch · Learning Journal by J de Silva, The

All times are GMT -6. The time now is 07:23.


vBulletin, Copyright © 2000 - 2009, Jelsoft Enterprises Ltd.