# git-directory-download **Repository Path**: twfb/git-directory-download ## Basic Information - **Project Name**: git-directory-download - **Description**: download github specify directory - **Primary Language**: Python - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-07-05 - **Last Updated**: 2021-07-05 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # git-directory-download ## Install ``` git clone https://github.com/twfb/git-directory-download.git cd git-directory-download python3 -m pip install -r requirements.txt chmod +x gitd ./gitd ``` ## Usage ``` usage: gitd [-h] [-u URL] [-r] [-p] [--proxy PROXY] optional arguments: -h, --help show this help message and exit -u URL, --url URL github url, split by ",", example: "https://x, http://y" -r, --raw download from raw url -p, --parse download by parsing html --proxy PROXY proxy config, example "socks5://127.0.0.1:7891" Example: 1. download by raw url: gitd -u "https://github.com/twfb/git-directory-download" 2. download by raw url: gitd -r -u "https://github.com/twfb/git-directory-download" 3. dowmload by parsing: gitd -p -u "https://github.com/twfb/git-directory-download" 4. download by raw url with proxy: gitd -r -u "https://github.com/twfb/git-directory-download" --proxy "socks5://127.0.0.1:7891" ```