コード例 #1
0
ファイル: initialize_hive.py プロジェクト: LeeGeonU/hive
 def handle(self, *args, **options):
     try:
         User.objects.get(username="******")
         print "Notice Bot is exist"
     except User.DoesNotExist:
         notice_bot = User.objects.create_user("notice_bot", "*****@*****.**", "notice_bot")
         notice_bot.is_active=True
         notice_bot.is_staff = True
         notice_bot.is_superuser = True
         notice_bot.save()
         UserProfile.objects.create(user=notice_bot)
         
         now = datetime.datetime.now()
         post_content = "WELCOME TO HIVE!"
         now = now + datetime.timedelta(minutes=1)
         post = Post.objects.create( contents=post_content, create_time=now, writer=notice_bot, author=notice_bot.username)
         Timeline.objects.create( writer=notice_bot, post=post )
         print "Notice Bot(%s) is Created" %(notice_bot)
     
     try:
         User.objects.get(username="******")
         print "Humor Bot is exist"
     except User.DoesNotExist:
         humor_bot = User.objects.create_user("humor_bot" , "*****@*****.**", "humor_bot")
         humor_bot.is_active=True
         humor_bot.is_staff = True
         humor_bot.is_superuser = True
         humor_bot.save()
         UserProfile.objects.create(user=humor_bot)
         print "Humor Bot(%s) is created" %(humor_bot)
     
             
     execute_analyze_activities()
     print "Activities Analyzer is excuted."
     
     excute_post_humorbot()
     print "Humor Bot is running"
     
     print "Initialize Completed"
コード例 #2
0
 def handle(self, *args, **options):
     execute_analyze_activities()
     print "command is excuted"