Няма описание

Andrej 524a746c8b Adding default routines for modify, convertLookup and getId преди 10 месеца
pythonScripts 8f98e4ce97 Minor changes to testInterface преди 1 година
LICENSE 623fedc366 Add LICENSE преди 4 години
Readme.md c4fd57f4c6 Update Readme.md преди 5 години
getCSRF.py e892554ee8 adding missing getCSRF.py преди 5 години
getFile.py fbad6ad2e6 Initial import преди 5 години
importXLSX.py 524a746c8b Adding default routines for modify, convertLookup and getId преди 10 месеца
labkeyDatabaseBrowser.py 28114bd6f0 Prefering utf8 in parsing response for labkeyDatabaseBrowser преди 10 месеца
labkeyFileBrowser.py 9c2df6384c Repairng readFileToBuffer преди 4 години
labkeyInterface.py a576a3bb48 Making OSError more verbose in labkeyInterface преди 1 година
netwo 8bc8eff9c0 Adding network-config-samples-win.json преди 3 години
network-config-sample.json fbad6ad2e6 Initial import преди 5 години

Readme.md

Labkey Python interface

A Python3 urllib3 based interface for communication with the LabKey server. Update over official LabKey version is the use of client certificates to access potentially sensitive sites.

Setup

Update network-config-sample.json with personal information needed to access the site (certificates, keys, username and password) When using labkeyInterface, use the updated file as input to labkeyInterface constructor, ie

ifc=labkeyInterface.labkeyInterface('/path/to/network-config.json')

Use

getFile.py illustrates use to connect to site, collect image and perform image analysis.

Generate private key without password

To connect, a key without password is needed for compliance with urllib3. Generate it with:

openssl rsa -in [file1.key] -out [file2.key]