{ "info": { "author": "Kevin Carter", "author_email": "kevin.carter@rackspace.com", "bugtrack_url": null, "classifiers": [ "Intended Audience :: Developers", "Intended Audience :: Information Technology", "Intended Audience :: System Administrators", "License :: OSI Approved :: Apache Software License", "Operating System :: OS Independent", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Utilities" ], "description": "Book Of Nova\n############\n:date: 2012-03-08 16:22\n:tags: Openstack, Nova Compute, Nova\n:category: \\*nix\n\n\nAccess Openstack Nova Compute via Python\n========================================\n\nGeneral Overview\n----------------\n\nThis is a VERY Simple library which I have found useful in projects where I needed access to the Openstack NOVA Compute API and I did not want to bother with novaclient.\n\n\n*NOTICE*: \n If you had installed a previous version of \"the book of nova\" then you will need to retool the application when it comes to authentication and logging. By Default the application now uses the standard Python Logging Module, and will print out all of the logging information to the console as you access the library. If you want to log to a file simply change the \"log_file\" variable when you load in \"computelib.NovaCommands\" class. The \"log_file\" variable will attempt to place the log file in \"/var/log\" if you are running with elevated privileges, otherwise the log file will be in the users working directory. You may also change the log level for more/less output by changing the \"log_level\" variable. Lastly, if you have a log handler setup you can override the default logger entirely by simple using the \"output\" variable. To use the output variable you will need to pre-set the some logging facility which supports [error, info, debug].\n\n\nFunctions of the Library :\n * Do Openstack Nova Things\n * Presently only supports Openstack Nova Compute, but does so for both Vanilla Openstack and the Rackspace Open Cloud\n * Not all of the functions are built-in however the library is extendable and I would be happy to add things in as needed / requested. \n\n\nPrerequisites :\n * Python => 2.6 but < 3.0\n\n\nInstallation is simple :\n\n .. code-block:: bash\n\n git clone git://github.com/cloudnull/bookofnova.git\n cd bookofnova\n python setup.py install\n\n\nNow in your application *Import bookofnova* and go forth and Access Openstack Nova.\n\n\nApplication Usage\n-----------------\n\nHere is some Basic Usage :\n\n\n .. code-block:: python\n\n # Everything in this dictionary is a string, fill in the needed values.\n m_args = {\"os_user\": 'YOURUSERNAME',\n \"os_apikey\": 'RANDOMNUMBERSANDTHINGS',\n \"os_auth_url\": None,\n \"os_rax_auth\": 'ALOCATION',\n \"os_verbose\": None,\n \"os_password\": None,\n \"os_tenant\": None,\n \"os_region\": None,\n \"os_version\": 'v2.0'}\n\n\n .. code-block:: python\n\n from bookofnova import computelib, connections \n # Tell the book of Nova that you are ready\n nova = computelib.NovaCommands(m_args=m_args,\n log_file=None,\n log_level='info',\n output=None)\n\n\t# Authenticate Against the Nova API\n\tnova.auth()\n \n # Using Nova to show a list of all Instances\n servers = nova.server_list()\n print(servers)\n \n # now everything that you ever wanted to know from a Openstack Nova\n # query can be found in your dictionary under the key 'nova_resp'\n\n\nGet Social\n----------\n\n* Downloadable on PyPi_\n* Downloadable on GitHub_\n* See My `GitHub Issues Page`_ for any and all Issues or Feature requests\n\n.. _PyPi: https://pypi.python.org/pypi/bookofnova\n.. _GitHub: https://github.com/cloudnull/bookofnova\n.. _GitHub Issues Page: https://github.com/cloudnull/bookofnova/issues\n\nSee ``https://github.com/cloudnull/bookofnova/issues`` for Issues or Feature requests\n\n\nLicense\n_______\n\nCopyright [2013] [Kevin Carter]\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/cloudnull/bookofnova, https://pypi.python.org/pypi/bookofnova", "keywords": "openstack,nova,compute,api,rackspace", "license": "Apache2.0", "maintainer": null, "maintainer_email": null, "name": "bookofnova", "package_url": "https://pypi.org/project/bookofnova/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/bookofnova/", "project_urls": { "Download": "UNKNOWN", "Homepage": "https://github.com/cloudnull/bookofnova, https://pypi.python.org/pypi/bookofnova" }, "release_url": "https://pypi.org/project/bookofnova/0.007/", "requires_dist": null, "requires_python": null, "summary": "Nova Compute Library for Python", "version": "0.007" }, "last_serial": 786972, "releases": { "0.002": [ { "comment_text": "", "digests": { "md5": "c602ca4e31fb36addb724d49238d8885", "sha256": "4bad797893f95f8b31d0e7d1363b0650b60e8d5ce8eb07ada9914c7c4b6ab512" }, "downloads": -1, "filename": "bookofnova-0.002.tar.gz", "has_sig": false, "md5_digest": "c602ca4e31fb36addb724d49238d8885", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9582, "upload_time": "2013-03-10T01:07:01", "url": "https://files.pythonhosted.org/packages/e7/c0/0ae9a850ca6ea9df8b0e230b188933c754af64769fc45aed318062cc312e/bookofnova-0.002.tar.gz" } ], "0.003": [ { "comment_text": "", "digests": { "md5": "0a0a62ba86494be08aafd4514dfffaf9", "sha256": "a088a2df3eb2ccec9eabee32dbfc2864bf5a037b97f4322b2b5abd0150c36904" }, "downloads": -1, "filename": "bookofnova-0.003.tar.gz", "has_sig": false, "md5_digest": "0a0a62ba86494be08aafd4514dfffaf9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9654, "upload_time": "2013-03-10T02:55:02", "url": "https://files.pythonhosted.org/packages/2c/90/35af01837d4895cc4077531c9a36653d302e192df26799ccecae0b0af22b/bookofnova-0.003.tar.gz" } ], "0.004": [ { "comment_text": "", "digests": { "md5": "be08446d451241e0f189a67b613225f7", "sha256": "29ba1a704ff4faeb649706fd673ad9e9d370c2f22b47e55a4a70753acd6cdd7d" }, "downloads": -1, "filename": "bookofnova-0.004.tar.gz", "has_sig": false, "md5_digest": "be08446d451241e0f189a67b613225f7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9612, "upload_time": "2013-03-10T05:09:43", "url": "https://files.pythonhosted.org/packages/5e/ff/4a9f0e944ee5f5cff16f9ad31a3cfed0d6d63de72e178f2e7d0fcf682d8a/bookofnova-0.004.tar.gz" } ], "0.005": [ { "comment_text": "", "digests": { "md5": "ebb23ea04a4c3a48111b771a53595fdd", "sha256": "9912d8942180bd3cdc4f59068420f63a32fa11f3ad123b4682c6a28e4cda36df" }, "downloads": -1, "filename": "bookofnova-0.005.tar.gz", "has_sig": false, "md5_digest": "ebb23ea04a4c3a48111b771a53595fdd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10333, "upload_time": "2013-03-12T12:23:12", "url": "https://files.pythonhosted.org/packages/8b/ed/ac5c917aea80e8fed85572cb3b5dcb6e6a0e18bc1f12af96bfceae225e3b/bookofnova-0.005.tar.gz" } ], "0.006": [ { "comment_text": "", "digests": { "md5": "0737a887dbf2fc18053a18e922869792", "sha256": "29f2658d7dfb893963ec361d6054b6df465adda6401a8d1b832056bf75d5ad71" }, "downloads": -1, "filename": "bookofnova-0.006.tar.gz", "has_sig": false, "md5_digest": "0737a887dbf2fc18053a18e922869792", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10397, "upload_time": "2013-03-14T02:56:44", "url": "https://files.pythonhosted.org/packages/1a/4b/8cbeac3eb99710eaf2a83fe20ea386177e9c137d81a72ba0d5a56d955faa/bookofnova-0.006.tar.gz" } ], "0.007": [ { "comment_text": "", "digests": { "md5": "a52e968e61a13eb308577f187779fb36", "sha256": "4d10da602ba4e880574927f6ee509cf409a9fb48731b9bbc397ca202524e190f" }, "downloads": -1, "filename": "bookofnova-0.007.tar.gz", "has_sig": false, "md5_digest": "a52e968e61a13eb308577f187779fb36", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12551, "upload_time": "2013-05-06T14:59:56", "url": "https://files.pythonhosted.org/packages/4d/d7/2036bcf3ac6b75f3bf08dab60e4ba696557d53fef45831b58d81769a9d6f/bookofnova-0.007.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "a52e968e61a13eb308577f187779fb36", "sha256": "4d10da602ba4e880574927f6ee509cf409a9fb48731b9bbc397ca202524e190f" }, "downloads": -1, "filename": "bookofnova-0.007.tar.gz", "has_sig": false, "md5_digest": "a52e968e61a13eb308577f187779fb36", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12551, "upload_time": "2013-05-06T14:59:56", "url": "https://files.pythonhosted.org/packages/4d/d7/2036bcf3ac6b75f3bf08dab60e4ba696557d53fef45831b58d81769a9d6f/bookofnova-0.007.tar.gz" } ] }