{ "info": { "author": "Karim Shehadeh", "author_email": "karim@karim.cloud", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.6" ], "description": "# PyFluence\n----\nA Python 2.7 REST API client for Atlassian Confluence\n\n\n\n\n\n\nThis library lets you view, edit, delete entities in an instance of Atlassian Confluence using its REST API\n\n[Confluence API v3]: https://docs.atlassian.com/confluence/REST/latest/\n[Confluence]: https://www.atlassian.com/software/confluence\n\n## Simple Demo\n\n```python\nfrom pyfluence import Confluence\n\n# First create a Confluence instance:\nconfluence = Confluence(\"admin\",\"admin\",\"http://localhost:1990/confluence\")\n\n# Then create a space\nspace_ob = confluence.create_space(\"TEST\",\"Test Space\",\"Test Space Description\")\n\n# Then create a page in that space\ncontent_ob = confluence.create_content(\n space_key=space_ob['key'],\n type=\"page\",\n title=\"Test Parent Page\",\n html_markup=\"