Re: memory consumption

2021-03-29 Thread Julio Oña
It looks like the problem is on celery. The mentioned issue is still open, so not sure if it was corrected. https://manhtai.github.io/posts/memory-leak-in-celery/ Julio El lun, 29 de mar. de 2021 a la(s) 08:31, Alexey (zen.supag...@gmail.com) escribió: > Hello Lars! > Thanks for your interest.

Re: Java JMS and python

2020-04-14 Thread Julio Oña
Found this, it's old, but it's the code. I hope it helps. https://github.com/springpython/springpython Julio El mar., 14 de abr. de 2020 a la(s) 00:30, Sam (pyt...@net153.net) escribió: > > On 4/13/20 9:51 PM, Julio Oña wrote: > > Hi > > > > There i

Re: Java JMS and python

2020-04-13 Thread Julio Oña
Hi There is a tool for that (I didn't use it): https://docs.spring.io/spring-python/1.2.x/sphinx/html/jms.html Hope it works for you. Julio El lun., 13 de abr. de 2020 a la(s) 22:44, Chris Angelico (ros...@gmail.com) escribió: > > On Tue, Apr 14, 2020 at 11:20 AM Sam wrote: > > > > Hi, > > > >

Re: How control a GUI for an unrelated application from a Python script?

2019-06-13 Thread Julio Oña
try https://pypi.org/project/PyAutoIt/ Regards Julio El jue., 13 de jun. de 2019 a la(s) 21:37, Michael Torrie (torr...@gmail.com) escribió: > > On 06/13/2019 05:49 PM, Christian Seberino wrote: > > I have a third party GUI that manages some hardware. > > > > I want to control the hardware from a

Re: execute commands as su on remote server

2015-08-18 Thread Julio Oña
Hi, try to use http://www.fabfile.org/ look at: http://docs.fabfile.org/en/latest/api/core/operations.html sudo() call has the posibility to change to another user besides root, with: with settings(sudo_user='mysql'): sudo("whoami") # prints 'mysql' El lun., 17 de ago. de 2015 a la(s) 1