Compare commits

...

4 Commits
2.2.0 ... 2.2.1

Author SHA1 Message Date
Richard Mwewa
d091125c15 Update setup.py 2022-07-08 12:01:27 +02:00
Richard Mwewa
e2c94fcc89 Update banner.py 2022-07-08 12:00:15 +02:00
Richard Mwewa
16f9a80818 Update main.py 2022-07-08 11:58:49 +02:00
Richard Mwewa
66d7a2c42c Update README.md 2022-07-08 11:52:42 +02:00
4 changed files with 6 additions and 34 deletions

View File

@@ -3,8 +3,9 @@
[![Upload Python Package](https://github.com/rly0nheart/octosuite/actions/workflows/python-publish.yml/badge.svg)](https://github.com/rly0nheart/octosuite/actions/workflows/python-publish.yml) [![Upload Python Package](https://github.com/rly0nheart/octosuite/actions/workflows/python-publish.yml/badge.svg)](https://github.com/rly0nheart/octosuite/actions/workflows/python-publish.yml)
[![CodeQL](https://github.com/rly0nheart/octosuite/actions/workflows/codeql.yml/badge.svg)](https://github.com/rly0nheart/octosuite/actions/workflows/codeql.yml) [![CodeQL](https://github.com/rly0nheart/octosuite/actions/workflows/codeql.yml/badge.svg)](https://github.com/rly0nheart/octosuite/actions/workflows/codeql.yml)
![GitHub](https://img.shields.io/github/license/rly0nheart/octosuite?style=flat) ![GitHub](https://img.shields.io/github/license/rly0nheart/octosuite?style=flat)
![GitHub tag (latest by date)](https://img.shields.io/github/v/tag/rly0nheart/octosuite?style=flat&logo=github) ![PyPI](https://img.shields.io/pypi/v/octosuite?style=flat&logo=pypi)
![GitHub commits since latest release (by date)](https://img.shields.io/github/commits-since/rly0nheart/octosuite/2.2.0?style=flat&logo=github) ![PyPI - Downloads](https://img.shields.io/pypi/dw/octosuite?style=flat&logo=pypi)
![PyPI - Status](https://img.shields.io/pypi/status/octosuite?style=flat&logo=pypi)
![GitHub repo size](https://img.shields.io/github/repo-size/rly0nheart/octosuite?style=flat&logo=github) ![GitHub repo size](https://img.shields.io/github/repo-size/rly0nheart/octosuite?style=flat&logo=github)
> *Simply gather OSINT on Github users & organizations like a God🔥* > *Simply gather OSINT on Github users & organizations like a God🔥*

View File

@@ -5,7 +5,7 @@ from octosuite.colors import red, white, green, reset
banner.py banner.py
This file holds the program's banner logo and version tag This file holds the program's banner logo and version tag
''' '''
version_tag = "2.2.0" version_tag = "2.2.1"
name_logo = f"""{white} name_logo = f"""{white}
_______ __ _______ __ __ _______ __ _______ __ __
| |.----.| |_.-----.| __|.--.--.|__| |_.-----. | |.----.| |_.-----.| __|.--.--.|__| |_.-----.

View File

@@ -20,32 +20,6 @@ from octosuite.banner import name_logo, version_tag
from octosuite.colors import red, white, green, red_bold, white_bold, green_bold, header_title, reset from octosuite.colors import red, white, green, red_bold, white_bold, green_bold, header_title, reset
global endpoint
global path_attrs
global path_attr_dict
global org_attrs
global org_attr_dict
global repo_attrs
global repo_attr_dict
global repo_releases_attrs
global repo_releases_attr_dict
global profile_attrs
global profile_attr_dict
global user_attrs
global user_attr_dict
global topic_attrs
global topic_attr_dict
global gists_attrs
global gists_attr_dict
global issue_attrs
global issue_attr_dict
global repo_issues_attrs
global repo_issues_attr_dict
global user_orgs_attrs
global user_orgs_attr_dict
global author_dict
# API endpoint # API endpoint
endpoint = 'https://api.github.com' endpoint = 'https://api.github.com'
# Path attribute # Path attribute
@@ -940,8 +914,5 @@ def versionInfo():
''' '''
xprint(f""" xprint(f"""
{white_bold}Whats new in v{version_tag}?{reset} {white_bold}Whats new in v{version_tag}?{reset}
[ {green}improved{reset} ] added 'csv' command with 3 subcommands (view, read, delete) [ {green}fixed{reset} ] minor mistakes in code
[ {green}improved{reset} ] using the rich library for coloring and tables
[ {green}improved{reset} ] logs and commands will be displayed in a table
[ {green}fixed{reset} ] minor bug fixes
""") """)

View File

@@ -5,7 +5,7 @@ with open("README.md", "r", encoding="utf-8") as file:
setuptools.setup( setuptools.setup(
name="octosuite", name="octosuite",
version="2.2.0", version="2.2.1",
author="Richard Mwewa", author="Richard Mwewa",
author_email="richardmwewa@duck.com", author_email="richardmwewa@duck.com",
packages=["octosuite"], packages=["octosuite"],