login = ""
password = ""
phone_sms = "380633333131"
msg_id = "123456"
get_sms_status = '''
GETPRICE%s%sSMSTest message [UTF-8]%s''' % (login, password, phone_sms, msg_id)
import urllib2, urllib
senddata=[('XML',get_sms_status)]
senddata=urllib.urlencode(senddata)
path='http://api.atompark.com/members/sms/xml.php'
req=urllib2.Request(path, senddata)
req.add_header("Content-type", "application/x-www-form-urlencoded")
result=urllib2.urlopen(req).read()
print result
* The sms status information will be available in a few minutes