python asyncio for loop

Hi I’m learning about python asyncio from book named Using Asyncio in python from o’reilly

in this book there is an example of async for loop

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code># Example 3-26. Easier with an async generator
import asyncio
# Mock Redis interface
class Redis:
async def get(self, key):
await asyncio.sleep(1)
return 'value'
# Mock create_redis
# Real one: aioredis.create_redis
async def create_redis(socket):
await asyncio.sleep(1)
return Redis()
async def do_something_with(value):
await asyncio.sleep(1)
# Our function is now declared with async def , making it a coroutine
# function, and since this function also contains the yield keyword, we refer
# to it as an asynchronous generator function.
async def one_at_a_time(redis, keys):
for k in keys:
# We don’t have to do the convoluted things necessary in the previous
# example with self.ikeys: here, we just loop over the keys directly
# and obtain the value...
value = await redis.get(k)
# ...and then yield it to the caller, just like a normal generator.
yield value
# The main() function is identical to the version in Example 3-25.
async def main():
redis = await create_redis(('localhost', 6379))
keys = ['Americas', 'Africa', 'Europe', 'Asia']
async for value in one_at_a_time(redis, keys):
await do_something_with(value)
start = time.time()
asyncio.run(main())
end = time.time()
print(end - start)
#print result is 9.012349128723145
</code>
<code># Example 3-26. Easier with an async generator import asyncio # Mock Redis interface class Redis: async def get(self, key): await asyncio.sleep(1) return 'value' # Mock create_redis # Real one: aioredis.create_redis async def create_redis(socket): await asyncio.sleep(1) return Redis() async def do_something_with(value): await asyncio.sleep(1) # Our function is now declared with async def , making it a coroutine # function, and since this function also contains the yield keyword, we refer # to it as an asynchronous generator function. async def one_at_a_time(redis, keys): for k in keys: # We don’t have to do the convoluted things necessary in the previous # example with self.ikeys: here, we just loop over the keys directly # and obtain the value... value = await redis.get(k) # ...and then yield it to the caller, just like a normal generator. yield value # The main() function is identical to the version in Example 3-25. async def main(): redis = await create_redis(('localhost', 6379)) keys = ['Americas', 'Africa', 'Europe', 'Asia'] async for value in one_at_a_time(redis, keys): await do_something_with(value) start = time.time() asyncio.run(main()) end = time.time() print(end - start) #print result is 9.012349128723145 </code>
# Example 3-26. Easier with an async generator
import asyncio


# Mock Redis interface
class Redis:
    async def get(self, key):
        await asyncio.sleep(1)
        return 'value'


# Mock create_redis
# Real one: aioredis.create_redis
async def create_redis(socket):
    await asyncio.sleep(1)
    return Redis()


async def do_something_with(value):
    await asyncio.sleep(1)


# Our function is now declared with async def , making it a coroutine
# function, and since this function also contains the yield keyword, we refer
# to it as an asynchronous generator function.
async def one_at_a_time(redis, keys):
    for k in keys:
        # We don’t have to do the convoluted things necessary in the previous
        # example with self.ikeys: here, we just loop over the keys directly
        # and obtain the value...
        value = await redis.get(k)
        # ...and then yield it to the caller, just like a normal generator.
        yield value


# The main() function is identical to the version in Example 3-25.
async def main():
    redis = await create_redis(('localhost', 6379))
    keys = ['Americas', 'Africa', 'Europe', 'Asia']
    async for value in one_at_a_time(redis, keys):
        await do_something_with(value)

start = time.time()
asyncio.run(main())
end = time.time()
print(end - start)

#print result is 9.012349128723145

but I think it is not run asynchronously
comparing this code which is my sync code for comparing with above code

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>class Redis:
def get(self, key):
time.sleep(1)
return 'value'
def create_redis(socket):
time.sleep(1)
return Redis()
def do_something_with(value):
time.sleep(1)
def one_at_a_time(redis, keys):
for k in keys:
value = redis.get(k)
yield value
# The main() function is identical to the version in Example 3-25.
def main():
redis = create_redis(('localhost', 6379))
keys = ['Americas', 'Africa', 'Europe', 'Asia']
tasks = []
for value in one_at_a_time(redis, keys):
do_something_with(value)
start = time.time()
main()
end = time.time()
print(end-start)
# print result 9.025717973709106
</code>
<code>class Redis: def get(self, key): time.sleep(1) return 'value' def create_redis(socket): time.sleep(1) return Redis() def do_something_with(value): time.sleep(1) def one_at_a_time(redis, keys): for k in keys: value = redis.get(k) yield value # The main() function is identical to the version in Example 3-25. def main(): redis = create_redis(('localhost', 6379)) keys = ['Americas', 'Africa', 'Europe', 'Asia'] tasks = [] for value in one_at_a_time(redis, keys): do_something_with(value) start = time.time() main() end = time.time() print(end-start) # print result 9.025717973709106 </code>
class Redis:
    def get(self, key):
        time.sleep(1)
        return 'value'

def create_redis(socket):
    time.sleep(1)
    return Redis()


def do_something_with(value):
    time.sleep(1)


def one_at_a_time(redis, keys):
    for k in keys:
        value = redis.get(k)
        yield value


# The main() function is identical to the version in Example 3-25.
def main():
    redis = create_redis(('localhost', 6379))
    keys = ['Americas', 'Africa', 'Europe', 'Asia']
    tasks = []
    for value in one_at_a_time(redis, keys):
        do_something_with(value)

start = time.time()
main()
end = time.time()
print(end-start)

# print result 9.025717973709106

the code running time is the same

is the first code async code?

I think it is not and I can’t understand why the book says it is async code..

Thanks for reading my question

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật