tomilliseconds

Convert an object of time properties to milliseconds: {'seconds': 10} → 10000


License
MIT
Install
pip install tomilliseconds==1.0.1

Documentation

Compare URLs

Convert an object of time properties to milliseconds: {'seconds': 10} → 10000

Demo

Demo on Repl.it

Screenshot

Install

$ pip install tomilliseconds

Usage

from tomilliseconds import toMilliseconds

toMilliseconds({
	'days': 28,
	'hours': 8,
	'minutes': 30,
	'seconds': 50,
	'milliseconds': 1
})

#=> 2449850001

API

toMilliseconds(input)

input

Type: Dictionary

Specify an object with any of the following properties:

  • days
  • hours
  • minutes
  • seconds
  • milliseconds
  • microseconds
  • nanoseconds

Thanks

Get Help

There are few ways to get help:

  1. Please post questions on Stack Overflow. You can open issues with questions, as long you add a link to your Stack Overflow question.

  2. For bug reports and feature requests, open issues.

  3. For direct and quick help, you can email me.

How to contribute

Have an idea? Found a bug? See how to contribute.

Thanks!

License

MIT