I need to build a script that connects with my facebook page, Youtube account and Instagram Account.Script should be able to run 24h/ day and check if I'm receiving comments in one of those accounts.Per each comment received it should call my function with the comment received. My function will return a comment to reply. Reply should be published.
Question
I need to build a script that connects with my facebook page, Youtube account and Instagram Account.Script should be able to run 24h/ day and check if I'm receiving comments in one of those accounts.Per each comment received it should call my function with the comment received. My function will return a comment to reply. Reply should be published.
Solution
Sure, I can do that. Please provide the text you want me to respond to.
Similar Questions
write a python code making a login page like instagram
PHP script can perform the following functions:Question 15Select one:a.Generate an email to one or more receipients.b.Insert data into a databasec.Display data from a databased.All of the above
How should you create an application that monitors the comments on your company's web site and flags any negative posts? Use the Azure AI Language service to extract key phrases.Use the Azure AI Language service to perform sentiment analysis of the comments.Use the Azure AI Language service to extract named entities from the comments.
0. How many subs?mandatoryWrite a function that queries the Reddit API and returns the number of subscribers (not active users, total subscribers) for a given subreddit. If an invalid subreddit is given, the function should return 0.Hint: No authentication is necessary for most features of the Reddit API. If you’re getting errors related to Too Many Requests, ensure you’re setting a custom User-Agent.Requirements:Prototype: def number_of_subscribers(subreddit)If not a valid subreddit, return 0.NOTE: Invalid subreddits may return a redirect to search results. Ensure that you are not following redirects.wintermancer@lapbox ~/reddit_api/project $ cat 0-main.py#!/usr/bin/python3"""0-main"""import sysif __name__ == '__main__': number_of_subscribers = __import__('0-subs').number_of_subscribers if len(sys.argv) < 2: print("Please pass an argument for the subreddit to search.") else: print("{:d}".format(number_of_subscribers(sys.argv[1])))wintermancer@lapbox ~/reddit_api/project $ python3 0-main.py programming756024wintermancer@lapbox ~/reddit_api/project $ python3 0-main.py this_is_a_fake_subreddit0
Create a class named MovieManagementSystem (MMS) with the following data members: MovieName, MovieRating (which could be "under 13", "PG", etc.), and MovieComments. The MovieName and MovieRating should be fixed by the programmer using constructor and mutator functions (setter ()) for 10 movies. Implement functionality to save this data in a "MMS.txt" file. Additionally, prompt the user to provide comments for the movies and store those comments in the data member MovieComments, saving them in a "Comments.txt" file along with MovieName. For comment purposes, show the contents of "MMS.txt" to the user and take his comments/opinions about any movie of his choice. You can take/save comments on movies having fewer than 5 comments overall. In the end, Display the Content of Both files on the screen if the user wants to see the data. (Use a Menu-driven Program). C++
Upgrade your grade with Knowee
Get personalized homework help. Review tough concepts in more detail, or go deeper into your topic by exploring other relevant questions.