--
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+un...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
$ uname
Darwin
$ python -V
Python 3.7.2git clone https://github.com/web2py/web3py
cd web3py
pip install -r requirements.txt
python web3py.py applications/
open http://localhost:8000/todo/indexTraceback (most recent call last):
File "/Users/sugizo/Downloads/learn/web3py/web3py.py", line 149, in load
self.data = jwt.decode(enc_data, self.secret, algorithms=[self.algorithm])
File "/Users/sugizo/miniconda3/envs/python3_test/lib/python3.7/site-packages/jwt/api_jwt.py", line 84, in decode
payload, _, _, _ = self._load(jwt)
File "/Users/sugizo/miniconda3/envs/python3_test/lib/python3.7/site-packages/jwt/api_jws.py", line 177, in _load
binary_type))
jwt.exceptions.DecodeError: Invalid token type. Token must be a <class 'bytes'>
- sqlform and grid are one of the key points for web2py. It's one of the main reasons to use it instead of other frameworks as development is really quick. However I think nowadays a backport from web2py is not a good idea. We should provide something optional based only on vue.js. As you say, we can do it better.
- auth is not as important in my experience. It has never been the reason to pick web2py and there are other ways to do it.
My thought exactly.
Sorry, the requested URL 'http://localhost:8000/todoo' caused an error:
Not found: '/todoo'
127.0.0.1 - - [31/Mar/2019 09:47:52] "GET /todoo HTTP/1.1" 404 730
So far looks good, but I would prefer that the application include (or import) the framework instead of the framework include the application. With the first one, pip based deployments and CI/CD will be a lot easier.
I have being playing with bottle a lot recently, so if there is some web3py features list or guidelines, maybe I can give a hand.
Greetings.
on github :
- request, response objects are from bottle (https://bottlepy.org/docs/dev/)
what is different web2py and bottle in terms of request and response ? plus minus between it?
- unlike web2py, web3py does not use custom import or eval
is custom import is same like import from modules folders in web2py app ?
is eval same like in python ?
- dynamic module reloading is only partially supported
then what about dynamic module reload in this term ?
To unsubscribe from this group and stop receiving emails from it, send an email to web2py+unsubscribe@googlegroups.com.
Backporting SQLFORM, grid and Auth, should not be that complicated, although I think we can do better.
--
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+un...@googlegroups.com.
I know this comes up once in a while but ...what do you think?It is very preliminary but I will have an admin soon.
Backporting SQLFORM, grid and Auth, should not be that complicated, although I think we can do better.
Massimo
To unsubscribe from this group and stop receiving emails from it, send an email to web2py+unsubscribe@googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to web2py+un...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
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+un...@googlegroups.com.
from gluon.custom_import import track_changes; track_changes(True)
@AnthonyI was asking about reimport not reload.Does track_changes appy to both?