[web2py] Re: wev2py 2.22.1 is out

2022-02-13 Thread Massimo Di Pierro
I am very confused by this. I cannot find any change that could cause this change of behavior. Let me summarize to make sure I am understanding. You observed a change of behavior between 2.21.1 and 2.22 1. The change of behavior only manifests when you declare a default app in routers.py The

[web2py] Re: wev2py 2.22.1 is out

2022-02-13 Thread Massimo Di Pierro
I rerun the build script. Can you please confirm it is fixed for you? On Saturday, 12 February 2022 at 12:02:48 UTC-8 perakoj...@gmail.com wrote: > Hi Massimo, > > As already pointed out, when I try to download source code from this > addres

[web2py] update database directly from REST API using sqlalchemy and pandas

2022-02-13 Thread 黄祥
*document/api.py* def test(): import pandas as pd from sqlalchemy import create_engine data = {'Name': ['Alex', 'Ronald', 'Jane'], 'Age': [10, 18, 33] } df = pd.DataFrame(data) table = 'stifix' #engine = create_engine('sqlite://', echo = False) engine =