Skip to content

Commit

Permalink
bump to 0.7, add ensure_ascii kwarg
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Ciecior committed Jul 30, 2024
1 parent 7acb132 commit 8823ea1
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
6 changes: 5 additions & 1 deletion connectpyse/CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,8 @@

0.6.0.4
---
- Added support for Configuration Types
- Added support for Configuration Types

0.7
---
- [0xliam](https://github.com/0xliam) added an optional ```ensure_ascii``` keyword argument
7 changes: 6 additions & 1 deletion connectpyse/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)
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
long_description = f.read()

setup(name='connectpyse',
version='0.6.0.7',
version='0.7',
description='A ConnectWise API tool for the rest of us.',
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 8823ea1

Please sign in to comment.