Skip to main content

elapsed time

Project description

Install

$ [sudo] pip install elapsed

Features

  • accepts datetime or pid. os.getcwd() by default

Classes

elapsed.Elapsed

method __doc__
__str__() format elapsed time in the form [[dd-]hh:]mm:ss
@property __doc__
days return elapsed time in days
hours return elapsed time in hours
minutes return elapsed time in minutes

Functions

function __doc__
elapsed.days(input=None) return elapsed time in days. accepts pid or datetime
elapsed.get(input=None) return elapsed.Elapsed instance. accepts pid or datetime
elapsed.hours(input=None) return elapsed time in hours. accepts pid or datetime
elapsed.minutes(input=None) return elapsed time in minutes. accepts pid or datetime
elapsed.seconds(input=None) return elapsed time in seconds. accepts pid or datetime

Examples

datetime elapsed time

>>> dt = datetime.datetime.now()
>>> time.sleep(2)
>>> elapsed.get(dt)
'00:02'

process elapsed time by pid (os.getpid() by default)

>>> import elapsed
>>> e = elapsed.get(1)
'02-16:30:38'
>>> e.days, e.hours, e.minutes, e.seconds
(2, 64, 3870, 232238)

elapsed.seconds(), elapsed.minutes(), elapsed.hours(), elapsed.days()

>>> elapsed.seconds(1)
232238
>>> elapsed.minutes(1)
3870
>>> elapsed.hours(1)
64
>>> elapsed.days(1)
2

readme-md - README.md generator

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

elapsed-2018.12.11.tar.gz (2.1 kB view hashes)

Uploaded Source

Built Distribution

elapsed-2018.12.11-py2.py3-none-any.whl (2.8 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page