Hi
30.03.2022 21:44, Larry Martell пишет:
On Wed, Mar 30, 2022 at 2:40 PM Kirill Ratkin via Python-list
wrote:
Hi again,
I changed a bit your example and it works as you expected I hope.
import asyncio
async def long():
for i in range(100):
await asyncio.sleep(10)
On Wed, Mar 30, 2022 at 2:40 PM Kirill Ratkin via Python-list
wrote:
>
> Hi again,
>
> I changed a bit your example and it works as you expected I hope.
>
> import asyncio
>
>
> async def long():
> for i in range(100):
> await asyncio.sleep(10)
> print("long is done")
>
>
>
Hi again,
I changed a bit your example and it works as you expected I hope.
import asyncio
async def long():
for i in range(100):
await asyncio.sleep(10)
print("long is done")
loop = asyncio.get_event_loop()
task = loop.create_task(long())
print('after asyncio.run')
loop
On 3/30/22 10:39, Chris Angelico wrote:
> New in 3.11:
>
> https://docs.python.org/3.11/library/logging.html#logging.getLevelNamesMapping
>
> I'd say it's reasonable to use this, and then to backport it to older
> versions by monkeypatching it in (by referencing the internal). You
> potentially
On 2022-03-30 16:37, Barry wrote:
> Is logging.getLevelNamesMapping() what you are looking for?
Is this in some version newer than the 3.8 that comes stock on my
machine?
$ python3 -q
>>> import logging
>>> logging.getLevelNamesMapping()
Traceback (most recent call last):
File "", lin
On Thu, 31 Mar 2022 at 03:33, Edward Spencer wrote:
>
> 在 2022年3月30日星期三 UTC+1 16:38:26, 写道:
> > > On 30 Mar 2022, at 16:11, Edward Spencer wrote:
> > >
> > > 在 2021年9月3日星期五 UTC+1 18:50:51, 写道:
> > On 2 Sep 2021, at 23:38, Dieter Maurer wrote:
> > >>>
> > >>> Edward Spencer wrote at 2021-9
在 2022年3月30日星期三 UTC+1 16:38:26, 写道:
> > On 30 Mar 2022, at 16:11, Edward Spencer wrote:
> >
> > 在 2021年9月3日星期五 UTC+1 18:50:51, 写道:
> On 2 Sep 2021, at 23:38, Dieter Maurer wrote:
> >>>
> >>> Edward Spencer wrote at 2021-9-2 10:02 -0700:
> Sometimes I like to pass the logging leve
Hi,
You can use asyncio.create_task and gather results. See docs -
https://docs.python.org/3/library/asyncio-task.html
But think twice what you want to do in async task. Do you use synchronous
requests to database? If yes it will blocks eventloop...
If you use Django it makes sense to use someth
I have a django app, and for a certain request I need to kick off a
long running task. I want to do this asynchronously and immediately
return a response. I tried using subprocess.Process() but the forked
process does not have a django database connection. I then tried
posting a request using ajax
> On 30 Mar 2022, at 16:11, Edward Spencer wrote:
>
> 在 2021年9月3日星期五 UTC+1 18:50:51, 写道:
On 2 Sep 2021, at 23:38, Dieter Maurer wrote:
>>>
>>> Edward Spencer wrote at 2021-9-2 10:02 -0700:
Sometimes I like to pass the logging level up to the command line params
so my user c
> On 30 Mar 2022, at 15:40, alister.ware wrote:
>
> OK
>
> where do you work & are there any vacancies (a junior position would suffice)
At the moment we are only hiring in India and for senior rolls.
Barry
>
>> On 30/03/2022 14:52, Barry wrote:
>>
On 29 Mar 2022, at 20:37, alister
On Tue, 29 Mar 2022 20:49:53 -0400, Dennis Lee Bieber wrote:
> On Tue, 29 Mar 2022 19:26:03 - (UTC), alister
> declaimed the following:
>
>>I'm currently considering a career change (not much choice actually just
>>been made redundant).
>>I'd like to be able to turn my interest in python to
在 2021年9月3日星期五 UTC+1 18:50:51, 写道:
> > On 2 Sep 2021, at 23:38, Dieter Maurer wrote:
> >
> > Edward Spencer wrote at 2021-9-2 10:02 -0700:
> >> Sometimes I like to pass the logging level up to the command line params
> >> so my user can specific what level of logging they want. However there i
> On 29 Mar 2022, at 20:37, alister via Python-list
> wrote:
>
> I'm currently considering a career change (not much choice actually just
> been made redundant).
> I'd like to be able to turn my interest in python to my advantage, What
> qualifications do employers look for?
Where I work w
On 2022-03-30 08:48:36 +0200, Marco Sulla wrote:
> On Tue, 29 Mar 2022 at 00:10, Peter J. Holzer wrote:
> > They are are about a year apart, so they will usually contain different
> > versions of most packages right from the start. So the Ubuntu and Debian
> > security teams probably can't benefit
15 matches
Mail list logo