async watch directory for new files

2021-04-23 Thread Zoran
Hi, I need to watch for new files in directory, and when it shows up, I should create async task with file's full path for it, and wait for new file. If anyone here used a library for such task, please share which one. Regards. -- https://mail.python.org/mailman/listinfo/python-list

Re: The split() function of Python's built-in module has changed in a puzzling way - is this a bug?

2021-04-23 Thread Dan Stromberg
On Thu, Apr 22, 2021 at 8:53 PM Andy AO wrote: > Upgrading from Python 3.6.8 to Python 3.9.0 and executing unit tests > revealed a significant change in the behavior of re.split(). > > but looking at the relevant documentation — Changelog python.org/3/whatsnew/changelog.html> and

Re: Fun Generators

2021-04-23 Thread Dan Stromberg
On Fri, Apr 23, 2021 at 10:30 AM Travis Griggs wrote: > > On Apr 23, 2021, at 05:55, Frank Millman wrote: > > > > On 2021-04-23 7:34 AM, Travis Griggs wrote: > >> Doing an "industry experience" talk to an incoming class at nearby > university tomorrow. Have a couple points where I might do some

Re: Fun Generators

2021-04-23 Thread Travis Griggs
> On Apr 23, 2021, at 05:55, Frank Millman wrote: > > On 2021-04-23 7:34 AM, Travis Griggs wrote: >> Doing an "industry experience" talk to an incoming class at nearby >> university tomorrow. Have a couple points where I might do some "fun things" >> with python. Said students have been lear

Re: do ya still use python?

2021-04-23 Thread J. Pic
CPython powers Mars Ingenuity Helicopter: https://github.com/readme/nasa-ingenuity-helicopter All CPython contributors got a new GitHub badge to show off. -- https://mail.python.org/mailman/listinfo/python-list

Re: do ya still use python?

2021-04-23 Thread David Lowry-Duda
> You wouldn't see Tim Peters or even Guido here nowadays, and > Steven D'Aprano was IMO forced out for no good reason ... you see > the results here every day... What happened to Steven D'Aprano? - DLD -- https://mail.python.org/mailman/listinfo/python-list

Re: do ya still use python?

2021-04-23 Thread David Lowry-Duda
> Are there reasons why someone might prefer StackOverflow to this list? > Are they more to do with the person, or something the Python Community > should address? I think general discoverability is a driving force. A beginner has a problem, goes to google, types in their problem, and sees some l

Re: The split() function of Python's built-in module has changed in a puzzling way - is this a bug?

2021-04-23 Thread Thomas Jollans
On 23/04/2021 01:53, Andy AO wrote: Upgrading from Python 3.6.8 to Python 3.9.0 and executing unit tests revealed a significant change in the behavior of re.split(). but looking at the relevant documentation — Changelog and re - Regular expres