Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Itz-fork/Gitfetch
Gitfetch is a simple tool to get github user details
https://github.com/Itz-fork/Gitfetch
github python-cli
Last synced: 3 months ago
JSON representation
Gitfetch is a simple tool to get github user details
- Host: GitHub
- URL: https://github.com/Itz-fork/Gitfetch
- Owner: Itz-fork
- License: mit
- Created: 2021-11-22T03:14:57.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2021-11-23T10:03:32.000Z (almost 3 years ago)
- Last Synced: 2024-07-16T11:38:37.525Z (4 months ago)
- Topics: github, python-cli
- Language: Python
- Homepage: https://pypi.org/project/Gitfetch
- Size: 9.77 KB
- Stars: 7
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Gitfetch :octocat:
Just a (cli?) tool to get github user details 🙂## Installation 📂
Install [Gitfetch](https://github.com/Itz-fork/Gitfetch) via pypi
```
pip install gitfetch
```or
```
pip install git+https://github.com/Itz-fork/Gitfetch.git
```## Usage 👀
- **CLI Usage 👇,**
- ```
gitfetch [your github username]
```
- Ex:
```gitfetch Itz-fork```- **Use it as a python module 👇,**
- ```python
from gitfetch_tools import GitFetchgit = GitFetch("Your-Github-Username")
print(git.fetch_user_data())
```## FAQ 😕
#### Q: I can't install Gitfetch cli, what to do?
**A:** If you got an error like `command not found: gitfetch` then install it with `sudo` permissions.
- ```
sudo pip install gitfetch
```#### Q: Can I customize it?
**A:** Yeah, check [fetch.py](https://github.com/Itz-fork/Gitfetch/blob/master/gitfetch_tools/fetch.py) and [display](https://github.com/Itz-fork/Gitfetch/blob/master/gitfetch_tools/display) files.