在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称(OpenSource Name):tartiflette/tartiflette开源软件地址(OpenSource Url):https://github.com/tartiflette/tartiflette开源编程语言(OpenSource Language):Python 100.0%开源软件介绍(OpenSource Introduction):Tartiflette is a GraphQL Server implementation built with Python 3.7+. Summary
MotivationRead this blogpost about our motivations TL; DR We reached the limits of Graphene, we wanted to build something which met certain requirements:
StatusThe first milestone is behind us, we are now on the road to the milestone 2. DNA
Discover Tartiflette with our fabulous tutorial on https://tartiflette.io/docs/tutorial/getting-started Usageimport asyncio
from tartiflette import Resolver, create_engine
@Resolver("Query.hello")
async def resolver_hello(parent, args, ctx, info):
return "hello " + args["name"]
async def run():
engine = await create_engine(
"""
type Query {
hello(name: String): String
}
"""
)
result = await engine.execute(
query='query { hello(name: "Chuck") }'
)
print(result)
# {'data': {'hello': 'hello Chuck'}}
if __name__ == "__main__":
asyncio.run(run()) More details on the API Documentation InstallationTartiflette is available on pypi.org. While the project depends on libgraphqlparser, wheels are provided since version 1.4.0, ensuring that no system dependency is required. To install the library: pip install tartiflette Building from sourceIf you use a platform incompatible with the provided wheels, you'll need to install macOS brew install cmake Debian/Ubuntu apt-get install cmake HTTP server implementations
RoadmapsHow to contribute to the documentation?As you may know, the documentation is hosted on https://tartiflette.io. This fabulous website is built thanks to another amazing tool, docusaurus. The content of the documentation is hosted in this repository, to be as close as possible to the code. You will find everything you need/want in the folder How to run the website locally?We built a docker image for the documentation (tartiflette/tartiflette.io on docker hub), which allow us to provide you an easy way to launch the documentation locally, without installing a specific version of node. prerequisite:
make run-docs Every change you will make in the |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论