SOAPpy - 命名参数列表中的保留字

发布于 2024-07-20 15:30:13 字数 310 浏览 6 评论 0原文

我正在使用 SOAPpy 访问 SOAP Web 服务。 对函数 findPathwaysByText 的调用工作得很好:

server.findPathwaysByText (query= 'WP619', species = 'Mus musculus')

但是,对函数登录的调用却不行:

server.login (user='amarillion', pass='*****')

因为 pass 是保留字,所以 python 不会运行它。 有解决方法吗?

I'm using SOAPpy to access a SOAP Webservice. This call to the function findPathwaysByText works just fine:

server.findPathwaysByText (query= 'WP619', species = 'Mus musculus')

However, this call to the function login does not:

server.login (user='amarillion', pass='*****')

Because pass is a reserved word, python won't run this. Is there a workaround?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

中二柚 2024-07-27 15:30:13

您可以尝试:

d = {'user':'amarillion', 'pass':'*****' }
server.login(**d)

这会传入给定的字典,就像它们是关键字参数一样(**)

You could try:

d = {'user':'amarillion', 'pass':'*****' }
server.login(**d)

This passes in the given dictionary as though they were keyword arguments (the **)

墟烟 2024-07-27 15:30:13

您可以说

server.login(user='amarillion', **{'pass': '*****'})

这里的双星号语法应用关键字参数。 这是一个简单的示例,显示了正在发生的情况:

def f(a, b):
    return a + b

kwargs = {"a": 5, "b": 6}
return f(**kwargs)        # same as saying f(a=5, b=6)

You can say

server.login(user='amarillion', **{'pass': '*****'})

The double-asterix syntax here applies keyword arguments. Here's a simple example that shows what's happening:

def f(a, b):
    return a + b

kwargs = {"a": 5, "b": 6}
return f(**kwargs)        # same as saying f(a=5, b=6)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文