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

 

# Bootstrap-Env 

from bootstrap_env.admin_shell.path_helper import PathHelper 

 

# PyLucid 

import pylucid 

 

 

def get_path_helper_instance(): 

base_file = pylucid.__file__ 

print("\nbootstrap_env.__file__: %r\n" % base_file) 

 

path_helper = PathHelper( 

base_file=base_file, 

boot_filename="pylucid_boot.py", 

admin_filename="pylucid_admin.py", 

) 

return path_helper 

 

 

if __name__ == '__main__': 

path_helper = get_path_helper_instance() 

path_helper.print_path() 

path_helper.assert_all_path()