<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Python language bindings for the REST API - hp-sdn-client in Software Defined Networking</title>
    <link>https://community.hpe.com/t5/software-defined-networking/python-language-bindings-for-the-rest-api-hp-sdn-client/m-p/6394151#M1306</link>
    <description>&lt;P&gt;I'm using this python library to make some end to end tests on mininet. It's awesome and very helpfully because mininet is written in python too. I expect to send some pull requests soon.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
    <pubDate>Thu, 27 Feb 2014 18:43:26 GMT</pubDate>
    <dc:creator>vandewilly</dc:creator>
    <dc:date>2014-02-27T18:43:26Z</dc:date>
    <item>
      <title>Python language bindings for the REST API - hp-sdn-client</title>
      <link>https://community.hpe.com/t5/software-defined-networking/python-language-bindings-for-the-rest-api-hp-sdn-client/m-p/6376431#M1298</link>
      <description>&lt;P&gt;&lt;FONT size="5"&gt;hp-sdn-client&lt;/FONT&gt;&lt;U&gt;&lt;BR /&gt;&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;A Python library that makes interaction with the HP SDN Controller REST API easy&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is a free open-source (Apache 2.0) library, that you can use to develop your own applications in Python.&lt;/P&gt;&lt;P&gt;It tries to abstract the complexity of dealing wth the REST API (JSON, Token Management etc..) and allows you to focus on your application logic.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can install it from PyPi by using &amp;nbsp;pip:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; pip install hp-sdn-client&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you find this library useful, please star the repo on GitHub and if you'd like to contribute please fork it, make your changes and send me a pull request!&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;U&gt;Code:&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/dave-tucker/hp-sdn-client" target="_blank"&gt;https://github.com/dave-tucker/hp-sdn-client&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;U&gt;Docs:&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://hp-sdn-client.readthedocs.org/en/latest/index.html" target="_blank"&gt;https://hp-sdn-client.readthedocs.org/en/latest/index.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;U&gt;Example:&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN class="kn"&gt;import&lt;/SPAN&gt; &lt;SPAN class="nn"&gt;hpsdnclient&lt;/SPAN&gt; &lt;SPAN class="kn"&gt;as&lt;/SPAN&gt; &lt;SPAN class="nn"&gt;hp&lt;/SPAN&gt;

&lt;SPAN class="n"&gt;controller&lt;/SPAN&gt; &lt;SPAN class="o"&gt;=&lt;/SPAN&gt; &lt;SPAN class="s"&gt;'10.44.254.129'&lt;/SPAN&gt;
&lt;SPAN class="c"&gt;# Set up Authentication&lt;/SPAN&gt;
&lt;SPAN class="n"&gt;auth&lt;/SPAN&gt; &lt;SPAN class="o"&gt;=&lt;/SPAN&gt; &lt;SPAN class="n"&gt;hp&lt;/SPAN&gt;&lt;SPAN class="o"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n"&gt;XAuthToken&lt;/SPAN&gt;&lt;SPAN class="p"&gt;(&lt;/SPAN&gt;&lt;SPAN class="n"&gt;user&lt;/SPAN&gt;&lt;SPAN class="o"&gt;=&lt;/SPAN&gt;&lt;SPAN class="s"&gt;'sdn'&lt;/SPAN&gt;&lt;SPAN class="p"&gt;,&lt;/SPAN&gt;&lt;SPAN class="n"&gt;password&lt;/SPAN&gt;&lt;SPAN class="o"&gt;=&lt;/SPAN&gt;&lt;SPAN class="s"&gt;'skyline'&lt;/SPAN&gt;&lt;SPAN class="p"&gt;,&lt;/SPAN&gt; &lt;SPAN class="n"&gt;server&lt;/SPAN&gt;&lt;SPAN class="o"&gt;=&lt;/SPAN&gt;&lt;SPAN class="n"&gt;controller&lt;/SPAN&gt;&lt;SPAN class="p"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="c"&gt;# Create an API object&lt;/SPAN&gt;
&lt;SPAN class="n"&gt;api&lt;/SPAN&gt; &lt;SPAN class="o"&gt;=&lt;/SPAN&gt; &lt;SPAN class="n"&gt;hp&lt;/SPAN&gt;&lt;SPAN class="o"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n"&gt;Api&lt;/SPAN&gt;&lt;SPAN class="p"&gt;(&lt;/SPAN&gt;&lt;SPAN class="n"&gt;controller&lt;/SPAN&gt;&lt;SPAN class="o"&gt;=&lt;/SPAN&gt;&lt;SPAN class="n"&gt;controller&lt;/SPAN&gt;&lt;SPAN class="p"&gt;,&lt;/SPAN&gt; &lt;SPAN class="n"&gt;auth&lt;/SPAN&gt;&lt;SPAN class="o"&gt;=&lt;/SPAN&gt;&lt;SPAN class="n"&gt;auth&lt;/SPAN&gt;&lt;SPAN class="p"&gt;)&lt;/SPAN&gt;

