mirror of
https://github.com/cupcakearmy/docker-instabot.git
synced 2024-12-21 23:16:23 +00:00
11 lines
154 B
Python
11 lines
154 B
Python
import os
|
|
import time
|
|
import json
|
|
|
|
from src import InstaBot
|
|
|
|
data = json.load(open('config.json'))
|
|
bot = InstaBot(**data)
|
|
|
|
while True:
|
|
bot.new_auto_mod() |