We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
getting the below error when i try to retrieve a single security accessor from the manager
msft = mgr['MSFT US EQUITY']
ERROR:
NameError Traceback (most recent call last) in () 1 # retrieve a single security accessor from the manager ----> 2 msft = mgr['MSFT US EQUITY']
C:\Users\Local\Continuum\Anaconda3\lib\site-packages\tia\bbg\datamgr.py in getitem(self, sid) 121 122 def getitem(self, sid): --> 123 return self.get_sid_accessor(sid) 124 125 @Property
C:\Users\Local\Continuum\Anaconda3\lib\site-packages\tia\bbg\datamgr.py in get_sid_accessor(self, sid, **overrides) 115 116 def get_sid_accessor(self, sid, **overrides): --> 117 if isinstance(sid, str): 118 return SidAccessor(sid, self, **overrides) 119 else:
NameError: name 'basestring' is not defined
The text was updated successfully, but these errors were encountered:
you are running on python 3+
tia is for python 2
Sorry, something went wrong.
correct i am running python 3+ however I am using the python3 updates that where posted for TIA
@jaross42 how did you solve this issue?
No branches or pull requests
getting the below error when i try to retrieve a single security accessor from the manager
retrieve a single security accessor from the manager
msft = mgr['MSFT US EQUITY']
ERROR:
NameError Traceback (most recent call last)
in ()
1 # retrieve a single security accessor from the manager
----> 2 msft = mgr['MSFT US EQUITY']
C:\Users\Local\Continuum\Anaconda3\lib\site-packages\tia\bbg\datamgr.py in getitem(self, sid)
121
122 def getitem(self, sid):
--> 123 return self.get_sid_accessor(sid)
124
125 @Property
C:\Users\Local\Continuum\Anaconda3\lib\site-packages\tia\bbg\datamgr.py in get_sid_accessor(self, sid, **overrides)
115
116 def get_sid_accessor(self, sid, **overrides):
--> 117 if isinstance(sid, str):
118 return SidAccessor(sid, self, **overrides)
119 else:
NameError: name 'basestring' is not defined
The text was updated successfully, but these errors were encountered: