Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~4K People Reached
Favorite Forums
Favorite Tags

2 Posted Topics

Member Avatar for firegenius

Hi everyone, I am trying to build application with Tkinter like a wizard, i'll use background image for application, and put some text and image to application window. But i couldn't do that. When I use background with that code, text labels background color is blocking background view. Is there …

Member Avatar for firegenius
0
4K
Member Avatar for sravan953

[code=Python] import urllib import urllib2 url = 'http://www.someserver.com/login.php' user_agent = 'Mozilla/4.0 (compatible; MSIE 5.5; Windows NT)' values = {'username' : 'write username', 'pass' : 'write pass'} headers = { 'User-Agent' : user_agent } data = urllib.urlencode(values) req = urllib2.Request(url, data, headers) response = urllib2.urlopen(req) get_page = response.read() #And finally you …

Member Avatar for firegenius
0
79

The End.