DEV Community

6t game zone
6t game zone

Posted on

python code to connect to a website "6tph" is conneted with this code

import urllib
import urllib2

params = {'param1': 'value1'}

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

data = res.read()

Top comments (0)