cli user interface ala cisco IOS or JUNOS

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • phil.aerts.tln@gmail.com

    cli user interface ala cisco IOS or JUNOS

    Hi,

    for one of my python projects I need an user interface similar to that
    of cisco IOS or even better Juniper JUNOS.
    Does anyone know of existing python modules that gives this kind of
    functionality ?

    -P

  • Ben Finney

    #2
    Re: cli user interface ala cisco IOS or JUNOS

    phil.aerts.tln@ gmail.com writes:
    for one of my python projects I need an user interface similar to that
    of cisco IOS or even better Juniper JUNOS.
    Does anyone know of existing python modules that gives this kind of
    functionality?
    I suspect you've not checked the standard library index:

    Python Library Reference
    <URL:http://docs.python.org/lib/>

    which lists the 'cmd' module:

    cmd -- Support for line-oriented command interpreters
    <URL:http://docs.python.org/lib/module-cmd.html>

    If that doesn't meet your needs, you might need to be more specific
    about what you're looking for.

    --
    \ "Success is going from one failure to the next without a loss |
    `\ of enthusiasm." -- Winston Churchill |
    _o__) |
    Ben Finney

    Comment

    • phil.aerts.tln@gmail.com

      #3
      Re: cli user interface ala cisco IOS or JUNOS

      On 3 apr, 11:57, Ben Finney <bignose+hate s-s...@benfinney. id.au>
      wrote:
      phil.aerts....@ gmail.com writes:
      for one of mypythonproject s I need an user interface similar to that
      of cisco IOS or even better JuniperJUNOS.
      Does anyone know of existingpythonm odules that gives this kind of
      functionality?
      >
      I suspect you've not checked the standard library index:
      >
      PythonLibrary Reference
      <URL:http://docs.python.org/lib/>
      >
      which lists the 'cmd' module:
      >
      cmd -- Support for line-oriented command interpreters
      <URL:http://docs.python.org/lib/module-cmd.html>
      >
      If that doesn't meet your needs, you might need to be more specific
      about what you're looking for.
      >
      --
      \ "Success is going from one failure to the next without a loss |
      `\ of enthusiasm." -- Winston Churchill |
      _o__) |
      Ben Finney
      hehe, your right I did not check the standard library and 'cmd' might
      just be that what I was looking for.

      tnx Ben

      -Philippe

      Comment

      Working...