warp-beacon 2.6.30__py3-none-any.whl → 2.6.31__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/instagram/instagram.py +9 -1
- {warp_beacon-2.6.30.dist-info → warp_beacon-2.6.31.dist-info}/METADATA +1 -1
- {warp_beacon-2.6.30.dist-info → warp_beacon-2.6.31.dist-info}/RECORD +8 -8
- {warp_beacon-2.6.30.dist-info → warp_beacon-2.6.31.dist-info}/WHEEL +0 -0
- {warp_beacon-2.6.30.dist-info → warp_beacon-2.6.31.dist-info}/entry_points.txt +0 -0
- {warp_beacon-2.6.30.dist-info → warp_beacon-2.6.31.dist-info}/licenses/LICENSE +0 -0
- {warp_beacon-2.6.30.dist-info → warp_beacon-2.6.31.dist-info}/top_level.txt +0 -0
warp_beacon/__version__.py
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
__version__ = "2.6.
|
1
|
+
__version__ = "2.6.31"
|
2
2
|
|
@@ -72,11 +72,19 @@ class InstagramScraper(ScraperAbstract):
|
|
72
72
|
"cpu": device.get("cpu", "exynos2100"),
|
73
73
|
"version_code": device.get("version_code", "493450264")
|
74
74
|
})
|
75
|
+
uuids = device.get("uuids", {})
|
76
|
+
self.cl.set_uuids({
|
77
|
+
"phone_id": uuids.get("phone_id", self.cl.generate_uuid()),
|
78
|
+
"uuid": uuids.get("uuid", self.cl.generate_uuid()),
|
79
|
+
"client_session_id": uuids.get("client_session_id", self.cl.generate_uuid()),
|
80
|
+
"advertising_id": uuids.get("advertising_id", self.cl.generate_uuid()),
|
81
|
+
"device_id": uuids.get("device_id", self.cl.generate_uuid())
|
82
|
+
})
|
75
83
|
|
76
84
|
def safe_write_session(self) -> None:
|
77
85
|
cl_settings = self.cl.get_settings()
|
78
86
|
cl_settings["warp_timeline_cursor"] = self.timeline_cursor
|
79
|
-
tmp_fname = "
|
87
|
+
tmp_fname = f"{self.inst_session_file}~"
|
80
88
|
with open(tmp_fname, 'w+', encoding="utf-8") as f:
|
81
89
|
f.write(json.dumps(cl_settings))
|
82
90
|
if os.path.exists(self.inst_session_file):
|
@@ -4,7 +4,7 @@ var/warp_beacon/accounts.json,sha256=OsXdncs6h88xrF_AP6_WDCK1waGBn9SR-uYdIeK37GM
|
|
4
4
|
var/warp_beacon/placeholder.gif,sha256=cE5CGJVaop4Sx21zx6j4AyoHU0ncmvQuS2o6hJfEH88,6064
|
5
5
|
var/warp_beacon/proxies.json,sha256=VnjlQDXumOEq72ZFjbh6IqHS1TEHqn8HPYAZqWCeSIA,95
|
6
6
|
warp_beacon/__init__.py,sha256=_rThNODmz0nDp_n4mWo_HKaNFE5jk1_7cRhHyYaencI,163
|
7
|
-
warp_beacon/__version__.py,sha256=
|
7
|
+
warp_beacon/__version__.py,sha256=i4mn5ueT4BUBjWT8wNPTPpy1rqb9IOQ-juTm6FCv-zs,24
|
8
8
|
warp_beacon/warp_beacon.py,sha256=ED43vNzdjDUJ_9qLCbri0bjWLWEJ69BENGj9i7G6AvM,342
|
9
9
|
warp_beacon/yt_auth.py,sha256=GUTKqYr_tzDC-07Lx_ahWXSag8EyLxXBUnQbDBIkEmk,6022
|
10
10
|
warp_beacon/compress/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -30,7 +30,7 @@ warp_beacon/scraper/fail_handler.py,sha256=zcPK3ZVEsu6JmHYcWP7L3naTRK3gWFVRkpP84
|
|
30
30
|
warp_beacon/scraper/link_resolver.py,sha256=Rc9ZuMyOo3iPywDHwjngy-WRQ2SXhJwxcg-5ripx7tM,2447
|
31
31
|
warp_beacon/scraper/instagram/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
32
32
|
warp_beacon/scraper/instagram/captcha.py,sha256=9UYziuqB3Tsat_ET6ex-cnZDbi6yCnsXHSpmE8MuUHk,4651
|
33
|
-
warp_beacon/scraper/instagram/instagram.py,sha256=
|
33
|
+
warp_beacon/scraper/instagram/instagram.py,sha256=eyYAveSVoAvDm0rOF187bieqy-i3tsw0KBsLbzPvYDM,15443
|
34
34
|
warp_beacon/scraper/youtube/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
35
35
|
warp_beacon/scraper/youtube/abstract.py,sha256=QUSHR3aJjIykuRlBpGnmw3tq3m82AQeeZeWQUdJRvgQ,12538
|
36
36
|
warp_beacon/scraper/youtube/music.py,sha256=5AeSBQyUgVCJT2hoBCV2WvlyuV9US09SYJhmBG_P9F8,2755
|
@@ -45,9 +45,9 @@ warp_beacon/telegram/handlers.py,sha256=uvR6TPHSqdSxigp3wR-ewiE6t3TvVcbVLVcYGwkg
|
|
45
45
|
warp_beacon/telegram/placeholder_message.py,sha256=wN9-BRiyrtHG-EvXtZkGJHt2CX71munQ57ITttjt0mw,6400
|
46
46
|
warp_beacon/telegram/utils.py,sha256=1Lq67aRylVJzbwSyvAgjPAGjJZFATkICvAj3TJGuJiM,4635
|
47
47
|
warp_beacon/uploader/__init__.py,sha256=j3qcuKhpchseZLGzSsSiogqe6WdMbkK8d3I-ConhNRs,5687
|
48
|
-
warp_beacon-2.6.
|
49
|
-
warp_beacon-2.6.
|
50
|
-
warp_beacon-2.6.
|
51
|
-
warp_beacon-2.6.
|
52
|
-
warp_beacon-2.6.
|
53
|
-
warp_beacon-2.6.
|
48
|
+
warp_beacon-2.6.31.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
49
|
+
warp_beacon-2.6.31.dist-info/METADATA,sha256=XmMkA3SZJW5WkrIGNPUNpgjI5c6-r08V622-E2zTA_o,22706
|
50
|
+
warp_beacon-2.6.31.dist-info/WHEEL,sha256=wXxTzcEDnjrTwFYjLPcsW_7_XihufBwmpiBeiXNBGEA,91
|
51
|
+
warp_beacon-2.6.31.dist-info/entry_points.txt,sha256=eSB61Rb89d56WY0O-vEIQwkn18J-4CMrJcLA_R_8h3g,119
|
52
|
+
warp_beacon-2.6.31.dist-info/top_level.txt,sha256=4ML0-mXsezLtRXyxQUntL_ktc5HX9npTeQWzvV8kFvA,1161
|
53
|
+
warp_beacon-2.6.31.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|