Skip to main content

A simple Python port scanner

Project description

# Python Port Scanner

A simple port scanner built with Python

## How it works

This scans a range of ports for a given URL and prepares a report showing which ports are open.

## Instructions

Install with Pip/PyPi in the command line interface:

` pip install port-scanner `

In your Python code, import the library:

` import portscanner `

Create an instance of the Target class:

` my_target = portscanner.Target("example.com") `

Scan your target one or more times. All the settings shown below are optional, and the example code shows what the defaults would be if nothing is specified.

  • “min” and “max” represent the range of ports to scan

  • “timeout” is how long in seconds the scanner will wait for an unresponsive port before moving on to the next one

` my_target.scan(min = 1, max = 100, timeout = 0.01) `

Generate a report of the results of your scan(s), which will be returned as a list. Set all to “True” or leave it blank if you want your report to include all of the scans for your target, or set it to “False” to see only the most recent scan.

` my_target.report(all = True) `

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

port-scanner-0.1.4.tar.gz (1.5 kB view hashes)

Uploaded Source

Built Distribution

port_scanner-0.1.4-py3-none-any.whl (3.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page