https://github.com/siemens/confluence-dumper
Tool to export Confluence spaces and pages recursively via its API
https://github.com/siemens/confluence-dumper
confluence dump offline python rest-client
Last synced: 12 months ago
JSON representation
Tool to export Confluence spaces and pages recursively via its API
- Host: GitHub
- URL: https://github.com/siemens/confluence-dumper
- Owner: siemens
- License: mit
- Created: 2016-10-19T11:31:47.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2023-05-12T22:50:39.000Z (about 3 years ago)
- Last Synced: 2025-06-22T03:13:07.189Z (12 months ago)
- Topics: confluence, dump, offline, python, rest-client
- Language: Python
- Homepage:
- Size: 39.1 KB
- Stars: 203
- Watchers: 9
- Forks: 67
- Open Issues: 7
-
Metadata Files:
- Readme: README.rst
- License: LICENSE.md
Awesome Lists containing this project
README
==============
How to install
==============
***************************
Configure virtualenvwrapper
***************************
For convenience you should use `virtualenvwrapper `_::
sudo pip install virtualenvwrapper
Add three lines to /etc/environment or another shell startup file::
export WORKON_HOME=$HOME/.virtualenvs
export PROJECT_HOME=$HOME/python_dev
source /usr/share/virtualenvwrapper/virtualenvwrapper.sh
Create a new virtual environment::
mkvirtualenv confluence_dumper_venv
Enter the virtual environment::
workon confluence_dumper_venv
***************************
Configure confluence dumper
***************************
Install dependencies::
pip install -r requirements.txt
Copy confluence settings::
cd confluence_dumper
cp settings.sample.py settings.py
Please personalize the ``settings.py`` on your own according to your confluence instance.
==========
How to use
==========
Don't forget to switch to the virtual environment because of the installed dependencies::
workon confluence_dumper_venv
Run confluence dumper::
cd confluence_dumper
python confluence_dumper.py