A tool library created by jaanca with help functions for date and time management and moving dates between time days by UTC.
Project description
jaanca public libraries
A tool library created by jaanca
- Python library: A tool library created by jaanca with help functions for date and time management and moving dates between time days by UTC.
Source code | Package (PyPI) | Samples
library installation
pip install jaanca-datetime --upgrade
Example of use
from jaanca_datetime import DateTimeHelper, App,TimeZonesPytz
if __name__=="__main__":
# DateTimeHelper.print_console_timezones_pytz()
print(f"date now: {DateTimeHelper.get_datetime_now(App.Time.POSTGRESQL_FORMAT_DATE,is_format_string=False)}")
print(f"date timezone convert UTC to Bogotá: {DateTimeHelper.get_datetime_now_to_another_location(App.Time.STANDARD_FORMAT_DATE,TimeZonesPytz.US.AZURE_DEFAULT,TimeZonesPytz.America.BOGOTA)}")
datetime_data="2024-08-22 14:02:02"
datetime_format=App.Time.STANDARD_FORMAT_DATE
is_valid_format=DateTimeHelper.is_valid_datetime_format(datetime_data,datetime_format)
print(f"datetime_data[{datetime_format}]:[{datetime_data}]: is_valid_format={is_valid_format}")
datetime_data="2024-08-22"
datetime_format="%Y-%m-%d"
is_valid_format=DateTimeHelper.is_valid_datetime_format(datetime_data,datetime_format)
print(f"datetime_data[{datetime_format}]:[{datetime_data}]: is_valid_format={is_valid_format}")
datetime_data="2024-08-22"
datetime_format=App.Time.STANDARD_FORMAT_DATE
is_valid_format=DateTimeHelper.is_valid_datetime_format(datetime_data,datetime_format)
print(f"datetime_data[{datetime_format}]:[{datetime_data}]: is_valid_format={is_valid_format}")
# output
# date now: 2024-07-09 12:31:29.366428
# date timezone convert UTC to Bogotá: 2024-07-09 07:31:29
# datetime_data[%Y-%m-%d %H:%M:%S]:[2024-08-22 14:02:02]: is_valid_format=True
# datetime_data[%Y-%m-%d]:[2024-08-22]: is_valid_format=True
# datetime_data[%Y-%m-%d %H:%M:%S]:[2024-08-22]: is_valid_format=False
Semantic Versioning
jaanca-datetime < MAJOR >.< MINOR >.< PATCH >
- MAJOR: version when you make incompatible API changes
- MINOR: version when you add functionality in a backwards compatible manner
- PATCH: version when you make backwards compatible bug fixes
Definitions for releasing versions
-
https://peps.python.org/pep-0440/
- X.YaN (Alpha release): Identify and fix early-stage bugs. Not suitable for production use.
- X.YbN (Beta release): Stabilize and refine features. Address reported bugs. Prepare for official release.
- X.YrcN (Release candidate): Final version before official release. Assumes all major features are complete and stable. Recommended for testing in non-critical environments.
- X.Y (Final release/Stable/Production): Completed, stable version ready for use in production. Full release for public use.
Changelog
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
Types of changes
- Added for new features.
- Changed for changes in existing functionality.
- Deprecated for soon-to-be removed features.
- Removed for now removed features.
- Fixed for any bug fixes.
- Security in case of vulnerabilities.
[0.0.1rcX] - 2024-05-24
Added
- First tests using pypi.org in develop environment.
[0.1.0] - 2024-05-24
Added
- Completion of testing and launch into production.
[0.1.1] - 2024-05-24
Added
- Add feature is_valid_datetime_format.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file jaanca_datetime-0.1.2rc1.tar.gz
.
File metadata
- Download URL: jaanca_datetime-0.1.2rc1.tar.gz
- Upload date:
- Size: 5.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 553417b24a1616ea0f4034eacdf71c132fb7616d6011aeded0148a31e6765e21 |
|
MD5 | 318be1cf0a5804d7112ac79f094290b9 |
|
BLAKE2b-256 | 21ce6def1f0c11d477ae48d238604d0cf88d72544d25b8daad60990eadf9de16 |
File details
Details for the file jaanca_datetime-0.1.2rc1-py3-none-any.whl
.
File metadata
- Download URL: jaanca_datetime-0.1.2rc1-py3-none-any.whl
- Upload date:
- Size: 6.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dfdccabd2c9aa883762438549c0e4c238f2ced70ad27d78ba415478b7935db37 |
|
MD5 | d6ad8cd6f86424ec08934b12305fadec |
|
BLAKE2b-256 | c7d779cae66b77addb2118ddbd4c9dcf966227f890ce0da394543b166a123357 |