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.
.. image:: https://img.shields.io/aur/license/yaourt.svg :target: https://opensource.org/licenses/GPL-3.0 :alt: License
datemagic
module provides convenience function for operating with dates and
time types.
Install the module the usual way using pip
to start using it.
Splitting year in 30-day chunks
.. code:: python
>>> import datetime
>>> import datemagic
>>> datemagic.split_interval(datetime.date(2016,1,1),
... datetime.date(2016,12,31))
[(datetime.date(2016, 1, 1), datetime.date(2016, 1, 30)),
(datetime.date(2016, 1, 31), datetime.date(2016, 2, 29)),
(datetime.date(2016, 3, 1), datetime.date(2016, 3, 30)),
(datetime.date(2016, 3, 31), datetime.date(2016, 4, 29)),
(datetime.date(2016, 4, 30), datetime.date(2016, 5, 29)),
(datetime.date(2016, 5, 30), datetime.date(2016, 6, 28)),
(datetime.date(2016, 6, 29), datetime.date(2016, 7, 28)),
(datetime.date(2016, 7, 29), datetime.date(2016, 8, 27)),
(datetime.date(2016, 8, 28), datetime.date(2016, 9, 26)),
(datetime.date(2016, 9, 27), datetime.date(2016, 10, 26)),
(datetime.date(2016, 10, 27), datetime.date(2016, 11, 25)),
(datetime.date(2016, 11, 26), datetime.date(2016, 12, 25)),
(datetime.date(2016, 12, 26), datetime.date(2016, 12, 31))]
Default chunk size is 30 days.
For detailed description see the Python docstrings in the code.
FAQs
Convenience functions to work with dates
We found that datemagic 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.