A simple model based GraphQL API configurator written in Python and based of Django
Project description
Plug & Play GraphQL (pnp-graphql)-- Change Log
A library for making GraphQL API with Python/Django. This is like a flash drive, just how you plug into computer and transfer files.
Read Full Documentation here: https://docs.ashraful.dev/pnp-graphql
Quick Start
Documentation is coming soon...
- Install from pip
pip install pnp-graphql
- Add
graphene_django
on top of installed apps on settings.py - Add
pnp_graphql
into installed apps on settings.py - Add PnP GraphQL config on settings.
GRAPHENE = {
'SCHEMA': 'pnp_graphql.schema.schema'
}
PNP_GRAPHQL = {
'ENABLED_APPS': ['example_app'],
# If you want to use Token Authentication. Otherwise it's optional
'AUTHENTICATION_CLASS': 'pnp_graphql.authentication.TokenAuthentication'
}
- Add the following code on
urls.py
from pnp_graphql.urls import urlpatterns as up
urlpatterns = [
# ... ... ...
]
urlpatterns += up
- Set
DEBUG = False
for production use.
That's it :)
Now visit: http://your-ip:port/api/graphql-explorer/
for explore GraphQL built-in UI explorer for query.
Production ready API : http://your-ip:port/api/graphql/
What's working?
- GraphQL query
- Mutation (Create, Update, Delete)
- Pagination
- API filtering for Number, String, Date, DateTime
- Authentication
What are the plans?
- Proper error handling
- Field validation
- Caching
- many more ... ... ...
Waiting for your contribution :smile:
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pnp-graphql-0.1.5.tar.gz
(13.9 kB
view details)
File details
Details for the file pnp-graphql-0.1.5.tar.gz
.
File metadata
- Download URL: pnp-graphql-0.1.5.tar.gz
- Upload date:
- Size: 13.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 93a7646b9bdaded9c050d4b1e4a863874089d59365f542de5b67a0e79d2e8827 |
|
MD5 | 4d33cabddc29ecbb838f8c8b9d16b73c |
|
BLAKE2b-256 | f5a73c40d2da7e80ddc3cc5cfaf7b2fec05cdfe7641fa6f4f625bc0c4d8a8d27 |