DEV Community

6t game zone
6t game zone

Posted on

python code to connect to a website "6t game zone" is conneted with this code

import urllib
import urllib2

params = {'param1': 'value1'}

6t-game-zone = urllib2.Request("https://6t-ph.com/", urllib.urlencode(params))
res = urllib2.urlopen(6t-game-zone)

data = res.read()

Top comments (0)