Search Results

1
vote
3answers
135 views

Object Attribute in Random List Not Accessible in Python

Hello. I'm working on my first object oriented bit of python and I have the following: #!/usr/bin/python import random class triangle: # Angle A To Angle C Connects Side …
1
vote
3answers
357 views

Using the AND and NOT Operator in Python

Here is my custom class that I have that represents a triangle. I'm trying to write code that checks to see if self.a, self.b, and self.c are greater than 0, …
1
vote
1answer
126 views

Yahoo Chat in Python

I'm wondering how the best way to build a way to interface with Yahoo Chat is. I haven't found anything that looks incredibly easy to do yet. One thought it to build it all from scratch, the othe …
2
votes
3answers
369 views

IRC Python Bot: Best Way

I want to build a bot that basically does the following: Listens to the room and interacts with users and encourages them to PM the bot. Once a user has PMed the bot engage w …
0
votes
2answers
79 views

How do you address data returned to a socket in python?

Say you are telneting into IRC to figure out how it all works. As you issue commands the IRC server returns data telling you what it's doing. Once I have created a default script that basically i …
0
votes
3answers
70 views

Using Python Regular Expression in Django.

I have an web address: http://www.example.com/org/companyA I want to be able to pass CompanyA to a view using regula …