Files for the publication & poster for Data Workers, an exhibition by Algolit. http://www.algolit.net/index.php/Data_Workers
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

13 lines
466 B

from functions import insert_linebreaks, align
header = '''\
V V V V V V V V
V V V V V V V V V V V V V V V V
V V V V V V V V V'''
def create_intro_text(string, zone):
intro_text = insert_linebreaks(string, 35, type='word')
intro_text = intro_text.replace('\nWorks\n', '')
intro_text = intro_text.replace('\nOeuvres\n', '')
return header + '\n\n\n' + align(zone.upper(), 35) + '\n\n\n' + header + '\n' + header + intro_text