Skip to content

Commit adaecbf

Browse files
committed
update readme with pip install
1 parent 4633f80 commit adaecbf

File tree

3 files changed

+14
-8
lines changed

3 files changed

+14
-8
lines changed

README.md

+11-5
Original file line numberDiff line numberDiff line change
@@ -12,31 +12,37 @@ Bonus:
1212

1313
- No need to be authenticated
1414

15-
- No API blocking / rate-limit
15+
- No API blocking / No rate-limit
1616

1717
# Requirements
1818

1919
[Python 3](https://www.python.org/download/releases/3.0/)
2020

2121
# Installation
2222

23-
```console
23+
### With PyPI
24+
25+
`pip3 install postmaniac`
26+
27+
### With Github
28+
29+
```bash
2430
# clone the repo
2531
$ git clone https://github.com/boringthegod/postmaniac.git
2632

2733
# change the working directory to postmaniac
2834
$ cd postmaniac
2935

30-
# install the requirements
31-
$ python3 -m pip install -r requirements.txt
36+
# install postmaniac
37+
$ python3 setup.py install
3238
```
3339

3440
# Usage
3541

3642
postmaniac can be run from the CLI and rapidly embedded within existing python applications.
3743

3844
```bash
39-
usage: postmaniac.py [-h] query
45+
usage: postmaniac [-h] query
4046

4147
Postman OSINT tool to extract creds, token, username, email & more from Postman Public Workspaces
4248

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "postmaniac"
7-
version = "0.7.0"
7+
version = "0.9.0"
88
description = "Postman OSINT tool to extract creds, token, username, email & more from Postman Public Workspaces."
99
readme = "README.md"
10-
requires-python = ">=3.7"
10+
requires-python = ">=3.0"
1111
dependencies = [
1212
'colorama==0.4.6',
1313
'requests==2.30.0'

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
setup(
1111
name='postmaniac',
12-
version='0.7.0',
12+
version='0.9.0',
1313
packages=find_packages(),
1414
license='GNU General Public License v3 (GPLv3)',
1515
license_files=('LICENSE.md'),

0 commit comments

Comments
 (0)