我可以使用 Django 的 restfull 框架来使用 api

can I use restfull framework for Django to use api

我想使用 tomtom web api 进行路由:https://developer.tomtom.com 每次我搜索 how to use an API with django 时,我都会得到 restfull framework isn't that for building an API?如果我可以使用它来处理现有的 API 如果是的话我想知道如何? 或者 python 的请求库就足够了吗?

你绝对应该尝试 requests 包 (link),它完全足以构建任何 REST API 客户端。

您可能找到的 Django 包是 django rest framework,它用于构建 API 接口。但是您想要的不是构建 API,而是发出请求并集成到外部 API。请求包是做到这一点的简单选择。

我找到了 API 与 python here 集成的好教程。祝你好运 ;-)。