added example with import

This commit is contained in:
2022-05-11 11:52:33 +02:00
parent 08218dd318
commit 27ec3e5b9a
2 changed files with 16 additions and 0 deletions

10
scripts/example-with-import.py Executable file
View File

@ -0,0 +1,10 @@
#!/usr/bin/env python
print("running example with import")
from some_lib import some_var
print(some_var)

6
scripts/some_lib.py Normal file
View File

@ -0,0 +1,6 @@
some_var = "some thing"