GINsim

In this tutorial, we will attempt to import models from GINsim into your account on Cell Collective.

Begin by importing the ccapi module into your workspace.

[1]:
import ccapi

Now, let’s try creating a client object in order to interact with services provided by Cell Collective.

[2]:
client = ccapi.Client()

Authenticate your client using a *password flow type authentication* scheme.

NOTE: Before you can authenticate using ccapi, you must first register an application of the appropriate type on `Cell Collective <https://cellcollective.org>`__. If you do not require a user context, it is read only.

[3]:
client.auth(email = "test@cellcollective.org", password = "test")