w3cpull is a tool for pulling data from IBM w3 Connections.
Since w3 Connections does not allow exporting data and does not have a REST API, it was decided to go from the front side and use Selenium. This tool allows you to download wiki pages and related files from the community and sub-communities. As a result, you get a local copy of the community content (currently only wiki content) with the original structure.
- Languages: Python
- Frameworks: Selenium
- Interface: CLI
- Supported OS: Linux, OS X
Requirements:
- Python (>=3.6)
- Browser (Chrome / Firefox)
Linux:
$ pip install w3cpull
OS X:
$ curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
$ python3 get-pip.py w3cpull
Usage:
w3cpull --community-url=COMMUNITY_URL --target-dir=TARGET_DIR_PATH [--temp-dir=TEMP_DIR_PATH] [--w3id-auth=W3ID_AUTH] [--browser=BROWSER] [--recursive] [--visual]
w3cpull -h | --help
w3cpull -v | --version
Options:
--community-url=COMMUNITY_URL Set the URL of the target community
--target-dir=TARGET_DIR_PATH Set the path to the directory where the content will be saved
--temp-dir=TEMP_DIR_PATH Set the path to the folder where the content will be temporarily stored and processed (by default, /tmp)
--w3id-auth=W3ID_AUTH Set the uername:password value for automatic authentication
--browser=BROWSER Set the name of the browser to use (by default, Firefox)
--recursive Set the recursive execution type (with subcommunity processing)
--visual Set the visual execution type (with the browser open)
-h, --help Show this help message.
-v, --version Show the version.
The app is currently under development. The app may contain bugs. Use at your own risk.
- The Chrome browser in non-visual mode does not allow you to log in automatically.
- Fork it.
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request
The MIT License (MIT)
Copyright (c) 2020 Mikalai Lisitsa
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.