You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+67-7Lines changed: 67 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,14 +32,39 @@ You can also replace `hub` with `ingest` in any GitHub URL to access the corresp
32
32
33
33
## 📚 Requirements
34
34
35
-
- Python 3.7+
35
+
- Python 3.8+
36
+
- For private repositories: A GitHub Personal Access Token (PAT). You can generate one at [https://github.com/settings/personal-access-tokens](https://github.com/settings/personal-access-tokens) (Profile → Settings → Developer Settings → Personal Access Tokens → Fine-grained Tokens)
36
37
37
-
## 📦 Installation
38
+
###📦 Installation
38
39
39
-
```bash
40
+
Gitingest is available on [PyPI](https://pypi.org/project/gitingest/).
41
+
You can install it using `pip`:
42
+
43
+
```bash
40
44
pip install gitingest
41
45
```
42
46
47
+
However, it might be a good idea to use `pipx` to install it.
48
+
You can install `pipx` using your preferred package manager.
49
+
50
+
```bash
51
+
brew install pipx
52
+
apt install pipx
53
+
scoop install pipx
54
+
...
55
+
```
56
+
57
+
If you are using pipx for the first time, run:
58
+
59
+
```bash
60
+
pipx ensurepath
61
+
```
62
+
63
+
```bash
64
+
# install gitingest
65
+
pipx install gitingest
66
+
```
67
+
43
68
## 🧩 Browser Extension Usage
44
69
45
70
<!-- markdownlint-disable MD033 -->
@@ -57,17 +82,37 @@ Issues and feature requests are welcome to the repo.
57
82
The `gitingest` command line tool allows you to analyze codebases and create a text dump of their contents.
0 commit comments