Skip to content

Commit

Permalink
Merge pull request #48 from dmdhrumilmistry/use-script-option
Browse files Browse the repository at this point in the history
add pyhtools script to bin folder
  • Loading branch information
dmdhrumilmistry authored Apr 29, 2023
2 parents db6a8a8 + 433b80a commit 8fbd7ac
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
11 changes: 6 additions & 5 deletions pyhtools/__main__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
from . UI import functions as UI
from asyncio import run

UI.banner()
try:
run(UI.run())
except Exception as e:
print(e)
def start():
UI.banner()
try:
run(UI.run())
except Exception as e:
print(e)
6 changes: 5 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pyhtools"
version = "2.2.1"
version = "2.2.2"
description = "Python Hacking Tools (PyHTools) (pht) is a collection of python written hacking tools consisting of network scanner, arp spoofer and detector, dns spoofer, code injector, packet sniffer, network jammer, email sender, downloader, wireless password harvester credential harvester, keylogger, download&execute, and reverse_backdoor along with website login bruteforce, scraper, web spider etc. PHT also includes malwares which are undetectable by the antiviruses."
authors = ["Dhrumil Mistry <[email protected]>"]
license = "MIT"
Expand Down Expand Up @@ -40,6 +40,10 @@ windows = ["wmi"]
"PayPal" = "https://paypal.me/dmdhrumilmistry"


[tool.poetry.scripts]
pyhtools = "pyhtools.__main__:start"


[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
Expand Down

0 comments on commit 8fbd7ac

Please sign in to comment.