Summary: I'm looking to make my code more Pythonic. It works, but I'm just uneasy knowing that there's probably a better solution elsewhere
I've tried creating a web automation script with Selenium, that allows users to choose which fields to change. The Excel file which the script reads from, is as follows
![[Image: iTHUqB2.png]](https://i.imgur.com/iTHUqB2.png)
Meaning first row, col_72708 will have 4 fields edited. Second row will have 2 fields edited, and the last row will have only 1 field edited.
I then read this file as multiple dictionaries. Key being the column header, and Value being the actual value (in the table).
I then unpack this dictionary into my function (with **), which has kwargs of default value 0. My function has multiple if statements, so if the kwarg passed in is blank, it skips the function that makes the amendment in the script.
This code is functionally sufficient, but I'm confident that there must be a better way to do this.
I hope I'm sufficiently clear to facilitate anyone giving me advice on this.
Many thanks!
I've tried creating a web automation script with Selenium, that allows users to choose which fields to change. The Excel file which the script reads from, is as follows
![[Image: iTHUqB2.png]](https://i.imgur.com/iTHUqB2.png)
Meaning first row, col_72708 will have 4 fields edited. Second row will have 2 fields edited, and the last row will have only 1 field edited.
I then read this file as multiple dictionaries. Key being the column header, and Value being the actual value (in the table).
I then unpack this dictionary into my function (with **), which has kwargs of default value 0. My function has multiple if statements, so if the kwarg passed in is blank, it skips the function that makes the amendment in the script.
This code is functionally sufficient, but I'm confident that there must be a better way to do this.
I hope I'm sufficiently clear to facilitate anyone giving me advice on this.
Many thanks!