如何使用 google-python-api 创建融合 table

How to create a fusion table using the google-python-api

使用 API Client Library for Python 创建属于 Python AppEngine 应用服务帐户的新融合 table 的语法是什么?

创建服务后,我不确定它提供了哪些接口方法,除了查询现有 tables 的文档或示例之外找不到任何文档或示例,example

service.query().sql(sql=
"INSERT INTO %s (Temperature,Date) values(%s,'%s')" %
(tableid,value1,now)).execute()

有一个 example 用于 REST API 我正在尝试调整。

fusion_columns = {
        "name": "Insects",
        "columns": [
            {
                "name": "Species",
                "type": "STRING"
            },
            {
                "name": "Elevation",
                "type": "NUMBER"
            },
            {
                "name": "Year",
                "type": "DATETIME"
            }
        ],
        "description": "Insect Tracking Information.",
        "isExportable": "true"
    }

    service = build('fusiontables', 'v2', credentials=credentials, )

    newtable = service.table().insert()
    newtable = service.table().insert(fusion_columns)

最后两行都不正确。

切换到 REST-API 并松开 Python API 包装器会更好吗?

我在这里找到了reference

newtable = service.table().insert(body=*)