python-documentcloud 4.1.1__tar.gz → 4.1.3__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (23) hide show
  1. {python-documentcloud-4.1.1/python_documentcloud.egg-info → python-documentcloud-4.1.3}/PKG-INFO +1 -1
  2. {python-documentcloud-4.1.1 → python-documentcloud-4.1.3}/documentcloud/base.py +2 -2
  3. {python-documentcloud-4.1.1 → python-documentcloud-4.1.3/python_documentcloud.egg-info}/PKG-INFO +1 -1
  4. {python-documentcloud-4.1.1 → python-documentcloud-4.1.3}/setup.py +1 -1
  5. {python-documentcloud-4.1.1 → python-documentcloud-4.1.3}/LICENSE +0 -0
  6. {python-documentcloud-4.1.1 → python-documentcloud-4.1.3}/README.md +0 -0
  7. {python-documentcloud-4.1.1 → python-documentcloud-4.1.3}/documentcloud/__init__.py +0 -0
  8. {python-documentcloud-4.1.1 → python-documentcloud-4.1.3}/documentcloud/addon.py +0 -0
  9. {python-documentcloud-4.1.1 → python-documentcloud-4.1.3}/documentcloud/annotations.py +0 -0
  10. {python-documentcloud-4.1.1 → python-documentcloud-4.1.3}/documentcloud/client.py +0 -0
  11. {python-documentcloud-4.1.1 → python-documentcloud-4.1.3}/documentcloud/constants.py +0 -0
  12. {python-documentcloud-4.1.1 → python-documentcloud-4.1.3}/documentcloud/documents.py +0 -0
  13. {python-documentcloud-4.1.1 → python-documentcloud-4.1.3}/documentcloud/exceptions.py +0 -0
  14. {python-documentcloud-4.1.1 → python-documentcloud-4.1.3}/documentcloud/organizations.py +0 -0
  15. {python-documentcloud-4.1.1 → python-documentcloud-4.1.3}/documentcloud/projects.py +0 -0
  16. {python-documentcloud-4.1.1 → python-documentcloud-4.1.3}/documentcloud/sections.py +0 -0
  17. {python-documentcloud-4.1.1 → python-documentcloud-4.1.3}/documentcloud/toolbox.py +0 -0
  18. {python-documentcloud-4.1.1 → python-documentcloud-4.1.3}/documentcloud/users.py +0 -0
  19. {python-documentcloud-4.1.1 → python-documentcloud-4.1.3}/python_documentcloud.egg-info/SOURCES.txt +0 -0
  20. {python-documentcloud-4.1.1 → python-documentcloud-4.1.3}/python_documentcloud.egg-info/dependency_links.txt +0 -0
  21. {python-documentcloud-4.1.1 → python-documentcloud-4.1.3}/python_documentcloud.egg-info/requires.txt +0 -0
  22. {python-documentcloud-4.1.1 → python-documentcloud-4.1.3}/python_documentcloud.egg-info/top_level.txt +0 -0
  23. {python-documentcloud-4.1.1 → python-documentcloud-4.1.3}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: python-documentcloud
3
- Version: 4.1.1
3
+ Version: 4.1.3
4
4
  Summary: A simple Python wrapper for the DocumentCloud API
5
5
  Home-page: https://github.com/muckrock/python-documentcloud
6
6
  Author: Mitchell Kotler
@@ -104,7 +104,7 @@ class BaseAPIClient(object):
104
104
 
105
105
  def delete(self, id_):
106
106
  """Deletes a resource"""
107
- self.client.delete(f"{self.api_path}/{get_id(id_)}")
107
+ self.client.delete(f"{self.api_path}/{get_id(id_)}/")
108
108
 
109
109
  def all(self, **params):
110
110
  return self.list(**params)
@@ -162,7 +162,7 @@ class BaseAPIObject(object):
162
162
  self._client.put(f"{self.api_path}/{self.id}/", json=data)
163
163
 
164
164
  def delete(self):
165
- self._client.delete(f"{self.api_path}/{self.id}")
165
+ self._client.delete(f"{self.api_path}/{self.id}/")
166
166
 
167
167
 
168
168
  class APISet(list):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: python-documentcloud
3
- Version: 4.1.1
3
+ Version: 4.1.3
4
4
  Summary: A simple Python wrapper for the DocumentCloud API
5
5
  Home-page: https://github.com/muckrock/python-documentcloud
6
6
  Author: Mitchell Kotler
@@ -7,7 +7,7 @@ with open("README.md", "r") as fh:
7
7
 
8
8
  setup(
9
9
  name="python-documentcloud",
10
- version="4.1.1",
10
+ version="4.1.3",
11
11
  description="A simple Python wrapper for the DocumentCloud API",
12
12
  author="Mitchell Kotler",
13
13
  author_email="mitch@muckrock.com",