{ "info": { "author": "David Lord", "author_email": "davidism@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Intended Audience :: Information Technology", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 3", "Topic :: System :: Systems Administration" ], "description": "Python wrapper for Tenable SecurityCenter API\n=============================================\n\nA powerful wrapper around the SecurityCenter API.\nManages authentication, building requests, and interpreting responses.\nSupports the full, unpublished API, above the limited API officially documented.\nThe \"module::action\" pattern of the API is represented as dotted access to attributes and methods on the client.\n\nInstall::\n\n $ pip install SecurityCenter\n\nUse::\n\n >>> from securitycenter import Client\n >>> client = Client('https://localhost:443', 'user', 'password', 'cert_file.crt')\n >>> scan_results = client.scan_result.init()\n\nMany actions return more than the specifically requested data. For example, ``scanResult::init`` returns information\nincluding users and scanners as well. Many methods are configured to extract the most common value (in the example, the\nscan results). If a method extracts a value by default, pass ``_key=None`` to return the full response instead. ::\n\n >>> response = client.scan_result.init(_key=None)\n >>> response.keys() # all keys returned by method\n\nSome actions return chunks of results. The library standardizes how paginated requests are made to always use ``page``\nand ``page_size`` arguments, and the results become a special pagination object that can iterate over\nsubsequent pages. ::\n\n >>> p3 = client.scan_result.get_page(page=3, page_size=10) # 3rd page, where each page has 10 items\n >>> p3 # list of items on current page\n >>> p4 = p1.next_page() # make request for next page\n >>> pages = list(p1.iter_pages()) # all pages\n >>> items = list(p1.iter_items()) # all items\n\n.. note:: Only the modules and actions that I actually use in my own projects have been implemented. I'm willing to\n implement or accept patches to support other methods, but won't be proactive about implementing them. Please open\n an issue on the BitBucket repo to request or add more methods.\n\nLinks\n-----\n\n* `PyPI releases `_\n* `Source code `_\n", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://bitbucket.org/davidism/securitycenter", "keywords": null, "license": "BSD", "maintainer": null, "maintainer_email": null, "name": "SecurityCenter", "package_url": "https://pypi.org/project/SecurityCenter/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/SecurityCenter/", "project_urls": { "Download": "UNKNOWN", "Homepage": "https://bitbucket.org/davidism/securitycenter" }, "release_url": "https://pypi.org/project/SecurityCenter/1.0.5/", "requires_dist": null, "requires_python": null, "summary": "Python wrapper for Tenable SecurityCenter API.", "version": "1.0.5" }, "last_serial": 1725532, "releases": { "1.0": [ { "comment_text": "", "digests": { "md5": "6429b27499daaebe3f19780180439f3c", "sha256": "a9d588d99cc53510f9b5b427559945d5e28a0c242c76d943865d067259a43e41" }, "downloads": -1, "filename": "SecurityCenter-1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6429b27499daaebe3f19780180439f3c", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 16118, "upload_time": "2015-08-16T19:37:46", "url": "https://files.pythonhosted.org/packages/93/fd/d19668991f141135c1a4e2b89d3b0c9b403e24e286fea820c10aa44a7c58/SecurityCenter-1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "93228b530e67a1f2608de79f13ab8bbf", "sha256": "57f614da56456b5742804b36e83deaacc5ca9b8c7d91242db2dfd3cee9cdf46b" }, "downloads": -1, "filename": "SecurityCenter-1.0.tar.gz", "has_sig": false, "md5_digest": "93228b530e67a1f2608de79f13ab8bbf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11895, "upload_time": "2015-08-16T19:37:42", "url": "https://files.pythonhosted.org/packages/9a/c5/7e027269fe0e7cde56ace54a71810721d7006bfb94faaf3af7f4cd515e5e/SecurityCenter-1.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "5f0ea9979f29c8fff1ff41bcb7b484ef", "sha256": "3adb08357ce0dcaa720e39c8c13d4aee2f05d9a035f1e768f89dea1e00fadd1c" }, "downloads": -1, "filename": "SecurityCenter-1.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5f0ea9979f29c8fff1ff41bcb7b484ef", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 16148, "upload_time": "2015-08-16T20:44:19", "url": "https://files.pythonhosted.org/packages/0a/43/3c8d8397a29aa0aed76592a5ce62ec5fbda3cc723ae8fe33dc220fd8ff79/SecurityCenter-1.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "832acf2f5f5331d4ed931d8a1c97bdd8", "sha256": "b4766108756b7712c65281334dae75d3562ebe4af4108041396ac8e74251c42b" }, "downloads": -1, "filename": "SecurityCenter-1.0.1.tar.gz", "has_sig": false, "md5_digest": "832acf2f5f5331d4ed931d8a1c97bdd8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12141, "upload_time": "2015-08-16T20:44:15", "url": "https://files.pythonhosted.org/packages/e0/6e/65af585960ea3860d362f516199a51ce69b7706c78602ff3f8e97fba26c4/SecurityCenter-1.0.1.tar.gz" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "3dd494df3ed44755d886a05b9717d7a8", "sha256": "9821387a55490b0ac076ffd8b5e44ca5d7766ae2e868a8add9c1bbf1f3e3462b" }, "downloads": -1, "filename": "SecurityCenter-1.0.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3dd494df3ed44755d886a05b9717d7a8", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 16158, "upload_time": "2015-08-16T21:49:35", "url": "https://files.pythonhosted.org/packages/df/cd/5a3d905170324301fae47c9c892fce18c59c404e41e00c69c3f3d2d94109/SecurityCenter-1.0.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "45378cc672577a3020639b4357df643b", "sha256": "aa3b83fb1145cf7d9be9de1ef149c054b6c80e66b1b4c7240ec98ef02d4ab271" }, "downloads": -1, "filename": "SecurityCenter-1.0.2.tar.gz", "has_sig": false, "md5_digest": "45378cc672577a3020639b4357df643b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12164, "upload_time": "2015-08-16T21:49:30", "url": "https://files.pythonhosted.org/packages/a9/64/89fd715c46bebcc12142d15e2479d6208f241095e7d3ecabc3b73a4985f6/SecurityCenter-1.0.2.tar.gz" } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "18e7cbbde9c77a2c9d55f57fe72fb68a", "sha256": "524fdac86a674bf8f7fda171f0281989d3d8f1a342b3c0120a3f31921a399fd2" }, "downloads": -1, "filename": "SecurityCenter-1.0.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "18e7cbbde9c77a2c9d55f57fe72fb68a", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 16202, "upload_time": "2015-09-03T17:33:38", "url": "https://files.pythonhosted.org/packages/be/4a/78a32e2f5e7f9d00f9d280fb336309e246e0cbf6abce67dbb914c1206366/SecurityCenter-1.0.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ea0c1abc0320a686085993b013d95ca8", "sha256": "2a0f228a54916d8a40ed2e653dbd2496f12592901a1ed908472cf315de0ee588" }, "downloads": -1, "filename": "SecurityCenter-1.0.3.tar.gz", "has_sig": false, "md5_digest": "ea0c1abc0320a686085993b013d95ca8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11963, "upload_time": "2015-09-03T17:33:34", "url": "https://files.pythonhosted.org/packages/8b/b2/b1c6bac4ad74ee54b46c558eafdd97585ee888857ffc4b8fe46fb8d31f5a/SecurityCenter-1.0.3.tar.gz" } ], "1.0.4": [ { "comment_text": "", "digests": { "md5": "3709a66779513ebe602bd6f20731197f", "sha256": "2320e565ad8f04ca9d2e9b78c82a0ffdc2769dd6310204b86bfb9acc16ddea20" }, "downloads": -1, "filename": "SecurityCenter-1.0.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3709a66779513ebe602bd6f20731197f", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 16247, "upload_time": "2015-09-16T17:32:01", "url": "https://files.pythonhosted.org/packages/9e/93/87f10558e0fc80fb93368efbb639ac294dd28efd55a527f3aae3a2ebaf9e/SecurityCenter-1.0.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4df9f9ccb9baf1aa0e620e7141dcb4c2", "sha256": "0fc0c285084c6520e7f33f106fdfea5fc969db454c9a56f4b5afed54461147bd" }, "downloads": -1, "filename": "SecurityCenter-1.0.4.tar.gz", "has_sig": false, "md5_digest": "4df9f9ccb9baf1aa0e620e7141dcb4c2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12033, "upload_time": "2015-09-16T17:31:57", "url": "https://files.pythonhosted.org/packages/51/79/86f9740aa58a17ae12b14ff604f20812223b80f79d2e57c178228592cc2c/SecurityCenter-1.0.4.tar.gz" } ], "1.0.5": [ { "comment_text": "", "digests": { "md5": "25a4a5606415b635270649097042ddff", "sha256": "c6cd6d04bd5c2e4344921841c3a13e93c83b23276e534a414855bd58bc332065" }, "downloads": -1, "filename": "SecurityCenter-1.0.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "25a4a5606415b635270649097042ddff", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 16249, "upload_time": "2015-09-16T18:23:46", "url": "https://files.pythonhosted.org/packages/af/84/883046e53d804b2a92e4b788662ca4ccdb873a203c0c755143a2820c2fc7/SecurityCenter-1.0.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d5a9a091b26cac35d329f2ea54136707", "sha256": "a081c11935a96f9633bfa02879975503b8f3e7b8f145329be83860d78ad1ba7e" }, "downloads": -1, "filename": "SecurityCenter-1.0.5.tar.gz", "has_sig": false, "md5_digest": "d5a9a091b26cac35d329f2ea54136707", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12039, "upload_time": "2015-09-16T18:23:42", "url": "https://files.pythonhosted.org/packages/96/86/da6961f937006d97455b4aac86b8ef6f64ee57c448f2e7553ba845db63a1/SecurityCenter-1.0.5.tar.gz" } ], "1.0.dev0": [] }, "urls": [ { "comment_text": "", "digests": { "md5": "25a4a5606415b635270649097042ddff", "sha256": "c6cd6d04bd5c2e4344921841c3a13e93c83b23276e534a414855bd58bc332065" }, "downloads": -1, "filename": "SecurityCenter-1.0.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "25a4a5606415b635270649097042ddff", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 16249, "upload_time": "2015-09-16T18:23:46", "url": "https://files.pythonhosted.org/packages/af/84/883046e53d804b2a92e4b788662ca4ccdb873a203c0c755143a2820c2fc7/SecurityCenter-1.0.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d5a9a091b26cac35d329f2ea54136707", "sha256": "a081c11935a96f9633bfa02879975503b8f3e7b8f145329be83860d78ad1ba7e" }, "downloads": -1, "filename": "SecurityCenter-1.0.5.tar.gz", "has_sig": false, "md5_digest": "d5a9a091b26cac35d329f2ea54136707", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12039, "upload_time": "2015-09-16T18:23:42", "url": "https://files.pythonhosted.org/packages/96/86/da6961f937006d97455b4aac86b8ef6f64ee57c448f2e7553ba845db63a1/SecurityCenter-1.0.5.tar.gz" } ] }