Metadata-Version: 2.1
Name: cellenics_api
Version: 0.0.2
Summary: For programmatic upload of files to Cellencis
Home-page: https://github.com/Kristian-A/cellenics-api
Author: Kristian Apostolov
Author-email: kristian@biomage.net
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# cellenics-api

### About
This python package provides an easy way to create projects and upload samples into Cellenics.

### Installation
To install the package execute the following line:
`pip install cellenics_api`
 
### Usage
In order to use the package you first need to create an account in Cellenics (https://scp.biomage.net/) if you don't have one yet.

Then the package is used in the following way:
```python
import cellenics_api

# 1. Authenticate user and create a connection tunnel with the api
connection = cellenics_api.Connection('email', 'password')

# 2. Create an experiment
experiment_id = connection.create_experiment()

# 3. Upload samples associated with the experiment
connection.upload_samples(experiment_id, 'local/path/to/samples')
```
Once the upload is complete you can navigate to [Cellenics](https://scp.biomage.net/) and process your project there.
