python-documentcloud 4.7.0__tar.gz → 4.8.1__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 (33) hide show
  1. {python_documentcloud-4.7.0 → python_documentcloud-4.8.1}/PKG-INFO +1 -1
  2. {python_documentcloud-4.7.0 → python_documentcloud-4.8.1}/documentcloud/annotations.py +1 -1
  3. {python_documentcloud-4.7.0 → python_documentcloud-4.8.1}/python_documentcloud.egg-info/PKG-INFO +1 -1
  4. {python_documentcloud-4.7.0 → python_documentcloud-4.8.1}/setup.py +1 -1
  5. {python_documentcloud-4.7.0 → python_documentcloud-4.8.1}/LICENSE +0 -0
  6. {python_documentcloud-4.7.0 → python_documentcloud-4.8.1}/README.md +0 -0
  7. {python_documentcloud-4.7.0 → python_documentcloud-4.8.1}/documentcloud/__init__.py +0 -0
  8. {python_documentcloud-4.7.0 → python_documentcloud-4.8.1}/documentcloud/addon.py +0 -0
  9. {python_documentcloud-4.7.0 → python_documentcloud-4.8.1}/documentcloud/base.py +0 -0
  10. {python_documentcloud-4.7.0 → python_documentcloud-4.8.1}/documentcloud/client.py +0 -0
  11. {python_documentcloud-4.7.0 → python_documentcloud-4.8.1}/documentcloud/constants.py +0 -0
  12. {python_documentcloud-4.7.0 → python_documentcloud-4.8.1}/documentcloud/documents.py +0 -0
  13. {python_documentcloud-4.7.0 → python_documentcloud-4.8.1}/documentcloud/exceptions.py +0 -0
  14. {python_documentcloud-4.7.0 → python_documentcloud-4.8.1}/documentcloud/organizations.py +0 -0
  15. {python_documentcloud-4.7.0 → python_documentcloud-4.8.1}/documentcloud/projects.py +0 -0
  16. {python_documentcloud-4.7.0 → python_documentcloud-4.8.1}/documentcloud/sections.py +0 -0
  17. {python_documentcloud-4.7.0 → python_documentcloud-4.8.1}/documentcloud/toolbox.py +0 -0
  18. {python_documentcloud-4.7.0 → python_documentcloud-4.8.1}/documentcloud/users.py +0 -0
  19. {python_documentcloud-4.7.0 → python_documentcloud-4.8.1}/python_documentcloud.egg-info/SOURCES.txt +0 -0
  20. {python_documentcloud-4.7.0 → python_documentcloud-4.8.1}/python_documentcloud.egg-info/dependency_links.txt +0 -0
  21. {python_documentcloud-4.7.0 → python_documentcloud-4.8.1}/python_documentcloud.egg-info/requires.txt +0 -0
  22. {python_documentcloud-4.7.0 → python_documentcloud-4.8.1}/python_documentcloud.egg-info/top_level.txt +0 -0
  23. {python_documentcloud-4.7.0 → python_documentcloud-4.8.1}/setup.cfg +0 -0
  24. {python_documentcloud-4.7.0 → python_documentcloud-4.8.1}/tests/test_addon.py +0 -0
  25. {python_documentcloud-4.7.0 → python_documentcloud-4.8.1}/tests/test_annotations.py +0 -0
  26. {python_documentcloud-4.7.0 → python_documentcloud-4.8.1}/tests/test_base.py +0 -0
  27. {python_documentcloud-4.7.0 → python_documentcloud-4.8.1}/tests/test_client.py +0 -0
  28. {python_documentcloud-4.7.0 → python_documentcloud-4.8.1}/tests/test_documents.py +0 -0
  29. {python_documentcloud-4.7.0 → python_documentcloud-4.8.1}/tests/test_organizations.py +0 -0
  30. {python_documentcloud-4.7.0 → python_documentcloud-4.8.1}/tests/test_projects.py +0 -0
  31. {python_documentcloud-4.7.0 → python_documentcloud-4.8.1}/tests/test_sections.py +0 -0
  32. {python_documentcloud-4.7.0 → python_documentcloud-4.8.1}/tests/test_toolbox.py +0 -0
  33. {python_documentcloud-4.7.0 → python_documentcloud-4.8.1}/tests/test_users.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python-documentcloud
3
- Version: 4.7.0
3
+ Version: 4.8.1
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
@@ -79,7 +79,7 @@ class AnnotationClient(ChildAPIClient):
79
79
  x2=None,
80
80
  y2=None,
81
81
  ):
82
- coords = [x1, y2, x2, y2]
82
+ coords = [x1, y1, x2, y2]
83
83
  if not (all(c is None for c in coords) or all(c is not None for c in coords)):
84
84
  raise ValueError(
85
85
  "x1, y2, x2, y2 must either all be None or all be not None"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python-documentcloud
3
- Version: 4.7.0
3
+ Version: 4.8.1
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.7.0",
10
+ version="4.8.1",
11
11
  description="A simple Python wrapper for the DocumentCloud API",
12
12
  author="Mitchell Kotler",
13
13
  author_email="mitch@muckrock.com",