Metadata-Version: 2.1
Name: appsync-client
Version: 0.0.3
Summary: Appsync python client for consuming the graphql endpoint
Home-page: https://github.com/vasudevan-palani/appsync-client
Author: Vasudevan Palani
Author-email: vasudevan.palani@gmail.com
License: TBD
Platform: UNKNOWN
Description-Content-Type: text/markdown

# appsync-client

## Usage

```python

def callback(client, userdata, msg):
  #use the msg
  pass

appsyncClient = AppSyncClient()
query = json.dumps({"query": "mutation {\n  updateSecret(id:\"1234\",secretString:\"sdfsdf\") {\n    id\n    secretString\n  }\n}\n"})
response = appsyncClient.execute(region="us-east-2",url="https://..../graphql",method="POST",data=query,callback=callback)
```


