diff --git a/examples/rest/claim_position.py b/examples/rest/claim_position.py index de409a3..de3b5f2 100644 --- a/examples/rest/claim_position.py +++ b/examples/rest/claim_position.py @@ -1,4 +1,4 @@ -# python -c "from examples.rest.claim_position import *" +# python -c "import examples.rest.claim_position" import os diff --git a/examples/rest/create_funding_offer.py b/examples/rest/create_funding_offer.py index e41e3b3..4046e28 100644 --- a/examples/rest/create_funding_offer.py +++ b/examples/rest/create_funding_offer.py @@ -1,4 +1,4 @@ -# python -c "from examples.rest.create_funding_offer import *" +# python -c "import examples.rest.create_funding_offer" import os diff --git a/examples/rest/create_order.py b/examples/rest/create_order.py index c4286d2..1f63e46 100644 --- a/examples/rest/create_order.py +++ b/examples/rest/create_order.py @@ -1,4 +1,4 @@ -# python -c "from examples.rest.create_order import *" +# python -c "import examples.rest.create_order" import os diff --git a/examples/rest/extra_calcs.py b/examples/rest/extra_calcs.py index 2603cd8..0e6fb1e 100644 --- a/examples/rest/extra_calcs.py +++ b/examples/rest/extra_calcs.py @@ -1,4 +1,4 @@ -# python -c "from examples.rest.extra_calcs import *" +# python -c "import examples.rest.extra_calcs" from bfxapi.client import Client, Constants diff --git a/examples/rest/get_authenticated_data.py b/examples/rest/get_authenticated_data.py index 79a24d9..4af5165 100644 --- a/examples/rest/get_authenticated_data.py +++ b/examples/rest/get_authenticated_data.py @@ -1,4 +1,4 @@ -# python -c "from examples.rest.get_authenticated_data import *" +# python -c "import examples.rest.get_authenticated_data" import os import time diff --git a/examples/rest/get_candles_hist.py b/examples/rest/get_candles_hist.py index fde6212..98f9da7 100644 --- a/examples/rest/get_candles_hist.py +++ b/examples/rest/get_candles_hist.py @@ -1,4 +1,4 @@ -# python -c "from examples.rest.get_candles_hist import *" +# python -c "import examples.rest.get_candles_hist" from bfxapi.client import Client, Constants diff --git a/examples/rest/get_liquidations.py b/examples/rest/get_liquidations.py index 34ed47d..6113a25 100644 --- a/examples/rest/get_liquidations.py +++ b/examples/rest/get_liquidations.py @@ -1,4 +1,4 @@ -# python -c "from examples.rest.get_liquidations import *" +# python -c "import examples.rest.get_liquidations" import time diff --git a/examples/rest/get_public_data.py b/examples/rest/get_public_data.py index ff86c14..a6c388b 100644 --- a/examples/rest/get_public_data.py +++ b/examples/rest/get_public_data.py @@ -1,4 +1,4 @@ -# python -c "from examples.rest.get_public_data import *" +# python -c "import examples.rest.get_public_data" import time diff --git a/examples/rest/get_pulse_data.py b/examples/rest/get_pulse_data.py index fc5c15f..9fb8832 100644 --- a/examples/rest/get_pulse_data.py +++ b/examples/rest/get_pulse_data.py @@ -1,4 +1,4 @@ -# python -c "from examples.rest.get_pulse_data import *" +# python -c "import examples.rest.get_pulse_data" import time diff --git a/examples/rest/transfer_wallet.py b/examples/rest/transfer_wallet.py index 28dcccb..b1d9fd3 100644 --- a/examples/rest/transfer_wallet.py +++ b/examples/rest/transfer_wallet.py @@ -1,4 +1,4 @@ -# python -c "from examples.rest.transfer_wallet import *" +# python -c "import examples.rest.transfer_wallet" import os diff --git a/examples/websocket/create_order.py b/examples/websocket/create_order.py index 7a6f645..f72f9d4 100644 --- a/examples/websocket/create_order.py +++ b/examples/websocket/create_order.py @@ -1,4 +1,4 @@ -# python -c "from examples.websocket.create_order import *" +# python -c "import examples.websocket.create_order" import os diff --git a/examples/websocket/order_book.py b/examples/websocket/order_book.py index 57d0c0a..8774b8a 100644 --- a/examples/websocket/order_book.py +++ b/examples/websocket/order_book.py @@ -1,4 +1,4 @@ -# python -c "from examples.websocket.order_book import *" +# python -c "import examples.websocket.order_book" from collections import OrderedDict diff --git a/examples/websocket/raw_order_book.py b/examples/websocket/raw_order_book.py index e9076cc..172873e 100644 --- a/examples/websocket/raw_order_book.py +++ b/examples/websocket/raw_order_book.py @@ -1,4 +1,4 @@ -# python -c "from examples.websocket.raw_order_book import *" +# python -c "import examples.websocket.raw_order_book" from collections import OrderedDict diff --git a/examples/websocket/ticker.py b/examples/websocket/ticker.py index aeb21cc..1c081b2 100644 --- a/examples/websocket/ticker.py +++ b/examples/websocket/ticker.py @@ -1,4 +1,4 @@ -# python -c "from examples.websocket.ticker import *" +# python -c "import examples.websocket.ticker" from bfxapi import Client, Constants