started setting up flask
This commit is contained in:
parent
a75c6d8e88
commit
b2290cb977
1 changed files with 9 additions and 6 deletions
15
web.py
15
web.py
|
@ -4,18 +4,23 @@
|
||||||
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||||
|
|
||||||
import requests, sqlite3, json, argparse
|
import requests, sqlite3, json
|
||||||
from mastodon import Mastodon
|
from mastodon import Mastodon
|
||||||
|
from flask import Flask, session
|
||||||
|
from flask.ext.session import Session
|
||||||
|
|
||||||
|
cfg = json.load(open("meta.json"))
|
||||||
|
|
||||||
|
app = Flask(cfg['name'])
|
||||||
|
SESSION_TYPE = 'filesystem'
|
||||||
|
app.config.from_object(cfg['name'])
|
||||||
|
Session(app)
|
||||||
|
|
||||||
db = sqlite3.connect("database.db")
|
db = sqlite3.connect("database.db")
|
||||||
c = db.cursor()
|
c = db.cursor()
|
||||||
|
|
||||||
c.execute("CREATE TABLE IF NOT EXISTS `data` (username VARCHAR NOT NULL, appid VARCHAR NOT NULL, appsecret VARCHAR NOT NULL, secret VARCHAR NOT NULL, latest_post VARCHAR)")
|
c.execute("CREATE TABLE IF NOT EXISTS `data` (username VARCHAR NOT NULL, appid VARCHAR NOT NULL, appsecret VARCHAR NOT NULL, secret VARCHAR NOT NULL, latest_post VARCHAR)")
|
||||||
|
|
||||||
cfg = json.load(open("meta.json"))
|
|
||||||
|
|
||||||
instance_url = input("Instance URL: ")
|
|
||||||
print("Registering app...")
|
print("Registering app...")
|
||||||
client_id, client_secret = Mastodon.create_app(cfg['name'],
|
client_id, client_secret = Mastodon.create_app(cfg['name'],
|
||||||
api_base_url=instance_url,
|
api_base_url=instance_url,
|
||||||
|
@ -25,5 +30,3 @@ client_id, client_secret = Mastodon.create_app(cfg['name'],
|
||||||
client = Mastodon(client_id = client_id,
|
client = Mastodon(client_id = client_id,
|
||||||
client_secret = client_secret,
|
client_secret = client_secret,
|
||||||
api_base_url=instance_url)
|
api_base_url=instance_url)
|
||||||
|
|
||||||
client.
|
|
||||||
|
|
Loading…
Reference in a new issue