akapur / pyiqfeed

Python LIbrary for reading DTN's IQFeed
GNU General Public License v2.0
172 stars 109 forks source link

in example.py where is passwords package? #27

Closed nooperpudd closed 6 years ago

nooperpudd commented 6 years ago

how could I import passwords?

ivan-vasilev commented 6 years ago

You need to create your own passwords module with the your DTN credentials. The module should look like:

dtn_product_id = "YOUR_PRODUCT_ID"
dtn_login = "YOUR_LOGIN"
dtn_password = "YOUR_PASSWORD"
nooperpudd commented 6 years ago

ok. Got it.