معرفی شرکت ها


debinterface-3.5.0


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

A simple Python library for dealing with the /etc/network/interfaces file in most Debian based distributions.
ویژگی مقدار
سیستم عامل -
نام فایل debinterface-3.5.0
نام debinterface
نسخه کتابخانه 3.5.0
نگهدارنده ['Nathan Mustaki']
ایمیل نگهدارنده ['feydaykyn@gmail.com']
نویسنده Douglas Greenbaum
ایمیل نویسنده dggreenbaum@greenbad.org
آدرس صفحه اصلی https://github.com/nMustaki/debinterface
آدرس اینترنتی https://pypi.org/project/debinterface/
مجوز BSD
============ Debinterface ============ .. image:: https://travis-ci.org/nMustaki/debinterface.svg?branch=master :target: https://travis-ci.org/nMustaki/debinterface This is a simple Python library for dealing with the /etc/network/interfaces file in most Debian based distributions. This is forked from https://github.com/dggreenbaum/debinterface to refactor it and maybe extends it with wpa_supplicant handling Complete documentation is on `Read the docs <http://debinterface.readthedocs.io/en/latest/index.html>`_ Example usage ------------- You'll find way `more examples here <http://debinterface.readthedocs.io/en/latest/quickstart.html>`_ .. sourcecode:: python import debinterface # Get a collection of objects representing the network adapters. adapters = debinterface.Interfaces().adapters # You get a list you can iterare over. # Each adapter has an 'export()' method that returns a dictionary of its options. # You can print the name of each adapter as follows: for adapter in adapters: item = adapter.export() print(item['name']) # Write your new interfaces file as follows: # Any changes made with setter methods will be reflected with the new write. interfaces = debinterface.Interfaces() interfaces.writeInterfaces() # A backup of your old interfaces file will be generated when writing over the previous interfaces file # By defaults these paths are used : # INTERFACES_PATH='/etc/network/interfaces' # BACKUP_PATH='/etc/network/interfaces.old' # Paths can be customized when instanciating the Interfaces class: interfaces = debinterface.Interfaces(interfaces_path='/home/interfaces', backup_path='/another/custom/path') # By defaults, interfaces file is read when instanciating the Interfaces class, to do it lazyly: interfaces = debinterface.Interfaces(update_adapters=False) interfaces.updateAdapters() Run the tests ------------- .. sourcecode:: shell pip install -r requirements_dev.txt py.test --cov=debinterface test


نحوه نصب


نصب پکیج whl debinterface-3.5.0:

    pip install debinterface-3.5.0.whl


نصب پکیج tar.gz debinterface-3.5.0:

    pip install debinterface-3.5.0.tar.gz