Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
markciecior authored Jul 30, 2024
1 parent 8823ea1 commit 64cc569
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
>>> 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)

0 comments on commit 64cc569

Please sign in to comment.