Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/devalv/repo-cloner
https://github.com/devalv/repo-cloner
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/devalv/repo-cloner
- Owner: devalv
- License: mit
- Archived: true
- Created: 2022-02-13T07:36:00.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-07-12T15:23:07.000Z (over 1 year ago)
- Last Synced: 2024-06-28T13:34:33.391Z (5 months ago)
- Language: Python
- Size: 35.2 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Liked repos cloner
---Script takes user public liked repos and clone it to a local folder.
## Installation
Install git (if it`s not installed).
```bash
git clone https://github.com/devalv/repo-cloner && cd repo-cloner
python3 -m venv venv
venv/bin/pip3 install -r requirements.txt
```## How to run
### Simple example
```bash
venv/bin/python3 main.py -u devalv -d . -w 4 2>&1 | tee repo-cloner.log
```### Arguments
```bash
-u, --user - the name of the user whose starred repository needs to be cloned
-d, --dir - directory where cloned repos should be stored
-w, --workers - workers count
-c, --compress - compress directory with cloned repos to zip archive
-t, --token - GitHub personal access token
```