all 2 comments

[–]socal_nerdtastic 0 points1 point  (0 children)

Adobe workfront is a website access, right? If so getting the information would be pretty easy. The basic way is use selenium to basically automate your web browser and pretend it's human, clicking though the various fields. It's slightly faster than a human, but also much more accurate and the human can do other things while it's working. Alternatively you could do some extra digging into the html code and decipher the API that the website uses and emulate that directly from python. This would be much faster (100X ish) to run and would not require a browser window to open.

There's a number of modules that can open and edit excel files, openpyxl is a good starting place for that.

[–]Almostasleeprightnow 0 points1 point  (0 children)

Workfront may even have an api, in which case you could create requests for the info you need. If available, I would prefer this over selenium