20 lines
438 B
Python
20 lines
438 B
Python
import os
|
|
|
|
from t_tech.invest import Client
|
|
from t_tech.invest.schemas import InstrumentExchangeType
|
|
|
|
TOKEN = os.environ["INVEST_TOKEN"]
|
|
|
|
|
|
def main():
|
|
with Client(TOKEN) as client:
|
|
r = client.instruments.bonds(
|
|
instrument_exchange=InstrumentExchangeType.INSTRUMENT_EXCHANGE_UNSPECIFIED
|
|
)
|
|
for bond in r.instruments:
|
|
print(bond)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|