gpt4 book ai didi

python - 如何执行函数列表并将数据传递给使用 asyncio 调用的适当函数

转载 作者:太空宇宙 更新时间:2023-11-04 09:38:43 24 4
gpt4 key购买 nike

我以前使用的是请求,但后来我转而使用 aiohttp + asyncio 来并行运行帐户,但是我无法将逻辑放在一起。

class Faked(object):
def __init__(self):
self.database = sqlite3.connect('credentials.db')

async def query_login(self, email):
print(email)
cur = self.database.cursor()
sql_q = """SELECT * from user WHERE email='{0}'""".format(email)
users = cur.execute(sql_q)
row = users.fetchone()
if row is None:
raise errors.ToineyError('No user was found with email: ' + email + ' in database!')

self.logger().debug("Logging into account '{0}'!".format(row[0]))
call_func = await self._api.login(data={'email': row[0],
'password': row[1],
'deviceId': row[2],
'aaid': row[3]})
return await call_func

async def send_friend_request(self, uid):
return await self._api.send_friend_request(uid)


def main(funcs, data=None):
"""
todo: fill
:rtype: object
"""
tasks = []
if isinstance(funcs, list):
for func in funcs:
tasks.append(func)
else:
tasks.append(funcs)
print(tasks)
loop = asyncio.get_event_loop()
results = loop.run_until_complete(asyncio.gather(*tasks))
for result in results:
print(result)
return results


if __name__ == '__main__': # for testing purposes mostly
emails = ['email@hotmail.com', 'email@outlook.com', 'email@gmail.com']

我基本上只想知道如何对多个功能进行排队,在本例中为 query_login 和 send_friend_request,同时将正确的数据传递给所述功能,假设我同时在社交媒体应用程序上运行三个帐户,它真的令我难以置信,尽管我有使事情过于复杂的倾向,但我们将不胜感激任何帮助。

最佳答案

Python 旨在通过解包运算符 * 或使用 lambda 使这相当容易。这个线程中有几个很好的答案可以满足您的需求:

Passing functions with arguments to another function in Python?

让我们来看看它。

callstack = [] # initialize a list to serve as our stack.
# See also collections.deque for a queue.

然后我们可以定义我们的函数:

def somefunc(a, b, c): 
do stuff...

然后将参数作为列表添加到堆栈中。

args = [a, b, c]
callstack.append((somefunc, args)) # append a tuple with the function
# and its arguments list.

# calls the next item in the callstack
def call_next(callstack):
func, args = callstack.pop() # unpack our tuple
func(*args) # calls the func with the args unpacked

* 运算符解压您的列表并按顺序将它们作为参数提供。您还可以使用双星运算符 (**) 解压缩关键字参数。

def call_next(callstack):
func, args, kwargs = callstack.pop() # unpack our tuple
func(*args, **kwargs) # calls the func with both args and kwargs unpacked.

另一种方法是只创建一个 lambda。

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

callstack = []

callstack.append(lambda: add(1, 2))
callstack.pop()() # pops the lambda function, then calls the lambda function,
# which just calls the function as you specified it.

瞧!所有功劳都归功于其他线程中的作者。这里有一个陷阱:如果您将对象作为参数传递,它将作为引用传递。请小心,因为您可以在对象在您的堆栈中被调用之前对其进行修改。

def add(a, b, c):
return a + b + c

badlist = [1,2,3]
callstack.append((somefunc, badlist))
badlist = [2, 4, 6]
callstack.append((somefunc, badlist))

while len(callstack) > 0:
print(call_next(callstack))

# Prints:
12
12

您可以在 *args 版本中通过以下方式解决此问题:

# make a shallow copy and pass that to the stack instead.
callstack.append((somefunc, list(badlist)))

在 lambda 函数中,整个事物都在调用时求值,因此即使通常不是引用的事物也表现得像引用。上述技巧不起作用,因此在创建 lambda 之前根据需要进行任何复制。

关于python - 如何执行函数列表并将数据传递给使用 asyncio 调用的适当函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52527539/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com