Skip to main content

Sortipy is designed to help you organize files in a directory by sorting them based on their file extensions.

Project description

Sortipy

Sortipy is a Python package designed to help you organize files in a directory by sorting them based on their file extensions.

Summary

Installation

You can install Sortipy using pip:

pip install sortipy

Usage

from sortipy import sortipy

# Sort files in a directory without specifing extensions
sort_everything = sortipy.sort("path/to/your/directory")

# Sort files in a directory and specify extensions to consider
sort_specific_extensions = sortipy.sort("path/to/your/directory", extensions=["pdf", "txt"])

# Print the sorted results
print(sort_everything)

Parameters

  • path (str): The path to the directory containing files to be sorted.
  • extensions (List[str], optional): A list of file extensions to consider during sorting. Defaults to an empty list. If not provided, Sortipy considers all file extensions in the directory.

Returns

A dictionary containing sorted files grouped by their extensions. Keys represent file extensions, and values are lists of file names.

Example

Suppose you have a directory "C:/Users/username/Downloads" with the following files:

  • report.pdf
  • notes.txt
  • picture.jpg
  • document.docx
  • presentation.pptx

You can sort the PDF and TXT files with Sortipy:

from sortipy import sortipy

# Sort PDF and TXT files in the Downloads directory
results = sortipy.sort("C:/Users/username/Downloads", extensions=["pdf", "txt"])

# Print the sorted results
print(results)

Output:

{
    'pdf': ['report'],
    'txt': ['notes']
}

Now, the PDF and TXT files are moved to their respective folders within the Downloads directory.

Default Behavior

By default, Sortipy considers all file extensions in the directory for sorting. If you want to do this, you don't need to pass the extensions list. Only the directory will work just fine.

Contributing

If you'd like to contribute to Sortipy, please feel free to submit pull requests or open issues on the GitHub repository.

License

This project is licensed under the MIT License.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sortipy-0.0.3.tar.gz (6.4 kB view hashes)

Uploaded Source

Built Distribution

sortipy-0.0.3-py3-none-any.whl (7.8 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page