GMU:Bots 'n' Plots/Constantin Oestreich: Difference between revisions

From Medien Wiki
No edit summary
No edit summary
Line 1: Line 1:
== Page of Constantin Oestreich ==
== Picturius Bottian Twitterbot ==
[[File:headerpictorius.JPG]]


Twitterbot: [https://twitter.com/picturius @Picturus Bottian]
Twitterbot: [https://twitter.com/picturius @Picturus Bottian]


== Twitterbot Picturius Bottian ==
'''What the Bot does:'''
The Bot repost an filtered Image to you (if you send him one). Therefore he choose random 2-4 individual filter functions and create a new Image. He also give back a short sentence which he choose randomly. If you did not send and image and just text... he answer with: "No image".


=== Source Code: ===
[[File:picturius02.JPG]]
[[File:picturius03.JPG]]
[[File:picturius04.JPG]]
[[File:picturius05.JPG]]
[[File:picturius06.JPG]]
[[File:picturius07.JPG]]
[[File:picturius08.JPG]]
[[File:picturius09.JPG]]


==== Mainbot ====
<pre style="font-size:smaller" >


'''Ideas andP roblems:'''
I want to do an image bot which is not 100% clear what he creates. So I play whith this random and filter functions. To get on every processed image an individual look i had to go more and more abstract whith his output. So I increase the numbers of filter functions, put in more distorted filters and increase the minimal number of filter routines on every image.


#mainbot.py
'''Thanks to:'''
Thanks to [http://stackoverflow.com/ Stackoverflow], thanks to the smaller Blogs and Forums I arrieved via Google, thanks to [http://effbot.org/ effbot], thanks to [https://pillow.readthedocs.org// Pillow] and last but not least thanks to Martin and Sebastian.


'''The code:'''
<source lang="python">
############################
############################
############################
### Main File ##############
############################
############################
############################


#Import Classes + Modules
#Import Classes + Modules
Line 134: Line 153:
     bot.run()
     bot.run()


</pre>


 
############################
==== Bildfunktionen + Random Auswahl ====
############################
<pre style="font-size:smaller" >
############################
 
### Filter File ############
imagefuncs.py
############################
############################
############################


from PIL import Image, ImageDraw, ImageFont, ImageFilter, ImageColor, ImageEnhance
from PIL import Image, ImageDraw, ImageFont, ImageFilter, ImageColor, ImageEnhance
Line 146: Line 166:




#verschiedene Bildbearbeitungfunktionen
#Bildbearbeitungfunktionen
 
def blur (image):
    return image.filter(ImageFilter.BLUR)


def emboss (image):
def edges (image): #002
    return image.filter(ImageFilter.EMBOSS)
 
def edges (image):
     return image.filter(ImageFilter.FIND_EDGES)
     return image.filter(ImageFilter.FIND_EDGES)


def transpose(image):
def transpose(image): #002
     return image.transpose(Image.FLIP_LEFT_RIGHT)
     return image.transpose(Image.FLIP_LEFT_RIGHT)


def invert(image):
def invert(image): #002
     return image.point(lambda x: 255-x)
     return image.point(lambda x: 255-x)


def pixelit (image):
def pixelit (image): #001
     xsize, ysize = image.size
     xsize, ysize = image.size
     width = xsize
     width = xsize
Line 173: Line 187:
     return image
     return image


#Random Filter List
def blend (image): #001
    image.convert("RGBA")
    imgrotate1 = image.rotate(135)
    imgrotate2 = image.rotate(225)
    image2 = Image.blend(imgrotate1, imgrotate2, 0.5)
    image = Image.blend(image, image2, 0.5)
    return image
 
def nogreen (image): #001
    image.convert("RGB")
    source = image.split()
    R, G, B = 0, 1, 2
    out = source[G].point(lambda i: i*0.0)
    source[G].paste(out, None, None)
    image = Image.merge(image.mode, source)
    return image
 
def colorchange (image) : #002
    image.convert("RGB")
    source = image.split()
    R, G, B = 0, 1, 2
    mask1 = source[R].point(lambda i: i<200 and 255)
    out1 = source[R].point(lambda i: i*0)
    source[R].paste(out1, None, mask1)
    mask2 = source[G].point(lambda i: i<200 and 255)
    out2 = source[G].point(lambda i: i*0.5)
    source[G].paste(out2, None, mask2)
    image = Image.merge(image.mode, source)
    return image
   
def switchchannels (image) : #001
    image.convert("RGB")
    r,g,b = image.split()
    image = Image.merge ("RGB", (g,b,r))
    return image
 
def pixelsort (image) :  #002
    source = image
    colors = source.getcolors(source.size[0] * source.size[1])
    pixels = []
    for i, color in colors:
        pixels.extend(i * [color])
    pixels.sort()
    new = Image.new("RGB", source.size)
    new.putdata(pixels)
    image = new
    return image
 
def pixelunsort (image) : #002
    source = image
    colors = source.getcolors(source.size[0] * source.size[1])
    pixels = []
    for i, color in colors:
        pixels.extend(i * [color])
    random.shuffle(pixels)
    new = Image.new("RGB", source.size)
    new.putdata(pixels)
    image = new
    return image
 
def spectral (image) : #002
    image2 = image
    image.convert("RGB")
    image = Image.new( "RGB", image.size, "black")
    pixels = image.load()
    for i in range (image.size[0]):
        for j in range (image.size[1]):
            pixels[i,j] = (i, j, 0)
    image = Image.blend(image, image2, 0.4)
    return image
 
def pixelunsort_green (image) : #001
    image.convert("RGB")
    source2 = image.split()   
    R, G, B = 0, 1, 2
    out1 = source2[R].point(lambda i: i*0.1)
    out2 = source2[B].point(lambda i: i*0.9)
    source2[R].paste(out1, None, None)
    source2[B].paste(out2, None, None)
    image = Image.merge(image.mode, source2)
    source = image
    colors = source.getcolors(source.size[0] * source.size[1])
    pixels = []
    for i, color in colors:
        pixels.extend(i * [color])
    random.shuffle(pixels)
    new = Image.new("RGB", source.size)
    new.putdata(pixels)
    image = new
    return image
 
def pixelsort_green (image) : #001
    image.convert("RGB")
    source2 = image.split()   
    R, G, B = 0, 1, 2
    out1 = source2[R].point(lambda i: i*0.1)
    out2 = source2[B].point(lambda i: i*0.9)
    source2[R].paste(out1, None, None)
    source2[B].paste(out2, None, None)
    image = Image.merge(image.mode, source2)
    source = image
    colors = source.getcolors(source.size[0] * source.size[1])
    pixels = []
    for i, color in colors:
        pixels.extend(i * [color])
    pixels.sort()
    new = Image.new("RGB", source.size)
    new.putdata(pixels)
    image = new
    return image




#Random Filter List


def filter (image):
def filter (image):


     functions_list = [blur, emboss, edges, invert, transpose, pixelit]
     functions_list = [edges, transpose, invert, pixelit, blend, nogreen, colorchange, switchchannels, pixelsort, pixelunsort, spectral, pixelunsort_green, pixelsort_green]
     filename = "final.png"
     filename = "final.png"
      
      
     x = 1
     x = 2
     y = 2
     y = 3
     z = 3
     z = 4
     list = [x, y, z]
     list = [x, y, z]
     anzahl = random.choice(list)
     anzahl = random.choice(list)
     print (anzahl)
     print (anzahl)
      
      
     if anzahl == 1:
     if anzahl == 2:
         #Random eine Funktion
         #Random eine Funktion
        imagefunc = random.choice(functions_list)
        image = imagefunc(image)
        #2.Runde Random Filter anwenden
         imagefunc = random.choice(functions_list)
         imagefunc = random.choice(functions_list)
         image = imagefunc(image)
         image = imagefunc(image)
          
          
     if anzahl == 2:
     if anzahl == 3:
         #Random eine Funktion
         #Random eine Funktion
         imagefunc = random.choice(functions_list)
         imagefunc = random.choice(functions_list)
         image = imagefunc(image)
         image = imagefunc(image)
         #2.Runde Random Filter anwenden
         #2.Runde Random Filter anwenden
        imagefunc = random.choice(functions_list)
        image = imagefunc(image)
        #3.Runde Random Filter anwenden
         imagefunc = random.choice(functions_list)
         imagefunc = random.choice(functions_list)
         image = imagefunc(image)
         image = imagefunc(image)
          
          
     if anzahl == 3:
     if anzahl == 4:
         #Random eine Funktion
         #Random eine Funktion
         imagefunc = random.choice(functions_list)
         imagefunc = random.choice(functions_list)
Line 210: Line 340:
         image = imagefunc(image)
         image = imagefunc(image)
         #3.Runde Random Filter anwenden
         #3.Runde Random Filter anwenden
        imagefunc = random.choice(functions_list)
        image = imagefunc(image)
        #4.Runde Random Filter anwenden
         imagefunc = random.choice(functions_list)
         imagefunc = random.choice(functions_list)
         image = imagefunc(image)
         image = imagefunc(image)
Line 215: Line 348:
     return image
     return image


</pre>


 
############################
==== Textfunktion ====
############################
<pre style="font-size:smaller" >
############################
 
### Text File ##############
textposts.py
############################
############################
############################


#Import Modules for Project
#Import Modules for Project
Line 259: Line 393:
      
      
     return text
     return text
</source>


=== Source Code: ===


</pre>
==== Mainbot ====
<pre style="font-size:smaller" >




=== Bilder des Bots: ===
#mainbot.py


[[File:Bot01.JPG]]


[[File:Bot02.JPG]]
#Import Classes + Modules


[[File:Bot03.JPG]]
from twitterbot import TwitterBot
import keys
import random
from io import BytesIO
from PIL import Image
from image import get_image_file


[[File:Bot04.JPG]]
#Import aus Dateien
from textposts import make_text
from textposts import no_image
from imagefuncs import filter


[[File:Bot05.JPG]]


[[File:Bot06.JPG]]
############################
### Twitterbot functions ###
############################


class MyTwitterBot(TwitterBot):
   
    # Keys
    def bot_init(self):
        """ Initialize and configure the bot """


=== Thanks for Help ===
        ############################
        # REQUIRED: LOGIN DETAILS! #
        ############################
        self.config['api_key'] = keys.consumer_key
        self.config['api_secret'] = keys.consumer_secret
        self.config['access_key'] = keys.access_token
        self.config['access_secret'] = keys.access_token_secret


Thanks to [http://stackoverflow.com/ Stackoverflow], thanks to the smaller Blogs and Forums I arrieved via Google, thanks to [http://effbot.org/ effbot], thanks to [https://pillow.readthedocs.org// Pillow] and last but not least thanks to Martin and Sebastian.


        ######################################
        # SEMI-OPTIONAL: OTHER CONFIG STUFF! #
        ######################################


== Weiteres aus dem Kurs... ==
        # how often to tweet, in seconds
        self.config['tweet_interval'] = 1 * 5    # default: 1 minutes


[[File:Robot_const.jpg]]
        # use this to define a (min, max) random range of how often to tweet
        # e.g., self.config['tweet_interval_range'] = (5*60, 10*60) # tweets every 5-10 minutes
        self.config['tweet_interval_range'] = None


==== Animated Robot ====
        # only reply to tweets that specifically mention the bot
        self.config['reply_direct_mention_only'] = True


[[File:Robot_Const.gif]]
        # only include bot followers (and original tweeter) in @-replies
        self.config['reply_followers_only'] = False


Thumb doesnt work - find it here:
        # fav any tweets that mention this bot?
        self.config['autofav_mentions'] = False


Animated Robot: [https://www.uni-weimar.de/medien/wiki/images/Robot_Const.gif]
        # fav any tweets containing these keywords?
        self.config['autofav_keywords'] = []


==== Robot Code ====
        # follow back all followers?
        self.config['autofollow'] = False


<pre style="font-size:smaller" >


"""
    def on_scheduled_tweet(self):
        """ Make a public tweet to the bot's own timeline. """
        # We might take senteces from somewhere and tweet them on a regular basis ...
        pass # don't do anything here ...


My Animated Robot
    def on_mention(self, tweet, prefix):
        if tweet:
            # get image from tweet
            try:
                image_file = get_image_file(tweet)


"""
                if image_file is None:
                    text = ("{},"+no_image()).format(prefix)
                else:
                    # create a tweet and make sure to cut it off at 140 chars
                    text = ("{},"+make_text()).format(prefix)


#Variablen
            except Exception as e:
                    print(e)


widthBox = 400
            # do the tweeting based on wether we have an image
heightBox = widthBox
            tweetsize = 140 - len(prefix) - 1
centerx = widthBox / 2
            text = text[:140]
centery = heightBox / 2
koerper = widthBox / 3
kopf = koerper / 1.5
auge = kopf / 6
blauKopf = 0
gruenKopf = 90
rotKopf = 100




            if image_file is None:


#Ausgabe
                    print("No Image")
                    self.post_tweet(text, reply_to=tweet)
                    return


def setup():
            else:
    size (widthBox,heightBox)
                filename, file = image_file
    colorMode (RGB, 100)
                img = Image.open(file)
                img = filter(img)
                format = filename.split(".", 1)[1].upper()
                print("Image format: {}".format(format))
                output = BytesIO()
                img.save(output, format="PNG")
               
            try:
                # Post
               
                self.post_tweet(text, reply_to=tweet, media=filename, file=output)


                output.close()


def draw():
            except Exception as e:
                # did anything go wrong when we tried to create and post the tweet?
                print(e)
      
      
     #Moving per Frame
     def on_timeline(self, tweet, prefix):
    frameRate (25)
         """ Actions to take on a timeline tweet. """
    angle = PI/8 * sin(frameCount * 0.1)
         pass # Don't do anything here ...
   
    #Growing Up
   
    global auge
    if auge<30:
         auge=auge+2
    else:
         auge=10
       
    global kopf
    if kopf<140:
        kopf=kopf+2
    else:
        kopf = koerper / 1.5
       
    global blauKopf
    global gruenKopf
    global rotKopf   
    if kopf>koerper / 1.5 and kopf<130:
        blauKopf = blauKopf + 5
        gruenKopf = gruenKopf -2
        rotKopf = rotKopf -2
   
    elif kopf > 130 and kopf < 140:
        blauKopf = 0
        gruenKopf = 0
        rotKopf = 100
       
    else:
        blauKopf=0
        gruenKopf = 90
        rotKopf = 100 
   
    #Variablen BG
    R = random(30,60)
    G = random(50,80)
    B = random(70,90)
   
    #Variablen Fill
    RF = random(20,50)
    GF = random(0,30)
    BF = random(10,40)
   
    #define
    background(R,G,B)
    rectMode(CENTER)
    fill (RF,GF,BF)
    stroke (90)
    strokeWeight(5)   


    #---Körper---
if __name__ == '__main__':
    rect (centerx, centery, koerper, koerper)
     bot = MyTwitterBot()
 
     bot.run()
    #---Kopf---
    pushStyle()
    fill (rotKopf, gruenKopf, blauKopf)
    ellipse (centerx, centery-koerper+(kopf*0.25), kopf, kopf)
    popStyle()
   
    # Variablen Auge
   
    AugeX1 = centerx - 17
    AugeY1 = centerx - koerper*0.875
     AugeX2 = centerx + 17
    AugeY2 = centerx - koerper*0.875
   
    #---Auge01---
   
    drawAuge(AugeX1, AugeY1, 1)
      
   
    #---Auge02---
   
    drawAuge(AugeX2, AugeY2, -1)
   
    # Arm positions
    posLx = centerx - koerper / 2
    posLy = centery - koerper / 2
    posRx = centerx + koerper / 2
    posRy = centery - koerper / 2
   
    # Bein positions
    posBLx = centerx - koerper / 2
    posBLy = centery + koerper / 2
    posBRx = centerx + koerper / 2
    posBRy = centery + koerper / 2
   
    #---Left Arm---
    drawArm(posLx-30, posLy-15, 1, angle)
   
    #---Right Arm---
    drawArm(posRx+30, posRy-15, -1, angle)
   
    #---Bein Links---
    drawBein(posBLx, posBLy)
   
    #---Bein Rechts---
    drawBein(posBRx-40, posBRy)
 
     
#Eigene Funktionen
 
def drawAuge (xpos, ypos, direction):
    pushMatrix()
    pushStyle()
    fill (80,80,100)
    stroke (40)
    strokeWeight(2)
    translate (xpos, ypos) 
    scale(direction,1)
    ellipse (0,0,auge,auge) 
    popStyle()         
    popMatrix()


def drawArm (xpos, ypos, direction, angle):
    pushMatrix()
    translate(xpos,ypos)
    scale(direction,1)
    rotate(angle)
    rectMode(CORNER)
    rect(0,0,30,130)
    popMatrix()
   
def drawBein (xpos, ypos):
    pushMatrix()
    pushStyle()
    fill(10,10,40)
    translate(xpos,ypos)
    rectMode(CORNER)
    rect(0,0,40,90)
    popMatrix()
    popStyle()
   
   
    saveFrame("robot_const_###.png")
   
</pre>
</pre>




==== Midtermbot ====
==== Bildfunktionen + Random Auswahl ====
 
<pre style="font-size:smaller" >
<pre style="font-size:smaller" >


"""
imagefuncs.py


midtermbot.py
from PIL import Image, ImageDraw, ImageFont, ImageFilter, ImageColor, ImageEnhance
import random


"""


###Import###
#verschiedene Bildbearbeitungfunktionen


#Import Modules for Project
def blur (image):
from PIL import Image, ImageDraw, ImageFont, ImageFilter, ImageColor
    return image.filter(ImageFilter.BLUR)
import tweepy
import time
import random
import requests
from io import BytesIO


#Import aus Dateien
def emboss (image):
from twitterkeys import *
    return image.filter(ImageFilter.EMBOSS)
from textposts import text
from imagefuncs import blur, emboss, edges, invert, transpose


##############
def edges (image):
###Programm###
    return image.filter(ImageFilter.FIND_EDGES)
##############


###Twitter connect###
def transpose(image):
    return image.transpose(Image.FLIP_LEFT_RIGHT)


#TwitterPassVariable for Test without posting on Twitter
def invert(image):
#True = Post on Twitter / False = just open Image and show text local
    return image.point(lambda x: 255-x)
check = False


#Define TwitterKeys to variables
def pixelit (image):
auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
    xsize, ysize = image.size
auth.secure = True
    width = xsize
auth.set_access_token(access_token, access_token_secret)
    height = ysize
api = tweepy.API(auth)
    minwidth = int(xsize * 0.05)
    minheight = int(ysize * 0.05)
    image = image.resize((minwidth, minheight) , Image.NEAREST)
    image = image.resize((width , height), Image.NEAREST)
    return image


#Find Images and URL in Account on Twitter
#Random Filter List
timeline = api.user_timeline(screen_name = "C64_Bot")
for tweet in timeline:
  for media in tweet.entities.get("media",[{}]):
    if media.get("type",None) == "photo":
        url = media["media_url"]


###Load Image from URL###
#"http://maui.hawaii.edu/tlc/wp-content/uploads/sites/53/2013/11/testing.jpg"
response = requests.get(url)
image = Image.open(BytesIO(response.content))


#Test Bild laden
#image = Image.open("test.png")


#Liste der verschiedenen Funktionen erstellen
def filter (image):
functions_list = [blur, emboss, edges, invert, transpose]


#Mainfunction
    functions_list = [blur, emboss, edges, invert, transpose, pixelit]
if __name__ == "__main__":   
    filename = "final.png"
      
      
     #Random eine Funktion aufrufen
     x = 1
     imagefunc = random.choice(functions_list)
    y = 2
     #Random Funktion anwenden
     z = 3
    image = imagefunc(image)
    list = [x, y, z]
    anzahl = random.choice(list)
     print (anzahl)
      
      
     #2.Runde Random Filter anwenden
     if anzahl == 1:
     #Random eine Funktion aufrufen
        #Random eine Funktion
    imagefunc = random.choice(functions_list)
        imagefunc = random.choice(functions_list)
    #Random Funktion anwenden
        image = imagefunc(image)
    image = imagefunc(image)
       
    if anzahl == 2:
        #Random eine Funktion
        imagefunc = random.choice(functions_list)
        image = imagefunc(image)
        #2.Runde Random Filter anwenden
        imagefunc = random.choice(functions_list)
        image = imagefunc(image)
       
     if anzahl == 3:
        #Random eine Funktion
        imagefunc = random.choice(functions_list)
        image = imagefunc(image)
        #2.Runde Random Filter anwenden
        imagefunc = random.choice(functions_list)
        image = imagefunc(image)
        #3.Runde Random Filter anwenden
        imagefunc = random.choice(functions_list)
        image = imagefunc(image)
      
      
     if check == True:
     return image
        filename = "final.png"
 
        image.save(filename)
        api.update_with_media(filename,text) 
   
    else:
        image.show()
        print(text)
</pre>
</pre>




==== Textfunktion ====
<pre style="font-size:smaller" >
<pre style="font-size:smaller" >


"""
textposts.py


imagefuncs.py
#Import Modules for Project
import random


"""


from PIL import Image, ImageDraw, ImageFont, ImageFilter, ImageColor, ImageEnhance
def make_text():
    a="Yeah, a new Image is Ready"
    b="What do you think about?"
    c="Uh, which Effekt"
    d="Nice"
    e="Thats what I do"
    f="Mhmmm, what you mean?"
    g="My next I post!"
    h="I should do more of this."
    i="Twitter is my life."
    j="This is my job!"
    k="Funky"


    text_list = [a, b, c, d, e, f, g, h, i, j, k]
   
    text = random.choice(text_list)
   
    return text


#verschiedene Bildbearbeitungfunktionen
def no_image():
    a = "No Image there"
    b = "What you do? Where is my Image?"
    c = "I can't read! Send me a picture"
    d = "I like Images!"
    e = "Boring!"
    f = "Okay, I don't know what you want!"
    g = "Pictures! Thats what I want!"
    noimagelist = [a, b, c, d, e, f, g]
   
    text = random.choice(noimagelist)
   
    return text


#Bild blur
def blur (image):
    return image.filter(ImageFilter.BLUR)
def emboss (image):
    return image.filter(ImageFilter.EMBOSS)
def edges (image):
    return image.filter(ImageFilter.FIND_EDGES)
def transpose(image):
    return image.transpose(Image.FLIP_LEFT_RIGHT)
def invert(image):
    return image.point(lambda x: 255-x)


</pre>
</pre>




<pre style="font-size:smaller" >
=== Bilder des Bots: ===


"""
[[File:Bot01.JPG]]


textposts.py
[[File:Bot02.JPG]]


"""
[[File:Bot03.JPG]]


#Import Modules for Project
[[File:Bot04.JPG]]
import random


[[File:Bot05.JPG]]


#Verschiedene Texte die gepostet werden können
[[File:Bot06.JPG]]
a="Yeah, a new Image is Ready"
b="I'am an artist.What you think about?"
c="Uh, which great Effekt"
d="Nice"
e="Thats what I do"
f="Mhmmm, what you mean? Is this art?"
g="Yes I post"
h="I should do an exhibition whith this works."
i="Tell me what you think about."
j="This is my job! Post Pictures..."
k="Funky..."




#Liste mit allen Textinhalten erstellen
=== Thanks for Help ===
text_list = [a, b, c, d, e, f, g, h, i, j, k]


 
Thanks to [http://stackoverflow.com/ Stackoverflow], thanks to the smaller Blogs and Forums I arrieved via Google, thanks to [http://effbot.org/ effbot], thanks to [https://pillow.readthedocs.org// Pillow] and last but not least thanks to Martin and Sebastian.
#Zufällige auswahl eines Inhalts
text = random.choice(text_list)
 
</pre>

Revision as of 21:39, 17 October 2015

Picturius Bottian Twitterbot

Headerpictorius.JPG

Twitterbot: @Picturus Bottian

What the Bot does: The Bot repost an filtered Image to you (if you send him one). Therefore he choose random 2-4 individual filter functions and create a new Image. He also give back a short sentence which he choose randomly. If you did not send and image and just text... he answer with: "No image".

Picturius02.JPG Picturius03.JPG Picturius04.JPG Picturius05.JPG Picturius06.JPG Picturius07.JPG Picturius08.JPG Picturius09.JPG


Ideas andP roblems: I want to do an image bot which is not 100% clear what he creates. So I play whith this random and filter functions. To get on every processed image an individual look i had to go more and more abstract whith his output. So I increase the numbers of filter functions, put in more distorted filters and increase the minimal number of filter routines on every image.

Thanks to: Thanks to Stackoverflow, thanks to the smaller Blogs and Forums I arrieved via Google, thanks to effbot, thanks to Pillow and last but not least thanks to Martin and Sebastian.

The code:

############################
############################
############################
### Main File ##############
############################
############################
############################

#Import Classes + Modules

from twitterbot import TwitterBot
import keys
import random
from io import BytesIO
from PIL import Image
from image import get_image_file

#Import aus Dateien
from textposts import make_text
from textposts import no_image
from imagefuncs import filter


############################
### Twitterbot functions ###
############################

class MyTwitterBot(TwitterBot):
    
    # Keys
    def bot_init(self):
        """ Initialize and configure the bot """

        ############################
        # REQUIRED: LOGIN DETAILS! #
        ############################
        self.config['api_key'] = keys.consumer_key
        self.config['api_secret'] = keys.consumer_secret
        self.config['access_key'] = keys.access_token
        self.config['access_secret'] = keys.access_token_secret


        ######################################
        # SEMI-OPTIONAL: OTHER CONFIG STUFF! #
        ######################################

        # how often to tweet, in seconds
        self.config['tweet_interval'] = 1 * 5     # default: 1 minutes

        # use this to define a (min, max) random range of how often to tweet
        # e.g., self.config['tweet_interval_range'] = (5*60, 10*60) # tweets every 5-10 minutes
        self.config['tweet_interval_range'] = None

        # only reply to tweets that specifically mention the bot
        self.config['reply_direct_mention_only'] = True

        # only include bot followers (and original tweeter) in @-replies
        self.config['reply_followers_only'] = False

        # fav any tweets that mention this bot?
        self.config['autofav_mentions'] = False

        # fav any tweets containing these keywords?
        self.config['autofav_keywords'] = []

        # follow back all followers?
        self.config['autofollow'] = False


    def on_scheduled_tweet(self):
        """ Make a public tweet to the bot's own timeline. """
        # We might take senteces from somewhere and tweet them on a regular basis ...
        pass # don't do anything here ...

    def on_mention(self, tweet, prefix):
        if tweet:
            # get image from tweet
            try:
                image_file = get_image_file(tweet)

                if image_file is None:
                    text = ("{},"+no_image()).format(prefix)
                else:
                    # create a tweet and make sure to cut it off at 140 chars
                    text = ("{},"+make_text()).format(prefix)

            except Exception as e:
                    print(e)

            # do the tweeting based on wether we have an image
            tweetsize = 140 - len(prefix) - 1
            text = text[:140]


            if image_file is None:

                    print("No Image")
                    self.post_tweet(text, reply_to=tweet)
                    return

            else:
                filename, file = image_file
                img = Image.open(file)
                img = filter(img)
                format = filename.split(".", 1)[1].upper()
                print("Image format: {}".format(format))
                output = BytesIO()
                img.save(output, format="PNG")
                
            try:
                # Post
                
                self.post_tweet(text, reply_to=tweet, media=filename, file=output)

                output.close()

            except Exception as e:
                # did anything go wrong when we tried to create and post the tweet?
                print(e)
    
    def on_timeline(self, tweet, prefix):
        """ Actions to take on a timeline tweet. """
        pass # Don't do anything here ...

if __name__ == '__main__':
    bot = MyTwitterBot()
    bot.run()


############################
############################
############################
### Filter File ############
############################
############################
############################

from PIL import Image, ImageDraw, ImageFont, ImageFilter, ImageColor, ImageEnhance
import random


#Bildbearbeitungfunktionen

def edges (image): #002
    return image.filter(ImageFilter.FIND_EDGES)

def transpose(image): #002
    return image.transpose(Image.FLIP_LEFT_RIGHT)

def invert(image): #002
    return image.point(lambda x: 255-x)

def pixelit (image): #001
    xsize, ysize = image.size
    width = xsize
    height = ysize
    minwidth = int(xsize * 0.05)
    minheight = int(ysize * 0.05)
    image = image.resize((minwidth, minheight) , Image.NEAREST)
    image = image.resize((width , height), Image.NEAREST)
    return image

def blend (image): #001
    image.convert("RGBA")
    imgrotate1 = image.rotate(135)
    imgrotate2 = image.rotate(225)
    image2 = Image.blend(imgrotate1, imgrotate2, 0.5)
    image = Image.blend(image, image2, 0.5)
    return image

def nogreen (image): #001
    image.convert("RGB")
    source = image.split()
    R, G, B = 0, 1, 2
    out = source[G].point(lambda i: i*0.0)
    source[G].paste(out, None, None)
    image = Image.merge(image.mode, source)
    return image

def colorchange (image) : #002
    image.convert("RGB")
    source = image.split()
    R, G, B = 0, 1, 2
    mask1 = source[R].point(lambda i: i<200 and 255)
    out1 = source[R].point(lambda i: i*0)
    source[R].paste(out1, None, mask1)
    mask2 = source[G].point(lambda i: i<200 and 255)
    out2 = source[G].point(lambda i: i*0.5)
    source[G].paste(out2, None, mask2)
    image = Image.merge(image.mode, source)
    return image
    
def switchchannels (image) : #001
    image.convert("RGB")
    r,g,b = image.split()
    image = Image.merge ("RGB", (g,b,r))
    return image

def pixelsort (image) :   #002
    source = image
    colors = source.getcolors(source.size[0] * source.size[1])
    pixels = []
    for i, color in colors:
        pixels.extend(i * [color])
    pixels.sort()
    new = Image.new("RGB", source.size)
    new.putdata(pixels)
    image = new
    return image

def pixelunsort (image) : #002
    source = image
    colors = source.getcolors(source.size[0] * source.size[1])
    pixels = []
    for i, color in colors:
        pixels.extend(i * [color])
    random.shuffle(pixels)
    new = Image.new("RGB", source.size)
    new.putdata(pixels)
    image = new
    return image

def spectral (image) : #002
    image2 = image
    image.convert("RGB")
    image = Image.new( "RGB", image.size, "black")
    pixels = image.load()
    for i in range (image.size[0]):
        for j in range (image.size[1]):
            pixels[i,j] = (i, j, 0)
    image = Image.blend(image, image2, 0.4)
    return image

def pixelunsort_green (image) : #001
    image.convert("RGB")
    source2 = image.split()    
    R, G, B = 0, 1, 2
    out1 = source2[R].point(lambda i: i*0.1)
    out2 = source2[B].point(lambda i: i*0.9)
    source2[R].paste(out1, None, None)
    source2[B].paste(out2, None, None)
    image = Image.merge(image.mode, source2)
    source = image
    colors = source.getcolors(source.size[0] * source.size[1])
    pixels = []
    for i, color in colors:
        pixels.extend(i * [color])
    random.shuffle(pixels)
    new = Image.new("RGB", source.size)
    new.putdata(pixels)
    image = new
    return image

def pixelsort_green (image) : #001
    image.convert("RGB")
    source2 = image.split()    
    R, G, B = 0, 1, 2
    out1 = source2[R].point(lambda i: i*0.1)
    out2 = source2[B].point(lambda i: i*0.9)
    source2[R].paste(out1, None, None)
    source2[B].paste(out2, None, None)
    image = Image.merge(image.mode, source2)
    source = image
    colors = source.getcolors(source.size[0] * source.size[1])
    pixels = []
    for i, color in colors:
        pixels.extend(i * [color])
    pixels.sort()
    new = Image.new("RGB", source.size)
    new.putdata(pixels)
    image = new
    return image


#Random Filter List

def filter (image):

    functions_list = [edges, transpose, invert, pixelit, blend, nogreen, colorchange, switchchannels, pixelsort, pixelunsort, spectral, pixelunsort_green, pixelsort_green]
    filename = "final.png"
    
    x = 2
    y = 3
    z = 4
    list = [x, y, z]
    anzahl = random.choice(list)
    print (anzahl)
    
    if anzahl == 2:
        #Random eine Funktion
        imagefunc = random.choice(functions_list)
        image = imagefunc(image)
        #2.Runde Random Filter anwenden
        imagefunc = random.choice(functions_list)
        image = imagefunc(image)
        
    if anzahl == 3:
        #Random eine Funktion
        imagefunc = random.choice(functions_list)
        image = imagefunc(image)
        #2.Runde Random Filter anwenden
        imagefunc = random.choice(functions_list)
        image = imagefunc(image)
        #3.Runde Random Filter anwenden
        imagefunc = random.choice(functions_list)
        image = imagefunc(image)
        
    if anzahl == 4:
        #Random eine Funktion
        imagefunc = random.choice(functions_list)
        image = imagefunc(image)
        #2.Runde Random Filter anwenden
        imagefunc = random.choice(functions_list)
        image = imagefunc(image)
        #3.Runde Random Filter anwenden
        imagefunc = random.choice(functions_list)
        image = imagefunc(image)
        #4.Runde Random Filter anwenden
        imagefunc = random.choice(functions_list)
        image = imagefunc(image)
    
    return image


############################
############################
############################
### Text File ##############
############################
############################
############################

#Import Modules for Project
import random


def make_text():
    a="Yeah, a new Image is Ready"
    b="What do you think about?"
    c="Uh, which Effekt"
    d="Nice"
    e="Thats what I do"
    f="Mhmmm, what you mean?"
    g="My next I post!"
    h="I should do more of this."
    i="Twitter is my life."
    j="This is my job!"
    k="Funky"

    text_list = [a, b, c, d, e, f, g, h, i, j, k]
    
    text = random.choice(text_list)
    
    return text

def no_image():
    a = "No Image there"
    b = "What you do? Where is my Image?"
    c = "I can't read! Send me a picture"
    d = "I like Images!"
    e = "Boring!"
    f = "Okay, I don't know what you want!"
    g = "Pictures! Thats what I want!"
    noimagelist = [a, b, c, d, e, f, g]
    
    text = random.choice(noimagelist)
    
    return text

Source Code:

Mainbot



#mainbot.py


#Import Classes + Modules

from twitterbot import TwitterBot
import keys
import random
from io import BytesIO
from PIL import Image
from image import get_image_file

#Import aus Dateien
from textposts import make_text
from textposts import no_image
from imagefuncs import filter


############################
### Twitterbot functions ###
############################

class MyTwitterBot(TwitterBot):
    
    # Keys
    def bot_init(self):
        """ Initialize and configure the bot """

        ############################
        # REQUIRED: LOGIN DETAILS! #
        ############################
        self.config['api_key'] = keys.consumer_key
        self.config['api_secret'] = keys.consumer_secret
        self.config['access_key'] = keys.access_token
        self.config['access_secret'] = keys.access_token_secret


        ######################################
        # SEMI-OPTIONAL: OTHER CONFIG STUFF! #
        ######################################

        # how often to tweet, in seconds
        self.config['tweet_interval'] = 1 * 5     # default: 1 minutes

        # use this to define a (min, max) random range of how often to tweet
        # e.g., self.config['tweet_interval_range'] = (5*60, 10*60) # tweets every 5-10 minutes
        self.config['tweet_interval_range'] = None

        # only reply to tweets that specifically mention the bot
        self.config['reply_direct_mention_only'] = True

        # only include bot followers (and original tweeter) in @-replies
        self.config['reply_followers_only'] = False

        # fav any tweets that mention this bot?
        self.config['autofav_mentions'] = False

        # fav any tweets containing these keywords?
        self.config['autofav_keywords'] = []

        # follow back all followers?
        self.config['autofollow'] = False


    def on_scheduled_tweet(self):
        """ Make a public tweet to the bot's own timeline. """
        # We might take senteces from somewhere and tweet them on a regular basis ...
        pass # don't do anything here ...

    def on_mention(self, tweet, prefix):
        if tweet:
            # get image from tweet
            try:
                image_file = get_image_file(tweet)

                if image_file is None:
                    text = ("{},"+no_image()).format(prefix)
                else:
                    # create a tweet and make sure to cut it off at 140 chars
                    text = ("{},"+make_text()).format(prefix)

            except Exception as e:
                    print(e)

            # do the tweeting based on wether we have an image
            tweetsize = 140 - len(prefix) - 1
            text = text[:140]


            if image_file is None:

                    print("No Image")
                    self.post_tweet(text, reply_to=tweet)
                    return

            else:
                filename, file = image_file
                img = Image.open(file)
                img = filter(img)
                format = filename.split(".", 1)[1].upper()
                print("Image format: {}".format(format))
                output = BytesIO()
                img.save(output, format="PNG")
                
            try:
                # Post
                
                self.post_tweet(text, reply_to=tweet, media=filename, file=output)

                output.close()

            except Exception as e:
                # did anything go wrong when we tried to create and post the tweet?
                print(e)
    
    def on_timeline(self, tweet, prefix):
        """ Actions to take on a timeline tweet. """
        pass # Don't do anything here ...

if __name__ == '__main__':
    bot = MyTwitterBot()
    bot.run()


Bildfunktionen + Random Auswahl


imagefuncs.py

from PIL import Image, ImageDraw, ImageFont, ImageFilter, ImageColor, ImageEnhance
import random


#verschiedene Bildbearbeitungfunktionen

def blur (image):
    return image.filter(ImageFilter.BLUR)

def emboss (image):
    return image.filter(ImageFilter.EMBOSS)

def edges (image):
    return image.filter(ImageFilter.FIND_EDGES)

def transpose(image):
    return image.transpose(Image.FLIP_LEFT_RIGHT)

def invert(image):
    return image.point(lambda x: 255-x)

def pixelit (image):
    xsize, ysize = image.size
    width = xsize
    height = ysize
    minwidth = int(xsize * 0.05)
    minheight = int(ysize * 0.05)
    image = image.resize((minwidth, minheight) , Image.NEAREST)
    image = image.resize((width , height), Image.NEAREST)
    return image

#Random Filter List



def filter (image):

    functions_list = [blur, emboss, edges, invert, transpose, pixelit]
    filename = "final.png"
    
    x = 1
    y = 2
    z = 3
    list = [x, y, z]
    anzahl = random.choice(list)
    print (anzahl)
    
    if anzahl == 1:
        #Random eine Funktion
        imagefunc = random.choice(functions_list)
        image = imagefunc(image)
        
    if anzahl == 2:
        #Random eine Funktion
        imagefunc = random.choice(functions_list)
        image = imagefunc(image)
        #2.Runde Random Filter anwenden
        imagefunc = random.choice(functions_list)
        image = imagefunc(image)
        
    if anzahl == 3:
        #Random eine Funktion
        imagefunc = random.choice(functions_list)
        image = imagefunc(image)
        #2.Runde Random Filter anwenden
        imagefunc = random.choice(functions_list)
        image = imagefunc(image)
        #3.Runde Random Filter anwenden
        imagefunc = random.choice(functions_list)
        image = imagefunc(image)
    
    return image


Textfunktion


textposts.py

#Import Modules for Project
import random


def make_text():
    a="Yeah, a new Image is Ready"
    b="What do you think about?"
    c="Uh, which Effekt"
    d="Nice"
    e="Thats what I do"
    f="Mhmmm, what you mean?"
    g="My next I post!"
    h="I should do more of this."
    i="Twitter is my life."
    j="This is my job!"
    k="Funky"

    text_list = [a, b, c, d, e, f, g, h, i, j, k]
    
    text = random.choice(text_list)
    
    return text

def no_image():
    a = "No Image there"
    b = "What you do? Where is my Image?"
    c = "I can't read! Send me a picture"
    d = "I like Images!"
    e = "Boring!"
    f = "Okay, I don't know what you want!"
    g = "Pictures! Thats what I want!"
    noimagelist = [a, b, c, d, e, f, g]
    
    text = random.choice(noimagelist)
    
    return text



Bilder des Bots:

Bot01.JPG

Bot02.JPG

Bot03.JPG

Bot04.JPG

Bot05.JPG

Bot06.JPG


Thanks for Help

Thanks to Stackoverflow, thanks to the smaller Blogs and Forums I arrieved via Google, thanks to effbot, thanks to Pillow and last but not least thanks to Martin and Sebastian.