RE: Custom designed alarm clock

2021-12-18 Thread Steve
Most of what is in that tutorial is old-hat for me. I have been coding Python for 10 years now and have a program with over 3000 lines of code. However, I am reminded that Kivy has to be reinstalled on my system and now I see that using Linux is the way to go. Buildozer? I also have to get t

Re: Custom designed alarm clock

2021-12-18 Thread Paul Bryan
Suggested reading: https://pypi.org/project/python-for-android/ https://play.google.com/store/apps/details?id=org.qpython.qpy3 https://www.androidauthority.com/an-introduction-to-python-on-android-759685/ https://data-flair.training/blogs/android-app-using-python/ On Sat, 2021-12-18 at 18:36 -050

Custom designed alarm clock

2021-12-18 Thread Steve
I have designed a simple alarm using Python. It has about 10 limes. How do I convert it to an app that I can on my android Moto E power 2021 phone? Steve -- https://mail.python.org/mailman/listinfo/python-list

Re: Call julia from Python: which package?

2021-12-18 Thread Martin Di Paola
I played with Julia a few months ago. I was doing some data-science stuff with Pandas and the performance was terrible so I decided to give Julia a try. My plan was to do the slow part in Julia and call it from Python. I tried juliacall (if I don't remember wrong) but I couldn't set up it.

Re: pytest segfault, not with -v

2021-12-18 Thread Barry
> On 18 Dec 2021, at 20:05, Marco Sulla wrote: > > Emh, maybe I was not clear. I created a C extension and it segfaults. > So I created that script to see where it segfaults. But the script > does not segfault. My doubt is: is that because I'm using eval and > exec in the script? You may stru

Re: pytest segfault, not with -v

2021-12-18 Thread Marco Sulla
Emh, maybe I was not clear. I created a C extension and it segfaults. So I created that script to see where it segfaults. But the script does not segfault. My doubt is: is that because I'm using eval and exec in the script? On Sat, 18 Dec 2021 at 18:33, Dieter Maurer wrote: > > Marco Sulla wrote

Re: ANN: Dogelog, Invitation to the Moon!

2021-12-18 Thread Mostowski Collapse
Dear All, We are happy to announce a new edition of the Dogelog Player: - Binary Release: The new version 0.9.7 of the Dogelog player now masters DCG. We have decided to upload the transpiled and compacted editions for the JavaScript and Python platforms to www.xlog.ch under the heading "Produ

Re: pytest segfault, not with -v

2021-12-18 Thread Dieter Maurer
Marco Sulla wrote at 2021-12-18 14:10 +0100: >Ok, I created the script: > >https://github.com/Marco-Sulla/python-frozendict/blob/master/test/debug.py > >The problem is it does _not_ crash, while a get a segfault using >pytest with python 3.9 on MacOS 10.15 > >Maybe it's because I'm using eval / exe

Re: pytest segfault, not with -v

2021-12-18 Thread Marco Sulla
Ok, I created the script: https://github.com/Marco-Sulla/python-frozendict/blob/master/test/debug.py The problem is it does _not_ crash, while a get a segfault using pytest with python 3.9 on MacOS 10.15 Maybe it's because I'm using eval / exec in the script? On Sat, 20 Nov 2021 at 18:40, Marco