once you start a shell with python web2py.py -M -S ..... you have started 
another completely separated process: no worries about thread-safe(ing) 
anything.

On Monday, May 2, 2016 at 11:16:28 PM UTC+2, Mirek Zvolský wrote:
>
> In modules instead of
>   def modulemethod(db):
> I use
>   def modulemethod():
>     db = current.db  # current.db=db is assigned in models
>
> I hope that is correct.
>
>
> Now I want reuse some module methods from script.
> I run script.py from web2py environment like: python web2py.py -M -S app 
> -R script.py
> In the script.py I have
>   from gluon import current
>   current.db = db
>
> This run without errors.
> However is it safe with regard to threads?
> Or I will have fatal problems when running more scripts together, or 
> together with the web?
>
>
> Thank you for help.
>
>

-- 
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.
For more options, visit https://groups.google.com/d/optout.

Reply via email to