All functions

Here is a list of all the functions that are on the documentation

from src.start import *
from src.scrapper import *

from os import system

def main():
    selenium_session = start_selenium()
    print("All the function of twitterscrapingapi")
    url = "https://twitter.com/MrBeast/status/1523674759925760000"
    block_an_user(selenium_session,"mrbeast")    
    unblock_an_user(selenium_session,"mrbeast")
    dm_an_user(selenium_session,"mrbeast","test")
    follower_list = get_list_of_my_followers(selenium_session)
    following_list = get_list_of_my_followings(selenium_session)
    homepage_tweet = get_list_of_homepage_tweet(selenium_session,100)
    my_mention = get_mention(selenium_session,10)
    change_bio(selenium_session,"Hello World"[::-1])
    change_name(selenium_session,"betatesteu76031")
    change_location(selenium_session,"python main.py")
    change_url(selenium_session,"google.com")
    change_profile_picture(selenium_session,"pic\profile_picture.jpg")
    change_banner(selenium_session,"pic\banner.jpg")
    comment_a_tweet(selenium_session,url,"Python is better than Java")
    comment_a_tweet_with_media(selenium_session,url,"Well Well Well","pic\picture.png","picture")
    comment_a_tweet_with_poll(selenium_session,url,"tutu",4,"toto","titi","tata","tyty",6,59,59)
    is_tweet_a_comment(selenium_session,url))
    is_tweet_exist(selenium_session,url+"blablapythonjavaisbadnotreallybudidk")
    tweet_info = get_tweet_info(selenium_session,url)
    like_a_tweet(selenium_session,url)
    unlike_a_tweet(selenium_session,url)
    check_if_tweet_liked(selenium_session,url)
    list_of_user_who_like_a_tweet = get_list_of_user_who_like_a_tweet(selenium_session,url,100)
    list_of_user_who_retweet_a_tweet = get_list_of_user_who_retweet_a_tweet(selenium_session,url,500)
    list_of_quote_of_a_tweet  = get_list_of_quote_of_a_tweet(selenium_session,url,20)
    list_of_comment_of_a_tweet = get_list_of_comment_of_a_tweet(selenium_session,url,30)
    retweet_a_tweet(selenium_session,url)
    unretweet_a_tweet(selenium_session,url)
    check_if_tweet_retweet(selenium_session,url)
    quote_a_tweet(selenium_session,url,"unit test go wooooo")
    quote_a_tweet_with_media(selenium_session,url,"burger kiiiiiiiing","pic/video.mp4","video")
    list_of_tweet = search_tweet(selenium_session,"concours min_retweets:200","top",50)
    trend = get_trend(selenium_session)
    make_a_tweet(selenium_session,"make a tweet")
    make_a_tweet_with_media(selenium_session,"toto","pic/video.mp4","video")
    make_a_tweet_with_poll(selenium_session,"tutu " + str(i),4,"toto","titi","tata","tyty",6,59,59)
    delete_a_tweet(selenium_session,url)
    bookmark_a_tweet(selenium_session,url)
    unbookmark_a_tweet(selenium_session,url)
    follow_an_account(selenium_session,"mrbeast")
    unfollow_an_account(selenium_session,"mrbeast")
    check_if_user_follow(selenium_session,"mrbeast"))
    get_user_info(selenium_session,"mrbeast")
    get_user_number_of_like(selenium_session,"mrbeast")
    get_user_number_of_media(selenium_session,"mrbeast")
    get_list_of_user_tweet(selenium_session,"elonmusk",10)
    get_list_of_user_retweet(selenium_session,"elonmusk",10)
    get_list_of_user_comment(selenium_session,"elonmusk",10)
    is_account_banned(selenium_session,"x")
    is_account_blocking_you(selenium_session,"x")
    is_account_existing(selenium_session,"x")
    is_account_private(selenium_session,"x")
    above_tweet_info = get_tweet_above(selenium_session,url)