Skip to content

Commit

Permalink
Add sendImage and sendImageWithURL
Browse files Browse the repository at this point in the history
  • Loading branch information
merkremont authored Sep 4, 2017
1 parent 75090a3 commit 9be7db0
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions LineAlpha/LineApi/LineClient.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
# -*- coding: utf-8 -*-
from .LineApi import LineApi
from .LineServer import url
from .LineCallback import LineCallback
from ..LineThrift.ttypes import Message
import json
import requests
import json, requests, tempfile, shutil
import unicodedata
from random import randint

try:
from thrift.protocol import fastbinary
Expand All @@ -22,8 +24,9 @@ class LineClient(LineApi):

def __init__(self):
LineApi.__init__(self)
self._messageReq = {}
self._session = requests.session()
_headers = {}
self._headers = url.Headers

@loggedIn
def _loginresult(self):
Expand Down

0 comments on commit 9be7db0

Please sign in to comment.