Skip to content

Commit 15ba062

Browse files
modified read me
1 parent 913a047 commit 15ba062

File tree

5 files changed

+59
-3
lines changed

5 files changed

+59
-3
lines changed

AutoMoveFiles/AutoMoveFiles.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from watchdog.observers import Observer
22
from watchdog.events import FileSystemEventHandler
33

4-
# pip install watchdog (required)
4+
# pip install watchdog /or/ poetry add watchdog (required)
55

66
import time
77
import os

AutoMoveFiles/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22
The script moves files automatically from a tracked folder to the destination folder.
33

44
## Getting started
5-
- `pip install watchdog`
6-
- `python AutoMoveFiles.py`
5+
- `pip install watchdog` or `poetry add watchdog`
6+
- `cd AutoMoveFiles`
7+
- `python -m AutoMoveFiles.py`
78
- Enter the path to the source folder
89
> for example: `C:\Users\example\Downloads`
910
- Enter the path to destination folder
Binary file not shown.

AutoMoveFiles/poetry.lock

Lines changed: 40 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

AutoMoveFiles/pyproject.toml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
[tool.poetry]
2+
name = "automovefiles"
3+
version = "0.1.0"
4+
description = ""
5+
authors = ["HishamKhalil1990 <hisham.khalil1990@gmail.com>"]
6+
7+
[tool.poetry.dependencies]
8+
python = "^3.8"
9+
watchdog = "^2.1.3"
10+
11+
[tool.poetry.dev-dependencies]
12+
13+
[build-system]
14+
requires = ["poetry-core>=1.0.0"]
15+
build-backend = "poetry.core.masonry.api"

0 commit comments

Comments
 (0)