Metadata-Version: 2.1
Name: worktory
Version: 0.1.0
Summary: Network Automation Inventory
Home-page: https://github.com/renatoalmeidaoliveira/Worktory
License: MIT
Author: Renato Almeida de Oliveira
Author-email: renato.almeida.oliveira@gmail.com
Requires-Python: >=3.8,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: asyncssh (>=2.7.2,<3.0.0)
Requires-Dist: genie (>=21.7,<22.0)
Requires-Dist: netmiko (>=3.4.0,<4.0.0)
Requires-Dist: ntc-templates (>=2.3.2,<3.0.0)
Requires-Dist: pyats (>=21.7,<22.0)
Requires-Dist: scrapli-community (>=2021.7.30,<2022.0.0)
Requires-Dist: scrapli[ssh2] (>=2021.7.30,<2022.0.0)
Project-URL: Repository, https://github.com/renatoalmeidaoliveira/Worktory
Description-Content-Type: text/x-rst

Welcome to Worktory's documentation!
====================================

Worktory is a python library created with the single purpose of simplifying the inventory management of network automation scripts.

As the network automation ecosystem grows, several connection plugins and parsers are available, and several times choosing a library or a connection plugin restricts all the devices to the same connection method.

Worktory tries to solve that problem giving the developer total flexibility for choosing the connector plugin and parsers for each device, at the same time that exposes a single interface for every plugin.

Installing 
-----------------------------

Worktory is available in PyPI, to install run: ::

   $ pip install worktory
   
Using worktory
=======================

Sample Inventory
--------------------------

.. code-block:: python 

    devices = [
                {
                'name': 'sandbox-iosxr-1',
                'hostname': 'sandbox-iosxr-1.cisco.com',
                'platform': 'cisco_iosxr',
                'username': 'admin',
                'password': 'C1sco12345',
                'groups': ['CORE'],
                'connection_manager': 'scrapli',
                'select_parsers' : 'genie',
                'mode': 'async',
                'transport': 'asyncssh',
                },
                {
                'name': 'sandbox-nxos-1',
                'hostname': 'sandbox-nxos-1.cisco.com',
                'platform': 'cisco_nxos',
                'username': 'admin',
                'password': 'Admin_1234!',
                'groups': ['CORE'],
                'select_parsers' : 'ntc',
                'connection_manager': 'scrapli',
                'mode': 'async',
                'transport': 'asyncssh'
                },
                {
                'name': 'sandbox-nxos-2',
                'hostname': 'sandbox-nxos-1.cisco.com',
                'platform': 'nxos',
                'username': 'admin',
                'password': 'Admin_1234!',
                'groups': ['EDGE'],
                'connection_manager': 'unicon',
                'mode': 'sync',
                'transport': 'ssh',
                'GRACEFUL_DISCONNECT_WAIT_SEC': 0,
                'POST_DISCONNECT_WAIT_SEC': 0,
                },
                {
                'name': 'sandbox-iosxr-2',
                'hostname': 'sandbox-iosxr-1.cisco.com',
                'platform': 'cisco_iosxr',
                'username': 'admin',
                'password': 'C1sco12345',
                'groups': ['CORE'],
                'connection_manager': 'scrapli',
                'select_parsers' : 'genie',
                'mode': 'sync',
                },
            ]

Collecting Running config from async devices
-------------------------------------------------------

.. code-block:: python 

    from worktory import InventoryManager
    import asyncio
    inventory = InventoryManager(devices)

    device_configs = {}
    async def get_config(device):
        await device.connect()
        config = await device.execute("show running-config")
        device_configs[device.name] = config
        await device.disconnect()

    async def async_main():
        coros = [get_config(device) for device in inventory.filter(mode='async')]
        await asyncio.gather(*coros)

    loop = asyncio.get_event_loop()
    loop.run_until_complete(async_main())


Collecting Running config from sync devices
-------------------------------------------------------

.. code-block:: python 

    from worktory import InventoryManager
    from multiprocessing import Pool
    inventory = InventoryManager(devices)

    def get_config(device_name):
        inventory = InventoryManager(devices)
        device = inventory.devices[device_name]
        device.connect()
        config = device.execute("show running-config")
        device.disconnect()
        return ( device.name , config )

    def main():
        devs = [device.name for device in inventory.filter(mode='sync')]
        with Pool(2) as p:
            return p.map(get_config, devs)

    
    output = main()

