diff --git a/bfxapi/examples/rest/create_funding.py b/bfxapi/examples/rest/create_funding.py index 55de3b7..c6213bb 100644 --- a/bfxapi/examples/rest/create_funding.py +++ b/bfxapi/examples/rest/create_funding.py @@ -2,7 +2,7 @@ import os import sys import asyncio import time -sys.path.append('../') +sys.path.append('../../../') from bfxapi import Client diff --git a/bfxapi/examples/rest/create_order.py b/bfxapi/examples/rest/create_order.py index ed0a927..b987cff 100644 --- a/bfxapi/examples/rest/create_order.py +++ b/bfxapi/examples/rest/create_order.py @@ -2,8 +2,7 @@ import os import sys import asyncio import time -sys.path.append('../') - +sys.path.append('../../../') from bfxapi import Client API_KEY=os.getenv("BFX_KEY") diff --git a/bfxapi/examples/rest/get_authenticated_data.py b/bfxapi/examples/rest/get_authenticated_data.py index 63ce23d..0a5a394 100644 --- a/bfxapi/examples/rest/get_authenticated_data.py +++ b/bfxapi/examples/rest/get_authenticated_data.py @@ -2,7 +2,7 @@ import os import sys import asyncio import time -sys.path.append('../') +sys.path.append('../../../') from bfxapi import Client diff --git a/bfxapi/examples/rest/get_public_data.py b/bfxapi/examples/rest/get_public_data.py index 1f289b9..eae9f94 100644 --- a/bfxapi/examples/rest/get_public_data.py +++ b/bfxapi/examples/rest/get_public_data.py @@ -2,7 +2,7 @@ import os import sys import asyncio import time -sys.path.append('../') +sys.path.append('../../../') from bfxapi import Client diff --git a/bfxapi/examples/rest/transfer_wallet.py b/bfxapi/examples/rest/transfer_wallet.py index 46bfc41..631ea3b 100644 --- a/bfxapi/examples/rest/transfer_wallet.py +++ b/bfxapi/examples/rest/transfer_wallet.py @@ -2,7 +2,7 @@ import os import sys import asyncio import time -sys.path.append('../') +sys.path.append('../../../') from bfxapi import Client diff --git a/bfxapi/examples/ws/cancel_order.py b/bfxapi/examples/ws/cancel_order.py index 2c50b25..70511db 100644 --- a/bfxapi/examples/ws/cancel_order.py +++ b/bfxapi/examples/ws/cancel_order.py @@ -1,6 +1,6 @@ import os import sys -sys.path.append('../') +sys.path.append('../../../') from bfxapi import Client, Order diff --git a/bfxapi/examples/ws/connect.py b/bfxapi/examples/ws/connect.py index 87d35c5..4cb21bb 100644 --- a/bfxapi/examples/ws/connect.py +++ b/bfxapi/examples/ws/connect.py @@ -1,6 +1,6 @@ import os import sys -sys.path.append('../') +sys.path.append('../../../') from bfxapi import Client diff --git a/bfxapi/examples/ws/connect_auth.py b/bfxapi/examples/ws/connect_auth.py index d2a46f2..fac67e3 100644 --- a/bfxapi/examples/ws/connect_auth.py +++ b/bfxapi/examples/ws/connect_auth.py @@ -1,6 +1,6 @@ import os import sys -sys.path.append('../') +sys.path.append('../../../') from bfxapi import Client, Order diff --git a/bfxapi/examples/ws/get_seed_trades.py b/bfxapi/examples/ws/get_seed_trades.py index 154c306..fb34dab 100644 --- a/bfxapi/examples/ws/get_seed_trades.py +++ b/bfxapi/examples/ws/get_seed_trades.py @@ -1,7 +1,7 @@ import os import sys import asyncio -sys.path.append('../') +sys.path.append('../../../') from bfxapi import Client diff --git a/bfxapi/examples/ws/resubscribe_orderbook.py b/bfxapi/examples/ws/resubscribe_orderbook.py index 5e3362a..ede112d 100644 --- a/bfxapi/examples/ws/resubscribe_orderbook.py +++ b/bfxapi/examples/ws/resubscribe_orderbook.py @@ -1,6 +1,6 @@ import os import sys -sys.path.append('../') +sys.path.append('../../../') from bfxapi import Client diff --git a/bfxapi/examples/ws/send_order.py b/bfxapi/examples/ws/send_order.py index 50ae345..43a8b2d 100644 --- a/bfxapi/examples/ws/send_order.py +++ b/bfxapi/examples/ws/send_order.py @@ -1,6 +1,6 @@ import os import sys -sys.path.append('../') +sys.path.append('../../../') from bfxapi import Client, Order diff --git a/bfxapi/examples/ws/subscribe_derivative_status.py b/bfxapi/examples/ws/subscribe_derivative_status.py index 1e182dc..3ddb7e5 100644 --- a/bfxapi/examples/ws/subscribe_derivative_status.py +++ b/bfxapi/examples/ws/subscribe_derivative_status.py @@ -1,6 +1,6 @@ import os import sys -sys.path.append('../') +sys.path.append('../../../') from bfxapi import Client diff --git a/bfxapi/examples/ws/subscribe_orderbook.py b/bfxapi/examples/ws/subscribe_orderbook.py index 153fef5..7febcf3 100644 --- a/bfxapi/examples/ws/subscribe_orderbook.py +++ b/bfxapi/examples/ws/subscribe_orderbook.py @@ -1,6 +1,6 @@ import os import sys -sys.path.append('../') +sys.path.append('../../../') from bfxapi import Client diff --git a/bfxapi/examples/ws/subscribe_trades_candles.py b/bfxapi/examples/ws/subscribe_trades_candles.py index 27530ed..2e17fe3 100644 --- a/bfxapi/examples/ws/subscribe_trades_candles.py +++ b/bfxapi/examples/ws/subscribe_trades_candles.py @@ -1,6 +1,6 @@ import os import sys -sys.path.append('../') +sys.path.append('../../../') from bfxapi import Client diff --git a/bfxapi/examples/ws/update_order.py b/bfxapi/examples/ws/update_order.py index f925b06..68df31e 100644 --- a/bfxapi/examples/ws/update_order.py +++ b/bfxapi/examples/ws/update_order.py @@ -1,6 +1,6 @@ import os import sys -sys.path.append('../') +sys.path.append('../../../') from bfxapi import Client, Order diff --git a/bfxapi/examples/ws/wallet_balance.py b/bfxapi/examples/ws/wallet_balance.py index 7df0e0b..c46fa1e 100644 --- a/bfxapi/examples/ws/wallet_balance.py +++ b/bfxapi/examples/ws/wallet_balance.py @@ -1,7 +1,6 @@ import os import sys -sys.path.append('../') - +sys.path.append('../../../') from bfxapi import Client API_KEY=os.getenv("BFX_KEY")