Skip to main content

No project description provided

Project description

Ddom (dynamic device object model) is a library which creates a object model of devices. Devices consist of child devices which can be plugged together. The idea is to model IT devices (switches, router, firewalls, server, cables) with all their modules, slots and ports and automatically verify compatibility between them.

Eg.: A Switch has slots, in these slots you can plug linecards, fans or powersupplies. Fans and powersupplies have an airflow direction. Linecards have ports. A transceiver can be inserted to a port. A cable can be connected to a transceiver,… and so on.

Features

Ddom has following features:
  • automatically generate a object from yaml or python data structure

  • verify airflow direction within a Chassis

  • Find children by various properties

  • verify allowed children

  • verify allowed parents

  • Inheritance of properties

Installation

Install ddom by running:

pip3 install ddom

Examples

Create a Nexus 5672UP Chassis and print all port names of slot 1 using find_children and parent property

#!/usr/bin/env python3
from ddom import *

chassis = Chassis("n5k-c5672up", "cisco")
for port in chassis.find_children("port", {"parent.number": "1"}):
    print(port.name)

Create a Nexus 5672UP Chassis and print all port names of slot 1 using find_children

#!/usr/bin/env python3
from ddom import *

chassis = Chassis("n5k-c5672up", "cisco")
for port in chassis.slot("SLOT-1").supervisor().find_children("port"):
    print(port.name)

Create a Nexus 5672UP Chassis and verify airflow

#!/usr/bin/env python3
from ddom import *

chassis = Chassis("n5k-c5672up", "cisco")

psu_1 = PowerSupply("nxa-pac-1100w", "cisco")
psu_2 = PowerSupply("nxa-pac-1100w-b", "cisco")

chassis.slot("PSU-1").connect(psu_1)
chassis.slot("PSU-2").connect(psu_2) # this will raise an ddom.InvalidAirFlowError exception

Create a Nexus 5672UP Chassis and print the port name of a specific port

#!/usr/bin/env python3
from ddom import *

chassis = Chassis("n5k-c5672up", "cisco")

# by number
print(chassis.slot("SLOT-1").supervisor().port(1).name)

# by name
print(chassis.slot("SLOT-1").supervisor().port("eth1/1").name)

# by index

print(chassis.slot("SLOT-1").supervisor().port_index(0).name)

See the unit tests in the test directory for many more examples.

Contribute

Roadmap

Selected Roadmap items:
  • add support for more devices

  • add support for cables

  • add class documentation

  • add device path

For documentation please refer to https://simplenetlink.readthedocs.io/en/latest/

License

This project is licensed under the Apache License Version 2.0

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

ddom-0.3-py3-none-any.whl (27.5 kB view details)

Uploaded Python 3

File details

Details for the file ddom-0.3-py3-none-any.whl.

File metadata

  • Download URL: ddom-0.3-py3-none-any.whl
  • Upload date:
  • Size: 27.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.4.2 requests/2.25.1 setuptools/54.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.10

File hashes

Hashes for ddom-0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 56bb87976bae0f5eb622db566a3051d89114a76e0f4a34823ab95809a11ec331
MD5 a3c0e922624615f25d0888b1294f32b8
BLAKE2b-256 ac3b1ebf6c17a82673ad3e160dac200b9de76a4335c20b4cf7cb8f1c728d70be

See more details on using hashes here.

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