Python中的__future__和swagger_client存在问题

时间:2018-05-30 06:38:08

标签: python python-3.x swagger python-import strava

Strava API文档提供了以下示例代码,我复制并输入了自己的访问令牌和俱乐部ID:

from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# Configure OAuth2 access token for authorization: strava_oauth
swagger_client.configuration.access_token = 'MY_ACCESS_TOKEN'

# create an instance of the API class
api_instance = swagger_client.ClubsApi()
id = MY_CLUB_ID # Integer | The identifier of the club.
page = 56 # Integer | Page number. (optional)
perPage = 56 # Integer | Number of items per page. Defaults to 30.     (optional) (default to 30)

try:
    # List Club Activities
    api_response = api_instance.getClubActivitiesById(id, page=page, perPage=perPage)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ClubsApi->getClubActivitiesById: %s\n" % e)

我尝试运行它

from __future__ import print_statement
SyntaxError: future feature print_statement is not defined

我还可以看到我的swagger_client导入会得到相同的结果。我尝试过为每个人安装套餐,但这并没有任何区别。我读到__future__我应该在> Python 2.7,但我目前正在使用3.6。

如何解决此问题?

1 个答案:

答案 0 :(得分:4)

1)第一行包含拼写错误

from __future__ import print_statement
                             ^^^

应该是

from __future__ import print_function

但是,由于您使用的是Python 3,因此实际上并不需要此导入 - 有关详细信息,请参阅Dynamic component loader article on Angular docs

2)swagger_client可能是从this Q&A生成的Python客户端。看起来您需要使用Swagger Codegen手动生成它。有几种方法可以做到这一点:

  • 将Strava OpenAPI定义粘贴到Strava OpenAPI definition并选择生成客户端>蟒即可。
  • 安装https://editor.swagger.io command-line version并运行:

    # Windows
    java -jar swagger-codegen-cli-<ver>.jar generate -i https://developers.strava.com/swagger/swagger.json -l python -o ./StravaPythonClient
    
    # Mac
    swagger-codegen generate -i https://developers.strava.com/swagger/swagger.json -l python -o ./StravaPythonClient