|
1 | 1 | import base64 |
2 | 2 | import requests |
3 | | -from imgur.models.tag import Tag |
4 | | -from imgur.models.album import Album |
5 | | -from imgur.models.image import Image |
6 | | -from imgur.models.account import Account |
7 | | -from imgur.models.comment import Comment |
8 | | -from imgur.models.tag_vote import TagVote |
9 | | -from helpers.error import ImgurClientError |
10 | | -from helpers.format import build_notification |
11 | | -from helpers.format import format_comment_tree |
12 | | -from helpers.format import build_notifications |
13 | | -from imgur.models.conversation import Conversation |
14 | | -from helpers.error import ImgurClientRateLimitError |
15 | | -from helpers.format import build_gallery_images_and_albums |
16 | | -from imgur.models.custom_gallery import CustomGallery |
17 | | -from imgur.models.account_settings import AccountSettings |
| 3 | +from .imgur.models.tag import Tag |
| 4 | +from .imgur.models.album import Album |
| 5 | +from .imgur.models.image import Image |
| 6 | +from .imgur.models.account import Account |
| 7 | +from .imgur.models.comment import Comment |
| 8 | +from .imgur.models.tag_vote import TagVote |
| 9 | +from .helpers.error import ImgurClientError |
| 10 | +from .helpers.format import build_notification |
| 11 | +from .helpers.format import format_comment_tree |
| 12 | +from .helpers.format import build_notifications |
| 13 | +from .imgur.models.conversation import Conversation |
| 14 | +from .helpers.error import ImgurClientRateLimitError |
| 15 | +from .helpers.format import build_gallery_images_and_albums |
| 16 | +from .imgur.models.custom_gallery import CustomGallery |
| 17 | +from .imgur.models.account_settings import AccountSettings |
18 | 18 |
|
19 | 19 | API_URL = 'https://api.imgur.com/' |
20 | 20 |
|
|
0 commit comments