Skip to main content

Library to work with .qpmgr files

Project description

pManager

Ports manager library.
Works with .qpmgr files.
Author: Qwantman

You can parse and write .qpmgr files using this library.
It includes two classes: fileParser and fileWriter.
fileParser is used for parsing .qpmgr files and extracting information.
fileWriter is used for creating new .qpmgr files or editing existing ones.

This library is guaranteed to work on python versions > 3.10, but it's compatible with any python version > 3.0.

Links

PyPI Version PyPI - Python Version PyPI - License

Installation

pip install portsManager

Usage

Parser

from pManager import fileParser
parser = fileParser("file.qpmgr")

# Get opened & closed ports
openedPorts = parser.getOpenedPorts()
closedPorts = parser.getClosedPorts()

# Get list of services
servicesList = parser.getServicesList()

# Print beautifully-formated services list
for _ in servicesList:
    print(f'{parser.getBeautifuledInfoByService(i)}\n')

Writer

from pManager import fileWriter

# Setting up writer
writer = fileWriter("file.qpmgr", autoFlush = True)

# Add new service
# "ServiceName" will be used as a key to bind ports
writer.constructServiceObj("ServiceName", "ServiceDescription")  

# Add port to service. 
# On port adding, file'll be flushed with autoFlush = True
writer.bindPortToService(
    serviceName = "ServiceName", 
    portNum = 80, 
    portProto = "TCP", 
    openState = True, 
    portDesc = "HTTP server"
)

# Or, with autoFlush = False
writer.writeToFile()

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

portsManager-0.1.2.tar.gz (5.8 kB view details)

Uploaded Source

File details

Details for the file portsManager-0.1.2.tar.gz.

File metadata

  • Download URL: portsManager-0.1.2.tar.gz
  • Upload date:
  • Size: 5.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.11

File hashes

Hashes for portsManager-0.1.2.tar.gz
Algorithm Hash digest
SHA256 958e62c40e0ae84e28f9327c0089ec0e9650487e15c2db282a048e7189e1154a
MD5 1c370769fb43f1dca9af2c39c82553b7
BLAKE2b-256 f367d87cf4b4370f280b84ae66418b05d8a50ffdfd05410eb088f54ff0bb0b8a

See more details on using hashes here.

Supported by

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