Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Repository: https://github.com/dangcpham/anothertimer
Just another timer for code timing. anothertimer enables easy timing for code runs, saving timing data, and provides basic plotting capabilities. Example usage: ::
from anothertimer import Timer timer = Timer() timer.tic() #some code here timer.toc()
Saving and loading data (modes 'a' for append and 'w' for write): ::
timer.dump('example.csv', mode='a') timer.load('example2.csv')
Plotting can be done via: ::
timer.plot()
Check out example.py on GitHub for some more features (stopwatch/sections) and plots!
::
pip install anothertimer
Measured by pstats on example.py, core functionalities causes minimal (<0.001s) overhead. Plotting causes some overhead (due to matplotlib plotting, on the order of a few seconds), so plot carefully.
Currently, anothertimer uses the time.time() function to keep track of time. The precision is in the sub-second range (read more about Python timing at https://www.python.org/dev/peps/pep-0564/, https://stackoverflow.com/questions/1938048/high-precision-clock-in-python). Currently, it is not a good idea to use this package for high precision applications, consider the timeit module.
FAQs
Literally another code timer (with fancy plotting)
We found that anothertimer demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.