Metadata-Version: 2.1
Name: str2time
Version: 1.0.1
Summary: A module changing string to seconds.
Home-page: https://github.com/Tim232/str2time
Author: Tim232
Author-email: endbot4023@gmail.com
License: GNU General Public License v3.0
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# str2time

A module changing string to seconds.

How To Install : 
```
pip install str2time
```

How To Use :
```python
import str2time

# dt = str2time.handle('in' or 'at', 'month/day/year' or 'hh:mm:ss')

dt = str2time.handle('in', '01:20:32')

print(dt)
```

```
4832.0
```


