├── .gitignore ├── JSON-RPC_HTTP └── JSON-RPC_HTTP-Example.py ├── JSON-RPC_Websockets ├── JSON-RPC_Websockets-AuthenticationExample.py ├── JSON-RPC_Websockets-OrderBookSubscribe.py ├── JSON-RPC_Websockets-OrderBookSubscribeAllInstruments.py └── requirements.txt ├── README.md └── User-Credentials └── UserCredentials.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElliotP123/Deribit-API_Authentication-Examples/HEAD/.gitignore -------------------------------------------------------------------------------- /JSON-RPC_HTTP/JSON-RPC_HTTP-Example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElliotP123/Deribit-API_Authentication-Examples/HEAD/JSON-RPC_HTTP/JSON-RPC_HTTP-Example.py -------------------------------------------------------------------------------- /JSON-RPC_Websockets/JSON-RPC_Websockets-AuthenticationExample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElliotP123/Deribit-API_Authentication-Examples/HEAD/JSON-RPC_Websockets/JSON-RPC_Websockets-AuthenticationExample.py -------------------------------------------------------------------------------- /JSON-RPC_Websockets/JSON-RPC_Websockets-OrderBookSubscribe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElliotP123/Deribit-API_Authentication-Examples/HEAD/JSON-RPC_Websockets/JSON-RPC_Websockets-OrderBookSubscribe.py -------------------------------------------------------------------------------- /JSON-RPC_Websockets/JSON-RPC_Websockets-OrderBookSubscribeAllInstruments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElliotP123/Deribit-API_Authentication-Examples/HEAD/JSON-RPC_Websockets/JSON-RPC_Websockets-OrderBookSubscribeAllInstruments.py -------------------------------------------------------------------------------- /JSON-RPC_Websockets/requirements.txt: -------------------------------------------------------------------------------- 1 | websocket_client >= 0.57.0 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElliotP123/Deribit-API_Authentication-Examples/HEAD/README.md -------------------------------------------------------------------------------- /User-Credentials/UserCredentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElliotP123/Deribit-API_Authentication-Examples/HEAD/User-Credentials/UserCredentials.py --------------------------------------------------------------------------------