&lt;SPAN class="c"&gt;#API calls are then just a method call using "natural language"&lt;/SPAN&gt;
&lt;SPAN class="n"&gt;datapaths&lt;/SPAN&gt; &lt;SPAN class="o"&gt;=&lt;/SPAN&gt; &lt;SPAN class="n"&gt;api&lt;/SPAN&gt;&lt;SPAN class="o"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n"&gt;get_datapaths&lt;/SPAN&gt;&lt;SPAN class="p"&gt;()&lt;/SPAN&gt;
&lt;SPAN class="k"&gt;for&lt;/SPAN&gt; &lt;SPAN class="n"&gt;datapath&lt;/SPAN&gt; &lt;SPAN class="ow"&gt;in&lt;/SPAN&gt; &lt;SPAN class="n"&gt;datapaths&lt;/SPAN&gt;&lt;SPAN class="p"&gt;:&lt;/SPAN&gt;
    &lt;SPAN class="n"&gt;flows&lt;/SPAN&gt; &lt;SPAN class="o"&gt;=&lt;/SPAN&gt; &lt;SPAN class="n"&gt;api&lt;/SPAN&gt;&lt;SPAN class="o"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n"&gt;get_flows&lt;/SPAN&gt;&lt;SPAN class="p"&gt;(&lt;/SPAN&gt;&lt;SPAN class="n"&gt;datapath&lt;/SPAN&gt;&lt;SPAN class="o"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n"&gt;dpid&lt;/SPAN&gt;&lt;SPAN class="p"&gt;)&lt;/SPAN&gt;
    &lt;SPAN class="k"&gt;for&lt;/SPAN&gt; &lt;SPAN class="n"&gt;flow&lt;/SPAN&gt; &lt;SPAN class="ow"&gt;in&lt;/SPAN&gt; &lt;SPAN class="n"&gt;flows&lt;/SPAN&gt;&lt;SPAN class="p"&gt;:&lt;/SPAN&gt;
        &lt;SPAN class="k"&gt;print&lt;/SPAN&gt; &lt;SPAN class="s"&gt;"This is a flow from {} to {} on DPID: {}"&lt;/SPAN&gt;&lt;SPAN class="o"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n"&gt;format&lt;/SPAN&gt;&lt;SPAN class="p"&gt;(&lt;/SPAN&gt;&lt;SPAN class="n"&gt;flow&lt;/SPAN&gt;&lt;SPAN class="o"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n"&gt;eth_src&lt;/SPAN&gt;&lt;SPAN class="p"&gt;,&lt;/SPAN&gt; 
                                                                                       &lt;SPAN class="n"&gt;flow&lt;/SPAN&gt;&lt;SPAN class="o"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n"&gt;eth_dst&lt;/SPAN&gt;&lt;SPAN class="p"&gt;,&lt;/SPAN&gt; 
                                                                                       &lt;SPAN class="n"&gt;datapath&lt;/SPAN&gt;&lt;SPAN class="o"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n"&gt;dpid&lt;/SPAN&gt;&lt;SPAN class="p"&gt;)&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 16 Feb 2014 15:24:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/software-defined-networking/python-language-bindings-for-the-rest-api-hp-sdn-client/m-p/6376431#M1298</guid>
      <dc:creator>dave_tucker</dc:creator>
      <dc:date>2014-02-16T15:24:16Z</dc:date>
    </item>
    <item>
      <title>Re: Python language bindings for the REST API - hp-sdn-client</title>
      <link>https://community.hpe.com/t5/software-defined-networking/python-language-bindings-for-the-rest-api-hp-sdn-client/m-p/6376619#M1299</link>
      <description>&lt;P&gt;Hi Dave,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;just starting with the sdn controller and a couple of hp 5900 switches.&lt;/P&gt;&lt;P&gt;want to use python to create some apps, so found your information and tried to install...but failed...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I installed the sdn-controller on a virtual&amp;nbsp;ubuntu server and tested it with my 5900 switches...succes!&lt;/P&gt;&lt;P&gt;Now i installed pip on this same server: "sudo apt-get install python-pip"&lt;/P&gt;&lt;P&gt;after this i tried to start "pip install hp-sdn-client", but failed.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;can you help me with this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;root@ubuntu-server-12:/# pip install hp-sdn-client&lt;BR /&gt;Downloading/unpacking hp-sdn-client&lt;BR /&gt;&amp;nbsp; Downloading hp-sdn-client-1.0.2.tar.gz (633Kb): 633Kb downloaded&lt;BR /&gt;&amp;nbsp; Running setup.py egg_info for package hp-sdn-client&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Traceback (most recent call last):&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; File "&amp;lt;string&amp;gt;", line 14, in &amp;lt;module&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; File "/build/hp-sdn-client/setup.py", line 18, in &amp;lt;module&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; from hpsdnclient import __version__&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; File "hpsdnclient/__init__.py", line 17, in &amp;lt;module&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; from hpsdnclient.api import __version__, Api&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; File "hpsdnclient/api.py", line 23, in &amp;lt;module&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; from hpsdnclient.core import CoreMixin&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; File "hpsdnclient/core.py", line 28, in &amp;lt;module&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; import requests&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ImportError: No module named requests&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Complete output from command python setup.py egg_info:&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Traceback (most recent call last):&lt;/P&gt;&lt;P&gt;&amp;nbsp; File "&amp;lt;string&amp;gt;", line 14, in &amp;lt;module&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; File "/build/hp-sdn-client/setup.py", line 18, in &amp;lt;module&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; from hpsdnclient import __version__&lt;/P&gt;&lt;P&gt;&amp;nbsp; File "hpsdnclient/__init__.py", line 17, in &amp;lt;module&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; from hpsdnclient.api import __version__, Api&lt;/P&gt;&lt;P&gt;&amp;nbsp; File "hpsdnclient/api.py", line 23, in &amp;lt;module&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; from hpsdnclient.core import CoreMixin&lt;/P&gt;&lt;P&gt;&amp;nbsp; File "hpsdnclient/core.py", line 28, in &amp;lt;module&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; import requests&lt;/P&gt;&lt;P&gt;ImportError: No module named requests&lt;/P&gt;&lt;P&gt;----------------------------------------&lt;BR /&gt;Command python setup.py egg_info failed with error code 1&lt;BR /&gt;Storing complete log in /root/.pip/pip.log&lt;/P&gt;</description>
      <pubDate>Sun, 16 Feb 2014 20:05:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/software-defined-networking/python-language-bindings-for-the-rest-api-hp-sdn-client/m-p/6376619#M1299</guid>
      <dc:creator>RemiBatist</dc:creator>
      <dc:date>2014-02-16T20:05:42Z</dc:date>
    </item>
    <item>
      <title>Re: Python language bindings for the REST API - hp-sdn-client</title>
      <link>https://community.hpe.com/t5/software-defined-networking/python-language-bindings-for-the-rest-api-hp-sdn-client/m-p/6376623#M1300</link>
      <description>&lt;P&gt;Yes I can...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; pip install requests&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;... then you can try&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; pip install hp-sdn-client&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For some reason this dependency isn't being installed automatically. I'm looking in to it, but for now the workaround above should get you started!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;-- Dave&lt;/P&gt;</description>
      <pubDate>Sun, 16 Feb 2014 20:08:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/software-defined-networking/python-language-bindings-for-the-rest-api-hp-sdn-client/m-p/6376623#M1300</guid>
      <dc:creator>dave_tucker</dc:creator>
      <dc:date>2014-02-16T20:08:56Z</dc:date>
    </item>
    <item>
      <title>Re: Python language bindings for the REST API - hp-sdn-client</title>
      <link>https://community.hpe.com/t5/software-defined-networking/python-language-bindings-for-the-rest-api-hp-sdn-client/m-p/6376627#M1301</link>
      <description>&lt;P&gt;PERFECT!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you Dave!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;root@ubuntu-server-12:/# pip install requests&lt;BR /&gt;Downloading/unpacking requests&lt;BR /&gt;&amp;nbsp; Downloading requests-2.2.1.tar.gz (421Kb): 421Kb downloaded&lt;BR /&gt;&amp;nbsp; Running setup.py egg_info for package requests&lt;/P&gt;&lt;P&gt;Installing collected packages: requests&lt;BR /&gt;&amp;nbsp; Running setup.py install for requests&lt;/P&gt;&lt;P&gt;Successfully installed requests&lt;BR /&gt;Cleaning up...&lt;BR /&gt;root@ubuntu-server-12:/# pip install hp-sdn-client&lt;BR /&gt;Downloading/unpacking hp-sdn-client&lt;BR /&gt;&amp;nbsp; Downloading hp-sdn-client-1.0.2.tar.gz (633Kb): 633Kb downloaded&lt;BR /&gt;&amp;nbsp; Running setup.py egg_info for package hp-sdn-client&lt;/P&gt;&lt;P&gt;Requirement already satisfied (use --upgrade to upgrade): requests in /usr/local/lib/python2.7/dist-packages (from hp-sdn-client)&lt;BR /&gt;Requirement already satisfied (use --upgrade to upgrade): distribute in /usr/lib/python2.7/dist-packages (from hp-sdn-client)&lt;BR /&gt;Installing collected packages: hp-sdn-client&lt;BR /&gt;&amp;nbsp; Running setup.py install for hp-sdn-client&lt;/P&gt;&lt;P&gt;Successfully installed hp-sdn-client&lt;BR /&gt;Cleaning up...&lt;BR /&gt;root@ubuntu-server-12:/#&lt;/P&gt;</description>
      <pubDate>Sun, 16 Feb 2014 20:13:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/software-defined-networking/python-language-bindings-for-the-rest-api-hp-sdn-client/m-p/6376627#M1301</guid>
      <dc:creator>RemiBatist</dc:creator>
      <dc:date>2014-02-16T20:13:33Z</dc:date>
    </item>
    <item>
      <title>Re: Python language bindings for the REST API - hp-sdn-client</title>
      <link>https://community.hpe.com/t5/software-defined-networking/python-language-bindings-for-the-rest-api-hp-sdn-client/m-p/6380959#M1302</link>
      <description>&lt;P&gt;Thank you Dave it's done ;)&lt;/P&gt;</description>
      <pubDate>Tue, 18 Feb 2014 13:38:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/software-defined-networking/python-language-bindings-for-the-rest-api-hp-sdn-client/m-p/6380959#M1302</guid>
      <dc:creator>Mehdi_Ad</dc:creator>
      <dc:date>2014-02-18T13:38:36Z</dc:date>
    </item>
    <item>
      <title>Re: Python language bindings for the REST API - hp-sdn-client</title>
      <link>https://community.hpe.com/t5/software-defined-networking/python-language-bindings-for-the-rest-api-hp-sdn-client/m-p/6389553#M1303</link>
      <description>&lt;P&gt;Hi Dave,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the code. I was able to execute the same on Ubuntu.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However the same does not work on Windows machine. Can you guide in this case?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Atul&lt;/P&gt;</description>
      <pubDate>Tue, 25 Feb 2014 08:18:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/software-defined-networking/python-language-bindings-for-the-rest-api-hp-sdn-client/m-p/6389553#M1303</guid>
      <dc:creator>atul12345</dc:creator>
      <dc:date>2014-02-25T08:18:33Z</dc:date>
    </item>
    <item>
      <title>Re: Python language bindings for the REST API - hp-sdn-client</title>
      <link>https://community.hpe.com/t5/software-defined-networking/python-language-bindings-for-the-rest-api-hp-sdn-client/m-p/6390369#M1304</link>
      <description>&lt;P&gt;Windows is a little more tricky.&lt;/P&gt;&lt;P&gt;I'll try and put together some comprehensive instructions for windows in the next few days...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;-- Dave&lt;/P&gt;</description>
      <pubDate>Tue, 25 Feb 2014 16:19:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/software-defined-networking/python-language-bindings-for-the-rest-api-hp-sdn-client/m-p/6390369#M1304</guid>
      <dc:creator>dave_tucker</dc:creator>
      <dc:date>2014-02-25T16:19:09Z</dc:date>
    </item>
    <item>
      <title>Re: Python language bindings for the REST API - hp-sdn-client</title>
      <link>https://community.hpe.com/t5/software-defined-networking/python-language-bindings-for-the-rest-api-hp-sdn-client/m-p/6390373#M1305</link>
      <description>&lt;P&gt;v1.0.3 is now released which fixes the dependency errors mentioned in this thread&lt;/P&gt;</description>
      <pubDate>Tue, 25 Feb 2014 16:20:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/software-defined-networking/python-language-bindings-for-the-rest-api-hp-sdn-client/m-p/6390373#M1305</guid>
      <dc:creator>dave_tucker</dc:creator>
      <dc:date>2014-02-25T16:20:10Z</dc:date>
    </item>
    <item>
      <title>Re: Python language bindings for the REST API - hp-sdn-client</title>
      <link>https://community.hpe.com/t5/software-defined-networking/python-language-bindings-for-the-rest-api-hp-sdn-client/m-p/6394151#M1306</link>
      <description>&lt;P&gt;I'm using this python library to make some end to end tests on mininet. It's awesome and very helpfully because mininet is written in python too. I expect to send some pull requests soon.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Thu, 27 Feb 2014 18:43:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/software-defined-networking/python-language-bindings-for-the-rest-api-hp-sdn-client/m-p/6394151#M1306</guid>
      <dc:creator>vandewilly</dc:creator>
      <dc:date>2014-02-27T18:43:26Z</dc:date>
    </item>
    <item>
      <title>Re: Python language bindings for the REST API - hp-sdn-client</title>
      <link>https://community.hpe.com/t5/software-defined-networking/python-language-bindings-for-the-rest-api-hp-sdn-client/m-p/6396169#M1307</link>
      <description>&lt;P&gt;If you want some help with installation and first steps or you would like some demos and code walkthroughs of example applications please check out these videos on YouTube&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A target="_blank" href="http://www.youtube.com/playlist?list=PLhpgNkL46_235AgToyrhEMykVLaBTt6Bw"&gt;http://www.youtube.com/playlist?list=PLhpgNkL46_235AgToyrhEMykVLaBTt6Bw&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This also covers installation on Windows as requested.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;@dave_tucker&lt;/P&gt;</description>
      <pubDate>Sun, 02 Mar 2014 11:16:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/software-defined-networking/python-language-bindings-for-the-rest-api-hp-sdn-client/m-p/6396169#M1307</guid>
      <dc:creator>dave_tucker</dc:creator>
      <dc:date>2014-03-02T11:16:20Z</dc:date>
    </item>
    <item>
      <title>Re: Python language bindings for the REST API - hp-sdn-client</title>
      <link>https://community.hpe.com/t5/software-defined-networking/python-language-bindings-for-the-rest-api-hp-sdn-client/m-p/6483034#M1308</link>
      <description>&lt;P&gt;Nice work Dave.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for the details. It makes getting up &amp;amp; running as faster as it could get.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Appreciate it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Pradeep&lt;/P&gt;</description>
      <pubDate>Wed, 21 May 2014 18:08:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/software-defined-networking/python-language-bindings-for-the-rest-api-hp-sdn-client/m-p/6483034#M1308</guid>
      <dc:creator>Pradeep_30</dc:creator>
      <dc:date>2014-05-21T18:08:51Z</dc:date>
    </item>
  </channel>
</rss>

