Socket
Socket
Sign inDemoInstall

AlarmTime

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

AlarmTime

For calculating time difference from current time to Target time and can detect a time from our natural language


Maintainers
1

from AlarmTime.AlarmTime import DetectDate

##############################################

t = DetectDate(1570000023345) print(t.now) #2019-10-02 13:07:39.393012 t = DetectDate('2019/5/2/14/5') print(t.now) #2019-05-02 14:05:39.393185 t = DetectDate() print(t.now) #2019-04-21 12:26:12.542967 ############################################

t = DetectDate()

target_time = t.DateTimeDetect('detect the time and date on December 16 8 p.m') print(target_time)

target_time = t.DateTimeDetect('detect the time and date on December 16 ') print(target_time)

target_time = t.DateTimeDetect('after 700 days') print(target_time)

target_time = t.DateTimeDetect('after 6 month 700 days 8 hour 5 minute') print(target_time)

target_time = t.DateTimeDetect('after 700 days') print(target_time)

now we can get the value of target year, day, month, hour, minute, second print(target_time.day)

============================================================================= 2019-04-21 12:26:12.542967 2019-12-16 20:00:00.542967 2019-12-16 00:00:00.542967 2021-03-21 12:26:12.542967 2021-09-20 20:31:12.542967 2021-03-21 12:26:12.542967 21

minute_diff = t.minute_diff_from_now('after 1 days')

print(minute_diff) #1440.0

hour_diff = t.hour_diff_from_now('after 1 days')

print(hour_diff) #24.0

day_diff = t.day_diff_from_now('after 1 days')

print(day_diff) #1.0

sec_diff = t.second_diff_from_now('after 1 days')

print(sec_diff) #86400.0

FAQs


Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc