instaloader/instaloader/__init__.py
2018-08-31 17:42:59 +02:00

20 lines
574 B
Python

"""Download pictures (or videos) along with their captions and other metadata from Instagram."""
__version__ = '4.1rc1'
try:
# pylint:disable=wrong-import-position
import win_unicode_console
except ImportError:
pass
else:
win_unicode_console.enable()
from .exceptions import *
from .instaloader import Instaloader
from .instaloadercontext import InstaloaderContext
from .structures import (Highlight, Post, PostSidecarNode, PostComment, PostLocation, Profile, Story, StoryItem,
load_structure_from_file, save_structure_to_file)