Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
My requirement is to send WhatsApp message to number present in the Mobile number column whenever a new user record is created in User table. This will be a welcome message.
When a new user register on the website, I need to send automated welcome message to the registered mobile number.
I tried https://www.geeksforgeeks.org/whatsapp-using-python/ but this is using selenium and need manual intervention to scan the QR code.
I am looking for a solution where no manual intervention should be there.
You can do this using Twilio Whatsapp API for python.
Refer this link:
https://www.twilio.com/docs/sms/whatsapp/quickstart/python
It is a fully automated process and does not require manual intervention unlike selenium.
Related
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 4 days ago.
Improve this question
Goodnight.
I'm developing a project that is a Web System for managing a company in which it will register customers and leads through an excel file, files that will contain 20k, 30k and even 60k. And I'm using FastAPI for the Back End.
I would like ideas on the best way to do this registration:
Use a Webhook: The API receives the file, copies the 60k data and sends it in JSON to a Webhook that will register in PostgreSQL.
Using the API: The API performs all registrations asynchronously, the user sends it through an asynchronous request using JavaScript to the API and it takes care of the rest, which can break the API?
Which option do you think is better? Share ideas with me.
At the moment I'm waiting for ideas to execute.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 days ago.
Improve this question
I have been trying to fetch live video streams from the twitch website with requests, but it does not consider me as a viewer as it does with people watching streams on the browser. What i want to know is that do we have to send periodic requests to twitch database to make it consider us as a viewer. If yes then how can i send periodic requests what would be format of each request and what headers and payload/data would i have to send. I am very new to this so plz help me out.
I tried sending sync periodic requests but it didn't work with it.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
I want to make a sms service(sms API) on python I don't how can I make this to send sms to every where?
You can use SMS services as AWS SNS or as mention Twilio or many others actually, any of those are paid services. In order to build your own web service, first, you need to have the hardware to do it. As a basic recommendation, you can use raspberry pi and a GMS hat, code a python script to handle the ATT commands required to send SMSs, and then you can wrap everything with an awesome API using again, python, to create your cloud SMS sender API.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I am trying to write a program in Python, so that I can use a Raspberry Pi to take hardware input and then do some IoT stuff as a result.
I'm comfortable with all the hardware stuff, and am pretty sure that I'll be able to figure out how to do Facebook posting and tweeting, but I also want to submit data into a webpage.
I don't have control of the webpage, access to the code or anything like that and it's going to be nigh-on impossible to get the access to the code so I'm relying on inspect element here to get any data which I need. I'm also not supposed to post the URL of the said webpage publicly, as it needs a login which I am not at liberty to release.
I want to interact with several features on the webpage, namely:
A mouse-over drop-down menu
A text entering field
A few buttons
I think that I need to do something with 'event listeners', but I'm unsure how to go about this; I have quite a lot of Python experience but not much web development knowledge.
Thanks
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
How can I make a Python script which checks if I have logged in the Facebook? If I haven't, it should log me in.
Being "logged in" to Facebook (or any system for that matter) is generally a contract between the server and the client - and not just a "flipped bit" on the server.
As an example, if you log into Facebook on you phone - you can't then pull up Facebook on your desktop machine and be logged in.
In short - no, I don't think so.