curious-greg/web.py

33 lines
1.1 KiB
Python
Raw Normal View History

2018-11-01 14:25:47 +00:00
#!/usr/bin/env python3
#Curious Greg - Curious Cat to Mastodon crossposter
# This Source Code Form is subject to the terms of the Mozilla Public
# 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/.
2018-11-02 02:35:40 +00:00
import requests, sqlite3, json
2018-11-01 14:25:47 +00:00
from mastodon import Mastodon
2018-11-02 02:35:40 +00:00
from flask import Flask, session
from flask.ext.session import Session
2018-11-01 14:25:47 +00:00
2018-11-02 02:35:40 +00:00
cfg = json.load(open("meta.json"))
app = Flask(cfg['name'])
SESSION_TYPE = 'filesystem'
app.config.from_object(cfg['name'])
Session(app)
2018-11-01 14:25:47 +00:00
db = sqlite3.connect("database.db")
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)")
print("Registering app...")
client_id, client_secret = Mastodon.create_app(cfg['name'],
api_base_url=instance_url,
scopes="write:statuses",
website="https://git.lynnesbian.space/lynnesbian/curious-greg")
2018-11-01 14:35:56 +00:00
2018-11-02 00:22:02 +00:00
client = Mastodon(client_id = client_id,
client_secret = client_secret,
api_base_url=instance_url)