我正在尝试通过python连接到我的Google表格。这是我的代码段。
Connected to spreadsheet
1 即可。首先,我尝试使用正确的用户名和密码,但它会引发错误spr_client.InsertRow(dict, spreadsheet_key, worksheet_id)
虽然我的代码只有30行。
2。我尝试了错误的用户名和密码。它仍显示Could not fill the spreadsheet ERROR : mismatched tag: line 1254, column 4
。
3。在运行@{
var current_route_1 = new RouteValueDictionary(Url.RequestContext.RouteData.Values);
var current_route_2 = new RouteValueDictionary(Url.RequestContext.RouteData.Values);
//If you want to customize the routing values
current_route_1["controller"] = "Controller1";
current_route_2["controller"] = "Controller2";
}
@Url.RouteUrl(current_route_1);
@Url.RouteUrl(current_route_2);
时,它会抛出错误@Override
protected void onCreate(Bundle savedInstanceState) {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
Window w = getWindow();
w.addFlags(WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS);
w.addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);
}
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
我已经从errors package链接尝试了所有这些。
这可能是造成这种颠簸的原因。或者我错了?
答案 0 :(得分:1)
看看gspread
api,它更容易使用和Pythonic:https://github.com/burnash/gspread。在找到另一个之前我使用gdata.spreadshet
遇到了很多麻烦。