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.

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.1.tar.gz (5.6 kB view details)

Uploaded Source

File details

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

File metadata

  • Download URL: portsManager-0.1.1.tar.gz
  • Upload date:
  • Size: 5.6 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.1.tar.gz
Algorithm Hash digest
SHA256 2c9fd2b0c92089a01d1b85fe553a4f96b537b3a090c7bf64b1c9b5d4c146df93
MD5 007b98d29d6a315af838c24754a9b8af
BLAKE2b-256 6b5d827e907a5eefe3dd222ef1d362b11f30b184b199f3a194aec45413a62947

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