Giter Site home page Giter Site logo

Getting data in a variable about pysher HOT 3 CLOSED

deepbrook avatar deepbrook commented on August 14, 2024
Getting data in a variable

from pysher.

Comments (3)

deepbrook avatar deepbrook commented on August 14, 2024 1

Hey @robinCantelli ,
In order to work with the data I'd suggest storing it in a variable in your my_func method.

import pysher
import sys
import time


import logging
root = logging.getLogger()
root.setLevel(logging.INFO)
ch = logging.StreamHandler(sys.stdout)
root.addHandler(ch)

pusher = pysher.Pusher('de504dc5763aeef9ff52')

# Store all messages in a list to loop over later
data = []

def  my_func(*args, **kwargs):
    data.append([args, kwargs])


def connect_handler(data):
    channel = pusher.subscribe('order_book')
    channel.bind('data', my_func)

pusher.connection.bind('pusher:connection_established', connect_handler)
pusher.connect()

while True:
	time.sleep(1)

*args and **kwargs are safety implementations in order to work with whatever pusher channel you subscribe to - if you know you'll only have a single positional argument, defining my_func as follows is enough too:

def my_func(message):
    print(message)

Hope that helps.

from pysher.

robinCantelli avatar robinCantelli commented on August 14, 2024

Thank you so much!!!!

You can't imagine how much this is helping me!!!
Do you now how to switch of that it is printed in my console all the time? I'd like to see some other things on my console during the program is running.

Best

Robin

from pysher.

deepbrook avatar deepbrook commented on August 14, 2024

Sure! If you omit the logger definition, it should not give you any log messages - only stdout (i. e. print() calls) should be seen then.

from pysher.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.