This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import PyRANDAPI as RANDAPI | |
randapi = RANDAPI.randapi() | |
myList = ["apples", "bananas"] | |
# this changes your space content to myList, overwriting all data in it | |
randapi.change_list(False, myList, "YOUR_SPACE_ID_123456") | |
# this adds to list, not changing all space content |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import PyRANDAPI as RANDAPI | |
randapi = RANDAPI.randapi() | |
print(randapi.get("YOUR_SPACE_ID_123456")) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pip install PyRANDAPI |