| 123456789101112131415161718192021222324252627282930313233343536373839 |
- ##########
- SpEndPoint
- ##########
- Creates a SPARQL endpoint supporting custom services.
- Default access at `http://127.0.0.1:8000`.
- Currently supports 3 services:
- .. code-block::
- dtf:outlier
- dtf:example
- dtf:conversion
- The outlier service relies on `another endpoint <https://msdl.uantwerpen.be/git/lucasalbertins/DTDesign/src/main/tools/typeOperations>`_ which needs to be set up and accessible.
- Installation
- ------------
- ..
- .. code-block:: shell
- pip install spendpoint
- or
- .. code-block:: shell
- pip install --index-url https://pip:glpat-m8mNfhxZAUnWvy7rLS1x@git.rys.one/api/v4/projects/262/packages/pypi/simple --no-deps spendpoint
- Configuration
- -------------
- A configuration file at `data/configuration.toml` holds all user configurable data.
- You can set the `host` and `port` the server will listen on.
- A more advanced use is to import extra services.
- These services need to be defined in the `service.py` file as well.
|