I've been stack for a few days now. I'm wondering if anyone can help me with any suggestions on how to connect to the sFTP server below. The python code I've tried is as follows:
import pysftp
with pysftp.Connection(host ='https://api1.datasource.eex-group.com ', username = 'blablabla', password ='blablabla') as sftp:
print ('Connected!')
When that didn't work, I tried this:
import requests
r = requests.get('https://api1.datasource.eex-group.com', auth=(' username', 'password'))
Thanks in advance!