Searching for programs¶
It is possible to search through programs, by:
Initalizing a client with user credentials, see Initializing the client for more information;
Iterating over programs using
Programs.search()
.
For example:
from planetcasio.client import Client
from planetcasio.programs import ProgramType
async with Client() as client:
async for program in client.programs.search(type=ProgramType.UTILITIES):
print(program)
break