[PYTHON] Star Wars öffentliches Gedenken, Star Wars Stil TL App mit Flasche gemacht

Der Inhalt des Skripts ist schmutzig, weil ich meine Hände bewegt habe, als ich daran dachte, und es gibt nichts Einfallsreichtum mit nur einer .tpl-Datei. Sie können TL durch Streaming erhalten, eine Suchfunktion hinzufügen und verschiedene Dinge spielen.

index.py



#!/user/bin/env python
# -*- coding: utf-8 -*-
from bottle import route, run, template, request, static_file, url, get, post, response, error
from requests_oauthlib import OAuth1Session
import json
import requests
import time, calendar
import datetime
from datetime import timedelta
from datetime import datetime
import pytz
today = datetime.now(pytz.timezone('Asia/Tokyo'))
import sys, codecs
sys.stdout = codecs.getwriter("utf-8")(sys.stdout)

@route("/")
def title():

	C_KEY = "***************"
	C_SECRET = "***************"
	A_KEY = "***************"
	A_SECRET = "***************"

	search_words = u"Weihnachten"

	url = "https://api.twitter.com/1.1/search/tweets.json?"
	params = {
				"q": (search_words, "utf-8"),
				"lang": "ja",
				"result_type": "recent",
				"count": "100"
				}
	tw = OAuth1Session(C_KEY,C_SECRET,A_KEY,A_SECRET)
	req = tw.get(url, params = params)
	tweets = json.loads(req.text)
	for tweet in tweets["statuses"]:
		Created_at = YmdHMS(tweet["created_at"])
		User = (tweet["user"]["screen_name"].encode("utf-8"))
		Name = (tweet["user"]["name"].encode("utf-8"))
		Text = (tweet["text"].encode("utf-8"))
		U_img = (tweet["user"]["profile_image_url"])

	return template("main", Created_at=Created_at, User=User, Name=Name, Text=Text)


def YmdHMS(created_at):
    time_utc = time.strptime(created_at, '%a %b %d %H:%M:%S +0000 %Y')
    unix_time = calendar.timegm(time_utc)
    time_local = time.localtime(unix_time)
    return int(time.strftime("%Y%m%d%H%M%S", time_local))


run(host='localhost', port=8000, debug=True, reloader=True)

main.tpl



<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">

<title>StarTwit</title>
</head>

<body>



  <style>
  body{
      background: #000;
  }
  #titles{
      position: absolute;
      width: 18em;
      height: 50em;
      bottom: 0;
      left: 50%;
      margin-left: -9em;
      font-size: 350%;
      font-weight: bold;
      text-align: justify;
      overflow: hidden;
      color: #fff;
      transform-origin: 50% 100%;
      transform: perspective(300px) rotateX(25deg);
  }
  #titles:after{
      position: absolute;
      content: ' ';
      left: 0;
      right: 0;
      top: 0;
      bottom: 60%;
      background-image: linear-gradient(top, rgba(0,0,0,1) 0%, transparent 100%);
      pointer-events: none;
  }
  #titlecontent{
      position: absolute;
      top: 100%;
      color: #fff;
      animation: scroll 100s linear 4s infinite;
  }
  @keyframes scroll {
      0% { top: 100%; }
      100% { top: -170%; }
  }
  </style>
  <div id="titles"><div id="titlecontent">
    <ul>
      <li>{{Created_at}}</li>
      <li>{{User}}:{{Name}}</li>
      <li>{{Text}}</li>
    </ul>

  </div></div>
  </body>
  </html>

img.jpg

Es wird so implementiert. Berücksichtigung der Privatsphäre.

Recommended Posts

Star Wars öffentliches Gedenken, Star Wars Stil TL App mit Flasche gemacht
[Parfüm x STAR WARS] Stilkonvertierung mit Chainer ab 1 Minute
Twitter-Posting-Anwendung mit Django gemacht
Twitter-Such-Client mit Flasche gemacht
Bis die mit Flasche erstellte Webanwendung auf Heroku veröffentlicht (bereitgestellt) wird
[Python] Eine schnelle Webanwendung mit Bottle!
Ich habe eine WEB-Bewerbung bei Django gemacht