Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
flake8-datetime-utcnow-plugin
Advanced tools
Plugin to check that utcnow() is not used in favour of now(UTC)
Plugin for flake8
to warn the developer of the usage of datetime.utcnow().
The problem with datetme.utcnow()
is that indeed returns the current timestamp in the UTC timzone but the object is a naive datetime
, that is doesn't have the tzinfo
argument set.
Instead [datetime.now()](https://docs.python.org/3/library/datetime.html#datetime.datetime.utcnow] should be used passing the UTC timezone:
from datetime import datetime, timezone
datetime.now(timezone.utc)
To install the plugin and flake8
:
pip install flake8_datetime_utcnow_plugin
FAQs
Plugin to check that utcnow() is not used in favour of now(UTC)
We found that flake8-datetime-utcnow-plugin 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.