https://github.com/thombashi/list-sponsors
A CLI tool to list GitHub sponsors of a user/organization with specified format (markdown/html/rst).
https://github.com/thombashi/list-sponsors
github-sponsors
Last synced: 4 months ago
JSON representation
A CLI tool to list GitHub sponsors of a user/organization with specified format (markdown/html/rst).
- Host: GitHub
- URL: https://github.com/thombashi/list-sponsors
- Owner: thombashi
- License: mit
- Created: 2022-03-06T08:25:37.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2025-06-23T17:22:25.000Z (11 months ago)
- Last Synced: 2025-07-02T01:41:29.762Z (11 months ago)
- Topics: github-sponsors
- Language: Python
- Homepage:
- Size: 48.8 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# **list-sponsors**
## Summary
A CLI tool to list GitHub sponsors of a user/organization with a specified format.
## Installation
```
pip install list-sponsors
```
## Command help
```
usage: list-sponsors [-h] [-V] [--name GITHUB_LOGIN_NAME] [--token GITHUB_TOKEN] [--format {md,markdown,rst,restructuredtext,html}] [--avatar-size SIZE] [--debug | --quiet]
A CLI tool to list GitHub sponsors of a user/organization with specified format.
Require a GitHub personal access token either by
--token option or GITHUB_TOKEN environment variable.
optional arguments:
-h, --help show this help message and exit
-V, --version show program's version number and exit
--name GITHUB_LOGIN_NAME
login name of a GitHub user. if this option is not specified, use the login name of the GitHub personal access token.
--token GITHUB_TOKEN GitHub personal access token.
--format {md,markdown,rst,restructuredtext,html}
defaults to markdown.
--avatar-size SIZE avatar size will be SIZExSIZE defaults to 48.
--debug for debug print.
--quiet suppress execution log messages.
Issue tracker: https://github.com/thombashi/list-sponsors/issues
```
## Usage
List your sponsors:
```
export GITHUB_TOKEN=
list-sponsors
```
### Output: raw markdown
```md
[")](https://github.com/b4tman)
[")](https://github.com/chasbecker)
[](https://github.com/Arturi0)
```
### Output: rendered
[")](https://github.com/b4tman)
[")](https://github.com/chasbecker)
[](https://github.com/Arturi0)
## Dependencies
- Python 3.8+
- [Python package dependencies (automatically installed)](https://github.com/thombashi/list-sponsors/network/dependencies)