Skip to content

Commit

Permalink
Issue #6: How to upload files? (update to Telethon > 1.0).
Browse files Browse the repository at this point in the history
  • Loading branch information
Nekmo committed Jul 22, 2018
1 parent 051280d commit 81e54cb
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion telegram_upload/client.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
import json
from distutils.version import StrictVersion

import click
import os
from telegram_upload.files import get_file_attributes, get_file_thumb
from telethon.version import __version__ as telethon_version
from telethon import TelegramClient

from telegram_upload.files import get_file_attributes, get_file_thumb
if StrictVersion(telethon_version) >= StrictVersion('1.0'):
import telethon.sync


CAPTION_MAX_LENGTH = 200

Expand Down

0 comments on commit 81e54cb

Please sign in to comment.