https://github.com/mre/gh-stats
Async command-line tool for retrieving the stars of all your Github projects. 🌟
https://github.com/mre/gh-stats
api-client early-access github stars
Last synced: 11 months ago
JSON representation
Async command-line tool for retrieving the stars of all your Github projects. 🌟
- Host: GitHub
- URL: https://github.com/mre/gh-stats
- Owner: mre
- Created: 2020-09-20T15:40:56.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-12-27T23:05:42.000Z (over 4 years ago)
- Last Synced: 2025-03-31T23:41:39.614Z (about 1 year ago)
- Topics: api-client, early-access, github, stars
- Language: Rust
- Homepage:
- Size: 105 KB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 🌟 Github Stats
**🌈 This project graduated from
[mre-early-access](https://github.com/mre-early-access) on December 26, 2020 and
is now public thanks to [my generous
sponsors](https://github.com/sponsors/mre).**
## Examples
#### Get stats for the current user:
```rust
cargo run -- --stars 100 --template template.md --filter projectname
```
#### Get stats for specific user:
```rust
cargo run -- mre --stars 100 --template template.md --filter projectname
```
## Installation
```
cargo install --git https://github.com/mre/gh-stats --branch=main
```
(We have to wait for hubcaps 0.6.3+ for publication on crates.io.)
## Usage
```
gh-stats 0.1.0
Github Stats
USAGE:
gh-stats [FLAGS] [OPTIONS] --template [--] [user]
FLAGS:
-h, --help Prints help information
-V, --version Prints version information
--with-orgs Include organization repositories
OPTIONS:
-f, --filter ... Filter repositories (regex support)
-o, --output Output file
-s, --stars The minimum number of stars required to display a project [default: 0]
-t, --template Template file
ARGS:
Github username for stats (default: own user)
```