TODO: python api documentation
This is an open-source client library communicating with the MUJIN Vision Controller WebAPI.
- The latest stable build is managed by the latest_stable branch, please use it. It is tested on Linux with python 2.7.3.
- Do not use master branch if you are not a developer.
- Versions have three numbers: MAJOR.MINOR.PATCH
- Official releases always have the MINOR and PATCH version as an even number. For example 0.2.4, 0.2.6, 0.4.0, 0.4.2.
- All versions with the same MAJOR.MINOR number have the same API ande are ABI compatible.
- There are git tags for official release like v0.2.4.
TODO: test on windows
TODO: test on windows
Load mujinvisioncontrollerclient as a module in python.
BUILD_DIR= # where you want the build files to be, e.g. /path/to/build/
INSTALL_DIR= # where you want the library to be installed, e.g. /path/to/install/
python setup.py build --build-base=$BUILD_DIR install --prefix=$INSTALL_DIR --record $BUILD_DIR/installedfiles.txt
# make sure INSTALL_DIR is on PYTHONPATH
python -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1,prefix='$INSTALL_DIR')" | xargs -I {} python -c "import sys; print 'Is {} on PYTHONPATH?',sys.path.count('{}')>0"
cat $BUILD_DIR/installedfiles.txt | xargs rm -rf
MUJIN Vision Controller Python Client is Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
In other words, commercial use and any modifications are allowed.
Since OpenSSL is included, have to insert the following statement in commercial products:
This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit. (http://www.openssl.org/)
TODO
To setup building documentation, checkout this tutorial so setup gh-pages folder. Then run:
cd gh-pages git pull origin gh-pages git rm -rf en ja cd ../docs rm doxygenhtml_installed_* make gh-pages cd ../gh-pages git commit -m "updated documentation" -a git push origin gh-pages