instagram-archiver 0.2.0__py3-none-any.whl → 0.3.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.
Potentially problematic release.
This version of instagram-archiver might be problematic. Click here for more details.
- instagram_archiver/__init__.py +8 -2
- instagram_archiver/__main__.py +6 -0
- instagram_archiver/client.py +219 -260
- instagram_archiver/constants.py +52 -92
- instagram_archiver/main.py +78 -46
- instagram_archiver/profile_scraper.py +194 -0
- instagram_archiver/py.typed +0 -0
- instagram_archiver/saved_scraper.py +78 -0
- instagram_archiver/typing.py +170 -0
- instagram_archiver/utils.py +98 -74
- instagram_archiver-0.3.0.dist-info/LICENSE.txt +18 -0
- instagram_archiver-0.3.0.dist-info/METADATA +119 -0
- instagram_archiver-0.3.0.dist-info/RECORD +15 -0
- {instagram_archiver-0.2.0.dist-info → instagram_archiver-0.3.0.dist-info}/WHEEL +1 -1
- instagram_archiver-0.3.0.dist-info/entry_points.txt +4 -0
- instagram_archiver/ig_typing.py +0 -117
- instagram_archiver-0.2.0.dist-info/LICENSE.txt +0 -21
- instagram_archiver-0.2.0.dist-info/METADATA +0 -37
- instagram_archiver-0.2.0.dist-info/RECORD +0 -11
- instagram_archiver-0.2.0.dist-info/entry_points.txt +0 -3
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: instagram-archiver
|
|
3
|
-
Version: 0.2.0
|
|
4
|
-
Summary: Archive Instagram content.
|
|
5
|
-
License: MIT
|
|
6
|
-
Author: Andrew Udvare
|
|
7
|
-
Author-email: audvare@gmail.com
|
|
8
|
-
Requires-Python: >=3.10,<4
|
|
9
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
-
Classifier: Programming Language :: Python :: 3
|
|
11
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
12
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
13
|
-
Requires-Dist: click (>=8.1.3,<9.0.0)
|
|
14
|
-
Requires-Dist: loguru (>=0.6.0,<0.7.0)
|
|
15
|
-
Requires-Dist: ratelimit (>=2.2.1,<3.0.0)
|
|
16
|
-
Requires-Dist: requests (>=2.28.2,<3.0.0)
|
|
17
|
-
Requires-Dist: yt-dlp (>=2023.6.22,<2024.0.0)
|
|
18
|
-
Description-Content-Type: text/markdown
|
|
19
|
-
|
|
20
|
-
# Instagram Archiver
|
|
21
|
-
|
|
22
|
-
Tool to download data from an Instagram profile you have access to. It downloads the images, videos, and related metadata (stored as JSON files).
|
|
23
|
-
|
|
24
|
-
## Installation
|
|
25
|
-
|
|
26
|
-
```shell
|
|
27
|
-
pip install instagram-archiver
|
|
28
|
-
```
|
|
29
|
-
|
|
30
|
-
## Usage
|
|
31
|
-
|
|
32
|
-
```shell
|
|
33
|
-
ia USERNAME
|
|
34
|
-
```
|
|
35
|
-
|
|
36
|
-
If you like to see output, pass `--debug`.
|
|
37
|
-
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
instagram_archiver/__init__.py,sha256=AjI6U0whv8ct7-WSaoy8ww95saz_S5L4dqVJ1qqpAME,44
|
|
2
|
-
instagram_archiver/client.py,sha256=OsWsoZ_6ct9C2FG0D1xSNs01vnHjZnXOs2Yk0eZbzD4,14066
|
|
3
|
-
instagram_archiver/constants.py,sha256=ACKYWU0d1ltIMua8UEjrrsZjwvc9jlgny5kOHniana8,3490
|
|
4
|
-
instagram_archiver/ig_typing.py,sha256=Rd3naGBL7VvDcMSVE5ybwwsADtzMyj5Zh8aVr6Qj4F0,2361
|
|
5
|
-
instagram_archiver/main.py,sha256=6CzEF--rwWm6sTBaDZoWJov_OSKTRvaQIcN46U9PZ3Q,2463
|
|
6
|
-
instagram_archiver/utils.py,sha256=s9sbgDcOj1ImyMD7FhYgdTLQ3UfkgfNDSL3ldxBxb7s,3169
|
|
7
|
-
instagram_archiver-0.2.0.dist-info/LICENSE.txt,sha256=qAUCPLGklRH097Pa_MaOO8ayD9q2OKRFqqVs2LrBsWg,1080
|
|
8
|
-
instagram_archiver-0.2.0.dist-info/METADATA,sha256=gbs84rrwbKRsvyCoP5ByLcLZoiRLKIPkgWWgtoU5Nmc,952
|
|
9
|
-
instagram_archiver-0.2.0.dist-info/WHEEL,sha256=7Z8_27uaHI_UZAc4Uox4PpBhQ9Y5_modZXWMxtUi4NU,88
|
|
10
|
-
instagram_archiver-0.2.0.dist-info/entry_points.txt,sha256=g-QtnibcuQsqL4dBRkvQcPm3cgwshNRzTr57OyZXKFg,51
|
|
11
|
-
instagram_archiver-0.2.0.dist-info/RECORD,,
|