Sanic is a new web framework for Python that is based on async in Python
3.5.   I claims to be much faster than node.js. I speculate that the
movement to node.js is caused by the fact that node was, before 3.5,  maybe
the fastest web backend.

Can web2py use the same thing that sanic uses and, therefore be an addition
to Python frameworks that beat node?

David Jensen
On Jul 28, 2018 4:44 PM, <[email protected]> wrote:

> [email protected]
> <https://groups.google.com/forum/?utm_source=digest&utm_medium=email#!forum/web2py/topics>
>  Google
> Groups
> <https://groups.google.com/forum/?utm_source=digest&utm_medium=email/#!overview>
> <https://groups.google.com/forum/?utm_source=digest&utm_medium=email/#!overview>
> Topic digest
> View all topics
> <https://groups.google.com/forum/?utm_source=digest&utm_medium=email#!forum/web2py/topics>
>
>    - How to go publick with web2py <#m_4565822124073036224_group_thread_0>
>    - 8 Updates
>    - ToolTip feature in HTML Table <#m_4565822124073036224_group_thread_1>
>    - 3 Updates
>
> How to go publick with web2py
> <http://groups.google.com/group/web2py/t/92b8e65a4498d605?utm_source=digest&utm_medium=email>
> Stavros Boletis <[email protected]>: Jul 28 03:28PM +0300
>
> i need one more answer..How i can do it on windows?? cause every answer i
> find is for ubu or linux enviroemnt. When i execute web2py.exe i choose
> public(0.0.0.0) and the port and it should work?? or i need to do smthng
> extra ??
>
> Yoel Benitez Fonseca <[email protected]>: Jul 28 09:03AM -0400
>
> no, you need nothing extra, checkout you antivirus and windows
> firewall those 2 can't refuse your inbound connections.
> El sáb., 28 jul. 2018 a las 8:28, Stavros Boletis
>
> --
> Msc. Yoel Benítez Fonseca
> Stauros Mpol <[email protected]>: Jul 28 04:19PM +0300
>
> Thanks again for you help!!
>
> Στις Σάβ, 28 Ιουλ 2018, 16:03 ο χρήστης Yoel Benitez Fonseca <
> Stauros Mpol <[email protected]>: Jul 28 04:26PM +0300
>
> I do this but i cant accses it and the ip is 127.0.0.1 as you see.. gonna
> check my firewall and my anti virus ..
>
> Στις Σάβ, 28 Ιουλ 2018, 16:19 ο χρήστης Stauros Mpol <
> [email protected]>
> έγραψε:
>
> sandeep patel <[email protected]>: Jul 28 07:19PM +0530
>
> @Stauros
> From where you are an executing your app?.in you local computer or from any
> cloud-based virtual environment like (heroku, amazon, google cloud).
>
> Stauros Mpol <[email protected]>: Jul 28 04:50PM +0300
>
> From my computer
>
> Στις Σάβ, 28 Ιουλ 2018, 16:49 ο χρήστης sandeep patel <
> Anthony <[email protected]>: Jul 28 08:33AM -0700
>
> On Saturday, July 28, 2018 at 9:50:25 AM UTC-4, Stauros Mpol wrote:
> >> wrote:
>
> >>> I do this but i cant accses it and the ip is 127.0.0.1 as you see..
> >>> gonna check my firewall and my anti virus ..
>
> When you start web2py, the console will always display:
>
> please visit:
> http://127.0.0.1/
>
> But if you started it with "-i 0.0.0.0", it will be accessible from any
> device on your internal network. To access the app from devices on your
> internal network, you will need to know the internal IP address of your
> computer, which will have been assigned by your router. It will probably
> be
> something like 192.168.0.xxx or 10.0.0.xxx.
>
> Are you trying to make the app accessible publicly from the internet as
> well (i.e., from devices outside your local network)? In that case, you
> will probably need to configure your router to accept incoming connections
> over port 80 (or 8000 or some other port if you prefer), and tell it to
> route such incoming connections to the internal IP address of your
> computer.
>
> Is this just for testing purposes, or are you expecting to host a public
> website from your computer?
>
> Anthony
> Stauros Mpol <[email protected]>: Jul 28 06:35PM +0300
>
> Its just for testing purpose.Thanks a lot for your answer i will test it
> soon..😁
>
> Στις Σάβ, 28 Ιουλ 2018, 18:33 ο χρήστης Anthony <[email protected]>
> έγραψε:
>
> Back to top <#m_4565822124073036224_digest_top>
> ToolTip feature in HTML Table
> <http://groups.google.com/group/web2py/t/73c0fd202d2bf603?utm_source=digest&utm_medium=email>
> icodk <[email protected]>: Jul 27 03:36PM -0700
>
> <https://lh3.googleusercontent.com/-L1R3-A2G1NQ/W1udBfVY_LI/AAAAAAAAAk4/
> 8yOpMKXyBs4FFKI2r3zrK8jsuKALxS4JACLcBGAs/s1600/tooltip.png>
> Hi Gaurav Shet
> Here is a rather complex example for a tooltip on a field in a grid that
> shows a warning if an email is missing and explanation as in the attached
> image. It also has a link that takes you to an edit form where you can
> edit
> the customer and enter an email.
> hope it can get you started
> attrib_no_email= {'_alt': '0', '_class': 'std-tooltip', '_data-placement':
> 'right', '_data-toggle': 'tooltip', '_title': T('mail address
> missing\nClick to add mail address')}
>
> db.customer.email1.represent=lambda val,row: val if val else
> A(IMG(_src=URL('static', 'images/warning.png'),
> **attrib_no_email),_href=URL('shop', 'customer_list', args=['customer',
> 'edit', 'customer', row.id], user_signature=True))
> ...
>
>
> Css in the vew:
>
> .std-tooltip + .tooltip > .tooltip-inner {
> background-color: #000000 ;
> color: #FFFFFF;
> border: 2px solid green;
> padding: 10px;
> border-radius: 8px;
> font-size: 12px;
> }
>
>
>
>
> On Friday, July 27, 2018 at 4:33:45 PM UTC+2, GS wrote:
> Dave S <[email protected]>: Jul 27 04:55PM -0700
>
> On Friday, July 27, 2018 at 7:33:45 AM UTC-7, GS wrote:
> > I am not sure how can I achieve that for Web2py code.
>
> > Please refer to the attached screenshot.
>
> > Kindly suggest.
>
> You've got good answers about tooltips from others, so I'll only note that
> I kinda do tooltips for images by specifying the alt text (showing up as a
> tooltip doesn't occur in all browsers).
>
> But if you need to create the tooltip from data that isn't already loaded
> (icodk has hizzen already), then you need to use javascript and ajax calls
> For the web2py side, look at
> <http://web2py.com/books/default/chapter/29/11/jquery-and-ajax>
> (there is some hints about the javascript there, too).
>
> If we haven't answered your question, please give us more information ...
> workflow, dataflow, steps you expect the user to take, etc.
>
> /dps
>
>
>
> Gaurav Shet <[email protected]>: Jul 28 01:04PM +0530
>
> Thank you Guys. The solution from Val K was a quick fix for me.
> Appreciate the help, Thanks Dave and ICODK for providing iunputs.
>
>
> --
> --
> Thanks & Regards
> Gaurav Shet
> Back to top <#m_4565822124073036224_digest_top>
> You received this digest because you're subscribed to updates for this
> group. You can change your settings on the group membership page
> <https://groups.google.com/forum/?utm_source=digest&utm_medium=email#!forum/web2py/join>
> .
> To unsubscribe from this group and stop receiving emails from it send an
> email to [email protected].
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to