[web2py] Re: py4web - javascript references in html files

2020-01-20 Thread Massimo Di Pierro
Good question. Not sure there is a way that is best.
You are free to use URL everywhere but often it is not-necessary, 
specifically because all static files have the same prefix. It is therefore 
faster and more concise to use the above syntax. 


On Sunday, 19 January 2020 09:35:27 UTC-8, Jim S wrote:
>
> I'm wondering why in py4web you're not using the URL function to specify 
> the location of .js files.  This can be seen in layout.html and auth.html.  
> I also see that at the top of layout.html that you define:
>
> 
>
> I recall this being the best way to define them in web2py.
>
> Comments?
>
> -Jim
>

-- 
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 web2py+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/web2py/1eb242f5-3406-40f3-a41a-2cde6dc4b5f6%40googlegroups.com.


Re: [web2py] py4web - using session object in a template

2020-01-20 Thread Massimo Di Pierro
I would recommend you do something like this

@action('index')
@action.uses('index.html', session)
def index():
...
return dict(session=dict(session))

This will pass a shallow copy of the session to the view. You will be free 
to read from the session in index.html but you should not write it.



On Friday, 17 January 2020 12:34:43 UTC-8, Jim S wrote:
>
> I should re-state my problem.  With web2py I wasn't using session, but 
> response.  I added a couple of attributes that always got added to the 
> response object.  Not sure how to mimic that in py4web, or would I even 
> want to?
>
> -Jim
>
> On Fri, Jan 17, 2020 at 11:16 AM Jim S  wrote:
>
>> Hi
>>
>> I'm trying to pass a session variable to layout.html but it tells me that 
>> session is not available:
>>
>> NameError: name 'session' is not defined
>>
>> I use this technique in web2py to send a page title to layout.html 
>> without having to pass it in the returned dict from the controller.
>>
>> Obviously I'm being lazy using this technique.  Will this work with 
>> py4web or is it best for me to pass in explicitly in each controller?
>>
>> -Jim
>>
>> -- 
>> 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 a topic in the 
>> Google Groups "web2py-users" group.
>> To unsubscribe from this topic, visit 
>> https://groups.google.com/d/topic/web2py/cgg6M7B_wkI/unsubscribe.
>> To unsubscribe from this group and all its topics, send an email to 
>> web2py+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/web2py/8848279b-e889-4b9b-90a6-664813a47b89%40googlegroups.com
>>  
>> 
>> .
>>
>

-- 
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 web2py+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/web2py/06f7bcfe-4a9f-42a0-a5ec-a686edf6513e%40googlegroups.com.


[web2py] Re: Web2py or py4web for a brand new project

2020-01-20 Thread Massimo Di Pierro
You should use the py4web documentation. Also please report any error you 
find.


On Tuesday, 14 January 2020 22:03:59 UTC-8, Andrew Rogers wrote:
>
> Hi
>
> Is  the documentation for web2py still mostly relevant for py4web?
>
> Thanks
> Andrew
>
> On Thursday, 12 December 2019 20:47:05 UTC+6:30, icodk wrote:
>>
>> Should I use Web2py or py4web for a brand new project ?
>> What is still missing from py4web  ?
>> Can I debug with pycharm ?
>> I need all the great authentication I got with web2py : Registration,pass 
>> change, groups mail, etc.
>> smartgreed will be very nice to have or similar.
>> Stability ?
>> Can it be deployed with nginx  and pg ?
>> Thanks
>>
>>

-- 
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 web2py+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/web2py/d6c0a99a-42c9-4b04-91ab-56c8ac72b8c4%40googlegroups.com.


[web2py] Re: Creating web apps with Web2py in Azure Web Apps

2020-01-20 Thread Prasad telkikar
Hi Nbush,

I tried all the steps mentioned here, but for me, these steps are not 
working even for a given example.
SO link which explains my attempt and steps: 
https://stackoverflow.com/q/59749220/6299857

Can you please explain what I am missing over here or working example of 
web2py deployment on azure app service.

