So, from what I see from most sources, they say if youre trying to make a python program call azure devops api calls, it uses a python import statement such as :
from azure.devops.connection import Connection
from msrest.authentication import BasicAuthentication
...
Is there any way to use requests or other built in import statements so I dont have to install these devops specific modules? I'm coding in putty so I dont have a way to install these modules.
If anyone's got any solutions or ideas I'd be happy to hear it!