Полный код:
import urllib
TheURL = 'http://test.com'
postData = {'param':'12345'}
codedData = urllib.urlencode(postData)
TheCall = urllib.urlopen(TheURL, codedData)
return TheCall.read()
import urllib
TheURL = 'http://test.com'
postData = {'param':'12345'}
codedData = urllib.urlencode(postData)
TheCall = urllib.urlopen(TheURL, codedData)
return TheCall.read()