Skip to content

Instantly share code, notes, and snippets.

@GrapeApple0
Created January 9, 2023 06:01
Show Gist options
  • Select an option

  • Save GrapeApple0/aed1f79e175a6691b81a600aa9681ea7 to your computer and use it in GitHub Desktop.

Select an option

Save GrapeApple0/aed1f79e175a6691b81a600aa9681ea7 to your computer and use it in GitHub Desktop.
3hiraganabot.py
isDebug = False
import random
import time
from misskey import Misskey
def genHiraganas():
lst = "あいうえおかきくけこさしすせそたちつてとなにぬねのはひふへほまみむめもやゆよらりるれろわをんがぎぐげござじずぜぞだぢづでどばびぶべぼぱぴぷぺぽぁぃぅぇぉっゃゅょゎ!?"
word = ""
for i in range(3):
word += lst[random.randrange(0,len(lst))]
return word
mk = Misskey("misskey.04.si", i="")
while True:
hiraganas = genHiraganas()
msg = hiraganas;
if isDebug:
msg += ":debbuging now..."
mk.notes_create(text=msg)
time.sleep(60)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment