Skip to content

Commit b5af600

Browse files
committed
add main.py
1 parent bc71a03 commit b5af600

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,11 @@ This utility enables efficient and reliable data acquisition directly in the fie
2121
## Document description
2222
In this repository, we have three documents:
2323
1. transfer.py – All the process are programed here.
24-
2. main.ipynb – This Jupyter Notebook allows users to adjust input parameters as needed. After modifying the parameters, simply click `run` to generate results, which will be saved in the designated output folder. Three parameters are described below:
24+
2. main.ipynb – This Jupyter Notebook allows users to adjust input parameters as needed. After modifying the parameters, simply click `run` to generate results, which will be saved in the designated output folder. Three parameters are described below.
2525
- `source`: where the data comes from.
2626
- `destination`: where the data will be saved.
27-
- `days`: specifies the number of days of data you want to extract.
27+
- `days`: specifies the number of days of data you want to extract.<br>
28+
A document named `main.py` is also provided, which has the same function.
2829
3. README.md - which can help you to understand this repository.
2930

3031
## Citation

main.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
from transfer import transfer_recent_files
2+
3+
source = r"D:\EC-Tower-Data"
4+
destination = r"D:\Download"
5+
days = 30
6+
7+
transfer_recent_files(source, destination, days)

0 commit comments

Comments
 (0)