confluence-python-cli
confluence-python-cli copied to clipboard
A simple python script for interaction with a Atlassian Confluence Wiki
Hi, Thanks for making it available to us.I would need your help in trying this script. I tried to use and stuck with error C:\Users\nitin-kumar\Downloads\confluence-python-cli-master\confluence-python-cli-master>python confluence.py --help File "confluence.py", line...
…n history is preserved. Parent ID is automatically grabbed from the page so it is no longer required and an optional comment can be added to the update. The code...
I made some bare changes to make this runnable under python 3: - changed all prints without braces to prints with braces - Use of the python3 xmlrpc.client library
Sorry for creating a pull request! It's been a long day! Using Python 3.x where the module "xmlrpclib" is used, Python 3.x comes pre-packaged with this already. It is not...
Hi, For people using python 3.x it may be worth noting that the xmlrpclib module, is not called xmlrpclib anymore. This causes very little disruption to your API wrapper as...
Currently username and password show up in the process list - retrieving them from a config file or environment variables would be more secure.
The **_ConfluencePage_** class has _get_content_ declared twice: def get_content(self):` self.wanted_page_id = self.get_page_id self.content_values = {"style": "clean"} self.page_content = self.wanted_page = self.server.confluence2.renderContet(self.token, self.wanted_page_id, self.content_values) def get_content(self): return self.get()['content']
Can confluence-py upload file to Confluence? I don't see the function in this...
not sure if your repository is still alive. there are several open PR. it would be nice if we could consilidate them. Then I could use your python-pip in my...