■ Side 클래스의 생성자에서 border_style 인자를 사용해 Side 객체를 만드는 방법을 보여준다.
▶ main.py
1 2 3 4 5 |
from openpyxl.styles import Side side = Side(border_style = "medium") |
※ border_style 인자 : "dashed", "mediumDashed", "dashDot", "mediumDashDot", "hair", "mediumDashDotDot", "dotted", "double", "medium", "dashDotDot", "thick", "slantDashDot", "thin"
▶ requirements.txt
1 2 3 4 |
et_xmlfile==2.0.0 openpyxl==3.1.5 |
※ pip install openpyxl 명령을 실행했다.