目前,我对DataFrame的每一行发送一个post请求,这意味着我读取该行,将其转换为Json数据,然后使用request.post发送它。有没有更好的方法在一个post请求中发送整个 Dataframe ?谢谢你,
request.post
t40tm48m1#
你有没有试过把整个 Dataframe 转换成python字典,然后作为json发送呢?试试panda to_dict()方法。只需要df.to在你的 Dataframe 上调用www.example.com _dict()方法。
6ju8rftf2#
你可以使用rest-panda软件包。文档可以在这里找到。https://pypi.org/project/rest-pandas/
2条答案
按热度按时间t40tm48m1#
你有没有试过把整个 Dataframe 转换成python字典,然后作为json发送呢?试试panda to_dict()方法。只需要df.to在你的 Dataframe 上调用www.example.com _dict()方法。
6ju8rftf2#
你可以使用rest-panda软件包。文档可以在这里找到。https://pypi.org/project/rest-pandas/