Skip to content
Snippets Groups Projects
Commit 40c0a4c0 authored by Nils Cedric Holle's avatar Nils Cedric Holle
Browse files

Update __all__

parent e5bd06d6
No related branches found
Tags v0.0.7
No related merge requests found
Pipeline #74202 passed
......@@ -30,7 +30,7 @@ print(instruments.getList())
## Documentation
The current API documentation can be found [here](https://zivgitlab.uni-muenster.de/ag-salinga/sampledb-api-wrapper/-/jobs/artifacts/v0.0.6/file/doc/_build/index.html?job=deploy_production).
The current API documentation can be found [here](https://zivgitlab.uni-muenster.de/ag-salinga/sampledb-api-wrapper/-/jobs/artifacts/v0.0.7/file/doc/_build/index.html?job=deploy_production).
Further details on the input and output of each function (usually JSON) can be found in the documentation of the [HTTP API](https://scientific-it-systems.iffgit.fz-juelich.de/SampleDB/developer_guide/api.html).
## What works
......
......@@ -7,11 +7,14 @@ from requests import Response
from sampledbapi import getData, postData, putData
__all__ = ["getList", "get", "getVersion", "getPublic",
__all__ = ["getList", "get", "getVersion", "getPublic", "setPublic",
"getAllUsersPermissions", "getUserPermissions",
"getAllGroupsPermissions", "getGroupPermissions",
"getAllProjectsPermissions", "getProjectPermissions",
"getLocationList", "getLocation", "getFileList", "getFileInfo"]
"setUserPermissions", "getAllGroupsPermissions",
"getGroupPermissions", "setGroupPermissions",
"getAllProjectGroupsPermissions", "getProjectGroupPermissions",
"setProjectGroupPermissions", "getLocationList", "getLocation",
"getFileList", "getFileInfo", "uploadFile", "uploadFileRaw",
"postLink", "getCommentList", "getComment", "postComment"]
def getList() -> List:
......
......@@ -19,7 +19,7 @@ out = setup(
# Versions should comply with PEP440. For a discussion on single-sourcing
# the version across setup.py and the project code, see
# http://packaging.python.org/en/latest/tutorial.html#version
version="0.0.6",
version="0.0.7",
description="API wrapper for SampleDB",
long_description=long_description, # this is the
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment