Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
A simple utility for calculating business time aware timedeltas between two datetimes
All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Description: businesstime ============
.. image:: https://badge.fury.io/py/businesstime.png
:target: http://badge.fury.io/py/businesstime
.. image:: https://travis-ci.org/seatgeek/businesstime.png?branch=master
:target: https://travis-ci.org/seatgeek/businesstime
BusinessTime is a simple utility for calculating business time aware timedeltas between two datetimes. BusinessTime's understanding of weekends, holidays and business hours can be easily configured in code.
.. code-block:: pycon
>>> datetime(2013, 12, 26, 5) - datetime(2013, 12, 23, 12)
datetime.timedelta(2, 61200)
>>> bt = businesstime.BusinessTime(holidays=businesstime.holidays.usa.USFederalHolidays())
>>> bt.businesstimedelta(datetime(2013, 12, 23, 12), datetime(2013, 12, 26, 5))
datetime.timedelta(1, 18000)
Features
--------
- Simple, pythonic, business-time-aware datetime math
- A simple declarative format for defining holidays
- A number of useful iterators/predicate functions related to holidays/weekends/business hours
0.3.0
=====
* Fix a bug (#25) where holidays were not properly detected when later dates were tested before earlier ones, thanks @agans
* Fix a bug (#13) where time deltas were calculated incorrectly when both start and end times are after business hours, thanks @airsource
* `businesstime_hours` now returns a `timedelta` rather than a numeric value (#23), thanks @naes17
* `businesstimedelta` now returns negative timedeltas when the start time is after the end time (#19), thanks @jeremyklein
* Add 2017-2018 public holidays for Queensland/Brisbane Australia (#17), thanks @danc86
0.2.1
=====
* Fix broken pypi package (#14), thanks @tarkatronic
0.2.0
=====
* Change package layout: country-specific holidays are stored in files named w/ their ISO 3166-1 alpha-3 country codes
* Add 2013-2016 public holidays for Queensland/Brisbane Australia (#11), from @danc86
* Fix AttributeError when no holidays are specified (#10), from @danc86
0.1.6
=====
* Handle US federal holidays that fall on the weekend but are observed on Friday/Monday (#8)
0.1.5
=====
* Fixed a bug (#7) where a datetime after business hours and a datetime during business hours were handled incorrectly
0.1.4
=====
* Fixed a bug (#6) where two datetimes on the same day but before business hours were handled incorrectly
0.1.3
=====
* Fixed a bug (#3) where the first instant of a business day was not considered part of that day
0.1.2
=====
* Fix changelog
0.1.1
=====
* Fix pypi package
0.1.0
=====
* Public Release
Platform: UNKNOWN Classifier: Programming Language :: Python :: 2.7
FAQs
A simple utility for calculating business time aware timedeltas between two datetimes
We found that businesstime demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.