upload-post 0.1.2__py3-none-any.whl → 2.0.0__py3-none-any.whl

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.
upload_post/__init__.py CHANGED
@@ -1,4 +1,22 @@
1
- __version__ = "0.1.2"
1
+ """
2
+ Upload-Post - Cross-platform social media upload
3
+
4
+ Upload videos, photos, text posts, and documents to TikTok, Instagram, YouTube,
5
+ LinkedIn, Facebook, Pinterest, Threads, Reddit, Bluesky, and X (Twitter).
6
+
7
+ Example:
8
+ >>> from upload_post import UploadPostClient
9
+ >>> client = UploadPostClient("YOUR_API_KEY")
10
+ >>> response = client.upload_video(
11
+ ... "video.mp4",
12
+ ... title="My awesome video",
13
+ ... user="my-profile",
14
+ ... platforms=["tiktok", "instagram"]
15
+ ... )
16
+ """
17
+
18
+ __version__ = "2.0.0"
19
+
2
20
  from .api_client import UploadPostClient, UploadPostError
3
21
 
4
- __all__ = ['UploadPostClient', 'UploadPostError']
22
+ __all__ = ['UploadPostClient', 'UploadPostError', '__version__']