gitraze 0.0.1__tar.gz → 0.0.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- gitraze-0.0.2/PKG-INFO +138 -0
- gitraze-0.0.2/README.md +123 -0
- {gitraze-0.0.1 → gitraze-0.0.2}/gitraze/cli.py +3 -1
- gitraze-0.0.2/gitraze.egg-info/PKG-INFO +138 -0
- {gitraze-0.0.1 → gitraze-0.0.2}/pyproject.toml +1 -1
- gitraze-0.0.1/PKG-INFO +0 -55
- gitraze-0.0.1/README.md +0 -40
- gitraze-0.0.1/gitraze.egg-info/PKG-INFO +0 -55
- {gitraze-0.0.1 → gitraze-0.0.2}/gitraze/__init__.py +0 -0
- {gitraze-0.0.1 → gitraze-0.0.2}/gitraze/config.py +0 -0
- {gitraze-0.0.1 → gitraze-0.0.2}/gitraze/core/__init__.py +0 -0
- {gitraze-0.0.1 → gitraze-0.0.2}/gitraze/core/api_graphql.py +0 -0
- {gitraze-0.0.1 → gitraze-0.0.2}/gitraze/core/api_rest.py +0 -0
- {gitraze-0.0.1 → gitraze-0.0.2}/gitraze/modules/__init__.py +0 -0
- {gitraze-0.0.1 → gitraze-0.0.2}/gitraze/modules/analytics.py +0 -0
- {gitraze-0.0.1 → gitraze-0.0.2}/gitraze/modules/repo.py +0 -0
- {gitraze-0.0.1 → gitraze-0.0.2}/gitraze/modules/search.py +0 -0
- {gitraze-0.0.1 → gitraze-0.0.2}/gitraze/modules/user.py +0 -0
- {gitraze-0.0.1 → gitraze-0.0.2}/gitraze/utils/__init__.py +0 -0
- {gitraze-0.0.1 → gitraze-0.0.2}/gitraze/utils/helpers.py +0 -0
- {gitraze-0.0.1 → gitraze-0.0.2}/gitraze.egg-info/SOURCES.txt +0 -0
- {gitraze-0.0.1 → gitraze-0.0.2}/gitraze.egg-info/dependency_links.txt +0 -0
- {gitraze-0.0.1 → gitraze-0.0.2}/gitraze.egg-info/entry_points.txt +0 -0
- {gitraze-0.0.1 → gitraze-0.0.2}/gitraze.egg-info/requires.txt +0 -0
- {gitraze-0.0.1 → gitraze-0.0.2}/gitraze.egg-info/top_level.txt +0 -0
- {gitraze-0.0.1 → gitraze-0.0.2}/setup.cfg +0 -0
gitraze-0.0.2/PKG-INFO
ADDED
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: gitraze
|
|
3
|
+
Version: 0.0.2
|
|
4
|
+
Summary: A CLI and Python library for GitHub reconnaissance, search, and analysis
|
|
5
|
+
Author: AK Pandey
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/akpandey-dev/gitraze
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Requires-Python: >=3.8
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
Requires-Dist: requests
|
|
14
|
+
Requires-Dist: colorama
|
|
15
|
+
|
|
16
|
+
# Gitraze
|
|
17
|
+
|
|
18
|
+
> A fast, hacker-style CLI for slicing through GitHub data like a blade.
|
|
19
|
+
|
|
20
|
+
Gitraze is a powerful command-line tool designed to explore, analyze, and extract insights from GitHub using both REST and GraphQL APIs — all from your terminal.
|
|
21
|
+
|
|
22
|
+
⚠️ **Status:** Early development — expect bugs, missing features, and rapid changes.
|
|
23
|
+
|
|
24
|
+
---
|
|
25
|
+
|
|
26
|
+
## Why Gitraze?
|
|
27
|
+
|
|
28
|
+
Most GitHub tools are either slow, bloated, or UI-heavy.
|
|
29
|
+
|
|
30
|
+
**Gitraze is different:**
|
|
31
|
+
- ⚡ Fast, minimal, no nonsense
|
|
32
|
+
- 🧠 Built for developers who think in terminals
|
|
33
|
+
- 🔍 Deep GitHub data access (REST + GraphQL)
|
|
34
|
+
- 🧩 Modular and extensible architecture
|
|
35
|
+
|
|
36
|
+
---
|
|
37
|
+
|
|
38
|
+
## Features
|
|
39
|
+
|
|
40
|
+
- 🔌 Modular system (easy to extend and hack on)
|
|
41
|
+
- 💻 CLI-first workflow
|
|
42
|
+
- 🌐 GitHub API integration (REST + GraphQL)
|
|
43
|
+
- 📦 Repository insights
|
|
44
|
+
- 👤 User analysis
|
|
45
|
+
- 🔎 Search capabilities
|
|
46
|
+
- 📊 Analytics modules (in progress)
|
|
47
|
+
|
|
48
|
+
---
|
|
49
|
+
|
|
50
|
+
## Installation
|
|
51
|
+
|
|
52
|
+
```bash
|
|
53
|
+
pip install gitraze
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
## Usage
|
|
58
|
+
|
|
59
|
+
Run directly from your terminal:
|
|
60
|
+
|
|
61
|
+
Example:
|
|
62
|
+
```bash
|
|
63
|
+
gitraze --help
|
|
64
|
+
gitraze user octocat
|
|
65
|
+
gitraze repo torvalds/linux # Coming soon!
|
|
66
|
+
gitraze search "machine learning" # Not implemented yet
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
Example output:
|
|
70
|
+
```bash
|
|
71
|
+
$ gitraze user octocat
|
|
72
|
+
|
|
73
|
+
[+] Fetching user data...
|
|
74
|
+
[✓] Done
|
|
75
|
+
|
|
76
|
+
User: octocat
|
|
77
|
+
-------------
|
|
78
|
+
Name : The Octocat
|
|
79
|
+
Login : octocat
|
|
80
|
+
Id : 583231
|
|
81
|
+
Node_id : MDQ6VXNlcjU4MzIzMQ==
|
|
82
|
+
Type : User
|
|
83
|
+
User_view_type : public
|
|
84
|
+
Bio : None
|
|
85
|
+
Followers : 22312
|
|
86
|
+
Following : 9
|
|
87
|
+
Public_repos : 8
|
|
88
|
+
Public_gists : 8
|
|
89
|
+
Location : San Francisco
|
|
90
|
+
Profile_url : https://github.com/octocat
|
|
91
|
+
Created_at : 25 Jan 2011
|
|
92
|
+
Email : None
|
|
93
|
+
Twitter_username : None
|
|
94
|
+
|
|
95
|
+
```
|
|
96
|
+
> 💡 Commands prefixed with `$` should be run in your terminal.
|
|
97
|
+
|
|
98
|
+
You can also use it inside Python:
|
|
99
|
+
|
|
100
|
+
```python
|
|
101
|
+
import gitraze
|
|
102
|
+
```
|
|
103
|
+
|
|
104
|
+
⚠️ CLI commands are still evolving and may change.
|
|
105
|
+
|
|
106
|
+
## Philosophy
|
|
107
|
+
|
|
108
|
+
Gitraze is built for speed, clarity, and control.
|
|
109
|
+
|
|
110
|
+
No GUI. No clutter. No distractions.
|
|
111
|
+
Just raw access to GitHub data — the way it should be.
|
|
112
|
+
|
|
113
|
+
If you live in the terminal, Gitraze lives with you.
|
|
114
|
+
|
|
115
|
+
## Development Setup
|
|
116
|
+
|
|
117
|
+
Clone the repo and install locally:
|
|
118
|
+
|
|
119
|
+
```bash
|
|
120
|
+
git clone https://github.com/akpandey-dev/gitraze.git
|
|
121
|
+
cd gitraze
|
|
122
|
+
pip install -e .
|
|
123
|
+
```
|
|
124
|
+
|
|
125
|
+
## Project Status
|
|
126
|
+
|
|
127
|
+
Gitraze is in active development:
|
|
128
|
+
|
|
129
|
+
- Expect breaking changes
|
|
130
|
+
- Some commands may not work
|
|
131
|
+
- Features are being added rapidly
|
|
132
|
+
- GraphQL feature is basically absent now, but is coming soon
|
|
133
|
+
|
|
134
|
+
If you're here early — you're basically a beta tester 😈
|
|
135
|
+
|
|
136
|
+
## License
|
|
137
|
+
|
|
138
|
+
MIT License — do whatever you want, just don’t blame me if you break stuff.
|
gitraze-0.0.2/README.md
ADDED
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
# Gitraze
|
|
2
|
+
|
|
3
|
+
> A fast, hacker-style CLI for slicing through GitHub data like a blade.
|
|
4
|
+
|
|
5
|
+
Gitraze is a powerful command-line tool designed to explore, analyze, and extract insights from GitHub using both REST and GraphQL APIs — all from your terminal.
|
|
6
|
+
|
|
7
|
+
⚠️ **Status:** Early development — expect bugs, missing features, and rapid changes.
|
|
8
|
+
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
## Why Gitraze?
|
|
12
|
+
|
|
13
|
+
Most GitHub tools are either slow, bloated, or UI-heavy.
|
|
14
|
+
|
|
15
|
+
**Gitraze is different:**
|
|
16
|
+
- ⚡ Fast, minimal, no nonsense
|
|
17
|
+
- 🧠 Built for developers who think in terminals
|
|
18
|
+
- 🔍 Deep GitHub data access (REST + GraphQL)
|
|
19
|
+
- 🧩 Modular and extensible architecture
|
|
20
|
+
|
|
21
|
+
---
|
|
22
|
+
|
|
23
|
+
## Features
|
|
24
|
+
|
|
25
|
+
- 🔌 Modular system (easy to extend and hack on)
|
|
26
|
+
- 💻 CLI-first workflow
|
|
27
|
+
- 🌐 GitHub API integration (REST + GraphQL)
|
|
28
|
+
- 📦 Repository insights
|
|
29
|
+
- 👤 User analysis
|
|
30
|
+
- 🔎 Search capabilities
|
|
31
|
+
- 📊 Analytics modules (in progress)
|
|
32
|
+
|
|
33
|
+
---
|
|
34
|
+
|
|
35
|
+
## Installation
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
pip install gitraze
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
## Usage
|
|
43
|
+
|
|
44
|
+
Run directly from your terminal:
|
|
45
|
+
|
|
46
|
+
Example:
|
|
47
|
+
```bash
|
|
48
|
+
gitraze --help
|
|
49
|
+
gitraze user octocat
|
|
50
|
+
gitraze repo torvalds/linux # Coming soon!
|
|
51
|
+
gitraze search "machine learning" # Not implemented yet
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
Example output:
|
|
55
|
+
```bash
|
|
56
|
+
$ gitraze user octocat
|
|
57
|
+
|
|
58
|
+
[+] Fetching user data...
|
|
59
|
+
[✓] Done
|
|
60
|
+
|
|
61
|
+
User: octocat
|
|
62
|
+
-------------
|
|
63
|
+
Name : The Octocat
|
|
64
|
+
Login : octocat
|
|
65
|
+
Id : 583231
|
|
66
|
+
Node_id : MDQ6VXNlcjU4MzIzMQ==
|
|
67
|
+
Type : User
|
|
68
|
+
User_view_type : public
|
|
69
|
+
Bio : None
|
|
70
|
+
Followers : 22312
|
|
71
|
+
Following : 9
|
|
72
|
+
Public_repos : 8
|
|
73
|
+
Public_gists : 8
|
|
74
|
+
Location : San Francisco
|
|
75
|
+
Profile_url : https://github.com/octocat
|
|
76
|
+
Created_at : 25 Jan 2011
|
|
77
|
+
Email : None
|
|
78
|
+
Twitter_username : None
|
|
79
|
+
|
|
80
|
+
```
|
|
81
|
+
> 💡 Commands prefixed with `$` should be run in your terminal.
|
|
82
|
+
|
|
83
|
+
You can also use it inside Python:
|
|
84
|
+
|
|
85
|
+
```python
|
|
86
|
+
import gitraze
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
⚠️ CLI commands are still evolving and may change.
|
|
90
|
+
|
|
91
|
+
## Philosophy
|
|
92
|
+
|
|
93
|
+
Gitraze is built for speed, clarity, and control.
|
|
94
|
+
|
|
95
|
+
No GUI. No clutter. No distractions.
|
|
96
|
+
Just raw access to GitHub data — the way it should be.
|
|
97
|
+
|
|
98
|
+
If you live in the terminal, Gitraze lives with you.
|
|
99
|
+
|
|
100
|
+
## Development Setup
|
|
101
|
+
|
|
102
|
+
Clone the repo and install locally:
|
|
103
|
+
|
|
104
|
+
```bash
|
|
105
|
+
git clone https://github.com/akpandey-dev/gitraze.git
|
|
106
|
+
cd gitraze
|
|
107
|
+
pip install -e .
|
|
108
|
+
```
|
|
109
|
+
|
|
110
|
+
## Project Status
|
|
111
|
+
|
|
112
|
+
Gitraze is in active development:
|
|
113
|
+
|
|
114
|
+
- Expect breaking changes
|
|
115
|
+
- Some commands may not work
|
|
116
|
+
- Features are being added rapidly
|
|
117
|
+
- GraphQL feature is basically absent now, but is coming soon
|
|
118
|
+
|
|
119
|
+
If you're here early — you're basically a beta tester 😈
|
|
120
|
+
|
|
121
|
+
## License
|
|
122
|
+
|
|
123
|
+
MIT License — do whatever you want, just don’t blame me if you break stuff.
|
|
@@ -13,7 +13,7 @@ def main():
|
|
|
13
13
|
parser.add_argument(
|
|
14
14
|
"--version",
|
|
15
15
|
action="version",
|
|
16
|
-
version="gitraze 0.0.
|
|
16
|
+
version="gitraze 0.0.2"
|
|
17
17
|
)
|
|
18
18
|
|
|
19
19
|
subparsers = parser.add_subparsers(dest="command", required=True)
|
|
@@ -52,12 +52,14 @@ def main():
|
|
|
52
52
|
# --- HANDLERS ---
|
|
53
53
|
|
|
54
54
|
def handle_user(args):
|
|
55
|
+
print("[+] Fetching user data...")
|
|
55
56
|
data = get_user(args.username)
|
|
56
57
|
|
|
57
58
|
if "error" in data:
|
|
58
59
|
print(data["error"])
|
|
59
60
|
return
|
|
60
61
|
|
|
62
|
+
print("[✓] Done")
|
|
61
63
|
pretty_print(data, title=f"User: {args.username}")
|
|
62
64
|
|
|
63
65
|
|
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: gitraze
|
|
3
|
+
Version: 0.0.2
|
|
4
|
+
Summary: A CLI and Python library for GitHub reconnaissance, search, and analysis
|
|
5
|
+
Author: AK Pandey
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/akpandey-dev/gitraze
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Requires-Python: >=3.8
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
Requires-Dist: requests
|
|
14
|
+
Requires-Dist: colorama
|
|
15
|
+
|
|
16
|
+
# Gitraze
|
|
17
|
+
|
|
18
|
+
> A fast, hacker-style CLI for slicing through GitHub data like a blade.
|
|
19
|
+
|
|
20
|
+
Gitraze is a powerful command-line tool designed to explore, analyze, and extract insights from GitHub using both REST and GraphQL APIs — all from your terminal.
|
|
21
|
+
|
|
22
|
+
⚠️ **Status:** Early development — expect bugs, missing features, and rapid changes.
|
|
23
|
+
|
|
24
|
+
---
|
|
25
|
+
|
|
26
|
+
## Why Gitraze?
|
|
27
|
+
|
|
28
|
+
Most GitHub tools are either slow, bloated, or UI-heavy.
|
|
29
|
+
|
|
30
|
+
**Gitraze is different:**
|
|
31
|
+
- ⚡ Fast, minimal, no nonsense
|
|
32
|
+
- 🧠 Built for developers who think in terminals
|
|
33
|
+
- 🔍 Deep GitHub data access (REST + GraphQL)
|
|
34
|
+
- 🧩 Modular and extensible architecture
|
|
35
|
+
|
|
36
|
+
---
|
|
37
|
+
|
|
38
|
+
## Features
|
|
39
|
+
|
|
40
|
+
- 🔌 Modular system (easy to extend and hack on)
|
|
41
|
+
- 💻 CLI-first workflow
|
|
42
|
+
- 🌐 GitHub API integration (REST + GraphQL)
|
|
43
|
+
- 📦 Repository insights
|
|
44
|
+
- 👤 User analysis
|
|
45
|
+
- 🔎 Search capabilities
|
|
46
|
+
- 📊 Analytics modules (in progress)
|
|
47
|
+
|
|
48
|
+
---
|
|
49
|
+
|
|
50
|
+
## Installation
|
|
51
|
+
|
|
52
|
+
```bash
|
|
53
|
+
pip install gitraze
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
## Usage
|
|
58
|
+
|
|
59
|
+
Run directly from your terminal:
|
|
60
|
+
|
|
61
|
+
Example:
|
|
62
|
+
```bash
|
|
63
|
+
gitraze --help
|
|
64
|
+
gitraze user octocat
|
|
65
|
+
gitraze repo torvalds/linux # Coming soon!
|
|
66
|
+
gitraze search "machine learning" # Not implemented yet
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
Example output:
|
|
70
|
+
```bash
|
|
71
|
+
$ gitraze user octocat
|
|
72
|
+
|
|
73
|
+
[+] Fetching user data...
|
|
74
|
+
[✓] Done
|
|
75
|
+
|
|
76
|
+
User: octocat
|
|
77
|
+
-------------
|
|
78
|
+
Name : The Octocat
|
|
79
|
+
Login : octocat
|
|
80
|
+
Id : 583231
|
|
81
|
+
Node_id : MDQ6VXNlcjU4MzIzMQ==
|
|
82
|
+
Type : User
|
|
83
|
+
User_view_type : public
|
|
84
|
+
Bio : None
|
|
85
|
+
Followers : 22312
|
|
86
|
+
Following : 9
|
|
87
|
+
Public_repos : 8
|
|
88
|
+
Public_gists : 8
|
|
89
|
+
Location : San Francisco
|
|
90
|
+
Profile_url : https://github.com/octocat
|
|
91
|
+
Created_at : 25 Jan 2011
|
|
92
|
+
Email : None
|
|
93
|
+
Twitter_username : None
|
|
94
|
+
|
|
95
|
+
```
|
|
96
|
+
> 💡 Commands prefixed with `$` should be run in your terminal.
|
|
97
|
+
|
|
98
|
+
You can also use it inside Python:
|
|
99
|
+
|
|
100
|
+
```python
|
|
101
|
+
import gitraze
|
|
102
|
+
```
|
|
103
|
+
|
|
104
|
+
⚠️ CLI commands are still evolving and may change.
|
|
105
|
+
|
|
106
|
+
## Philosophy
|
|
107
|
+
|
|
108
|
+
Gitraze is built for speed, clarity, and control.
|
|
109
|
+
|
|
110
|
+
No GUI. No clutter. No distractions.
|
|
111
|
+
Just raw access to GitHub data — the way it should be.
|
|
112
|
+
|
|
113
|
+
If you live in the terminal, Gitraze lives with you.
|
|
114
|
+
|
|
115
|
+
## Development Setup
|
|
116
|
+
|
|
117
|
+
Clone the repo and install locally:
|
|
118
|
+
|
|
119
|
+
```bash
|
|
120
|
+
git clone https://github.com/akpandey-dev/gitraze.git
|
|
121
|
+
cd gitraze
|
|
122
|
+
pip install -e .
|
|
123
|
+
```
|
|
124
|
+
|
|
125
|
+
## Project Status
|
|
126
|
+
|
|
127
|
+
Gitraze is in active development:
|
|
128
|
+
|
|
129
|
+
- Expect breaking changes
|
|
130
|
+
- Some commands may not work
|
|
131
|
+
- Features are being added rapidly
|
|
132
|
+
- GraphQL feature is basically absent now, but is coming soon
|
|
133
|
+
|
|
134
|
+
If you're here early — you're basically a beta tester 😈
|
|
135
|
+
|
|
136
|
+
## License
|
|
137
|
+
|
|
138
|
+
MIT License — do whatever you want, just don’t blame me if you break stuff.
|
gitraze-0.0.1/PKG-INFO
DELETED
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: gitraze
|
|
3
|
-
Version: 0.0.1
|
|
4
|
-
Summary: A CLI and Python library for GitHub reconnaissance, search, and analysis
|
|
5
|
-
Author: AK Pandey
|
|
6
|
-
License: MIT
|
|
7
|
-
Project-URL: Homepage, https://github.com/akpandey-dev/gitraze
|
|
8
|
-
Classifier: Programming Language :: Python :: 3
|
|
9
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
-
Classifier: Operating System :: OS Independent
|
|
11
|
-
Requires-Python: >=3.8
|
|
12
|
-
Description-Content-Type: text/markdown
|
|
13
|
-
Requires-Dist: requests
|
|
14
|
-
Requires-Dist: colorama
|
|
15
|
-
|
|
16
|
-
# Gitraze
|
|
17
|
-
|
|
18
|
-
Gitraze is a fast, hacker-style CLI tool for exploring, analyzing, and extracting insights from GitHub data using REST and GraphQL APIs.
|
|
19
|
-
|
|
20
|
-
> Currently in early development
|
|
21
|
-
|
|
22
|
-
## Features
|
|
23
|
-
|
|
24
|
-
* Modular architecture for easy extension
|
|
25
|
-
* CLI-based interaction
|
|
26
|
-
* GitHub API integration (REST & GraphQL)
|
|
27
|
-
* Repo, user, search, and analytics modules
|
|
28
|
-
|
|
29
|
-
## Installation
|
|
30
|
-
|
|
31
|
-
```bash id="gq3k8x"
|
|
32
|
-
pip install gitraze
|
|
33
|
-
```
|
|
34
|
-
|
|
35
|
-
> Not yet available on PyPI
|
|
36
|
-
|
|
37
|
-
## Usage
|
|
38
|
-
|
|
39
|
-
```bash id="k2znw0"
|
|
40
|
-
gitraze --help
|
|
41
|
-
```
|
|
42
|
-
|
|
43
|
-
> CLI under development
|
|
44
|
-
|
|
45
|
-
## Development
|
|
46
|
-
|
|
47
|
-
```bash id="x8l2qp"
|
|
48
|
-
git clone https://github.com/akpandey-dev/gitraze.git
|
|
49
|
-
cd gitraze
|
|
50
|
-
pip install -e .
|
|
51
|
-
```
|
|
52
|
-
|
|
53
|
-
## License
|
|
54
|
-
|
|
55
|
-
MIT
|
gitraze-0.0.1/README.md
DELETED
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
# Gitraze
|
|
2
|
-
|
|
3
|
-
Gitraze is a fast, hacker-style CLI tool for exploring, analyzing, and extracting insights from GitHub data using REST and GraphQL APIs.
|
|
4
|
-
|
|
5
|
-
> Currently in early development
|
|
6
|
-
|
|
7
|
-
## Features
|
|
8
|
-
|
|
9
|
-
* Modular architecture for easy extension
|
|
10
|
-
* CLI-based interaction
|
|
11
|
-
* GitHub API integration (REST & GraphQL)
|
|
12
|
-
* Repo, user, search, and analytics modules
|
|
13
|
-
|
|
14
|
-
## Installation
|
|
15
|
-
|
|
16
|
-
```bash id="gq3k8x"
|
|
17
|
-
pip install gitraze
|
|
18
|
-
```
|
|
19
|
-
|
|
20
|
-
> Not yet available on PyPI
|
|
21
|
-
|
|
22
|
-
## Usage
|
|
23
|
-
|
|
24
|
-
```bash id="k2znw0"
|
|
25
|
-
gitraze --help
|
|
26
|
-
```
|
|
27
|
-
|
|
28
|
-
> CLI under development
|
|
29
|
-
|
|
30
|
-
## Development
|
|
31
|
-
|
|
32
|
-
```bash id="x8l2qp"
|
|
33
|
-
git clone https://github.com/akpandey-dev/gitraze.git
|
|
34
|
-
cd gitraze
|
|
35
|
-
pip install -e .
|
|
36
|
-
```
|
|
37
|
-
|
|
38
|
-
## License
|
|
39
|
-
|
|
40
|
-
MIT
|
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: gitraze
|
|
3
|
-
Version: 0.0.1
|
|
4
|
-
Summary: A CLI and Python library for GitHub reconnaissance, search, and analysis
|
|
5
|
-
Author: AK Pandey
|
|
6
|
-
License: MIT
|
|
7
|
-
Project-URL: Homepage, https://github.com/akpandey-dev/gitraze
|
|
8
|
-
Classifier: Programming Language :: Python :: 3
|
|
9
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
-
Classifier: Operating System :: OS Independent
|
|
11
|
-
Requires-Python: >=3.8
|
|
12
|
-
Description-Content-Type: text/markdown
|
|
13
|
-
Requires-Dist: requests
|
|
14
|
-
Requires-Dist: colorama
|
|
15
|
-
|
|
16
|
-
# Gitraze
|
|
17
|
-
|
|
18
|
-
Gitraze is a fast, hacker-style CLI tool for exploring, analyzing, and extracting insights from GitHub data using REST and GraphQL APIs.
|
|
19
|
-
|
|
20
|
-
> Currently in early development
|
|
21
|
-
|
|
22
|
-
## Features
|
|
23
|
-
|
|
24
|
-
* Modular architecture for easy extension
|
|
25
|
-
* CLI-based interaction
|
|
26
|
-
* GitHub API integration (REST & GraphQL)
|
|
27
|
-
* Repo, user, search, and analytics modules
|
|
28
|
-
|
|
29
|
-
## Installation
|
|
30
|
-
|
|
31
|
-
```bash id="gq3k8x"
|
|
32
|
-
pip install gitraze
|
|
33
|
-
```
|
|
34
|
-
|
|
35
|
-
> Not yet available on PyPI
|
|
36
|
-
|
|
37
|
-
## Usage
|
|
38
|
-
|
|
39
|
-
```bash id="k2znw0"
|
|
40
|
-
gitraze --help
|
|
41
|
-
```
|
|
42
|
-
|
|
43
|
-
> CLI under development
|
|
44
|
-
|
|
45
|
-
## Development
|
|
46
|
-
|
|
47
|
-
```bash id="x8l2qp"
|
|
48
|
-
git clone https://github.com/akpandey-dev/gitraze.git
|
|
49
|
-
cd gitraze
|
|
50
|
-
pip install -e .
|
|
51
|
-
```
|
|
52
|
-
|
|
53
|
-
## License
|
|
54
|
-
|
|
55
|
-
MIT
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|