docs: reorganize README and consolidate command catalog#2
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: abdf215d30
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| ```bash | ||
| python google_drive_downloader/gdrive_downloader.py <drive_file_id> <destination_file_path> | ||
| # 示例 | ||
| python google_drive_downloader/gdrive_downloader.py 1XxbBesX4SjXGrXOCDuju9AqCr7BrqDpa ./datasets/datasets.zip |
There was a problem hiding this comment.
Point gdrive sample to a writable existing path
The example command uses ./datasets/datasets.zip, but this repository does not contain a datasets/ directory by default, so users running the README command on a fresh clone will hit FileNotFoundError when gdrive_downloader.py opens the destination path (it does not create parent directories). Please either add a preceding mkdir -p ./datasets step or change the sample destination to an existing path like ./datasets.zip.
Useful? React with 👍 / 👎.
|
@copilot review this PR |
PR ReviewWhat this PR doesTwo commits:
✅ What looks good
|
Motivation
Ctrl + Fwithout opening subdirectories.Description
README.mdinto a consolidated command handbook that replaces fragmented and duplicated sections with a single structured document..pyand.shfiles with usage examples for argument-based scripts.Testing
README.mdcontent and structure usingsed -nandnl -bato print and inspect sections, and the expected headings and blocks are present.git status --shortand validated onlyREADME.mdwas modified.rg --filesto ensure scripts referenced by the README exist in the repo.Codex Task