A Python Project Where backup of Selected files are stored in the same directory.
BackUpSoftware is a simple Python project designed to create backups of selected files in the same directory. It aims to help users easily store copies of their important files.
- Python 3.x
- PyInstaller (for creating the executable)
-
Clone the repository:
git clone https://github.com/Aryan01b/BackUpSoftware.git cd BackUpSoftware -
Install the required dependencies:
pip install -r requirements.txt
To create an executable using PyInstaller, follow these steps:
-
Install PyInstaller if you haven't already:
pip install pyinstaller
-
Navigate to the project directory and run the following command to create the executable:
pyinstaller --onefile backup.py
-
The executable will be created in the
distdirectory.
-
Run the executable:
./dist/backup
-
Follow the on-screen instructions to select the files you want to back up.
Here's an example of how to use BackUpSoftware:
./dist/backupFollow the prompts to select the files you wish to back up. The selected files will be copied to the same directory with a timestamp appended to their names.
Contributions are welcome! Please feel free to submit a Pull Request.
This project is licensed under the MIT License. See the LICENSE file for details.
Feel free to modify this draft to better fit your project's specifics. Let me know if you need any further changes!