Metadata-Version: 2.4
Name: neattime
Version: 0.0.1
Summary: A single function to get a nice date-time format
Project-URL: Homepage, https://github.com/cgeils25/getdate
Project-URL: Issues, https://github.com/cgeils25/getdate/issues
Author-email: Christian Geils <christiangeils@outlook.com>
Maintainer-email: Christian Geils <christiangeils@outlook.com>
License-Expression: MIT
License-File: LICENSE
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# getdate

This package includes a simple function to create my preferred date-time format for log files.

Example:

```
from getdate import getdate

print(getdate())
```

output:

```
'2025-02-26_08.34.13.636609'
```

How I would actually use it:

```
from getdate import getdate

filepath = f'save_directory/log_{getdate()}'

# some code that saves my logfile

print(f"File saved to {filepath}")
```

output:

```
File saved to save_directory/log_2025-02-26_08.34.13.636609
```