Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
.. inclusion-marker-start
Pytimers is a python micro library that allows you to quickly measure time to run functions, methods or individual blocks of codes. Here's a quick demo.
.. code-block:: python
import logging
from time import sleep
from pytimers import timer
logging.basicConfig(level=logging.INFO)
@timer
def foo() -> None:
print("Some heavy lifting.")
sleep(2)
if __name__ == "__main__":
print("Let's call the function decorated with timer.")
foo()
print("Use timer context manager.")
with timer.label("sleeping block"):
print("Some more work to do.")
sleep(1)
.. code-block:: console
Let's call the function decorated with timer.
Some heavy lifting.
INFO:pytimers.triggers.logger_trigger:Finished foo in 2s 0.494ms [2.0s].
Use timer context manager.
Some more work to do.
INFO:pytimers.triggers.logger_trigger:Finished sleeping block in 1s 1.247ms [1.001s].
.. inclusion-marker-end
See the full Documentation <https://pytimers.readthedocs.io/en/latest/>
_.
Build Status
.. image:: https://github.com/michalfilippi/pytimers/actions/workflows/test.yml/badge.svg
:alt: Unit Tests
:align: left
|
.. image:: https://github.com/michalfilippi/pytimers/actions/workflows/code_style.yml/badge.svg
:alt: Code Style Check
:align: left
|
PyPi
~~~~
.. image:: https://img.shields.io/pypi/v/pytimers.svg
:target: https://pypi.python.org/pypi/pytimers/
:alt: PyPi
:align: left
|
.. image:: https://img.shields.io/pypi/l/pytimers.svg
:target: https://pypi.python.org/pypi/pytimers/
:alt: PyPI - License
:align: left
|
.. image:: https://img.shields.io/pypi/pyversions/pytimers.svg
:target: https://pypi.python.org/pypi/pytimers/
:alt: PyPi - Python Version
:align: left
|
.. image:: https://img.shields.io/pypi/implementation/pytimers.svg
:target: https://pypi.python.org/pypi/pytimers/
:alt: PyPi - Implementation
:align: left
|
FAQs
Measuring time to run functions, methods or blocks of code made easy.
We found that pytimers 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.