Python Forum
Is there a difference between Python’s time.sleep and win32api.Sleep?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Is there a difference between Python’s time.sleep and win32api.Sleep?
#1
I know that win32api.Sleep is related to the windows API, and it is obvious that Python's default time.sleep param is in seconds, and win32api.Sleep is in milliseconds, other than that is there a difference between time.sleep, and win32api.Sleep? I like the idea that win32api.Sleep is in milliseconds and I'm considering using it over time.sleep.
Reply
#2
win32api would appear to be windows only. python's time sleep will work on all os.
I welcome all feedback.
The only dumb question, is one that doesn't get asked.
My Github
How to post code using bbtags
Download my project scripts


Reply
#3
(Sep-20-2024, 11:36 AM)menator01 Wrote: win32api would appear to be windows only. python's time sleep will work on all os.
This I know. win32api is part of the PyWin32 package which is a wrapper for the Windows API.
Reply
#4
(Sep-20-2024, 09:43 AM)phpjunkie Wrote: I like the idea that win32api.Sleep is in milliseconds and I'm considering using it over time.sleep.
Just because time.sleep() takes seconds (which may have a fractional part), doesn't mean it is less precise or accurate.

The documentation for time.sleep says that on Windows, it uses a High-Resolution timer with a resolution of 100 nanoseconds.
Reply
#5
The obvious difference is that win32api. Sleep is not portable while time. sleep is. If you're certain that your program will never need to run on a non-windows system this doesn't matter, but it's generally a good idea to try to write as portable code as possible.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  how to find difference between fake driving license or real using python? pjaymn 5 4,880 Jun-14-2024, 07:01 AM
Last Post: Pedroski55
  time difference bettwenn logs enkliy 14 3,256 Nov-21-2023, 04:51 PM
Last Post: rob101
  Hard time trying to figure out the difference between two strings carecavoador 2 1,369 Aug-16-2023, 04:53 PM
Last Post: carecavoador
  Sum up Time difference tester_V 10 6,728 Apr-06-2023, 06:54 AM
Last Post: Gribouillis
  Use subprocess.Popen and time.sleep chucky831 2 2,879 Aug-11-2022, 07:53 PM
Last Post: carecavoador
  How to change UTC time to local time in Python DataFrame? SamKnight 2 2,636 Jul-28-2022, 08:23 AM
Last Post: Pedroski55
  How to immediately kill and restart a thread while using a time.sleep() inside it? philipbergwerf 4 5,133 Feb-07-2022, 04:16 PM
Last Post: Gribouillis
  Time.sleep: stop appending item to the list if time is early quest 0 2,365 Apr-13-2021, 11:44 AM
Last Post: quest
  Can you end the Time.sleep function boier96 9 16,460 Jan-16-2021, 10:09 PM
Last Post: Serafim
  How to get indices of minimum time difference Mekala 1 2,813 Nov-10-2020, 11:09 PM
Last Post: deanhystad

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020