Giter Club home page Giter Club logo

pypeering's Introduction

Pypeering

Python API client library for Peering Manager.

Installation

To install run pip install pypeering.

Alternatively, you can clone the repo and run python setup.py install.

Quick Start

The full pypeering API is documented on Read the Docs, but the following should be enough to get started using it.

To begin, import pypeering and instantiate the API.

import pypeering
nb = pypeering.api(
    'http://localhost:8000',
    token='d6f4e314a5b5fefd164995169f28ae32d987704f'
)

The first argument the .api() method takes is the Peering Manager URL. The token argument should to be provided, and will grant read-only or read-write access as configured in Peering Manager.

Queries

The pypeering API is setup so that Peering Manager's apps are attributes of the .api() object, and in turn those apps have attribute representing each endpoint. Each endpoint has a handful of methods available to carry out actions on the endpoint. For example, in order to query all the objects in the devices endpoint you would do the following:

>>> devices = nb.dcim.devices.all()
>>> for device in devices:
...     print(device.name)
...
test1-leaf1
test1-leaf2
test1-leaf3
>>>

Threading

pypypeering supports multithreaded calls (in Python 3 only) for .filter() and .all() queries. It is highly recommended you have MAX_PAGE_SIZE in your Netbox install set to anything except 0 or None. The default value of 1000 is usually a good value to use. To enable threading, add threading=True parameter to the .api:

nb = pypeering.api(
    'http://localhost:8000',
    threading=True,
)

pypeering's People

Contributors

markkuleinio avatar raddessi avatar zachmoody avatar tyler-8 avatar dimaqa avatar jqueuniet avatar jsenecal avatar jeremystretch avatar abringenberg avatar victorpavlushin avatar stsmrvestas avatar lamiskin avatar fach avatar jerradgit avatar dvaccarosenna avatar funzoneq avatar berendt avatar ignatenkobrain avatar mandarg avatar explody avatar stefanmcshane avatar steffenschumacher avatar tweippert avatar vincentbernat avatar h-otter avatar weisdd avatar

Stargazers

Nick Zurku avatar

Watchers

Marek Isalski avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.