12 lines
353 B
Python
Executable File
12 lines
353 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
from sk.devops import Organization
|
|
from sk.azure import get_token
|
|
|
|
org = Organization("https://dev.azure.com/mcovsandbox", token=get_token())
|
|
item = org["ADO Sandbox"]["ado-auth-lab"]["/"]
|
|
|
|
# Let's list all python files in this folder
|
|
for child in item.get_child_items(pattern="*.py", recurse=True):
|
|
print(f'- {child.path}')
|