xapiweb 1.5.2__tar.gz → 1.5.4__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 (32) hide show
  1. {xapiweb-1.5.2 → xapiweb-1.5.4}/PKG-INFO +4 -1
  2. {xapiweb-1.5.2 → xapiweb-1.5.4}/pyproject.toml +6 -1
  3. {xapiweb-1.5.2 → xapiweb-1.5.4}/xapiweb/__init__.py +1 -1
  4. {xapiweb-1.5.2 → xapiweb-1.5.4}/xapiweb.egg-info/PKG-INFO +4 -1
  5. {xapiweb-1.5.2 → xapiweb-1.5.4}/README.md +0 -0
  6. {xapiweb-1.5.2 → xapiweb-1.5.4}/setup.cfg +0 -0
  7. {xapiweb-1.5.2 → xapiweb-1.5.4}/xapiweb/_txn.py +0 -0
  8. {xapiweb-1.5.2 → xapiweb-1.5.4}/xapiweb/client.py +0 -0
  9. {xapiweb-1.5.2 → xapiweb-1.5.4}/xapiweb/errors.py +0 -0
  10. {xapiweb-1.5.2 → xapiweb-1.5.4}/xapiweb/qids.py +0 -0
  11. {xapiweb-1.5.2 → xapiweb-1.5.4}/xapiweb/resources/__init__.py +0 -0
  12. {xapiweb-1.5.2 → xapiweb-1.5.4}/xapiweb/resources/_base.py +0 -0
  13. {xapiweb-1.5.2 → xapiweb-1.5.4}/xapiweb/resources/communities.py +0 -0
  14. {xapiweb-1.5.2 → xapiweb-1.5.4}/xapiweb/resources/dms.py +0 -0
  15. {xapiweb-1.5.2 → xapiweb-1.5.4}/xapiweb/resources/engagement.py +0 -0
  16. {xapiweb-1.5.2 → xapiweb-1.5.4}/xapiweb/resources/follows.py +0 -0
  17. {xapiweb-1.5.2 → xapiweb-1.5.4}/xapiweb/resources/lists.py +0 -0
  18. {xapiweb-1.5.2 → xapiweb-1.5.4}/xapiweb/resources/media.py +0 -0
  19. {xapiweb-1.5.2 → xapiweb-1.5.4}/xapiweb/resources/misc.py +0 -0
  20. {xapiweb-1.5.2 → xapiweb-1.5.4}/xapiweb/resources/moderation.py +0 -0
  21. {xapiweb-1.5.2 → xapiweb-1.5.4}/xapiweb/resources/notifications.py +0 -0
  22. {xapiweb-1.5.2 → xapiweb-1.5.4}/xapiweb/resources/settings.py +0 -0
  23. {xapiweb-1.5.2 → xapiweb-1.5.4}/xapiweb/resources/timelines.py +0 -0
  24. {xapiweb-1.5.2 → xapiweb-1.5.4}/xapiweb/resources/trends.py +0 -0
  25. {xapiweb-1.5.2 → xapiweb-1.5.4}/xapiweb/resources/tweets.py +0 -0
  26. {xapiweb-1.5.2 → xapiweb-1.5.4}/xapiweb/resources/users.py +0 -0
  27. {xapiweb-1.5.2 → xapiweb-1.5.4}/xapiweb/response.py +0 -0
  28. {xapiweb-1.5.2 → xapiweb-1.5.4}/xapiweb/session.py +0 -0
  29. {xapiweb-1.5.2 → xapiweb-1.5.4}/xapiweb/tests/test_offline.py +0 -0
  30. {xapiweb-1.5.2 → xapiweb-1.5.4}/xapiweb.egg-info/SOURCES.txt +0 -0
  31. {xapiweb-1.5.2 → xapiweb-1.5.4}/xapiweb.egg-info/dependency_links.txt +0 -0
  32. {xapiweb-1.5.2 → xapiweb-1.5.4}/xapiweb.egg-info/top_level.txt +0 -0
@@ -1,7 +1,10 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: xapiweb
3
- Version: 1.5.2
3
+ Version: 1.5.4
4
4
  Summary: Unified Python library for the X web API (stdlib only, 157 proven endpoints)
5
+ Project-URL: Homepage, https://github.com/newidu/xapiweb
6
+ Project-URL: Documentation, https://newidu.github.io/xapiweb/
7
+ Project-URL: Repository, https://github.com/newidu/xapiweb
5
8
  Requires-Python: >=3.8
6
9
  Description-Content-Type: text/markdown
7
10
 
@@ -1,10 +1,15 @@
1
1
  [project]
2
2
  name = "xapiweb"
3
- version = "1.5.2"
3
+ version = "1.5.4"
4
4
  description = "Unified Python library for the X web API (stdlib only, 157 proven endpoints)"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.8"
7
7
  dependencies = []
8
8
 
9
+ [project.urls]
10
+ Homepage = "https://github.com/newidu/xapiweb"
11
+ Documentation = "https://newidu.github.io/xapiweb/"
12
+ Repository = "https://github.com/newidu/xapiweb"
13
+
9
14
  [build-system]
10
15
  requires = ["setuptools"]
@@ -9,5 +9,5 @@ from .response import Response
9
9
  from . import errors
10
10
  from .qids import QIDS
11
11
 
12
- __version__ = "1.5.2"
12
+ __version__ = "1.5.4"
13
13
  __all__ = ["XClient", "Session", "Response", "errors", "QIDS"]
@@ -1,7 +1,10 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: xapiweb
3
- Version: 1.5.2
3
+ Version: 1.5.4
4
4
  Summary: Unified Python library for the X web API (stdlib only, 157 proven endpoints)
5
+ Project-URL: Homepage, https://github.com/newidu/xapiweb
6
+ Project-URL: Documentation, https://newidu.github.io/xapiweb/
7
+ Project-URL: Repository, https://github.com/newidu/xapiweb
5
8
  Requires-Python: >=3.8
6
9
  Description-Content-Type: text/markdown
7
10
 
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes