[FAILED] loading superheroes
Traceback (most recent call last):
File "/Users/sugizo/learn/python/web3py/web3py/core.py", line 577, in import_apps
reloader.reload(module)
File "/Users/sugizo/miniconda3/envs/python3_test/lib/python3.7/site-packages/reloader.py", line 147, in reload
_reload(m, set())
File "/Users/sugizo/miniconda3/envs/python3_test/lib/python3.7/site-packages/reloader.py", line 135, in _reload
imp.reload(m)
File "/Users/sugizo/miniconda3/envs/python3_test/lib/python3.7/imp.py", line 314, in reload
return importlib.reload(module)
File "/Users/sugizo/miniconda3/envs/python3_test/lib/python3.7/importlib/__init__.py", line 169, in reload
_bootstrap._exec(spec, module)
File "<frozen importlib._bootstrap>", line 630, in _exec
File "<frozen importlib._bootstrap_external>", line 728, in exec_module
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
File "/Users/sugizo/learn/python/web3py/apps/superheroes/__init__.py", line 28, in <module>
db.person.insert(name='Clark Kent', job='Journalist')
File "/Users/sugizo/miniconda3/envs/python3_test/lib/python3.7/site-packages/pydal/objects.py", line 762, in insert
ret = self._db._adapter.insert(self, row.op_values())
File "/Users/sugizo/miniconda3/envs/python3_test/lib/python3.7/site-packages/pydal/adapters/base.py", line 487, in insert
raise e
File "/Users/sugizo/miniconda3/envs/python3_test/lib/python3.7/site-packages/pydal/adapters/base.py", line 482, in insert
self.execute(query)
File "/Users/sugizo/miniconda3/envs/python3_test/lib/python3.7/site-packages/pydal/adapters/__init__.py", line 67, in wrap
return f(*args, **kwargs)
File "/Users/sugizo/miniconda3/envs/python3_test/lib/python3.7/site-packages/pydal/adapters/base.py", line 413, in execute
rv = self.cursor.execute(command, *args[1:], **kwargs)
sqlite3.OperationalError: database is locked
def helloworld(): return dict(name=request.forms.get('name', 'visitor'))
def helloworld(): return dict(name=request.forms.get('name', 'visitorsadf'))
Hi Massimo,
I have tried that but it has no effect. It seems to be doing something for a while but the only way I can get changes to appear is to restart the server.
Basically what I did was to copy and rename the helloworld action a few times so helloworld1 …….helloworld7 (all in same controller.py) giving appropriate return messages.
If I reload using the dashboard button I still only see helloworld (the rest give me 404 errors) but if I restart the server I can access myapp/helloworld1 to myapp/helloworld7.
Also it seems that the reload apps button is reloading all the apps in the applications directory. Is this intentional or is there a way to just reload the app currently being developed?
BR
John
--
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.
To view this discussion on the web visit https://groups.google.com/d/msgid/web2py/c33707df-ec41-4574-a6a6-54c2905ff10e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
To unsubscribe from this group and stop receiving emails from it, send an email to web2py+unsubscribe@googlegroups.com.
Hi Massimo,
I have downloaded latest web3py and same thing is happening. I can see in the console that it is reloading all the apps but for me updates are not happening until I restart the server.
I am running web3py in a python3 venv on windows/linux (Ubuntu 18) python 3.6.
Myapp/controller.py
from web3py import action, request, redirect, abort
from . models import db
@action('helloworld') # exposes http://127.0.0.1:8000/myapp/helloworld
@action.uses(db, 'helloworld.html')
def helloworld(): return dict(name=request.forms.get('name', 'visitor'))
@action('helloworld1') # exposes http://127.0.0.1:8000/myapp/helloworld1
@action.uses(db, 'helloworld.html')
def helloworld1(): return dict(name=' 1 '+ request.forms.get('name', 'visitor'))
@action('helloworld2') # exposes http://127.0.0.1:8000/myapp/helloworld2
@action.uses(db, 'helloworld.html')
def helloworld2(): return dict(name=' 2 ' +request.forms.get('name', 'visitor'))
@action('helloworld3') # exposes http://127.0.0.1:8000/myapp/helloworld3
@action.uses(db, 'helloworld.html')
def helloworld3(): return dict(name=' 3 ' + request.forms.get('name', 'visitor'))
After reload apps only helloworld accessible. After server restart all are.
BR
John
To unsubscribe from this group and stop receiving emails from it, send an email to web2py+un...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/web2py/c33707df-ec41-4574-a6a6-54c2905ff10e%40googlegroups.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.
To view this discussion on the web visit https://groups.google.com/d/msgid/web2py/84b51eaa-209e-45fa-88a3-d4f986f7a441%40googlegroups.com.
@action('helloworld') # exposes http://127.0.0.1:8000/myapp/helloworld
@action.uses(db, 'helloworld.html')
def helloworld(): return dict(name=request.forms.get('name', 'visitoras'))
@action('helloworld1') # exposes http://127.0.0.1:8000/myapp/helloworld
@action.uses(db, 'helloworld.html')
def helloworld1(): return dict(name=request.forms.get('name', 'visitorasd'))
rm -rf web3py
git clone https://github.com/web2py/web3py
cd web3py
source activate python3_test
pip install -U -r requirements.txt
./web3py-start apps
Editing apps and reloading forks for me. Please try again and let's try figure out why does not work for you.
Does it print this when you press [reload]?
$ ./web3py-start apps
_______ ____________ ____ ______ __
| ____/ / / ____/ __ |/___ \/ __ \ \/ /
| | / / /_ / /_/ /___/ / /_/ /\ /
| | /| / / __/ / __ //__ / ____/ / /
| |/ |/ / /___/ /_/ /___/ / / ____/ /
|___/|_/_____/_____/_____/_/ /_____/
It is still experimental...
Dashboard is at: http://127.0.0.1:8000/_dashboard
[OK] loaded _dashboard
[OK] loaded _scaffold
[OK] loaded examples
[OK] loaded myapp
[OK] loaded superheroes
[OK] loaded todo
Bottle v0.12.16 server starting up (using TornadoServer())...
Listening on http://127.0.0.1:8000/
Hit Ctrl-C to quit.
WARNING:tornado.access:404 GET /myapp/static/favicon.ico (127.0.0.1) 2.32ms
WARNING:tornado.access:404 GET /examples/static/favicon.ico (127.0.0.1) 2.35ms
WARNING:tornado.access:404 GET /todo/static/favicon.ico (127.0.0.1) 2.07ms
WARNING:tornado.access:404 GET /_scaffold/static/favicon.ico (127.0.0.1) 1.89ms
WARNING:tornado.access:404 GET /superheroes/static/favicon.ico (127.0.0.1) 1.65ms
WARNING:tornado.access:404 GET /favicon.ico (127.0.0.1) 1.57ms
[OK] reloaded _dashboard
[OK] reloaded _scaffold
[OK] reloaded examples
[OK] reloaded myapp
[OK] reloaded superheroes
[OK] reloaded todo
but
- 'routes for <my_app>'
- edit or add new function on web apps
is not work
Also, web3py uses this:The docs have an example. Does this module work for you?
I am getting the below reload console output when I fire up tornado as well as when I hit the reload all button on both windows and Ubuntu installations.
BR
John
From: web...@googlegroups.com [mailto:web...@googlegroups.com] On Behalf Of Massimo Di Pierro
Sent: 18 May 2019 07:20
To: web2py-users
Subject: Re: [web2py] Re: Web3py
Also, web3py uses this:
--
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.
To view this discussion on the web visit https://groups.google.com/d/msgid/web2py/456b6c96-fac7-456f-bcdb-8df87464af31%40googlegroups.com.
Hi Stifan,
What OS are you testing on?
BR
John
From: web...@googlegroups.com [mailto:web...@googlegroups.com] On Behalf Of ??
Sent: 18 May 2019 08:14
To: web2py-users
Subject: Re: [web2py] Re: Web3py
Also, web3py uses this:
--
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.
To view this discussion on the web visit https://groups.google.com/d/msgid/web2py/46e203b8-b11d-4abd-96b9-99a26ef2b802%40googlegroups.com.
bottle.run(server='tornado', host=host, port=int(port), reloader=True)
bottle.run(host=host, port=int(port), reloader=True)
bottle.run(server='gevent', host=host, port=int(port), reloader=True)
$ ./web3py-start apps
Bottle v0.12.16 server starting up (using GeventServer())...
What OS are you testing on?
bottle.run(server='gunicorn', host=host, port=int(port), reloader=True)
[2019-05-18 18:43:48 +0700] [47687] [INFO] Starting gunicorn 19.9.0
[2019-05-18 18:43:48 +0700] [47687] [INFO] Listening at: http://127.0.0.1:8000 (47687)
[2019-05-18 18:43:48 +0700] [47687] [INFO] Using worker: sync
[2019-05-18 18:43:48 +0700] [47691] [INFO] Booting worker with pid: 47691
[2019-05-18 18:44:13 +0700] [47687] [INFO] Handling signal: int
Traceback (most recent call last):
File "/Users/sugizo/miniconda3/envs/python3_test/lib/python3.7/site-packages/gunicorn/workers/base.py", line 190, in handle_quit
time.sleep(0.1)
File "/Users/sugizo/miniconda3/envs/python3_test/lib/python3.7/site-packages/gevent/hub.py", line 159, in sleep
hub.wait(t)
File "src/gevent/_hub_primitives.py", line 46, in gevent.__hub_primitives.WaitOperationsGreenlet.wait
File "src/gevent/_hub_primitives.py", line 55, in gevent.__hub_primitives.WaitOperationsGreenlet.wait
File "src/gevent/_waiter.py", line 151, in gevent.__waiter.Waiter.get
File "src/gevent/_greenlet_primitives.py", line 60, in gevent.__greenlet_primitives.SwitchOutGreenletWithLoop.switch
File "src/gevent/_greenlet_primitives.py", line 60, in gevent.__greenlet_primitives.SwitchOutGreenletWithLoop.switch
File "src/gevent/_greenlet_primitives.py", line 63, in gevent.__greenlet_primitives.SwitchOutGreenletWithLoop.switch
File "src/gevent/_greenlet_primitives.py", line 66, in gevent.__greenlet_primitives.SwitchOutGreenletWithLoop.switch_out
File "src/gevent/_greenlet_primitives.py", line 67, in gevent.__greenlet_primitives.SwitchOutGreenletWithLoop.switch_out
gevent.exceptions.BlockingSwitchOutError: Impossible to call blocking function in the event loop callback
2019-05-18T11:44:13Z
[2019-05-18 18:44:13 +0700] [47691] [ERROR] Exception in worker process
Traceback (most recent call last):
File "/Users/sugizo/miniconda3/envs/python3_test/lib/python3.7/site-packages/gunicorn/arbiter.py", line 583, in spawn_worker
worker.init_process()
File "/Users/sugizo/miniconda3/envs/python3_test/lib/python3.7/site-packages/gunicorn/workers/base.py", line 134, in init_process
self.run()
File "/Users/sugizo/miniconda3/envs/python3_test/lib/python3.7/site-packages/gunicorn/workers/sync.py", line 124, in run
self.run_for_one(timeout)
File "/Users/sugizo/miniconda3/envs/python3_test/lib/python3.7/site-packages/gunicorn/workers/sync.py", line 83, in run_for_one
self.wait(timeout)
File "/Users/sugizo/miniconda3/envs/python3_test/lib/python3.7/site-packages/gunicorn/workers/sync.py", line 35, in wait
ret = select.select(self.wait_fds, [], [], timeout)
File "/Users/sugizo/miniconda3/envs/python3_test/lib/python3.7/site-packages/gevent/select.py", line 169, in select
return result.select(rlist, wlist, timeout)
File "/Users/sugizo/miniconda3/envs/python3_test/lib/python3.7/site-packages/gevent/select.py", line 110, in select
self.event.wait(timeout=timeout)
File "src/gevent/event.py", line 127, in gevent._event.Event.wait
File "src/gevent/_abstract_linkable.py", line 192, in gevent.__abstract_linkable.AbstractLinkable._wait
File "src/gevent/_abstract_linkable.py", line 165, in gevent.__abstract_linkable.AbstractLinkable._wait_core
File "src/gevent/_abstract_linkable.py", line 169, in gevent.__abstract_linkable.AbstractLinkable._wait_core
File "src/gevent/_greenlet_primitives.py", line 60, in gevent.__greenlet_primitives.SwitchOutGreenletWithLoop.switch
File "src/gevent/_greenlet_primitives.py", line 60, in gevent.__greenlet_primitives.SwitchOutGreenletWithLoop.switch
File "src/gevent/_greenlet_primitives.py", line 64, in gevent.__greenlet_primitives.SwitchOutGreenletWithLoop.switch
File "src/gevent/__greenlet_primitives.pxd", line 35, in gevent.__greenlet_primitives._greenlet_switch
gevent.exceptions.BlockingSwitchOutError: Impossible to call blocking function in the event loop callback
[2019-05-18 18:44:13 +0700] [47691] [INFO] Worker exiting (pid: 47691)
[2019-05-18 18:44:14 +0700] [47687] [INFO] Shutting down: Master
reload ./web3py-start apps
bottle.run(server='tornado', host=host, port=int(port))
[OK] reloaded _dashboard
[OK] reloaded _scaffold
[OK] reloaded examples
[OK] reloaded myapp
[OK] reloaded superheroes
[OK]
reloaded todo
ERROR:root:Traceback (most recent call last):
File "/Users/sugizo/learn/python/web3py/web3py/core.py", line 385, in wrapper
ret = func(*func_args, **func_kwargs)
File "/Users/sugizo/learn/python/web3py/apps/_dashboard/__init__.py", line 145, in api
data = RestAPI(db, ALLOW_ALL_POLICY)(request.method, args[2], id, request.query, request.json)
File "/Users/sugizo/miniconda3/envs/python3_test/lib/python3.7/site-packages/pydal/restapi.py", line 27, in wrapper
data = func(*args, **kwargs)
File "/Users/sugizo/miniconda3/envs/python3_test/lib/python3.7/site-packages/pydal/restapi.py", line 170, in __call__
deleted = self.db(table.id == id).delete()
File "/Users/sugizo/miniconda3/envs/python3_test/lib/python3.7/site-packages/pydal/objects.py", line 2422, in delete
ret = db._adapter.delete(table, self.query)
File "/Users/sugizo/miniconda3/envs/python3_test/lib/python3.7/site-packages/pydal/adapters/sqlite.py", line 87, in delete
counter = super(SQLite, self).delete(table, query)
File "/Users/sugizo/miniconda3/envs/python3_test/lib/python3.7/site-packages/pydal/adapters/base.py", line 541, in delete
self.execute(sql)
File "/Users/sugizo/miniconda3/envs/python3_test/lib/python3.7/site-packages/pydal/adapters/__init__.py", line 67, in wrap
return f(*args, **kwargs)
File "/Users/sugizo/miniconda3/envs/python3_test/lib/python3.7/site-packages/pydal/adapters/base.py", line 413, in execute
rv = self.cursor.execute(command, *args[1:], **kwargs)
sqlite3.OperationalError: database is locked
File "C:\Users\johhb\py3\lib\site-packages\pydal\base.py", line 581, in define_table raise SyntaxError('table already defined: %s' % tablename) File "<string>", line None SyntaxError: table already defined: auth_user_tag_groups
Hi All,Had a first real 'play' with web3py' today and have a few questions the biggest of which I am hoping the gurus will be able to answer:-1: Is there any way to not to have to restart the app every time changes are made to actions in the controller or new actions added etc? I understand that controllers are basically being imported when the app fires up but is any there any way to occasionally reload instead of having to restart the app? This is a fairly big one for me as sometimes tweaks will need to be made in production and restarting the web server is not really an option so hopefully I am missing something really simple.Thanks in advanceJohn
./web3py-start -p password.txt -a 0.0.0.0:8000 apps
cat << EOF >> apps/_scaffold/models.py
db.define_table('thing', Field('name') )
db.commit()
db.define_table('think', Field('name') )
db.commit()
EOF
open http://localhost:8000/_dashboard
[FAILED] loading _scaffold
Traceback (most recent call last):
File "/Users/sugizo/learn/python/web3py/web3py/core.py", line 614, in import_apps
importlib.reload(sys.modules[name])
File "/Users/sugizo/miniconda3/envs/python3_test/lib/python3.7/importlib/__init__.py", line 169, in reload
_bootstrap._exec(spec, module)
File "<frozen importlib._bootstrap>", line 630, in _exec
File "<frozen importlib._bootstrap_external>", line 728, in exec_module
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
File "/Users/sugizo/learn/python/web3py/apps/_scaffold/common.py", line 37, in <module>
groups = Tags(db.auth_user, 'groups')
File "/Users/sugizo/learn/python/web3py/web3py/utils/tags.py", line 14, in __init__
Field('record_id', table))
File "/Users/sugizo/miniconda3/envs/python3_test/lib/python3.7/site-packages/pydal/base.py", line 581, in define_table
raise SyntaxError('table already defined: %s' % tablename)
File "<string>", line None
SyntaxError: table already defined: auth_user_tag_groups
try a db.commit() after your define_table(s).
I tried both with and without. Same or very similar result. It is only complaining about the auth_user_tag table which is defined in the auth module.
--
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.
To view this discussion on the web visit https://groups.google.com/d/msgid/web2py/33476d6d-05dd-4452-a67b-e919b06d08b6%40googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to web2py+unsubscribe@googlegroups.com.