Skip to content

hung/confluence-dumper

 
 

Repository files navigation

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

About

Tool to export Confluence spaces and pages recursively via its API

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 99.5%
  • HTML 0.5%