autokakao

A Simple Kakaotalk Automation Wrapper.


License
MIT
Install
pip install autokakao==0.0.3

Documentation

Automation Kakao for Mac

Kakaotalk open chatting room and send message automatically with applescript.

result

Installation

pip install autokakao

API

First import package.

from autokakao.wrapper import KakaoAutomation

Open kakao application manually

kakao = KakaoAutomation()
kakao.open_kakao()

Open chat room with chat room name

kakao = KakaoAutomation()
kakao.open_chatroom("CHATROOM NAME")

Write a message to send

kakao = KakaoAutomation()
kakao.write_message("YOUR MESSAGE")

Example

from autokakao.wrapper import KakaoAutomation

kakao = KakaoAutomation()

kakao.open_kakao()
kakao.open_chatroom("윤서준")

for i in range(1000):
    kakao.write_message("윤서준 바보")

License

MIT