Added the Requests library, removed sniffer
This commit is contained in:
parent
20807e49c8
commit
f752fd47e5
14
README.rst
14
README.rst
@ -536,21 +536,21 @@ the required components:
|
|||||||
1. `distribute <https://bitbucket.org/tarek/distribute>`_ – a library
|
1. `distribute <https://bitbucket.org/tarek/distribute>`_ – a library
|
||||||
for working with Python module distributions, released under the
|
for working with Python module distributions, released under the
|
||||||
Python Software Foundation License.
|
Python Software Foundation License.
|
||||||
2. `sniffer <https://github.com/jeffh/sniffer>`_ – a Python auto-testing
|
2. `pyqcy <https://github.com/Xion/pyqcy>`_ – a QuickCheck-like testing
|
||||||
tool, released under the MIT License.
|
|
||||||
3. `pyqcy <https://github.com/Xion/pyqcy>`_ – a QuickCheck-like testing
|
|
||||||
framework for Python, released under the FreeBSD License.
|
framework for Python, released under the FreeBSD License.
|
||||||
4. `mocktest <https://github.com/gfxmonk/mocktest>`_ – a mocking library
|
3. `mocktest <https://github.com/gfxmonk/mocktest>`_ – a mocking library
|
||||||
for Python, released under the LGPL License.
|
for Python, released under the LGPL License.
|
||||||
5. `PyContracts <https://github.com/AndreaCensi/contracts>`_ – a Python
|
4. `PyContracts <https://github.com/AndreaCensi/contracts>`_ – a Python
|
||||||
library for Design by Contract (DbC), released under the GNU Lesser
|
library for Design by Contract (DbC), released under the GNU Lesser
|
||||||
General Public License.
|
General Public License.
|
||||||
6. `SQLAlchemy <http://www.sqlalchemy.org/>`_ – a Python SQL toolkit and
|
5. `SQLAlchemy <http://www.sqlalchemy.org/>`_ – a Python SQL toolkit and
|
||||||
Object Relational Mapper (used by the core OpenStack service),
|
Object Relational Mapper (used by the core OpenStack service),
|
||||||
released under the MIT License.
|
released under the MIT License.
|
||||||
7. `Bottle <http://bottlepy.org/>`_ – a micro web-framework for Python,
|
6. `Bottle <http://bottlepy.org/>`_ – a micro web-framework for Python,
|
||||||
authentication using the same credentials used to authenticate in the
|
authentication using the same credentials used to authenticate in the
|
||||||
Nova API, released under the MIT License.
|
Nova API, released under the MIT License.
|
||||||
|
7. `Requests <http://python-requests.org/>`_ – a Python HTTP client
|
||||||
|
library, released under the ISC License.
|
||||||
8. `python-novaclient <https://github.com/openstack/python-novaclient>`_
|
8. `python-novaclient <https://github.com/openstack/python-novaclient>`_
|
||||||
– a Python Nova API client implementation, released under the Apache
|
– a Python Nova API client implementation, released under the Apache
|
||||||
2.0 License.
|
2.0 License.
|
||||||
|
Binary file not shown.
@ -231,12 +231,12 @@ code > span.er { color: #ff0000; font-weight: bold; }
|
|||||||
<p>The following third party libraries are planned to be used to implement the required components:</p>
|
<p>The following third party libraries are planned to be used to implement the required components:</p>
|
||||||
<ol style="list-style-type: decimal">
|
<ol style="list-style-type: decimal">
|
||||||
<li><a href="https://bitbucket.org/tarek/distribute">distribute</a> – a library for working with Python module distributions, released under the Python Software Foundation License.</li>
|
<li><a href="https://bitbucket.org/tarek/distribute">distribute</a> – a library for working with Python module distributions, released under the Python Software Foundation License.</li>
|
||||||
<li><a href="https://github.com/jeffh/sniffer">sniffer</a> – a Python auto-testing tool, released under the MIT License.</li>
|
|
||||||
<li><a href="https://github.com/Xion/pyqcy">pyqcy</a> – a QuickCheck-like testing framework for Python, released under the FreeBSD License.</li>
|
<li><a href="https://github.com/Xion/pyqcy">pyqcy</a> – a QuickCheck-like testing framework for Python, released under the FreeBSD License.</li>
|
||||||
<li><a href="https://github.com/gfxmonk/mocktest">mocktest</a> – a mocking library for Python, released under the LGPL License.</li>
|
<li><a href="https://github.com/gfxmonk/mocktest">mocktest</a> – a mocking library for Python, released under the LGPL License.</li>
|
||||||
<li><a href="https://github.com/AndreaCensi/contracts">PyContracts</a> – a Python library for Design by Contract (DbC), released under the GNU Lesser General Public License.</li>
|
<li><a href="https://github.com/AndreaCensi/contracts">PyContracts</a> – a Python library for Design by Contract (DbC), released under the GNU Lesser General Public License.</li>
|
||||||
<li><a href="http://www.sqlalchemy.org/">SQLAlchemy</a> – a Python SQL toolkit and Object Relational Mapper (used by the core OpenStack service), released under the MIT License.</li>
|
<li><a href="http://www.sqlalchemy.org/">SQLAlchemy</a> – a Python SQL toolkit and Object Relational Mapper (used by the core OpenStack service), released under the MIT License.</li>
|
||||||
<li><a href="http://bottlepy.org/">Bottle</a> – a micro web-framework for Python, authentication using the same credentials used to authenticate in the Nova API, released under the MIT License.</li>
|
<li><a href="http://bottlepy.org/">Bottle</a> – a micro web-framework for Python, authentication using the same credentials used to authenticate in the Nova API, released under the MIT License.</li>
|
||||||
|
<li><a href="http://python-requests.org/">Requests</a> – a Python HTTP client library, released under the ISC License.</li>
|
||||||
<li><a href="https://github.com/openstack/python-novaclient">python-novaclient</a> – a Python Nova API client implementation, released under the Apache 2.0 License.</li>
|
<li><a href="https://github.com/openstack/python-novaclient">python-novaclient</a> – a Python Nova API client implementation, released under the Apache 2.0 License.</li>
|
||||||
<li><a href="http://sphinx.pocoo.org/">Sphinx</a> – a documentation generator for Python, released under the BSD License.</li>
|
<li><a href="http://sphinx.pocoo.org/">Sphinx</a> – a documentation generator for Python, released under the BSD License.</li>
|
||||||
</ol>
|
</ol>
|
||||||
|
Binary file not shown.
@ -411,18 +411,18 @@ The following third party libraries are planned to be used to implement the requ
|
|||||||
|
|
||||||
1. [distribute](https://bitbucket.org/tarek/distribute) -- a library for working with Python
|
1. [distribute](https://bitbucket.org/tarek/distribute) -- a library for working with Python
|
||||||
module distributions, released under the Python Software Foundation License.
|
module distributions, released under the Python Software Foundation License.
|
||||||
2. [sniffer](https://github.com/jeffh/sniffer) -- a Python auto-testing tool, released under the MIT
|
2. [pyqcy](https://github.com/Xion/pyqcy) -- a QuickCheck-like testing framework for Python,
|
||||||
License.
|
|
||||||
3. [pyqcy](https://github.com/Xion/pyqcy) -- a QuickCheck-like testing framework for Python,
|
|
||||||
released under the FreeBSD License.
|
released under the FreeBSD License.
|
||||||
4. [mocktest](https://github.com/gfxmonk/mocktest) -- a mocking library for Python, released under
|
3. [mocktest](https://github.com/gfxmonk/mocktest) -- a mocking library for Python, released under
|
||||||
the LGPL License.
|
the LGPL License.
|
||||||
5. [PyContracts](https://github.com/AndreaCensi/contracts) -- a Python library for Design by
|
4. [PyContracts](https://github.com/AndreaCensi/contracts) -- a Python library for Design by
|
||||||
Contract (DbC), released under the GNU Lesser General Public License.
|
Contract (DbC), released under the GNU Lesser General Public License.
|
||||||
6. [SQLAlchemy](http://www.sqlalchemy.org/) -- a Python SQL toolkit and Object Relational Mapper
|
5. [SQLAlchemy](http://www.sqlalchemy.org/) -- a Python SQL toolkit and Object Relational Mapper
|
||||||
(used by the core OpenStack service), released under the MIT License.
|
(used by the core OpenStack service), released under the MIT License.
|
||||||
7. [Bottle](http://bottlepy.org/) -- a micro web-framework for Python, authentication using the same
|
6. [Bottle](http://bottlepy.org/) -- a micro web-framework for Python, authentication using the same
|
||||||
credentials used to authenticate in the Nova API, released under the MIT License.
|
credentials used to authenticate in the Nova API, released under the MIT License.
|
||||||
|
7. [Requests](http://python-requests.org/) -- a Python HTTP client library, released under the ISC
|
||||||
|
License.
|
||||||
8. [python-novaclient](https://github.com/openstack/python-novaclient) -- a Python Nova API client
|
8. [python-novaclient](https://github.com/openstack/python-novaclient) -- a Python Nova API client
|
||||||
implementation, released under the Apache 2.0 License.
|
implementation, released under the Apache 2.0 License.
|
||||||
9. [Sphinx](http://sphinx.pocoo.org/) -- a documentation generator for Python, released under the
|
9. [Sphinx](http://sphinx.pocoo.org/) -- a documentation generator for Python, released under the
|
||||||
|
Loading…
x
Reference in New Issue
Block a user