Skip to content
This repository has been archived by the owner on Nov 4, 2023. It is now read-only.

Basic example

LeanderGangso edited this page Feb 5, 2021 · 3 revisions

Use case

This program will create a job based on inputs.

import os
import mysdk

# get TOKEN
TOKEN = os.environ('TOKEN')

# init instance
ms = mysdk.MySDK(TOKEN)

# create job
job = ms.create_job(leader='Someones name',
                    name='My new job',
                    date='2021.01.29',
                    location='google map',
                    participant_limit=10, 
                    hide=False, 
                )

Must Read

MySDK Features

Code Resources

Examples

Note:
link's will take you out of this wiki.

Clone this wiki locally