The PSDI Data Conversion service can be downloaded for local use. This is recommended when you wish to convert
sensitive, convert files exceeding the size limit for the public service, or access it via the command-line or
Python library.
Install via pip
The easiest way to install the project is via Python's pip utility. If you do not already have this installed,
the readme in the link above provides details on installing Python and pip. If you do, you can install the
package via:
pip install psdi-data-conversion[gui]
The [gui]
portion installs the optional requirements needed to run a local
version of this webpage, and can be excluded if you only intend to use the command-line application and/or
Python library.
If you do wish to run the local version of this webpage, you'll need to create a helper script to set up the
proper parameters and start the server. See the README provided on the front page of this project's PyPI page,
linked above, for the source of this helper script, which you can paste and use locally.
Source Code
The project's source code is available on GitHub at the link above. If you wish to install it from source, you
can clone the repository, and then install it via:
pip install .[gui-test]
The [gui-test]
portion installs all optional components for running the local
webpage and testing all project components. See the project's pyproject.toml
file
for other possible optional dependencies sets that can be installed.
When installed in this manner, the helper script to run the local webpage is provided in the root directory
of the repository as run_local.sh
. It can be run from this directory, copied to
your $PATH
, or aliased as desired.
Documentation