Re: Python script not letting go of files

2022-11-29 Thread Mike Dewhirst
Stefan Thank you. I should have said this has been working fine for years and years until Ubuntu 2022.04 on a new droplet running Apache/2.4.52 I will refactor it one day - especially if the script is implicated. But I think I have to learn how to use lsof first! Cheers Mike On

Re: Python script not letting go of files

2022-11-29 Thread Weatherby,Gerard
"Weatherby,Gerard" writes: >Do any of you Python folks see any blunders in the above code along the >lines of not letting go of py files or static assets? Er, no, I just replied to the original poster. -- https://mail.python.org/mailman/listinfo/python-list

Re: NEO6 GPS with Py PICO with micropython

2022-11-29 Thread rbowman
On Tue, 29 Nov 2022 17:23:31 +0530, KK CHN wrote: > When I ran the program I am able to see the output of latitude and > longitude in the console of thony IDE. But between certain intervals > of a few seconds I am getting the latitude and longitude data ( its > printing GPS data not found ??

Bug report - Python 3.10 from Microsoft Store - IDLE won't start

2022-11-29 Thread Johan Gunnarsson via Python-list
Hello, IDLE won't start if ver. 3.10 is installed from Microsoft Store. 3.9 works just fine. Thanks in advance! Johan Gunnarsson Lunds universitet Medicinska fakulteten Bibliotek & IKT Box 118, 221 00 Lund Besöksadress: Sölvegatan 19, 221 84

Job positions at CMCC Foundation, Italy - Advanced Scientific Computing - ASC Division

2022-11-29 Thread CMCC Foundation
/Please, feel free to circulate //to anyone you think may be interested/ /Apologies for cross-posting / /-- / _ _ The CMCC Foundation is a scientific research center on climate change and its interactions with the environment, the society, the world of business and policy makers. Our work aims

Re: NEO6 GPS with Py PICO with micropython

2022-11-29 Thread gene heskett
On 11/29/22 06:56, KK CHN wrote: List , I am following this tutorial to get latitude and longitude data using NEO6 GPS module and Py PICO to read the GPS data from the device. I followed the code specified in this tutorial.

Re: Setupfailure

2022-11-29 Thread Mats Wichmann
On 11/28/22 07:12, Kelvin Buuri wrote: May python failed to install Was there an antual question here? If so, give details when re-asking. -- https://mail.python.org/mailman/listinfo/python-list

Re: NEO6 GPS with Py PICO with micropython

2022-11-29 Thread dn
On 30/11/2022 00.53, KK CHN wrote: List , I am following this tutorial to get latitude and longitude data using NEO6 GPS module and Py PICO to read the GPS data from the device. I followed the code specified in this tutorial.

Re: Python script not letting go of files

2022-11-29 Thread Weatherby,Gerard
Does the script exit when complete? If you’re running on a Linux based system and have root access you can use lsof to see what processes have with files open. (Or use the psutil Python package). From: Python-list on behalf of Mike Dewhirst Date: Tuesday, November 29, 2022 at 2:20 AM To:

NEO6 GPS with Py PICO with micropython

2022-11-29 Thread KK CHN
List , I am following this tutorial to get latitude and longitude data using NEO6 GPS module and Py PICO to read the GPS data from the device. I followed the code specified in this tutorial. https://microcontrollerslab.com/neo-6m-gps-module-raspberry-pi-pico-micropython/ I have installed