user4104593
user4104593

Reputation:

how to use the kloudless api_key

I'm using a kloudless example to build a text editor that saves files to the cloud. In this line, I replaced the 'api_key' with my API key. It still gives a syntax error at this line. I'm new to using cloud APIs, so any help would be appreciated!

kloudless.configure(api_key=os.environ['KLOUDLESS_API_KEY'])

Upvotes: 1

Views: 164

Answers (1)

brian
brian

Reputation: 46

api_key is the keyword argument that kloudless.configure takes, so you would want to pass your api key as the value of that (so where os.environ['KLOUDLESS_API_KEY'] is).

If you'd like to see an example of text editor that uses the Kloudless SDK, you can take a look at https://github.com/vinodc/cloud-text-editor.

Upvotes: 3

Related Questions