diff --git a/main.py b/main.py new file mode 100644 index 0000000..ee32bfc --- /dev/null +++ b/main.py @@ -0,0 +1,5 @@ +from gazelle.steel.fabricator import SteelFabricator, SectionCategory + +sections = SteelFabricator.make_all_sections(SectionCategory.UC) +for section in sections: + print(f'Section: {section}, width: {section.width}') \ No newline at end of file diff --git a/test/test_steel.py b/test/test_steel.py new file mode 100644 index 0000000..edc4769 --- /dev/null +++ b/test/test_steel.py @@ -0,0 +1,5 @@ +from gazelle.steel.fabricator import SteelFabricator, SectionCategory + +def test_steel(): + sections = SteelFabricator.make_all_sections(SectionCategory.UB) + assert len(sections) > 0