https://github.com/upcraftlp/cflookup-cli
CLI tool for getting info from https://cflookup.com
https://github.com/upcraftlp/cflookup-cli
curseforge curseforge-api minecraft minecraft-modding minecraft-modpack
Last synced: 3 months ago
JSON representation
CLI tool for getting info from https://cflookup.com
- Host: GitHub
- URL: https://github.com/upcraftlp/cflookup-cli
- Owner: UpcraftLP
- License: mit
- Created: 2025-09-12T03:04:02.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2025-09-16T18:11:05.000Z (4 months ago)
- Last Synced: 2025-09-16T21:08:56.728Z (4 months ago)
- Topics: curseforge, curseforge-api, minecraft, minecraft-modding, minecraft-modpack
- Language: Rust
- Homepage:
- Size: 113 KB
- Stars: 3
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# cflookup-cli
[](LICENSE.md)
[](https://github.com/UpcraftLP/cflookup-cli/commits/main/ "GitHub commit activity")
[](https://github.com/UpcraftLP/cflookup-cli/actions/workflows/ci.yml?query=branch%3Amain)
a CLI tool for getting info from https://cflookup.com
## How to use:
The general output will be in YAML format, so it is recommended to pipe it into a tool like `yq` to process it:
```shell
cflookup slug ender-io | yq .id,.name,.downloadCount
```
...outputs:
```
64578
Ender IO
105552007
```
To see CLI usage use the built-in help command (works withs with subcommands too!):
```shell
cflookup --help
```
## Install
### You can download prebuilt binaries from [nightly.link](https://nightly.link/UpcraftLP/cflookup-cli/workflows/ci/main)
### Cargo
If you have a rust toolchain installed, you can install from source using `cargo`:
```shell
cargo install --git https://github.com/UpcraftLP/cflookup-cli
```