1
0
mirror of https://github.com/ihabunek/toot.git synced 2024-06-23 06:25:26 +00:00

Make boolen params a bit less verbose

This commit is contained in:
Ivan Habunek 2019-01-24 11:18:28 +01:00
parent c7c42b8337
commit 32b1c67d49
No known key found for this signature in database
GPG Key ID: CDBD63C43A30BB95
2 changed files with 11 additions and 5 deletions

View File

@ -7,6 +7,7 @@ from urllib.parse import urlparse, urlencode, quote
from toot import http, CLIENT_NAME, CLIENT_WEBSITE
from toot.exceptions import AuthenticationError
from toot.utils import str_bool
SCOPES = 'read write follow'
@ -106,7 +107,7 @@ def post_status(
'status': status,
'media_ids[]': media_ids,
'visibility': visibility,
'sensitive': "true" if sensitive else "false",
'sensitive': str_bool(sensitive),
'spoiler_text': spoiler_text,
'in_reply_to_id': in_reply_to_id,
}, headers=headers).json()
@ -155,13 +156,13 @@ def timeline_home(app, user):
def timeline_public(app, user, local=False):
params = {'local': 'true' if local else 'false'}
params = {'local': str_bool(local)}
return http.get(app, user, '/api/v1/timelines/public', params).json()
def timeline_tag(app, user, hashtag, local=False):
url = '/api/v1/timelines/tag/{}'.format(quote(hashtag))
params = {'local': 'true' if local else 'false'}
params = {'local': str_bool(local)}
return http.get(app, user, url, params).json()
@ -201,13 +202,13 @@ def home_timeline_generator(app, user, limit=20):
def public_timeline_generator(instance, local=False, limit=20):
path = '/api/v1/timelines/public'
params = {'local': 'true' if local else 'false', 'limit': limit}
params = {'local': str_bool(local), 'limit': limit}
return _anon_timeline_generator(instance, path, params)
def tag_timeline_generator(app, user, hashtag, local=False, limit=20):
path = '/api/v1/timelines/tag/{}'.format(hashtag)
params = {'local': 'true' if local else 'false', 'limit': limit}
params = {'local': str_bool(local), 'limit': limit}
return _timeline_generator(app, user, path, params)

View File

@ -10,6 +10,11 @@ from bs4 import BeautifulSoup
from toot.exceptions import ConsoleError
def str_bool(b):
"""Convert boolean to string, in the way expected by the API."""
return "true" if b else "false"
def get_text(html):
"""Converts html to text, strips all tags."""
text = BeautifulSoup(html.replace(''', "'"), "html.parser").get_text()