On Friday, 13 November 2015 02:39:36 UTC+5:30, Nbush wrote:
>
> Hi all,
>
> just want to share web2py setup Azure Web Apps.
>
> Based on 
> https://azure.microsoft.com/en-us/documentation/articles/web-sites-python-configure/
>
> 1. Create web app on Azure Portal
> 2. Fork a repo web2py (github)
> 3.* Add 4 files  to own github repository (web2py/)*
> 4. Configure continuous deployment using github 
> https://azure.microsoft.com/en-us/documentation/articles/web-sites-publish-source-control/
>  
> look *Deploy files from a repository site like BitBucket, CodePlex, 
> Dropbox, GitHub, or Mercurial. *
>
>> *Azure creates an association with the selected repository, and pulls in 
>> the files from the specified branch. After this process completes, the 
>> Deployment section of your web app's blade will show an Active Deployment 
>> message that indicates deployment has succeeded.*
>
> 5. Run web app on on Azure Portal
>
> Admin password:
> 1.on local copy web2py - save the password in the parameters_8000.py file
> 2.rename parameters_8000.py parameters_443.py
> 3.copy parameters_443.py via FTP (link in Azure Portal) in site/wwwroot
>
> Example: 
> https://nbush2py.azurewebsites.net
> https://github.com/Nbushkov/web2py
>
>
>

-- 
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 web2py+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/web2py/4636e972-6262-4e8e-bbb0-6d9645f4225e%40googlegroups.com.


Re: [web2py] py4web questions

2020-01-20 Thread Bruno Sarverry
Hello John! did you solve it? I have the same problem.

El jueves, 26 de septiembre de 2019, 6:05:52 (UTC-3), John Bannister 
escribió:
>
> Hi  Massimo, 
>
> Have one more question which may or may not be related. 
>
> I have multiple controllers all including the same layout.html. In the 
> layout.html the navbar should display the user logged in (or not). I see in 
> the _scaffold app the login menu is created using globals().get('user') 
> which works fine if we are returning the user=auth.get_user() to the 
> template.
>
> Question is do I need to return user=auth.get_user() from each action or 
> is there some way of accessing the user/login information from the 
> templates and in particular layout.html? 
>
> And one more which is how to deal with images in py4web? I have tried to 
> upload an image using field of type upload using standard Form. When I look 
> at the record again or try to edit it says no image selected. Guess there 
> is the equivalent of download missing somewhere. Any help appreciated.
>
> John 
> -Original Message- 
> From: web...@googlegroups.com  [mailto:
> web...@googlegroups.com ] On Behalf Of Massimo Di Pierro 
> Sent: 26 September 2019 09:02 
> To: web2py-users 
> Subject: [web2py] py4web questions 
>
> Good question. I will try post a tutorial in the next few days. But the 
> idea is you associate tags to a user and then give permissions based on the 
> tags. The tag API is very simple so I recommend you meanwhile look at the 
> source. 
>
> -- 
> 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 web...@googlegroups.com . 
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/web2py/b6009627-7b67-405f-a98e-1dbcb5dbb1e2%40googlegroups.com.
>  
>
>
>

-- 
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 web2py+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/web2py/3dcd57f6-5e68-4af3-b207-6a0e95f235a1%40googlegroups.com.


[web2py] Web2py - How would I monitor an existing running script?

2020-01-20 Thread Simon Dreyer
Hi Folks, I have an existing python application that reads data from 
industrial controllers and publishes it to a message queue. The application 
is currently headless and logs errors and events to a log file. I would 
like to add a web interface to the application so that I can log into the 
app at any time and check the status while it is running. All the web2py 
examples that I have seen seem to load/run a python script when the user 
invokes a view, how would I invoke a connection to a script that is already 
running please?

-- 
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 web2py+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/web2py/58c7a24b-606b-4ad8-9905-47c6eb9c13f7%40googlegroups.com.


Re: [web2py] No driver of supported ones ('psycopg2',) is available

2020-01-20 Thread Lovedie JC
I had to copy it, the folder to Web2py modules folder for it to work. You
can also copy to Web2py site packages folder.
Regards

On Mon, Jan 20, 2020, 20:53 'Annet' via web2py-users <
web2py@googlegroups.com> wrote:

> Last week I upgraded my development environment from Mac OS X Mavericks -
> Python 2.7 - Web2py 2.14.5 to
> Mac OS X Catalina - Python 2.7 - Web2py 2.18.5, since then I have the
> following issue:
>
>
>  Failure to connect, tried 5 times:
> Traceback (most recent call last): File
> "/web2py/gluon/packages/dal/pydal/base.py", line 457, in __init__
> self._adapter = adapter(**kwargs) File
> "/web2py/gluon/packages/dal/pydal/adapters/postgres.py", line 27, in
> __call__ return AdapterMeta.__call__(cls, *args, **kwargs) File
> "/web2py/gluon/packages/dal/pydal/adapters/__init__.py", line 39, in
> __call__ obj = super(AdapterMeta, cls).__call__(*args, **kwargs) File
> "/web2py/gluon/packages/dal/pydal/adapters/postgres.py", line 54, in
> __init__ driver_args, adapter_args, do_connect, after_connection) File
> "/web2py/gluon/packages/dal/pydal/adapters/base.py", line 369, in __init__
> super(SQLAdapter, self).__init__(*args, **kwargs) File
> "/web2py/gluon/packages/dal/pydal/adapters/base.py", line 50, in __init__
> self.find_driver() File
> "/web2py/gluon/packages/dal/pydal/adapters/base.py", line 101, in
> find_driver str(self.drivers)) RuntimeError: No driver of supported ones
> ('psycopg2',) is available
>
>
> I have psycopg2 installed in the python directory
> /Library/Python/2.7/site-packages/ that is not where web2py expects it to
> be, is there a way to solve this issue?
>
>
> Kind regards,
>
> Annet
>
> --
> 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 web2py+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/web2py/cd4dd9e1-c31e-4f7f-818c-230a838d16dc%40googlegroups.com
> 
> .
>

-- 
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 web2py+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/web2py/CAAcHJF_u%3DF6gSUqz-0YFMaRx69_gBpOgtyNCQp5dXNBU16WKNg%40mail.gmail.com.


[web2py] No driver of supported ones ('psycopg2',) is available

2020-01-20 Thread 'Annet' via web2py-users
Last week I upgraded my development environment from Mac OS X Mavericks - 
Python 2.7 - Web2py 2.14.5 to
Mac OS X Catalina - Python 2.7 - Web2py 2.18.5, since then I have the 
following issue:


 Failure to connect, tried 5 times: 
Traceback (most recent call last): File 
"/web2py/gluon/packages/dal/pydal/base.py", line 457, in __init__ 
self._adapter = adapter(**kwargs) File 
"/web2py/gluon/packages/dal/pydal/adapters/postgres.py", line 27, in 
__call__ return AdapterMeta.__call__(cls, *args, **kwargs) File 
"/web2py/gluon/packages/dal/pydal/adapters/__init__.py", line 39, in 
__call__ obj = super(AdapterMeta, cls).__call__(*args, **kwargs) File 
"/web2py/gluon/packages/dal/pydal/adapters/postgres.py", line 54, in 
__init__ driver_args, adapter_args, do_connect, after_connection) File 
"/web2py/gluon/packages/dal/pydal/adapters/base.py", line 369, in __init__ 
super(SQLAdapter, self).__init__(*args, **kwargs) File 
"/web2py/gluon/packages/dal/pydal/adapters/base.py", line 50, in __init__ 
self.find_driver() File 
"/web2py/gluon/packages/dal/pydal/adapters/base.py", line 101, in 
find_driver str(self.drivers)) RuntimeError: No driver of supported ones 
('psycopg2',) is available 


I have psycopg2 installed in the python directory 
/Library/Python/2.7/site-packages/ that is not where web2py expects it to 
be, is there a way to solve this issue?


Kind regards,

Annet

-- 
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 web2py+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/web2py/cd4dd9e1-c31e-4f7f-818c-230a838d16dc%40googlegroups.com.


[web2py] web2py and reverse proxy. How to expose a single application behind a hostname

2020-01-20 Thread Manuele Pesenti

Hi!

For our deploy installation I followed successfully the procedures in 
documentation so now I have my server exposing the web2py root, now I 
tried to configure a second host name using an apache reverse proxy 
configuration to serve directly a specific application, is it possible?


Let's say my application is reachable under apps.mycompany.com/myapp and 
now I want to setup the virtualhost myapp.mycompany.com as a reverse 
proxy to direcly serve the app. I've used this apache proxy configuration:



  ServerName myapp.mycompany.com
  SSLProxyEngine On
  ProxyRequests Off
  SSLProxyCheckPeerName off
  
  Order Deny,Allow
  Allow from all
  

  ProxyPass "/" "https:///myapp/"
  ProxyPassReverse "/" "https:///myapp/"

  SSLCertificateFile 
/etc/letsencrypt/live/analytics.colouree.com/fullchain.pem
  SSLCertificateKeyFile 
/etc/letsencrypt/live/analytics.colouree.com/privkey.pem


  CustomLog /var/log/apache2/ssl-analytics-access.log common
  ErrorLog /var/log/apache2/analytics-error.log



