tiktokautouploader 4.0__py2.py3-none-any.whl → 4.1__py2.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.
@@ -144,8 +144,8 @@ def download_image(image_url):
144
144
 
145
145
  def run_inference_on_image_tougher(image_path, object):
146
146
 
147
- k = 'n|KIeDZnRZiJ};iVHz;R'
148
- rk = ''.join(chr((ord(c) - 3) % 256) for c in k)
147
+ #rk <- Roboflow key
148
+ rk = 'kyHFbAWkOWfGz8fSEw8O'
149
149
 
150
150
  CLIENT = InferenceHTTPClient(
151
151
  api_url="https://detect.roboflow.com",
@@ -177,8 +177,8 @@ def run_inference_on_image_tougher(image_path, object):
177
177
 
178
178
  def run_inference_on_image(image_path):
179
179
 
180
- k = 'n|KIeDZnRZiJ};iVHz;R'
181
- rk = ''.join(chr((ord(c) - 3) % 256) for c in k)
180
+ #rk <- Roboflow key
181
+ rk = 'kyHFbAWkOWfGz8fSEw8O'
182
182
 
183
183
  CLIENT = InferenceHTTPClient(
184
184
  api_url="https://detect.roboflow.com",
@@ -485,7 +485,7 @@ def upload_tiktok(video, description, accountname, hashtags=None, sound_name=Non
485
485
  time.sleep(0.2)
486
486
  if suppressprint == False:
487
487
  print("Tik tok done loading file onto servers")
488
-
488
+
489
489
  if (schedule == None) and (day != None):
490
490
  sys.exit("ERROR: CANT SCHEDULE FOR ANOTHER DAY USING 'day' WITHOUT ALSO INCLUDING TIME OF UPLOAD WITH 'schedule'; PLEASE ALSO INCLUDE TIME WITH 'schedule' PARAMETER")
491
491
 
@@ -646,13 +646,12 @@ def upload_tiktok(video, description, accountname, hashtags=None, sound_name=Non
646
646
  break
647
647
  if page.locator("span", has_text="Copyright issues detected.").is_visible():
648
648
  sys.exit("COPYRIGHT CHECK FAILED: VIDEO SAVED AS DRAFT, COPYRIGHT AUDIO DETECTED FROM TIKTOK")
649
-
650
649
 
651
650
  try:
652
651
  if schedule == None:
653
652
  if stealth == True:
654
653
  time.sleep(1)
655
- page.click('button:has-text("Post")', timeout=10000)
654
+ page.click('button:has-text("Post")[aria-disabled="false"]', timeout=10000)
656
655
  uploaded = False
657
656
  checks = 0
658
657
  while uploaded == False:
@@ -820,7 +819,7 @@ def upload_tiktok(video, description, accountname, hashtags=None, sound_name=Non
820
819
  if schedule == None:
821
820
  if stealth == True:
822
821
  time.sleep(1)
823
- page.click('button:has-text("Post")', timeout=10000)
822
+ page.click('button:has-text("Post")[aria-disabled="false"]', timeout=10000)
824
823
  uploaded = False
825
824
  checks = 0
826
825
  while uploaded == False:
@@ -1,10 +1,9 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: tiktokautouploader
3
- Version: 4.0
3
+ Version: 4.1
4
4
  Summary: Upload or schedule videos to TikTok with viral TikTok sounds and hashtags.
5
5
  Project-URL: Homepage, https://github.com/haziq-exe/TikTokAutoUploader
6
6
  Author-email: HAZIQ <haziqmk123@gmail.com>
7
- License-File: LICENSE.md
8
7
  Keywords: autoupload,tiktok,tiktokautoupload
9
8
  Classifier: License :: OSI Approved :: MIT License
10
9
  Classifier: Operating System :: OS Independent
@@ -17,6 +16,7 @@ Requires-Dist: inference>=0.18.1
17
16
  Requires-Dist: pillow>=8.0.0
18
17
  Requires-Dist: playwright>=1.0.0
19
18
  Requires-Dist: requests>=2.0.0
19
+ Requires-Dist: scikit-learn>=0.24.0
20
20
  Description-Content-Type: text/markdown
21
21
 
22
22
  <div align="center">
@@ -41,6 +41,7 @@ Description-Content-Type: text/markdown
41
41
  - **🏷 Add Working Hashtags:** Increase your reach by adding effective hashtags that actually work.
42
42
  - **⏰ Cutdown on upload time:** Upload to TikTok with way less hassle and much more speed using our library.
43
43
  - **📝 Upload to different accounts:** Stay organized and on top of multiple different accounts with our multi-account functionality.
44
+ - **🤖 Upload with Telegram**: Code can be integrated with Telegram Bot (More info in /TelegramAutomation)
44
45
 
45
46
  ⭐️ If you like this project please feel free to star it, Thank you.
46
47
 
@@ -71,8 +72,6 @@ pip install tiktokautouploader
71
72
  python -m playwright install
72
73
  ```
73
74
 
74
- **NOTE:** If you want to add sounds to your TikTok, you MUST have the ability to save drafts. If you don't want to add sounds then you don't need this feature.
75
-
76
75
 
77
76
  ## 📝 Quick-Start
78
77
 
@@ -115,7 +114,7 @@ PLEASE READ DOCUMENTATION FOR MORE INFO
115
114
  upload_tiktok(video=video_path, description=description, accountname=accountname, hashtags=hashtags, copyrightcheck=True)
116
115
  ```
117
116
 
118
- ## 🎯 Why Choose `autotiktokuploader`?
117
+ ## 🎯 Why Choose `tiktokautouploader`?
119
118
 
120
119
  - **No more captchas:** Fully automated uploads without interruptions, If captchas do show up, no worries, they will be solved. (read documentation for more info)
121
120
  - **Maximize your reach:** Add popular sounds and effective hashtags that work to boost visibility and go viral!
@@ -131,7 +130,6 @@ This library requires the following dependencies:
131
130
  - `playwright`
132
131
  - `requests`
133
132
  - `Pillow`
134
- - `scikit-learn`
135
133
  - `inference`
136
134
 
137
135
  These will be automatically installed when you install the package.
@@ -143,10 +141,3 @@ Created by **Haziq**. Feel free to reach out at [haziqmk123@gmail.com](mailto:ha
143
141
  ## 📄 License
144
142
 
145
143
  This project is licensed under the MIT License. See the [LICENSE](LICENSE.md) file for details.
146
-
147
- ## 📮 Related Projects
148
-
149
- If you liked this project please check out my use case showcase project that generates TikToks and uploads them using 'tiktokautouploader'
150
-
151
- [TikTokGenerator](https://github.com/haziq-exe/TikTokGenerator)
152
-
@@ -0,0 +1,7 @@
1
+ tiktokautouploader/__init__.py,sha256=u7OWCK_u68ST8dfrkSF4Yw44CJOzV9NXI6ASRuoDfmE,64
2
+ tiktokautouploader/function.py,sha256=V0RU7usdPkZtsj_hR84LogRVjSWB1CeVjBAbVUYbF90,46887
3
+ tiktokautouploader/Js_assets/login.js,sha256=SLhtPYo8ZfTRUnbR7Xqp084lSuAOqIWUxi75FlFH3vs,966
4
+ tiktokautouploader/Js_assets/package.json,sha256=aNbwSOpEpDUlplSuXugHVeN11riVwV4ofVkRPwHzbLs,273
5
+ tiktokautouploader-4.1.dist-info/METADATA,sha256=LGnXE25BKdSh4EBrHn1RCjs7bPpCBIyhu-LNF8oWEgc,5835
6
+ tiktokautouploader-4.1.dist-info/WHEEL,sha256=tkmg4JIqwd9H8mL30xA7crRmoStyCtGp0VWshokd1Jc,105
7
+ tiktokautouploader-4.1.dist-info/RECORD,,
@@ -1,8 +0,0 @@
1
- tiktokautouploader/__init__.py,sha256=u7OWCK_u68ST8dfrkSF4Yw44CJOzV9NXI6ASRuoDfmE,64
2
- tiktokautouploader/function.py,sha256=fKS8bm6yzvP9QXO_Y8gAcZufOIhA_G2WsSwM_xH0KmM,46918
3
- tiktokautouploader/Js_assets/login.js,sha256=SLhtPYo8ZfTRUnbR7Xqp084lSuAOqIWUxi75FlFH3vs,966
4
- tiktokautouploader/Js_assets/package.json,sha256=aNbwSOpEpDUlplSuXugHVeN11riVwV4ofVkRPwHzbLs,273
5
- tiktokautouploader-4.0.dist-info/METADATA,sha256=7C6hDX0w_QKgybBMx756B3BqzuVQL1rCeSUP7dsWe9I,6125
6
- tiktokautouploader-4.0.dist-info/WHEEL,sha256=tkmg4JIqwd9H8mL30xA7crRmoStyCtGp0VWshokd1Jc,105
7
- tiktokautouploader-4.0.dist-info/licenses/LICENSE.md,sha256=hYds_VJIpnS5gC73WhuWk2IY_e9BWjuEJthQCb9ThyU,1073
8
- tiktokautouploader-4.0.dist-info/RECORD,,
@@ -1,21 +0,0 @@
1
- MIT License
2
-
3
- Copyright (c) [2024] [HAZIQ KHALID]
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.