Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/michaelsousajr/fileoperator
python file operations library
https://github.com/michaelsousajr/fileoperator
pip pypi-package python3
Last synced: about 22 hours ago
JSON representation
python file operations library
- Host: GitHub
- URL: https://github.com/michaelsousajr/fileoperator
- Owner: michaelsousajr
- License: mit
- Created: 2023-11-23T04:35:26.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-04T00:05:29.000Z (about 1 month ago)
- Last Synced: 2025-02-04T20:36:36.279Z (7 days ago)
- Topics: pip, pypi-package, python3
- Language: Python
- Homepage: https://pypi.org/project/fileoperator/
- Size: 196 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: Contributing.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# fileoperator: Python File Operations Library
![logo](./public/logo.png)
## About
`fileoperator` is an all-in-one Python utility package designed to simplify and streamline a wide range of file operations. This package offers comprehensive solutions for file handling, including encryption, compression, file manipulation, and much more. Whether you're dealing with legacy code or need an efficient way to handle complex file operations, `fileoperator` is your go-to library.
## Features
- **File Encryption & Decryption**: Secure your files with state-of-the-art encryption standards.
- **File Compression & Decompression**: Efficiently compress and decompress files using various algorithms.
- **Data Import/Export Utilities**: Streamline the process of importing and exporting data.
- **Advanced File Manipulation**: Perform advanced file operations like batch renaming, searching, and splitting.
- **Cross-Platform Compatibility**: Works seamlessly on Windows, macOS, and Linux.## Installation
To install fileoperator, simply run the following command in your terminal:
`pip install fileoperator`## Usage
Here are some basic examples of how `fileoperator` can be used:
### Encrypting a File
```Python
from fileoperator import encrypt_fileencrypt_file('path/to/your/file.txt', 'path/to/target/file.txt', 'your-encryption-key')
```
### Compression
```Python
from fileoperator import compress_filecompress_file('path/to/your/file.txt','path/to/compressed/file.zip')
```### Full list of functions
View full list of functions in the tests folder## Contributing
Contributions to fileoperator are welcome! If you have a suggestion or improvement, feel free to fork the repository and submit a pull request. Check Contributing.md for more details.## License
fileoperator is licensed under the MIT License. Check LICENSE.txt for more details.