| |
Rating
Thread /
Thread Starter
|
Last Post  |
Replies |
Views |
|
 |
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...
|
|
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:...
|
|
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...
|
|
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...
|
|
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
|
|
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...
|
|
1 |
1,827 |
|
|
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...
|
|
1 |
479 |
|
 |
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...
|
|
0 |
430 |
|
 |
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()
|
|
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......
|
|
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...
|
|
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,...
|
|
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
|
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
|
|
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
|
|
1 |
370 |
|
 |
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 =
|
|
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.
|
|
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
|
|
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
|
|
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...
|
|
4 |
431 |
|
 |
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.
|
|
3 |
783 |