I am trying to use Python and beatbox to login to Salesforce but am running to some issues:
MY Code:
import beatbox
from beatbox import _tPartnerNS
print "Enter your login: "
mylogin = raw_input()
print "password: "
password = raw_input()
sf = beatbox._tPartnerNS
svc=beatbox.Client()
I am getting the error saying ImportError: cannot import name _tPartnerNS
. If I take out the from beatbox import _tPartnerNS
line then I get the error AttributeError: 'module' object has no attribute '_tPartnerNS'