toot/toot/__init__.py

12 wiersze
345 B
Python
Czysty Zwykły widok Historia

2017-04-15 12:53:08 +00:00
# -*- coding: utf-8 -*-
2017-04-12 14:42:04 +00:00
from collections import namedtuple
App = namedtuple('App', ['instance', 'base_url', 'client_id', 'client_secret'])
User = namedtuple('User', ['instance', 'username', 'access_token'])
2017-04-12 14:42:04 +00:00
DEFAULT_INSTANCE = 'mastodon.social'
2017-04-19 12:47:30 +00:00
CLIENT_NAME = 'toot - a Mastodon CLI client'
2017-04-16 12:14:33 +00:00
CLIENT_WEBSITE = 'https://github.com/ihabunek/toot'