From 01254cab22248d92f7dfb180d806f32fbb6996c8 Mon Sep 17 00:00:00 2001 From: gitee-bot Date: Wed, 9 Jul 2025 14:16:26 +0000 Subject: [PATCH] Update README.md --- README.en.md | 25 +++++++++++++++++++++++++ README.md | 25 +++++++++++++++++++++++++ 2 files changed, 50 insertions(+) create mode 100644 README.en.md create mode 100644 README.md diff --git a/README.en.md b/README.en.md new file mode 100644 index 0000000..e16055b --- /dev/null +++ b/README.en.md @@ -0,0 +1,25 @@ +# Crawl Packages According to CSV File + +## Description + +Synchronize upstream source packages according to the package GAV (Group, Artifact, Version) information in the CSV file. + +## Usage + +```shell +usage: crawler.py [-h] -f FILE -t TYPE [-s SEP] [--no-header] [-o LOG_DIR] + [--last-sync LAST_SYNC] + +Sync packages according to csv file + +optional arguments: + -h, --help show this help message and exit + -f FILE, --file FILE specify the csv file which contains package info to sync + -t TYPE, --type TYPE specify the type of packages ready to sync + -s SEP, --sep SEP specify the sep of csv file (default: " ") + --no-header whether the csv file has header + -o LOG_DIR, --log-dir LOG_DIR + specify log directory (default: /tmp) + --last-sync LAST_SYNC + specify last sync package +``` \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..02a9373 --- /dev/null +++ b/README.md @@ -0,0 +1,25 @@ +# Crawl Packages According to CSV File + +## Description + +根据 CSV 文件中的制品 GAV(Group, Artifact, Version)同步上游源的制品。 + +## Usage + +```shell +usage: crawler.py [-h] -f FILE -t TYPE [-s SEP] [--no-header] [-o LOG_DIR] + [--last-sync LAST_SYNC] + +Sync packages according to csv file + +optional arguments: + -h, --help show this help message and exit + -f FILE, --file FILE specify the csv file which contains package info to sync + -t TYPE, --type TYPE specify the type of packages ready to sync + -s SEP, --sep SEP specify the sep of csv file (default: " ") + --no-header whether the csv file has header + -o LOG_DIR, --log-dir LOG_DIR + specify log directory (default: /tmp) + --last-sync LAST_SYNC + specify last sync package +``` \ No newline at end of file -- Gitee