As asked in the title, are open('...','w').write('...')
and urllib.urlopen('..')
asynchronous calls?
Are python's file write() and urlopen() methods asynchronous?
No. If you need them to be asynchronous then consider looking at event frameworks such as Twisted, glib, or Qt.
© 2022 - 2024 — McMap. All rights reserved.