Skip to content

Commit

Permalink
Creating a package content extract function and a package content dic…
Browse files Browse the repository at this point in the history
…t printing functions, to check what's present
  • Loading branch information
jellepoland committed Aug 16, 2024
1 parent 6e31f74 commit b396077
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions scripts/testing_the_pip_install.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import TUDELFT_V3_LEI_KITE
from TUDELFT_V3_LEI_KITE.extract_package_contents import extract_package_contents
from TUDELFT_V3_LEI_KITE.print_dict_content import print_dict_content

package_content = extract_package_contents(TUDELFT_V3_LEI_KITE)
print_dict_content(package_content)

print("\n")
print(f"--------------------------------")
print(f"Surfplan-export package content")
print(f"--------------------------------")
print_dict_content(package_content["surfplan_export"])

0 comments on commit b396077

Please sign in to comment.