Build Your Own:
get_subscriptions() shows what you're currently subscribed to. Build it step by step:
Step 1 — Import the library
import icepython as iceStep 2 — Subscribe to a few symbols:
ice.get_quotes(['BRN 1!-ICE', 'HNG 1!-IUS'], ['last'], subscribe=True)Step 3 — List your active subscriptions:
subs = ice.get_subscriptions()
print(subs)
Output:
('BRN 1!-ICE', 'HNG 1!-IUS')