Извиняюсь за, возможно глупый вопрос, но только начал изучать программирование.
Ответа в гугл не нашел...
Да и к сожалению на сайте пример только на Node.js.
Помогите подключиться к данному websocket на языке Python, пожалуйста!
var Pusher = require('pusher-client');
var pusher = new Pusher('c0eef4118084f8164bec65e6253bf195', {
encrypted: true,
wsPort: 443,
wssPort: 443,
host: 'notifier.bitskins.com'
});
pusher.connection.bind('connected', function() {
// connected to realtime updates
console.log(" -- connected to websocket");
});
pusher.connection.bind('disconnected', function() {
// not connected to realtime updates
console.log(" -- disconnected from websocket");
});
var events_channel = pusher.subscribe(CHANNEL); // use the relevant channel, see docs below
events_channel.bind(EVENT_TYPE, function(data) {
// use the relevant event type, see docs below
// print out any data received for the given event type
console.log(" -- got data: " + JSON.stringify(data));
});
Event Type: listed
Channel: inventory_changes