instaloader/instaloader/__init__.py
Alexander Graf 39566735f7
Some checks failed
Documentation / Documentation (push) Has been cancelled
PyLint and MyPy / PyLint and MyPy (3.10) (push) Has been cancelled
PyLint and MyPy / PyLint and MyPy (3.8) (push) Has been cancelled
PyLint and MyPy / PyLint and MyPy (3.9) (push) Has been cancelled
Windows EXE build / Windows EXE build (push) Has been cancelled
Mark stale issues and pull requests / Mark stale issues and pull requests (push) Has been cancelled
Release of version 4.10.2
2023-12-09 17:59:08 +01:00

23 lines
832 B
Python

"""Download pictures (or videos) along with their captions and other metadata from Instagram."""
__version__ = '4.10.2'
try:
# pylint:disable=wrong-import-position
import win_unicode_console # type: ignore
except ImportError:
pass
else:
win_unicode_console.enable()
from .exceptions import *
from .instaloader import Instaloader
from .instaloadercontext import InstaloaderContext, RateController
from .lateststamps import LatestStamps
from .nodeiterator import NodeIterator, FrozenNodeIterator, resumable_iteration
from .structures import (Hashtag, Highlight, Post, PostSidecarNode, PostComment, PostCommentAnswer, PostLocation,
Profile, Story, StoryItem, TopSearchResults, load_structure_from_file, save_structure_to_file,
load_structure, get_json_structure)