Today's

길을 나서지 않으면 그 길에서 만날 수 있는 사람을 만날 수 없다

파이썬 스크립트

파이썬 자동화 스크립트 : 인스타그램 사진 올리기.

Billcorea 2021. 12. 17. 09:47
반응형

인스타 그램에 사진 올리기를 해 보기로 했다.  음... 365일 24시간 구동해야 하는 컴터가 있으면야 좋기는 하겠지만, 

우리에게는 rasberrypi 가 있으니 그것으로 대신해 보기로 한다. 그래야 camera 도 사용할 수 있으니 말이다.

그리고 내게는 작은 어항에 살고 있는 반려 거북이도 하나 있으니 말이다.   일단 코드는 아래오 같이 구현 했다.

from instabot import Bot
import os
import shutil
import picamera

def clean_up():
    dir = "config"
    remove_me = "file.jpg.REMOVE_ME"
    # checking whether config folder exists or not
    if os.path.exists(dir):
        try:
            # removing it so we can upload new image
            shutil.rmtree(dir)
        except OSError as e:
            print("Error: %s - %s." % (e.filename, e.strerror))
    if os.path.exists(remove_me):
        src = os.path.realpath("file.jpg")
        os.rename(remove_me, src)

def upload_post():
    camera = picamera.PiCamera()
    camera.capture('file.jpg')

    bot = Bot()
    bot.login(username="nar......er", password="wl......")
    #bot.upload_photo
    bot.upload_photo("file.jpg", caption="#거북이 #python #bot")

if __name__ == '__main__':
    clean_up()
    upload_post()

 

그럼 이걸루 무엇을 할 수 있다는 것인지 ?

 

인스타그램 이미지

이렇게 매일 처럼 사진을 쩍어 자동으로 올리기를 할 수 있다는 말이 된다. ㅎㅎㅎ

https://www.instagram.com/nari_bot_maker/

 

쉽게 적용해 볼 수 있을 것 같기도 하고.

반응형