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

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

""" 

An `invoke` extension that adds support for lots of goodies. See 

magicinvoke.py for more doc. 

""" 

 

from ._version import __version_info__, __version__ # noqa 

from invoke import * # noqa 

from .magicinvoke import ( 

cachepath, 

magictask, 

get_params_from_ctx, 

skippable, 

InputPath, 

Lazy, 

OutputPath, 

) 

from . import exceptions 

 

# Things that are handy for everyone to have 

try: 

from pathlib import Path # Py3 

except: 

from pathlib2 import Path # Py2 

 

try: 

import colored_traceback.auto as __colored_traceback 

except ImportError: 

__colored_traceback = None 

 

from .vendor.dotmap import DotMap as dotdict 

 

__all__ = [ 

"magictask", 

"get_params_from_ctx", 

"skippable", 

"InputPath", 

"Lazy", 

"OutputPath", 

"dotdict", 

"__colored_traceback", 

"Path", 

]