This website requires JavaScript.
Odkrywaj
Pomoc
Zarejestruj się
Zaloguj się
mirror
/
toot
kopia lustrzana
https://github.com/ihabunek/toot
Obserwuj
1
Polub
0
Forkuj
You've already forked toot
0
Kod
Zgłoszenia
Packages
Projekty
Wydania
Wiki
Aktywność
e310482cb6
toot
/
requirements.txt
4 wiersze
67 B
Plaintext
Czysty
Zwykły widok
Historia
Unescape
Escape
Move requirements to requirements.txt
2017-04-26 09:16:22 +00:00
requests>=2.13,<3.0
beautifulsoup4>=4.5.0,<5.0
Fix left column padding in timeline with wide characters When the left column contains wide characters (which occupy more than one cell when printed to screen), padding to 30-characters with "{:30}".format() does not work well. This happens for instance when the display name contains unicode characters such as emojis. We fix this by introducing a pad() function in utils module which uses the wcwidth library (https://pypi.org/project/wcwidth/) to compute the length of the text for the column. trunc() function is also adjusted to optionally compute the length of the text to be truncated since, when called from pad(), we now pre-compute this value. We update test for timeline rendering so that the display name now includes an emoji. (Without the fix, the test would not pass as left column would be misaligned.)
2019-01-02 12:22:06 +00:00
wcwidth>=0.1.7,<2.0