Metadata-Version: 1.0
Name: labstep
Version: 0.2.1
Summary: Python Wrapper around the Labstep API
Home-page: http://github.com/Labstep/labstepPy
Author: Barney Walker
Author-email: barney@labstep.com
License: MIT
Description: # labstepPy
        
        Python wrapper around the Labstep API
        
        ## Installation
        
        ```
        pip install labstep
        ```
        
        ## Usage
        
        ```
        from labstep import login, createExperiment, addComment, attachFile
        
        # Login to your Labstep account
        user = login('demo@labstep.com','demopassword')
        
        # Create an experiment
        experiment = createExperiment(user,'My First Python Experiment','An experiment created using the labstep python package')
        
        # Comment on an experiment
        addComment(user,experiment,'It's working great!')
        
        # Attach a file to an experiment
        filepath = 'my_script.py'
        attachFile(user,experiment,filepath,'This is the python script used in this experiment')
        ```
        
        For full list of available methods see:
        
        https://labsteppy.readthedocs.io/en/latest/
Platform: UNKNOWN
