upload-post 2.3.0__tar.gz → 2.4.0__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: upload-post
3
- Version: 2.3.0
3
+ Version: 2.4.0
4
4
  Summary: Cross-platform social media upload for TikTok, Instagram, YouTube, LinkedIn, Facebook, Pinterest, Threads, Reddit, Bluesky, Discord, Telegram, and X (Twitter)
5
5
  Home-page: https://www.upload-post.com/
6
6
  Author: Upload-Post
@@ -40,7 +40,7 @@ Dynamic: summary
40
40
 
41
41
  Official Python client for the [Upload-Post API](https://www.upload-post.com) - Cross-platform social media upload.
42
42
 
43
- Upload videos, photos, text posts, and documents to **TikTok, Instagram, YouTube, LinkedIn, Facebook, Pinterest, Threads, Reddit, Bluesky, Discord, Telegram, and X (Twitter)** with a single API.
43
+ Upload videos, photos, text posts, and documents to **TikTok, Instagram, YouTube, LinkedIn, Facebook, Pinterest, Threads, Reddit, Bluesky, Discord, Telegram, X (Twitter), Slack, Mastodon, Nostr, Lemmy, Dev.to, Hashnode, WordPress, Whop, and Listmonk** with a single API.
44
44
 
45
45
  ## Installation
46
46
 
@@ -68,9 +68,9 @@ print(response)
68
68
 
69
69
  ## Features
70
70
 
71
- - ✅ **Video Upload** - TikTok, Instagram, YouTube, LinkedIn, Facebook, Pinterest, Threads, Bluesky, Discord, Telegram, X
72
- - ✅ **Photo Upload** - TikTok, Instagram, LinkedIn, Facebook, Pinterest, Threads, Reddit, Bluesky, Discord, Telegram, X
73
- - ✅ **Text Posts** - X, LinkedIn, Facebook, Threads, Reddit, Bluesky, Discord, Telegram
71
+ - ✅ **Video Upload** - TikTok, Instagram, YouTube, LinkedIn, Facebook, Pinterest, Threads, Bluesky, Discord, Telegram, X, Mastodon, WordPress
72
+ - ✅ **Photo Upload** - TikTok, Instagram, LinkedIn, Facebook, Pinterest, Threads, Reddit, Bluesky, Discord, Telegram, X, Mastodon, Lemmy, WordPress
73
+ - ✅ **Text Posts** - X, LinkedIn, Facebook, Threads, Reddit, Bluesky, Discord, Telegram, Slack, Mastodon, Nostr, Lemmy, Dev.to, Hashnode, WordPress, Whop, Listmonk
74
74
  - ✅ **Document Upload** - LinkedIn (PDF, PPT, PPTX, DOC, DOCX)
75
75
  - ✅ **Scheduling** - Schedule posts for later
76
76
  - ✅ **Posting Queue** - Add posts to your configured queue
@@ -2,7 +2,7 @@
2
2
 
3
3
  Official Python client for the [Upload-Post API](https://www.upload-post.com) - Cross-platform social media upload.
4
4
 
5
- Upload videos, photos, text posts, and documents to **TikTok, Instagram, YouTube, LinkedIn, Facebook, Pinterest, Threads, Reddit, Bluesky, Discord, Telegram, and X (Twitter)** with a single API.
5
+ Upload videos, photos, text posts, and documents to **TikTok, Instagram, YouTube, LinkedIn, Facebook, Pinterest, Threads, Reddit, Bluesky, Discord, Telegram, X (Twitter), Slack, Mastodon, Nostr, Lemmy, Dev.to, Hashnode, WordPress, Whop, and Listmonk** with a single API.
6
6
 
7
7
  ## Installation
8
8
 
@@ -30,9 +30,9 @@ print(response)
30
30
 
31
31
  ## Features
32
32
 
33
- - ✅ **Video Upload** - TikTok, Instagram, YouTube, LinkedIn, Facebook, Pinterest, Threads, Bluesky, Discord, Telegram, X
34
- - ✅ **Photo Upload** - TikTok, Instagram, LinkedIn, Facebook, Pinterest, Threads, Reddit, Bluesky, Discord, Telegram, X
35
- - ✅ **Text Posts** - X, LinkedIn, Facebook, Threads, Reddit, Bluesky, Discord, Telegram
33
+ - ✅ **Video Upload** - TikTok, Instagram, YouTube, LinkedIn, Facebook, Pinterest, Threads, Bluesky, Discord, Telegram, X, Mastodon, WordPress
34
+ - ✅ **Photo Upload** - TikTok, Instagram, LinkedIn, Facebook, Pinterest, Threads, Reddit, Bluesky, Discord, Telegram, X, Mastodon, Lemmy, WordPress
35
+ - ✅ **Text Posts** - X, LinkedIn, Facebook, Threads, Reddit, Bluesky, Discord, Telegram, Slack, Mastodon, Nostr, Lemmy, Dev.to, Hashnode, WordPress, Whop, Listmonk
36
36
  - ✅ **Document Upload** - LinkedIn (PDF, PPT, PPTX, DOC, DOCX)
37
37
  - ✅ **Scheduling** - Schedule posts for later
38
38
  - ✅ **Posting Queue** - Add posts to your configured queue
@@ -5,7 +5,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
5
5
 
6
6
  setup(
7
7
  name="upload-post",
8
- version="2.3.0",
8
+ version="2.4.0",
9
9
  author="Upload-Post",
10
10
  author_email="hi@img2html.com",
11
11
  description="Cross-platform social media upload for TikTok, Instagram, YouTube, LinkedIn, Facebook, Pinterest, Threads, Reddit, Bluesky, Discord, Telegram, and X (Twitter)",
@@ -15,7 +15,7 @@ Example:
15
15
  ... )
16
16
  """
17
17
 
18
- __version__ = "2.3.0"
18
+ __version__ = "2.4.0"
19
19
 
20
20
  from .api_client import UploadPostClient, UploadPostError
21
21
 
@@ -141,7 +141,10 @@ class UploadPostClient:
141
141
  # Platform-specific title overrides
142
142
  title_overrides = [
143
143
  "bluesky_title", "instagram_title", "facebook_title", "tiktok_title",
144
- "linkedin_title", "x_title", "youtube_title", "pinterest_title", "threads_title"
144
+ "linkedin_title", "x_title", "youtube_title", "pinterest_title", "threads_title",
145
+ # New credential-based platforms
146
+ "slack_title", "mastodon_title", "nostr_title", "lemmy_title", "devto_title",
147
+ "hashnode_title", "wordpress_title", "whop_title", "listmonk_title"
145
148
  ]
146
149
  for key in title_overrides:
147
150
  if kwargs.get(key):
@@ -407,7 +410,8 @@ class UploadPostClient:
407
410
  Optional for TikTok, Instagram, Facebook, LinkedIn, X, Threads, Bluesky, Discord, Telegram, Pinterest.
408
411
  user: User identifier (profile name).
409
412
  platforms: Target platforms. Supported: tiktok, instagram, youtube,
410
- linkedin, facebook, pinterest, threads, bluesky, discord, telegram, x
413
+ linkedin, facebook, pinterest, threads, bluesky, discord, telegram, x,
414
+ mastodon, wordpress
411
415
 
412
416
  Keyword Args:
413
417
  description: Video description
@@ -557,7 +561,8 @@ class UploadPostClient:
557
561
  Optional for TikTok, Instagram, Facebook, LinkedIn, X, Threads, Bluesky, Discord, Telegram, Pinterest.
558
562
  user: User identifier (profile name).
559
563
  platforms: Target platforms. Supported: tiktok, instagram, linkedin,
560
- facebook, pinterest, threads, reddit, bluesky, discord, telegram, x
564
+ facebook, pinterest, threads, reddit, bluesky, discord, telegram, x,
565
+ mastodon, lemmy, wordpress
561
566
 
562
567
  Keyword Args:
563
568
  description: Photo description
@@ -691,7 +696,8 @@ class UploadPostClient:
691
696
  title: Text content for the post.
692
697
  user: User identifier (profile name).
693
698
  platforms: Target platforms. Supported: x, linkedin, facebook,
694
- threads, reddit, bluesky, discord, telegram
699
+ threads, reddit, bluesky, discord, telegram, slack, mastodon,
700
+ nostr, lemmy, devto, hashnode, wordpress, whop, listmonk
695
701
 
696
702
  Keyword Args:
697
703
  first_comment: First comment to post
@@ -18,7 +18,7 @@ def main():
18
18
  "--platforms",
19
19
  nargs="+",
20
20
  required=True,
21
- choices=["tiktok", "instagram", "linkedin", "youtube", "facebook", "x", "threads", "pinterest", "discord", "telegram"],
21
+ choices=["tiktok", "instagram", "linkedin", "youtube", "facebook", "x", "threads", "pinterest", "bluesky", "discord", "telegram", "mastodon", "wordpress"],
22
22
  help="Platforms to upload to. For platform-specific parameters, please use the Python API."
23
23
  )
24
24
  parser.add_argument(
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: upload-post
3
- Version: 2.3.0
3
+ Version: 2.4.0
4
4
  Summary: Cross-platform social media upload for TikTok, Instagram, YouTube, LinkedIn, Facebook, Pinterest, Threads, Reddit, Bluesky, Discord, Telegram, and X (Twitter)
5
5
  Home-page: https://www.upload-post.com/
6
6
  Author: Upload-Post
@@ -40,7 +40,7 @@ Dynamic: summary
40
40
 
41
41
  Official Python client for the [Upload-Post API](https://www.upload-post.com) - Cross-platform social media upload.
42
42
 
43
- Upload videos, photos, text posts, and documents to **TikTok, Instagram, YouTube, LinkedIn, Facebook, Pinterest, Threads, Reddit, Bluesky, Discord, Telegram, and X (Twitter)** with a single API.
43
+ Upload videos, photos, text posts, and documents to **TikTok, Instagram, YouTube, LinkedIn, Facebook, Pinterest, Threads, Reddit, Bluesky, Discord, Telegram, X (Twitter), Slack, Mastodon, Nostr, Lemmy, Dev.to, Hashnode, WordPress, Whop, and Listmonk** with a single API.
44
44
 
45
45
  ## Installation
46
46
 
@@ -68,9 +68,9 @@ print(response)
68
68
 
69
69
  ## Features
70
70
 
71
- - ✅ **Video Upload** - TikTok, Instagram, YouTube, LinkedIn, Facebook, Pinterest, Threads, Bluesky, Discord, Telegram, X
72
- - ✅ **Photo Upload** - TikTok, Instagram, LinkedIn, Facebook, Pinterest, Threads, Reddit, Bluesky, Discord, Telegram, X
73
- - ✅ **Text Posts** - X, LinkedIn, Facebook, Threads, Reddit, Bluesky, Discord, Telegram
71
+ - ✅ **Video Upload** - TikTok, Instagram, YouTube, LinkedIn, Facebook, Pinterest, Threads, Bluesky, Discord, Telegram, X, Mastodon, WordPress
72
+ - ✅ **Photo Upload** - TikTok, Instagram, LinkedIn, Facebook, Pinterest, Threads, Reddit, Bluesky, Discord, Telegram, X, Mastodon, Lemmy, WordPress
73
+ - ✅ **Text Posts** - X, LinkedIn, Facebook, Threads, Reddit, Bluesky, Discord, Telegram, Slack, Mastodon, Nostr, Lemmy, Dev.to, Hashnode, WordPress, Whop, Listmonk
74
74
  - ✅ **Document Upload** - LinkedIn (PDF, PPT, PPTX, DOC, DOCX)
75
75
  - ✅ **Scheduling** - Schedule posts for later
76
76
  - ✅ **Posting Queue** - Add posts to your configured queue
File without changes