Python inconsistencies issues- Adafruit io

134 Views Asked by At

So i have a simple block of code:

# Import library and create instance of REST client.
from Adafruit_IO import Client, Feed
aio = Client('aio_bleepbloop')

# Get list of feeds.
feeds = aio.feeds()

# Print out the feed names:
for f in feeds:
    print('Feed: {0}'.format(f.name))

dataRoll = aio.receive('diceRoll').value
dataType = aio.receive('diceType').value
print(dataRoll, dataType)

On one PC running python 3.7.4 works jsut fine and runs- On my home PC running 3.8.5 i get this error:

---------------------------------------------------------------------------
TypeError                                 Traceback (most recent call last)
<ipython-input-10-41fb818ed5ba> in <module>
      1 # Import library and create instance of REST client.
      2 from Adafruit_IO import Client, Feed
----> 3 aio = Client('aio_bleepbloop')
      4 
      5 # Get list of feeds.

TypeError: __init__() missing 1 required positional argument: 'key'

And i hoenstly dont know why.

1

There are 1 best solutions below

0
On

you could try

aio = Client("username", "aio_bloopbloop")