[web2py] Re: How to access class variable in web2py like we do in flask?

2016-08-16 Thread Ron Chatterjee
Yes Massimo, I am working on it. I want to put a wrapper for webrtc on the top and use this to create the channel. On Tuesday, August 16, 2016 at 7:56:59 PM UTC-4, Massimo Di Pierro wrote: > > can't you just use this? >

[web2py] Re: How to access class variable in web2py like we do in flask?

2016-08-16 Thread Massimo Di Pierro
can't you just use this? https://github.com/web2py/web2py/blob/master/gluon/contrib/websocket_messaging.py It does the same thing and ships with web2py. On Tuesday, 9 August 2016 16:02:58 UTC-5, Ron Chatterjee wrote: > > I tried to define those classes in db.py to make them global and >

[web2py] Re: How to access class variable in web2py like we do in flask?

2016-08-09 Thread Ron Chatterjee
I tried to define those classes in db.py to make them global and accessible. But that didn't work. Not sure if I see any solution to your answer. Am I missing any hint? lol On Tuesday, August 9, 2016 at 4:59:37 PM UTC-4, Niphlod wrote: > > The solution lies in knowing web2py's unique execution

[web2py] Re: How to access class variable in web2py like we do in flask?

2016-08-09 Thread Niphlod
The solution lies in knowing web2py's unique execution model (which is BY FAR different from Flask's) AND reading the source code. When faced with the same problem years ago, finding the solution (was already there, as it is now) made me a better coder, so I won't - on purpose - propose a cut