Update README.md

This commit is contained in:
Ritchie Mwewa
2026-01-23 23:22:59 +02:00
parent fb3f1a39af
commit 5464932b09

View File

@@ -9,6 +9,20 @@ Terminal-based toolkit for GitHub data analysis.
![Build Status](https://img.shields.io/github/actions/workflow/status/bellingcat/octosuite/python-publish.yml)
![License](https://img.shields.io/github/license/bellingcat/octosuite)
```shell
$ octosuite user torvalds --profile
```
```python
from pprint import pprint
import octosuite
exists, profile = octosuite.User(name="torvalds")
if exists:
pprint(profile)
```
## Installation
```bash