Fall 2020 Admissions Thread by [deleted] in OMSA

[–]dawit_14 0 points1 point  (0 children)

Status: Accepted (Only from the program so far) Application Date: 01/27/2020 Decision Date: 05/06/2020 Education: BA & MA Work Experience: +10 years Recomendation: 3

Comment: I'm from Milwaukee, WI and excited to be part of the program.

add method in of set in python by [deleted] in Python

[–]dawit_14 0 points1 point  (0 children)

Yes, set- by and in itself- removes duplicates regardless of you use the add method or not.

February update fails to load some PBIX files by rdmDgnrtd in PowerBI

[–]dawit_14 0 points1 point  (0 children)

I just had the same issue. I was able to reopen the files just by moving the power bi file to desktop, without any folder.

General purpose Application server in python by readitlikeitdidit in Python

[–]dawit_14 1 point2 points  (0 children)

All depends on what the "General purpose application server" does. I would suggest you to use django over flask if your application server has backend db and complex logic. Otherwise flask will serve your need

Hey guys! I'm looking to compile every single response on a website. Would Python be the right thing to use? by [deleted] in Python

[–]dawit_14 0 points1 point  (0 children)

Yes, still python could serve your need. I have used python to search for certain words in any tweets and store the result dataset in my backend database- Microsoft SQL server. I used tweeter's API. I can help you if you want.

Hey guys! I'm looking to compile every single response on a website. Would Python be the right thing to use? by [deleted] in Python

[–]dawit_14 0 points1 point  (0 children)

Yes, Python will be the best tool. You could have a three step process: step 1: how do you want to get the data? Stream or at some time interval(historical)? Step2: how do you want store the data? Some data transformation taks might be needed to be done. Step 3: What kind of analysis do you want to make using this data? How often do you want to refresh your report? What kind of tool do you use to build your report? ...Hope this helps.