diff --git a/README.md b/README.md index 6b8c012..5389e80 100644 --- a/README.md +++ b/README.md @@ -111,4 +111,9 @@ their appropriate sections. Import the API class(es) you want to leverage and th >>> from connectpyse.service import tickets_api >>> api = tickets_api.TicketsAPI(url=URL, auth=AUTH) >>> mychanges = {"summary": "update multiple keys", "budgetHours": .50} - >>> ticket = api.update_ticket_multiple_keys(ticketId, mychanges) \ No newline at end of file + >>> ticket = api.update_ticket_multiple_keys(ticketId, mychanges) + +### Tell the json module to use ensure_ascii=True: + + >>> from connectpyse.sales import opportunity_api + >>> o = opportunity_api.OpportunityAPI(url=URL, auth=AUTH, ensure_ascii=True)