Metadata-Version: 2.1
Name: datetimetounix
Version: 0.0.2
Summary: Simple datetime to unix converter
Home-page: https://github.com/drapespy/datetimetounix
Author: drapes
Author-email: lildrapesbusiness@gmail.com
License: MIT
Keywords: datetime converter,unix converter,unix,datetime,converter
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Requires-Python: >=3.5.3
Description-Content-Type: text/markdown
License-File: LICENSE

# datetimetounix
 Basic datetime to unix converter.

 Examples

```py
import datetimetounix as dtu
import datetime

x = dtu.convert(datetime.datetime.utcnow())

print(x)
```


