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.

Read The Docs

Links

PyPI Version PyPI - License

Installation

pip install portsManager

Usage

Parser

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

# 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, ignoreExtension = False)

# 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.4.tar.gz (6.9 kB view details)

Uploaded Source

File details

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

File metadata

  • Download URL: portsManager-0.1.4.tar.gz
  • Upload date:
  • Size: 6.9 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.4.tar.gz
Algorithm Hash digest
SHA256 5163175a0bbbadb74018f1c58125c71a6cf26776d5ebdb5d0a29a3c9e05678ca
MD5 6e9db663e34a043be35a72e966351164
BLAKE2b-256 af4f4178cd6bfd07165354ab5eb564793f73990c1ad6c17e4c0f2d91a201f90e

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