How to rotate PDF files with Python
6:37
How to merge PDF files with Python
7:50
Пікірлер
@vaibhavsrivastva1253
@vaibhavsrivastva1253 18 күн бұрын
*HELPFUL TIPS* (will update) :- 1. myVidCap = cv2.VideoCapture(0, cv2.CAP_DSHOW) # CAP_DSHOW api opens camera MUCH faster than CAP_MSMF, at least on Windows. 2. flippedHorizontal = cv2.flip(frame, 1) # Flipping the output about the Y-axis. cv2.imshow("Testing-Code-Scan", flippedHorizontal) # Change "frame" to the operation carried out on it.
@sashather
@sashather 25 күн бұрын
how would you scrape if there are no <a> tags? such as a login page usually does not have an anchor tag instead a button for navigation.
@SaiBaba-zi5my
@SaiBaba-zi5my Ай бұрын
Hey, man!! Can you help me in extracting the trending hashtags from the home page?
@tiffanyw3794
@tiffanyw3794 Ай бұрын
Can we change the font used
@chrizzchan6800
@chrizzchan6800 Ай бұрын
part 2??? and 3??
@goutvols103
@goutvols103 2 ай бұрын
I ran your code and added lots of print statements to understand where the code backtracks. It is the embedded solve() call which backtracks to the last known good row, column and then increments the counter by one (1).
@alayetmanel6986
@alayetmanel6986 2 ай бұрын
The request failed: Google returned a response with code 429
@alayetmanel6986
@alayetmanel6986 2 ай бұрын
i have an error 429 everytime how can i solve that ?
@kgoulas21
@kgoulas21 3 ай бұрын
Hi, This is great! May I ask if this would work with a Data Matrix?
@anandkajave8643
@anandkajave8643 3 ай бұрын
wonderful ❤, i have one question: what shall i donif i dont know stock list to choose? what if we want all other asset class? like ETFs Bond in our portfolio
@poppetx
@poppetx 4 ай бұрын
Thank you so much for the video! This is perfect for people trying to teach themselves alone. I saw another person posted their answers, so here's mine! :D # 1 - Room Area roomWidth = float(input("Width of your room in meters:")) roomLength = float(input("Length of your room in meters:")) roomArea = roomWidth * roomLength print(f"Your room is {roomArea} meters squared.") # 2 - Meal Cost Calculator mealCost = float(input("How much did your meal cost? $")) withTax = float((mealCost / 10 + mealCost)) afterTip = (mealCost * 0.15) + mealCost tax = withTax - mealCost tip = afterTip - mealCost total = mealCost + tax + tip print(f"For a ${mealCost:.2f} meal: \ Plus 10% Tax:{withTax:.2f} With 15% Tip:{afterTip:.2f} For a total of ${total:.2f}.") # 3 - Compound interest # (here i decided myself to take user input and use the compounded interest formula for any input) amtInvested = float(input("How much did you invest?")) #P interestRate = 0.075 # 7.5percent # r appliedPerPeriod = 1 # n amountOfYears = float(input("For how many years 2 calcul8?")) # t finalAmount = round(amtInvested * (1 + interestRate / appliedPerPeriod) ** (appliedPerPeriod * amountOfYears),2) print(f"Your balance after {amountOfYears} years would be ${finalAmount}") #A # 4 - VowelCount vowelList = ["a","e","i","o","u","A","E","I","O","U"] userInput = input("Enter a sentence to get the amount of vowels: ") vowelCount = 0 for letters in userInput: if letters in vowelList: vowelCount = vowelCount + 1 print(f"Your text contains {vowelCount} vowels") # 5 - Bill Calculator def billCalculator(): minutesUsed = float(input("How many minutes have you used?")) textsUsed = float(input("How many texts have u sent?")) gbDataUsed = float(input("How much data have you used?")) customerSupportServiceFee = 3 + (3 * 0.1) priceForMinutes = minutesUsed * 1.3 priceForTexts = textsUsed * 0.3 priceForData = gbDataUsed * 2 finalBill = priceForData + priceForMinutes + priceForTexts + customerSupportServiceFee while True: paidOnTimePrompt = input("Have you paid within 15 days? (Y/N)") if "Y" in paidOnTimePrompt: finalBill = finalBill - finalBill * 0.05 round(finalBill,2) print(f"Congratulations, you earned a discount! Your final bill is ${finalBill}") break elif "y" in paidOnTimePrompt: finalBill = finalBill - finalBill * 0.05 round(finalBill,2) print(f"Congratulations, you earned a discount! Your final bill is ${finalBill}") break elif "N" in paidOnTimePrompt: round(finalBill,2) print(f"You did not qualify for your discount this month. Your final bill is ${finalBill:.2f}") break elif "n" in paidOnTimePrompt: round(finalBill,2) print(f"You did not qualify for your discount this month. Your final bill is ${finalBill:.2f}") break else: print("Input error.") continue billCalculator() # 6 - Entrance fee (I skipped this one since I immediately knew how I would write it. I don't see much point in doing this after just doing #5, but I understand you wanted to vary the difficulty of them slightly!) # 7 - Longest word (Having only been learning for 10 days when doing this, I could not complete this one without looking up the answer, so I didn't) #8 - 100 tails flipped in x flips import random tailsCount = 0 headsCount = 0 iterations = 0 while tailsCount < 100: iterations = iterations + 1 coinFlip = random.randint(1,2) if coinFlip == 1: tailsCount = tailsCount + 1 #print("Tails!") elif coinFlip == 2: headsCount = headsCount + 1 #print("Heads") print(f" To get {tailsCount} tails flipped, it took {iterations}\ flips in total") # 9 - Taxi fare setFee = 4 distanceTraveled = float(input("How many kilometers was your journey?")) distanceFee = distanceTraveled * 2.4 totalFee = setFee + distanceFee print(f"Your total bill is ${totalFee:.2f}") # 10 - Delivery Fee Calculator orderPrice = float(input("How much did your order cost? $")) smallDeliveryFee = orderPrice * 0.05 + 5 mediumDeliveryFee = orderPrice * 0.02 + 10 largeDeliveryFee = orderPrice * 0.01 + 15 if orderPrice < 100: print(f"Order price: ${round(orderPrice,2):.2f} Delivery fee: ${round(smallDeliveryFee,2):.2f} Total cost: ${round(orderPrice + smallDeliveryFee,2):.2f}") elif orderPrice < 500 and orderPrice > 100: print(f"Order price: ${round(orderPrice,2):.2f} Delivery fee: ${round(mediumDeliveryFee,2):.2f} Total cost: ${round(orderPrice + mediumDeliveryFee,2):.2f}") elif orderPrice > 500: print(f"Order price: ${round(orderPrice,2):.2f} Delivery fee: ${round(largeDeliveryFee,2):.2f} Total cost: ${round(orderPrice + largeDeliveryFee,2):.2f}")
@user-cl9pv3jh9b
@user-cl9pv3jh9b 5 ай бұрын
can you tell how we can extract whatsapp number and email through twitter by using python?
@pawishrajhenar1103
@pawishrajhenar1103 5 ай бұрын
me sitting a foundation of ai video workshop and watching this video
@jamesbldwn1
@jamesbldwn1 6 ай бұрын
In similar to other comments, the get_balance_sheet function will return me an empty data frame, when I do the get_income_statement function, I get a 'string indices must be integers, not str'. I have been researching for answers to these problems and can't figure it out :(. Otherwise this video is great
@Animalreis
@Animalreis 7 ай бұрын
back ground press ?? help
@thaydatofficial
@thaydatofficial 7 ай бұрын
Your videos using python to analyze financial statements are very impressive and practical. Can you make a series of videos showing us how to choose any stock symbol on yahoo finance, the financial information of the stock chart in the form of graphs. For example, if you select the stock code FB, the revenue, profits and operating cash flow for 5 years will appear. Thank you very much
@emoryolsoff96
@emoryolsoff96 7 ай бұрын
Thank you so much.
@M1EEA
@M1EEA 8 ай бұрын
That's the most clear explanation i have found ❤
@nini9042
@nini9042 8 ай бұрын
at around 7:50, why can't we set the attributes as index then use .loc to find what we need?
@SarahAhmed-on2vy
@SarahAhmed-on2vy 8 ай бұрын
GREAT!!
@Lapusso650
@Lapusso650 8 ай бұрын
*does it appear Not “is it appearing”.
@dlmnoname
@dlmnoname 8 ай бұрын
Hi there. Thanks for this beautiful code. However I only get the results of the provided url, not the entire website. Any suggestions?
@aminedhaouadi7932
@aminedhaouadi7932 9 ай бұрын
i love you thank you so much you are my dad now
@lt-_yusf2833
@lt-_yusf2833 10 ай бұрын
Please how to crak tiwter or facebook in python please ❤
@ashishzarekar9599
@ashishzarekar9599 10 ай бұрын
For me this code prints original(unsolved) grid only, Could someone help me please?
@rafaelborda8097
@rafaelborda8097 10 ай бұрын
Hi Kostadin, I have a question... for what is it '[[]]' useful? I mean in 05:07 you write: data[[index]] but I dont understand the matter to do that instead of using only data[index]
@manasr3969
@manasr3969 10 ай бұрын
this dude is a legend. just what i was looking for. keep it coming
@hakankosebas2085
@hakankosebas2085 11 ай бұрын
you all multiply by 252 but in diffirent countries like türkiye, every year holidays are changing, isn't there a better solution like counting dates from the yahoo data??????? also some holidays can match to weekend in some years
@samuelbadders7783
@samuelbadders7783 11 ай бұрын
This is a great video. However a lot of the older functionality of the yfinance api is no longer available. For example, yf.tickers_sp500(), what's the best way to get all of this information?
@sayanhope5098
@sayanhope5098 11 ай бұрын
Can you do this also in R?
@markob2571
@markob2571 Жыл бұрын
What is numpy?
@vineetinamdar9572
@vineetinamdar9572 Жыл бұрын
I tried this code but it is saying invalid syntax and saying error in find_all('a') line
@maxparsons9431
@maxparsons9431 Жыл бұрын
I have the word cloud down, but I am attempting to do a list of names and wish for the first and last names to stay by each other even though there is a space, is that possible?
@miftahulhadi1007
@miftahulhadi1007 Жыл бұрын
Useful tutorial bro! I want to ask something, is there any way to extract daily search trends by a specific date? Thx a lot
@debleenadas1723
@debleenadas1723 Жыл бұрын
I am getting recurssion error. Can anyone help me out here?
@voil6161
@voil6161 Жыл бұрын
I hate tutorials like this. Whats the point of making a barcode scanner with Python if youre gonna import all of the code anyway. Theres no good tutorials out there. Everybody just imports everything and calls it a day.
@hezekiahadepoju7257
@hezekiahadepoju7257 Жыл бұрын
Does these codes work using PyportfolioOpt ?
@ramoses1
@ramoses1 Жыл бұрын
Your knowledge about the topic is clear, but please don't make the video so long, you are putting some information that is actually not important for the tutorial, it makes pretty painful to watch despite the good content.
@sanjayusha9536
@sanjayusha9536 Жыл бұрын
Can we like get the output of the trend data in Excel format...Don't know if I sound lame. Just asking as I believe programmers can do anything.
@umeshgupta7922
@umeshgupta7922 Жыл бұрын
Hi, very helpful for finance people, kindly explain how to add tickers along with weights. It is difficult segregate.
@cozyvibes6178
@cozyvibes6178 Жыл бұрын
Does this still work in June 2023?
@jamesmathew8428
@jamesmathew8428 Жыл бұрын
thank you for the video. I got an error while trying to run it. Empty DataFrame Columns: [] Index: []
@hobbyistmovement
@hobbyistmovement Жыл бұрын
Thanks a ton for this video.
@amulyaratna638
@amulyaratna638 Жыл бұрын
Thanks bro for such clear explanation
@goodluckoriuwa1669
@goodluckoriuwa1669 Жыл бұрын
Okay. What about sending them as notifications instead of direct messages
@goodluckoriuwa1669
@goodluckoriuwa1669 Жыл бұрын
Biiiiiiiiiiiiiiggggg fan
@goodluckoriuwa1669
@goodluckoriuwa1669 Жыл бұрын
Please do a video for Instagram followers and following, WhatsApp groups and Facebook groups as well using this technic
@goodluckoriuwa1669
@goodluckoriuwa1669 Жыл бұрын
Can we repeat this for Instagram Facebook groups and WhatsApp groups. Most importantly get the WhatsApp groups a user has joined. Imean this will be very good for social media proguct marketing. Don't you think so?
@goodluckoriuwa1669
@goodluckoriuwa1669 Жыл бұрын
So what is the better programmatic way of sending messages to all of the users using this python script?
@goodluckoriuwa1669
@goodluckoriuwa1669 Жыл бұрын
Can you do a video on how to send notifications to all of these followers usinf python