Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

Awesome Lists containing this project

README

        

# Gitfetch :octocat:


Gitfetch Cli
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 GitFetch

git = 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.