python graphql
时间: 2023-10-20 14:36:39 浏览: 189
Python库 | graphql-api-1.1.1.tar.gz
你可以使用 Python 来发送 GraphQL 请求。有几个库可以帮助你实现这一点,其中最受欢迎的是 `requests` 和 `graphqlclient`。以下是使用这两个库进行 GraphQL 请求的示例代码:
使用 `requests` 库:
```python
import requests
url = 'http://your-graphql-endpoint.com/graphql'
query = '''
query {
// 在这里编写你的查询
}
'''
response = requests.post(url, json={'query': query})
data = response.json()
print(data)
```
使用 `graphqlclient` 库:
```python
from graphqlclient import GraphQLClient
url = 'http://your-graphql-endpoint.com/graphql'
client = GraphQLClient(url)
query = '''
query {
// 在这里编写你的查询
阅读全文