File: PKG-INFO

package info (click to toggle)
python-openflow 2021.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,224 kB
  • sloc: python: 6,906; sh: 4; makefile: 4
file content (164 lines) | stat: -rw-r--r-- 7,266 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
Metadata-Version: 2.1
Name: python-openflow
Version: 2021.1
Summary: Library to parse and generate OpenFlow messages
Home-page: http://github.com/kytos/python-openflow
Author: Kytos Team
Author-email: devel@lists.kytos.io
License: MIT
Description: 
        ########
        Overview
        ########
        
        **WARNING: As previously announced on our communication channels, the Kytos
        project will enter the "shutdown" phase on May 31, 2021. After this date,
        only critical patches (security and core bug fixes) will be accepted, and the
        project will be in "critical-only" mode for another six months (until November
        30, 2021). For more information visit the FAQ at <https://kytos.io/faq>. We'll
        have eternal gratitude to the entire community of developers and users that made
        the project so far.**
        
        |Experimental| |Openflow| |Tag| |Release| |License| |Build| |Coverage| |Quality|
        
        *python-openflow* is a low level library to parse and create OpenFlow messages.
        If you want to read an OpenFlow packet from an open socket or send a message to
        an OpenFlow switch, this is your best friend. The main features are: high
        performance, short learning curve and free software license.
        
        This library is part of `Kytos project <http://kytos.io>`_, but feel free to
        use this simple and intuitive library in other projects.
        
        .. attention::
           *python-openflow* does not perform I/O operations. To communicate with a
           switch, you must write your own controller using this library or use our
           `Kytos SDN Platform <http://kytos.io/>`_.
        
        A quick start follows for you to check whether this project fits your needs.
        For a more detailed documentation, please check the `python-openflow API
        Reference Manual <http://docs.kytos.io/developer/pyof/>`_.
        
        Quick Start
        ***********
        
        Installing
        ==========
        
        In order to use this software please install python3.6 or greater into your
        environment beforehand.
        
        We are doing a huge effort to make Kytos and its components available on all
        common distros. So, we recommend you to download it from your distro repository.
        
        But if you are trying to test, develop or just want a more recent version of our
        software no problem: Download now, the latest release (it still a beta
        software), from our repository:
        
        First you need to clone `python-openflow` repository:
        
        .. code-block:: shell
        
           $ git clone https://github.com/kytos/python-openflow.git
        
        After cloning, the installation process is done by standard `setuptools` install
        procedure:
        
        .. code-block:: shell
        
           $ cd python-openflow
           $ sudo python3 setup.py install
        
        Alternatively, if you are a developer and want to install in develop mode:
        
        .. code-block:: shell
        
           $ cd python-openflow
           $ pip3 install -r requirements/dev.txt
        
        
        Basic Usage Example
        ===================
        
        See how it is easy to create a feature request message with this library.  You
        can use ipython3 to get the advantages of autocompletion:
        
        .. code-block:: python
        
            >>> from pyof.v0x01.controller2switch.features_request import FeaturesRequest
            >>> request = FeaturesRequest()
            >>> print(request.header.message_type)
            Type.OFPT_FEATURES_REQUEST
        
        If you need to send this message via socket, call the ``pack()`` method to get
        its binary representation to be sent through the network:
        
        .. code:: python
        
            >>> binary_msg = request.pack()
            >>> print(binary_msg)
            b"\x01\x05\x00\x08\x14\xad'\x8d"
            >>> # Use a controller (e.g. Kytos SDN controller) to send "binary_msg"
        
        To parse a message, use the ``unpack()`` function:
        
        .. code:: python
        
           >>> from pyof.utils import unpack
           >>> binary_msg = b"\x01\x05\x00\x08\x14\xad'\x8d"
           >>> msg = unpack(binary_msg)
           >>> print(msg.header.version)
           UBInt8(1) # OpenFlow 1.0
           >>> print(msg.header.message_type)
           Type.OFPT_FEATURES_REQUEST
        
        Please, note that this library do not send or receive messages via socket. You
        have to create your own server to receive messages from switches. This library
        only helps you to handle OpenFlow messages in a more pythonic way.
        
        Authors
        *******
        
        For a complete list of authors, please open ``AUTHORS.rst`` file.
        
        Contributing
        ************
        
        If you want to contribute to this project, please read `Kytos Documentation
        <https://docs.kytos.io/developer/how_to_contribute/>`__ website.
        
        License
        *******
        
        This software is under *MIT-License*. For more information please read
        ``LICENSE`` file.
        
        
        .. |Experimental| image:: https://img.shields.io/badge/stability-experimental-orange.svg
        .. |Openflow| image:: https://img.shields.io/badge/Openflow-1.3-brightgreen.svg
           :target: https://www.opennetworking.org/images/stories/downloads/sdn-resources/onf-specifications/openflow/openflow-switch-v1.3.5.pdf
        .. |Tag| image:: https://img.shields.io/github/tag/kytos/python-openflow.svg
           :target: https://github.com/kytos/python-openflow/tags
        .. |Release| image:: https://img.shields.io/github/release/kytos/python-openflow.svg
           :target: https://github.com/kytos/python-openflow/releases
        .. |License| image:: https://img.shields.io/github/license/kytos/python-openflow.svg
           :target: https://github.com/kytos/python-openflow/blob/master/LICENSE
        .. |Build| image:: https://scrutinizer-ci.com/g/kytos/python-openflow/badges/build.png?b=master
           :alt: Build status
           :target: https://scrutinizer-ci.com/g/kytos/python-openflow/?branch=master
        .. |Coverage| image:: https://scrutinizer-ci.com/g/kytos/python-openflow/badges/coverage.png?b=master
           :alt: Code coverage
           :target: https://scrutinizer-ci.com/g/kytos/python-openflow/?branch=master
        .. |Quality| image:: https://scrutinizer-ci.com/g/kytos/python-openflow/badges/quality-score.png?b=master
           :alt: Code-quality score
           :target: https://scrutinizer-ci.com/g/kytos/python-openflow/?branch=master
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: System :: Networking
Classifier: Topic :: Software Development :: Libraries
Provides-Extra: dev