DEV Community

6t game zone
6t game zone

Posted on

python code to connect to a website "fish-game" is conneted with this code

import urllib
import urllib2

params = {'param1': 'value1'}
fish-game = urllib2.Request("
https://6t-ph.com/slot-machines-tipster-corner/", urllib.urlencode(params))
res = urllib2.urlopen(fish-game)

data = res.read()

Top comments (0)