Metadata-Version: 1.1
Name: dtcd
Version: 0.1.1
Summary: Dynamic network blocks allocation via HTTP
Home-page: https://github.com/svinota/dtcd
Author: Peter V. Saveliev
Author-email: peter@svinota.eu
License: dual license GPLv2+ and Apache v2
Description: dtcd
        ====
        
        Dynamic network blocks allocation via simple HTTP RPC
        
        requirements
        ------------
        
        * python
        * netaddr
        
        usage
        -----
        
        With curl::
        
            # allocate a network
            $ curl -X POST --data "$uuid" http://localhost:7623/v1/network/
        
            # free a previously allocated network
            $ curl -X DELETE --data "10.0.0.0/24" http://localhost:7623/v1/network/
        
            # list current allocations
            $ curl http://localhost:7623/v1/network/ | python -m json.tool
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System :: Networking
Classifier: Topic :: System :: Systems Administration
Classifier: Operating System :: POSIX :: Linux
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: Intended Audience :: Telecommunications Industry
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Development Status :: 4 - Beta
