From 5464932b09e0e0260f92d802a877d30d4048951b Mon Sep 17 00:00:00 2001 From: Ritchie Mwewa <74001397+rly0nheart@users.noreply.github.com> Date: Fri, 23 Jan 2026 23:22:59 +0200 Subject: [PATCH] Update README.md --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index dead859..e26824e 100644 --- a/README.md +++ b/README.md @@ -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