@@ -38,7 +38,7 @@ To update:
3838
3939`` pip install Twitter_Frontend_API --upgrade ``
4040
41- Tested on Python 3.8.
41+ Tested on Python 3.9.0
4242
4343## Usage
4444
@@ -61,6 +61,56 @@ print(api.user_search("Text"))
6161print (api.screenname_available(" Screenname" ))
6262```
6363
64+ ``` python
65+ from Twitter_Frontend_API import API
66+
67+ api = API(auth)
68+
69+ print (api.update_status(" Text" ))
70+ print (api.update_status(" Text" , conversation_control = 2 , in_reply_to_status_id = " 1335886771968741377" , card_uri = " card://1338528317587124224" ))
71+ print (api.destroy_status(" 1335886771968741377" ))
72+ print (api.create_favorite(" 1335886771968741377" ))
73+ print (api.destroy_favorite(" 1335886771968741377" ))
74+ print (api.retweet(" 1335886771968741377" ))
75+ print (api.unretweet(" 1335886771968741377" ))
76+ print (api.create_friendship(screen_name = " Twitter" )) # print(api.create_friendship(user_id="783214"))
77+ print (api.destroy_friendship(screen_name = " Twitter" )) # print(api.destroy_friendship(user_id="783214"))
78+ print (api.notifications())
79+ print (api.pin_tweet(" 1335886771968741377" ))
80+ print (api.change_id(" Screen_name" ))
81+ print (api.topic_follow(" 847896929698668544" ))
82+ print (api.topic_unfollow(" 847896929698668544" ))
83+ print (api.followed_topics(" 1323603354165993472" ))
84+ print (api.not_interested_topics())
85+ print (api.recommendations())
86+ print (api.lists_all(" 1323603354165993472" ))
87+ print (api.create_list(" ListName" , private = " False" , description = " " ))
88+ print (api.destroy_list(" 1337433856673075206" ))
89+ print (api.update_list(" 1326095394959360001" , name = " NameList" , private = " True" , description = " Text" ))
90+ print (api.add_list_member(" 1326095394959360001" , " 1323603354165993472" ))
91+ print (api.remove_list_member(" 1326095394959360001" , " 1323603354165993472" ))
92+ print (api.list_members(" 1326095394959360001" ))
93+ print (api.create_card(4 , " 5" , one = " Hello" , two = " World" , three = " !" , four = " byPython" )
94+ print (api.Twitter_Web_Client(" Text" , place_id = " fc6282dff859b848" , authenticity_token = None ))
95+ print (api.add_bookmark(" 1335886771968741377" ))
96+ print (api.mute_conversation(" 1335886771968741377" ))
97+ print (api.unmute_conversation(" 1335886771968741377" ))
98+ print (api.verify_password(" password" ))
99+ print (api.account_data(verify = None , password = " password" ))
100+ print (api.private(" true" ))
101+ print (api.gender(" male" ))
102+ print (api.protect_password_reset(" password" , protect = " true" ))
103+ print (api.session_revoke(" KRJlliMG5b61wbuY4f70nk6TylRkYPJaMmCLT5eiQe8=" ))
104+ print (api.sessions_revoke_all())
105+ print (api.allow_media_tagging(" all" ))
106+ print (api.nsfw(" true" ))
107+ print (api.geo_enabled(" true" ))
108+ print (api.geo_delete())
109+ print (api.display_sensitive_media(" true" ))
110+ print (api.twitter_interests())
111+ print (api.set_explore(" true" ))
112+ ```
113+
64114# # Donate
65115
66116Bitcoin Address
0 commit comments