如何使用ftp文件作为Machine Learnig Azure的数据源?

时间:2019-11-06 09:05:42

标签: azure machine-learning ftp qliksense

我需要将Machine Learning Studio连接到ftp(凭证)中可用的数据:从ftp提取数据文件以进行训练过程+从ftp提取数据文件以进行预测过程并将文件结果发送到ftp。

我看到的唯一用于文件提取的数据源(无数据库)是通过本地PC。

谢谢您的帮助。

穆罕默德。

1 个答案:

答案 0 :(得分:0)

您可以使用urllib使用Python在本地下载文件,然后加载它。 像这样的东西:

import urllib 
urllib.urlretrieve('ftp://username:password@server/remote_path_to_file', './local_path_to_file')