Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1

2

3

4

5

6

7

8

9

10

11

12

13

""" 

Module handels all global parameters used in a LingPy session. 

""" 

from __future__ import unicode_literals, division, print_function 

from datetime import datetime, date 

 

 

# initialize rcParams with filename and timestamp 

rcParams = dict( 

filename='lingpy-' + str(date.today()), 

timestamp=datetime.strftime(datetime.now(), '%Y-%m-%d %H:%M'), 

basic_orthography='fuzzy', 

)