The problem is that every link included in the page contains even the 
application name such as:


https://analytics.colouree.com/welcome/static/css/bootstrap.min.css and 
so on.


Is there a possible way to fix it with some framework configuration?

Thank you very much.

Best regards

    Manuele

--
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 web2py+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/web2py/42c0d7e3-bf6c-e80b-d87c-779c71f0f3b6%40gmail.com.


Re: [web2py] py4web - auto-reload

2020-01-20 Thread Jim Steil
Thank you very much.  I will look into this.

What I was hoping for was an auto-reload the way Flask does it.  If you're
in a dev environment it auto-reloads for you, no extra work on my part.

But, I'll check this out, it should save me quite a few extra keystrokes

-Jim

On Mon, Jan 20, 2020 at 10:02 AM António Ramos  wrote:

> in 2014 i did this "live reload thing" with web2py
> https://www.youtube.com/watch?v=zt5gnKk40Zw
>
> Em seg., 20 de jan. de 2020 às 15:57, António Ramos 
> escreveu:
>
>> I bet it can be done with  https://gruntjs.com/   or  https://gulpjs.com/   
>> or
>> the new kid  https://parceljs.org/
>>
>>
>>
>> Em dom., 19 de jan. de 2020 às 17:40, Jim S 
>> escreveu:
>>
>>> Is there a way to get py4web to auto-reload when the source for an app
>>> has changed?
>>>
>>> -Jim
>>>
>>> --
>>> 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 web2py+unsubscr...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/web2py/fd7d32e7-d82d-4bb5-ad63-7ad4d3f0b4c0%40googlegroups.com
>>> 
>>> .
>>>
>> --
> 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 a topic in the
> Google Groups "web2py-users" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/web2py/L9WQj5MaM-c/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> web2py+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/web2py/CAEM0BxOuXJZ4btQFYQmN%3D1F3dZcqOOLKnCmJVPdirqdMW6dV-Q%40mail.gmail.com
> 
> .
>

-- 
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 web2py+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/web2py/CAERBpoBV9D1%2BCp9Ut3twJ-CC2S6F3xxN17ZU%2BUW_kbrn4rmXbQ%40mail.gmail.com.


Re: [web2py] py4web - auto-reload

2020-01-20 Thread António Ramos
in 2014 i did this "live reload thing" with web2py
https://www.youtube.com/watch?v=zt5gnKk40Zw

Em seg., 20 de jan. de 2020 às 15:57, António Ramos 
escreveu:

> I bet it can be done with  https://gruntjs.com/   or  https://gulpjs.com/   or
> the new kid  https://parceljs.org/
>
>
>
> Em dom., 19 de jan. de 2020 às 17:40, Jim S 
> escreveu:
>
>> Is there a way to get py4web to auto-reload when the source for an app
>> has changed?
>>
>> -Jim
>>
>> --
>> 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 web2py+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/web2py/fd7d32e7-d82d-4bb5-ad63-7ad4d3f0b4c0%40googlegroups.com
>> 
>> .
>>
>

-- 
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 web2py+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/web2py/CAEM0BxOuXJZ4btQFYQmN%3D1F3dZcqOOLKnCmJVPdirqdMW6dV-Q%40mail.gmail.com.


Re: [web2py] py4web - auto-reload

2020-01-20 Thread António Ramos
I bet it can be done with  https://gruntjs.com/   or  https://gulpjs.com/   or
the new kid  https://parceljs.org/



Em dom., 19 de jan. de 2020 às 17:40, Jim S  escreveu:

> Is there a way to get py4web to auto-reload when the source for an app has
> changed?
>
> -Jim
>
> --
> 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 web2py+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/web2py/fd7d32e7-d82d-4bb5-ad63-7ad4d3f0b4c0%40googlegroups.com
> 
> .
>

-- 
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 web2py+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/web2py/CAEM0BxMnXjVccNzURAwfd90f7j0QyduC72b4KH7eDqXcJG-fgw%40mail.gmail.com.


[web2py] Py4web: ¿Practical example step by step?

2020-01-20 Thread Yuver Parra

Good morning and thanks in advance for sharing your knowledge in this group.
Do any of you have a practical example where you can follow step by step 
learning from the installation of py4web to the setting up of a site?

Thanks for the reply.

-- 
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 web2py+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/web2py/1b79e789-4dd0-4e42-8274-1e934edba087%40googlegroups.com.