Metadata-Version: 2.1
Name: telamonpypi
Version: 0.0.1
Summary: TelamonPypi is a python package to scan ports with just 2 lines of code.
Home-page: https://acnsoft.net/telamonpypi.html
Author: AcnSoft
Author-email: info@acnsoft.net
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE

# TelamonPypi

TelamonPypi is a python package to scan ports with just 2 lines of code.

## Installation
pip install telamonpypi

## Usage
from telamonpypi import telamon

A)
port = 80
telamon.scan("example.com", port)

B)

minport = 79
maxport = 999
telamon.scanmulti("example.com", minport, maxport)

C)

telamon.scanall("example.com")

