diff --git a/site/code/index.html.js b/site/code/index.html.js
index 69b2f31fb5..0c875ad7e7 100644
--- a/site/code/index.html.js
+++ b/site/code/index.html.js
@@ -352,6 +352,70 @@ It also provides functionality for the construction of a WebSocket Subscriptions
### Python
+#### [Ariadne](https://ariadnegraphql.org) ([github](https://github.com/mirumee/ariadne))
+
+Ariadne is a Python library for implementing GraphQL servers using schema-first approach. It supports both synchronous and asynchronous query execution, ships with batteries included and simple API that is easy to extend or replace
+
+Ariadne can be installed with pip:
+
+\`\`\`bash
+pip install ariadne
+\`\`\`
+
+It ships with many GraphQL server implementations, enabling easy experimentation:
+
+\`\`\`python
+from ariadne import ObjectType, QueryType, gql, make_executable_schema
+from ariadne.asgi import GraphQL
+
+# Define types using Schema Definition Language (https://graphql.org/learn/schema/)
+# Wrapping string in gql function provides validation and better error traceback
+type_defs = gql("""
+ type Query {
+ people: [Person!]!
+ }
+
+ type Person {
+ firstName: String
+ lastName: String
+ age: Int
+ fullName: String
+ }
+""")
+
+# Map resolver functions to Query fields using QueryType
+query = QueryType()
+
+# Resolvers are simple python functions
+@query.field("people")
+def resolve_people(*_):
+ return [
+ {"firstName": "John", "lastName": "Doe", "age": 21},
+ {"firstName": "Bob", "lastName": "Boberson", "age": 24},
+ ]
+
+
+# Map resolver functions to custom type fields using ObjectType
+person = ObjectType("Person")
+
+@person.field("fullName")
+def resolve_person_fullname(person, *_):
+ return "%s %s" % (person["firstName"], person["lastName"])
+
+# Create executable GraphQL schema
+schema = make_executable_schema(type_defs, [query, person])
+
+# Create an ASGI app using the schema, running in debug mode
+app = GraphQL(schema, debug=True)
+\`\`\`
+
+Above server can be ran with uvicorn:
+
+\`\`\`
+pip install uvicorn
+uvicorn example:app
+\`\`\`
+
#### [Graphene](http://graphene-python.org/) ([github](https://github.com/graphql-python/graphene))
A Python library for building GraphQL APIs.