Hi Doug, many appreciations! You are a real teacher that makes things smooth to understand.
@mjpender94433 жыл бұрын
Hi Doug. Really learning a lot from your ETL tutorial. I had a data mismatch problem for the date and drove myself crazy until I realized that you have a capital Y for the %Y-%m-%d .
@amritasrivastva Жыл бұрын
You are a great example of a good teacher! Learned so much from video. Thank you!
@arejoshi100910 ай бұрын
Really good example and explanation, I learned a lot. Thanks for sharing this class.
@ogechimaryann1082 Жыл бұрын
This is clear and concise. I love your teaching👍👍
@sajadsafarveisi45123 жыл бұрын
The talk really increased my knowledge. Thank you.
@Mahmoud-ys1kt2 жыл бұрын
It was great thank you We are waiting for more
@marc-antoinej-l18293 жыл бұрын
Very good presentation. Easy to understand.
@meanmedianandmoose92763 жыл бұрын
Glad it was helpful!
@mercydabbs33303 жыл бұрын
Thank you! I am just learning python but I can follow your very detailed explanation! Thanks!
@nocoldizTV3 жыл бұрын
This just saved my life thanks!
@nimrodr76753 жыл бұрын
That was extremely helpful and interesting! thanks for that! the left join part was interesting :) More videos and examples please
@eliotsygha94893 жыл бұрын
Thank a lot for the presentation, it has been very useful for building my data warehouse while BI course.
@DineshCTech Жыл бұрын
Excellent presentation!
@ernestoflores38737 ай бұрын
Beatifull!
@neonatal1233 жыл бұрын
Thank you Doug!
@maybenew7293 Жыл бұрын
WHAT A WORK!
@mkgm0012 жыл бұрын
Super tutorial Bro! Thanks
@darkknight02583 жыл бұрын
this is so cool, thank you so much
@meowreacti2 жыл бұрын
Tks a lot for this!
@tuandino69902 жыл бұрын
Thank you sir
@sanishthomas2858 Жыл бұрын
Nice ..but looks very complex code.. great work
@redfeather22sa2 жыл бұрын
Brilliant Video.!! Thank you ❤️ but what is that module you were referring to before 41:00 that accepts formulae and you can do a lot with ? Pandas ? Numpy,? Openpyxl ? Mongo or mundle I think it'd called (on medium recently ). I need to look it up on. Wait a sec I'll be back . No it can't be ... Mitosheet ??? Bamboolib?? I don't think so (but those are cool - have yet to try them. Need to reimport/merge my jupiter labs from the old machine & it's environment variables) . But Would be interested to know what you were referring to? Or did you just mean python itself ? (Which it does have? [Formulae ability ofcourse!]) . Definitely though tell me if you were referring to something else . All the best & thanks for your video - it was absolutely amazing . !!
@elduggio992 жыл бұрын
petl is the module we're using here, but the capabilities around excel are drawn from openpyxl.
@redfeather22sa2 жыл бұрын
@@elduggio99 ah !! Ok thank you !!
@MisterKorihor3 жыл бұрын
I'm not sure it's necessary to have all the try-except blocks. If an exception is thrown, and there is no try block surrounding it, then Python automatically aborts the script.
@elduggio993 жыл бұрын
That's a fair observation. For a one-shot ETL script like this it depends on who will be running the script and whether you want to provide friendlier feedback than a stack trace.
@ASHISH5170982 жыл бұрын
except block will let the user know exactly which block is not running in a user friendly message
@MisterKorihor2 жыл бұрын
@@ASHISH517098 If it's an error that the user can do something about, then I agree with you. But if the user is just going to forward the error to a programmer to fix, then a stack trace is perfectly adequate.
@nathangarst13102 жыл бұрын
This is so cool! This video is a bit beyond me though as a new Python learner, but I see the utility. I'm trying to move up in my analyst career. How do I learn this stuff? Should I go back to school for a BS in CS, or just learn by doing projects like this on my own?
@skinnymanolo44002 жыл бұрын
I think you’re better off self-learning as this is at most intermediate level python.
@WillB02123 жыл бұрын
This was awesome. Thank you so much for putting this together. May I ask a question?... I'm new to python. On line 35 when printing out the BOCResponse variable, you did print(BOCResponse.text)... what is the '.text' line or what does that refer to? Is that part of the Requests module or a function of the Requests Module?
@meanmedianandmoose92763 жыл бұрын
text is a property of the Response class in the Requests module, which BOCResponse is an instance of: docs.python-requests.org/en/master/api/#requests.Response.text
@WillB02123 жыл бұрын
@@meanmedianandmoose9276 Thank you for the reply!
@zberteoc Жыл бұрын
If you used the "join" instead of "outerjoin" you would not need the filtering step, "join" in PETL seems to be equivalent to SQL INNER JOIN while "outerjoin" to SQL LEFT JOIN.
@meanmedianandmoose9276 Жыл бұрын
Thanks for commenting! We can't use an inner join because the exchange rate API does not return a value for every date - weekends and holidays have no updates. We can have expenses on days without exchange data, so we first need to fill down to fix up missing values.
@zberteoc Жыл бұрын
@@meanmedianandmoose9276 got it. I think I missed the part where the "filldown" excel like functionality is explained.
@lequi3259 Жыл бұрын
Good
@dizetoot3 жыл бұрын
Hello, you mentioned near the beginning of the talk that you did a similar demo using SSIS on the exchange rate data and had shared the link in the chat. Could you share it here as well please?
@meanmedianandmoose92763 жыл бұрын
Sure thing: github.com/dsartori/SSIS-API-Demo
@dizetoot3 жыл бұрын
@@meanmedianandmoose9276 thanks!
@mohammedsafiahmed16392 жыл бұрын
Hi Doug, nice tutorial. However, I dont see anything that couldnt be achieved using pandas and requests primarily. Also, instead of doing the outer join and then filtering the rows that you dont want, couldnt we have just done a left join by keeping the expenses table as the left one? Would've made the code simpler.
@meanmedianandmoose92762 жыл бұрын
Hi Mohammed thanks for watching! We can't use a left join because the exchange rate API does not return a value for every date - weekends and holidays have no updates. We can have expenses on days without exchange data, so we first need to fill down to fix up missing values. Pandas could be used in this example because the dataset is very small, but it is not something I recommend for automated ETL as it is less memory-efficient than petl. Great tool for exploring data though.
@muhammadshoaibkhan23782 жыл бұрын
Can share some more api like this bank of Canada API, from where we can get the data?
@meanmedianandmoose92762 жыл бұрын
Check it out here: www.bankofcanada.ca/valet/docs
@arjunjadhav30623 жыл бұрын
I need to load ready API data into mongodb please make one video on that
@raulaguilar3023 Жыл бұрын
Hi Doug. Is not a good idea try to invent the hot water. There aré many tool in the market in order to create ETL in a very efficient way. Any way for Python teaching pourpouse Is a good exercice. Regards
@dingaroo20037 ай бұрын
Not all organizations will buy 3rd party etl tools
@joaopedrosenna13 жыл бұрын
petl is better than pandas to work with data transformation!