Skip to main content

A GraphQL interface for Redis Database.

Project description

GredisQL

A GraphQL interface for Redis Database.

Motivation

  1. I was bored, been sick for a while, had to lie on the bed. So I needed to create something.
  2. Redis has Web interface ( actually a REST interface), so I urged to build one in GraphQL.
  3. There are some pretty amazing GraphQL libraries around python echo system, I wanted to try them.
  4. Last but not least, jump into quick coding session, engage and nurture the human mind. LOL

Design Philosophy

  1. All the data mutation and query are not separated here by action and most probably all the actions are performed via query operation.
  2. Technically all the requests sent to the GraphQL server was in POST, so I was initially okay with the implementation.
  3. Strawberry-Graphql is kind of server agnostic so either you can use ASGI or WSGI counterpart.
  4. Currently limiting the implementation with WSGI server, but I've plan to adopt ASGI in the journey, to support subscription.
  5. Not all Redis commands are found in the implementation, I'll try to cover it in the process.

Inspiration and Tools I used

  1. redis==5.0.0 is used to communicate with the Redis database.
  2. strawberry-graphql is used to do the heavy lifting. Also, I tried ariadne which is also another cool tool to try with.

Features and Future Plans

  1. String Commands.
  2. List Commands.
  3. Set Commands.

And many more to come in the future iteration.

Quick Starting the GraphQL Server

if __name__ == "__main__":
    from gredisql.core import Server

    server = Server()
    server.run()

You can specify the host, port and debug mode in while instantiating the GraphQL server.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

gredisql-0.0.8.tar.gz (4.6 kB view hashes)

Uploaded Source

Built Distribution

gredisql-0.0.8-py3-none-any.whl (4.8 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page