Metadata-Version: 2.1
Name: tidyup
Version: 0.0.1
Summary: Help keep your files and folders tidy by file type or date
Author-email: Esteban Valencia <me@estebanvalencia.com>
Maintainer-email: Esteban Valencia <me@estebanvalencia.com>
License: MIT
Keywords: utility
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.9.1
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: setuptools_scm

# Tidyup 🧹

> Sweep up your files into organized piles for clean up  

## Description  

Simple python utility to clean up project directories from the mess you make while working.  

### How it works  

Go to the directory, get all of the files, exclude the ones that are likely important for your project and then create directories in the project by the file extension. Once the directory is made, the files are moved to the file extension directory.

## Usage

Install the python utility:

```bash
pip install tidyup
```

Then get to tidying up 


```bash
#Clean up directory with the structure year/month/extension/file_here.extension
tidyup -de <directory/with/mess>
```

## Functionality

```bash

tidyup -h
usage: tidyup [-h] [-e] [-d] directory

Organize files by extension and/or date.

positional arguments:
  directory   Directory to organize

options:
  -h, --help  show this help message and exit
  -e          Organize by extension
  -d          Organize by date

Examples:
  tidyup -e /path/to/dir       Organize by extension
  tidyup -d /path/to/dir       Organize by date
  tidyup -ed /path/to/dir      Organize by extension and date
  tidyup -de /path/to/dir      Organize by date and extension
```



