将Sharepoint数据保存到SQLite表中

时间:2016-02-27 01:44:00

标签: python list sharepoint

我正在尝试将多个Sharepoint站点中的数据保存到SQLite数据库文件中。我可以使用Sharepoint库访问数据。但无法将Sharepoint列表转换为Pandas Dataframe&然后写入SQLite表。 我使用以下网站获得支持,这里是我的代码片段 https://pypi.python.org/pypi/sharepoint/0.4.1 Saving SharePoint list with Python

我不确定是否有不同的技术来循环Sharepoint List并写入SQL Insert。我对Pandas图书馆感觉更舒服一点。目前的计划是Sharepoint LIst - > DataFrame - > SQL。我怎么解决这个问题? PS:我是Python的新手,并且上周才开始使用它:)

$.get({
        url: "http://address!!!!",
        type: "GET",
        success: function(result) {
            console.log("yay");
            console.log(result);
        },
        error: function (err) {
            console.log(err);
        },
    });

1 个答案:

答案 0 :(得分:0)

更新: 我使用列表来存储SharepointList。创建列表后,您可以轻松加载到数据框中。

data=[]
for row in sp_list.rows:
  data.append[(Column1,Column2_x0020_Field2)] 
df=pd.DataFrame(data,columns=['Column1','Column2'])