warp-beacon 2.2.30__py3-none-any.whl → 2.2.32__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.
- warp_beacon/__version__.py +1 -1
- warp_beacon/scraper/account_selector.py +1 -1
- warp_beacon/scraper/instagram/instagram.py +2 -2
- {warp_beacon-2.2.30.dist-info → warp_beacon-2.2.32.dist-info}/METADATA +1 -1
- {warp_beacon-2.2.30.dist-info → warp_beacon-2.2.32.dist-info}/RECORD +9 -9
- {warp_beacon-2.2.30.dist-info → warp_beacon-2.2.32.dist-info}/LICENSE +0 -0
- {warp_beacon-2.2.30.dist-info → warp_beacon-2.2.32.dist-info}/WHEEL +0 -0
- {warp_beacon-2.2.30.dist-info → warp_beacon-2.2.32.dist-info}/entry_points.txt +0 -0
- {warp_beacon-2.2.30.dist-info → warp_beacon-2.2.32.dist-info}/top_level.txt +0 -0
warp_beacon/__version__.py
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
__version__ = "2.2.
|
1
|
+
__version__ = "2.2.32"
|
2
2
|
|
@@ -65,7 +65,7 @@ class AccountSelector(object):
|
|
65
65
|
self.current_module_name = module_name
|
66
66
|
if self.current is None:
|
67
67
|
self.current = self.accounts[self.current_module_name][self.index.value]
|
68
|
-
self.acc_pools[self.current_module_name] = islice(self.acc_pools[self.current_module_name], self.index.value, None)
|
68
|
+
self.acc_pools[self.current_module_name] = next(islice(self.acc_pools[self.current_module_name], self.index.value, None))
|
69
69
|
|
70
70
|
def next(self) -> dict:
|
71
71
|
self.current = next(self.acc_pools[self.current_module_name])
|
@@ -88,10 +88,10 @@ class InstagramScraper(ScraperAbstract):
|
|
88
88
|
def validate_session(self) -> None:
|
89
89
|
self.load_session()
|
90
90
|
self._download_hndlr(self.cl.get_timeline_feed)
|
91
|
-
self._download_hndlr(self.cl.get_reels_tray_feed)
|
91
|
+
self._download_hndlr(self.cl.get_reels_tray_feed, "cold_start")
|
92
92
|
self._download_hndlr(self.cl.direct_active_presence)
|
93
93
|
self._download_hndlr(self.cl.reels)
|
94
|
-
self._download_hndlr(self.cl.notification_like_and_comment_on_photo_user_tagged, "everyone")
|
94
|
+
#self._download_hndlr(self.cl.notification_like_and_comment_on_photo_user_tagged, "everyone")
|
95
95
|
self.safe_write_session()
|
96
96
|
|
97
97
|
def scrap(self, url: str) -> tuple[str]:
|
@@ -3,7 +3,7 @@ lib/systemd/system/warp_beacon.service,sha256=lPmHqLqcI2eIV7nwHS0qcALQrznixqJuww
|
|
3
3
|
var/warp_beacon/accounts.json,sha256=rKFQM_b9eoDS4mJ1B_SZNolPLXx1SQdQMdY2F_ZcBt8,1523
|
4
4
|
var/warp_beacon/placeholder.gif,sha256=cE5CGJVaop4Sx21zx6j4AyoHU0ncmvQuS2o6hJfEH88,6064
|
5
5
|
warp_beacon/__init__.py,sha256=_rThNODmz0nDp_n4mWo_HKaNFE5jk1_7cRhHyYaencI,163
|
6
|
-
warp_beacon/__version__.py,sha256=
|
6
|
+
warp_beacon/__version__.py,sha256=5msNtMZmIAFWdBVuPHuXot2296ZSlFgxTLfd5OxB2BQ,24
|
7
7
|
warp_beacon/warp_beacon.py,sha256=7KEtZDj-pdhtl6m-zFLsSojs1ZR4o7L0xbqtdmYPvfE,342
|
8
8
|
warp_beacon/compress/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
9
9
|
warp_beacon/compress/video.py,sha256=_PDMVYCyzLYxHv1uZmmzGcG_8rjaZr7BTXsXTTy_oS4,2846
|
@@ -21,10 +21,10 @@ warp_beacon/scheduler/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3h
|
|
21
21
|
warp_beacon/scheduler/scheduler.py,sha256=d_TxhIpL_4s0a8tgUO3xokkLYPx1CaHZdldbuIl90yI,2585
|
22
22
|
warp_beacon/scraper/__init__.py,sha256=tkl7UyfqFcvPlxomVPB9GpWQvAoADaM6jGb_bmx1zRY,15229
|
23
23
|
warp_beacon/scraper/abstract.py,sha256=aNZ9ypF9B8BjflcIwi-7wEzIqF-XPeF0xvfX9CP_iIw,2708
|
24
|
-
warp_beacon/scraper/account_selector.py,sha256=
|
24
|
+
warp_beacon/scraper/account_selector.py,sha256=16RJUtMhs4MguNs8zi5jyD1h3osPk-sV95sDzjJ5fWw,3385
|
25
25
|
warp_beacon/scraper/exceptions.py,sha256=lHsPrYy5iYnHsIdUHqRxZmzlqrkNj_TS4TkiTJfWhTs,1326
|
26
26
|
warp_beacon/scraper/instagram/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
27
|
-
warp_beacon/scraper/instagram/instagram.py,sha256=
|
27
|
+
warp_beacon/scraper/instagram/instagram.py,sha256=D_r6Kdpe4iBjCeGv-vVIodiVnZps6ZyBbaY0JC7mGWI,13782
|
28
28
|
warp_beacon/scraper/youtube/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
29
29
|
warp_beacon/scraper/youtube/abstract.py,sha256=_FQBgARAk7I6VqodlUOh_znwhcpnpt0F_feNLJA4xVw,7634
|
30
30
|
warp_beacon/scraper/youtube/music.py,sha256=nbTDFdgXGbTNqttE828DEgvSc8-SuAsQAHeqUwU6yFM,1484
|
@@ -37,9 +37,9 @@ warp_beacon/telegram/handlers.py,sha256=xSNG_v4D4FaA5q1_5wXvJkjcDUhy5GaQnfpijJZp
|
|
37
37
|
warp_beacon/telegram/placeholder_message.py,sha256=32U-R_IMPRJd-S5UwlpemLkArJOxCmO7whcynduSbMA,6418
|
38
38
|
warp_beacon/telegram/utils.py,sha256=CeWXMwyzv2l4Af6I-wW2ySU490c-5k82sBhkjabv0n4,2452
|
39
39
|
warp_beacon/uploader/__init__.py,sha256=rsUkzzmtaeQY-kNkcIiPsrayS9idFKY3hBC71mR19XE,4743
|
40
|
-
warp_beacon-2.2.
|
41
|
-
warp_beacon-2.2.
|
42
|
-
warp_beacon-2.2.
|
43
|
-
warp_beacon-2.2.
|
44
|
-
warp_beacon-2.2.
|
45
|
-
warp_beacon-2.2.
|
40
|
+
warp_beacon-2.2.32.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
41
|
+
warp_beacon-2.2.32.dist-info/METADATA,sha256=MaEaLcvQwKf96F6HiFR9Bsbo7A-gXY7dc5xOn4D18NA,21251
|
42
|
+
warp_beacon-2.2.32.dist-info/WHEEL,sha256=OVMc5UfuAQiSplgO0_WdW7vXVGAt9Hdd6qtN4HotdyA,91
|
43
|
+
warp_beacon-2.2.32.dist-info/entry_points.txt,sha256=eSB61Rb89d56WY0O-vEIQwkn18J-4CMrJcLA_R_8h3g,119
|
44
|
+
warp_beacon-2.2.32.dist-info/top_level.txt,sha256=ALb_Ft_eG-OY4_m0TWUifNUOZsrx483L-zw7G7vqXoc,971
|
45
|
+
warp_beacon-2.2.32.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|