Python - API.create_block() in Tweepy Last Updated : 08 Jun, 2020 Comments Improve Suggest changes Like Article Like Report Twitter is a popular social network where users share messages called tweets. Twitter allows us to mine the data of any user using Twitter API or Tweepy. The data will be tweets extracted from the user. The first thing to do is get the consumer key, consumer secret, access key and access secret from twitter developer available easily for each user. These keys will help the API for authentication. API.create_block() The create_block() method of the API class in Tweepy module is used to block a user as the authenticated user. Syntax : API.create_block(id / screen_name / user_id) Parameters : Only use one of the 3 options: id : specifies the ID or the screen name of the user. user_id : specifies the ID of the user, useful to differentiate accounts when a valid user ID is also a valid screen name. screen_name : specifies the screen name of the user, useful to differentiate accounts when a valid screen name is also a user ID. Returns : an object of class User Example 1 : Consider the following user : Python3 1== # import the module import tweepy # assign the values accordingly consumer_key = "" consumer_secret = "" access_token = "" access_token_secret = "" # authorization of consumer key and consumer secret auth = tweepy.OAuthHandler(consumer_key, consumer_secret) # set access to user's access key and access secret auth.set_access_token(access_token, access_token_secret) # calling the api api = tweepy.API(auth) # the screen name of the user screen_name = "geeksforgeeks" # blocking the user api.create_block(screen_name) Output : Example 2 : Checking if the user has been blocked or not by the create_block() method. Python3 1== # ID of the user id = 4802800777 print("Before using the create_block() method : ") if api.show_friendship(target_id = id)[0].blocking == True: print("The user has been blocked by the authenticated user.") else: print("The user has not been blocked by the authenticated user.") # blocking the user api.create_block(id) print("\nAfter using the create_block() method : ") if api.show_friendship(target_id = id)[0].blocking == True: print("The user has been blocked by the authenticated user.") else: print("The user has not been blocked by the authenticated user.") Output : Before using the create_block() method : The user has not been blocked by the authenticated user. After using the create_block() method : The user has been blocked by the authenticated user. Create Quiz Comment Y Yash_R Follow 0 Improve Y Yash_R Follow 0 Improve Article Tags : Python Python-Tweepy Explore Python FundamentalsPython Introduction 2 min read Input and Output in Python 4 min read Python Variables 4 min read Python Operators 4 min read Python Keywords 2 min read Python Data Types 8 min read Conditional Statements in Python 3 min read Loops in Python - For, While and Nested Loops 5 min read Python Functions 5 min read Recursion in Python 4 min read Python Lambda Functions 5 min read Python Data StructuresPython String 5 min read Python Lists 4 min read Python Tuples 4 min read Python Dictionary 3 min read Python Sets 6 min read Python Arrays 7 min read List Comprehension in Python 4 min read Advanced PythonPython OOP Concepts 11 min read Python Exception Handling 5 min read File Handling in Python 4 min read Python Database Tutorial 4 min read Python MongoDB Tutorial 3 min read Python MySQL 9 min read Python Packages 10 min read Python Modules 3 min read Python DSA Libraries 15 min read List of Python GUI Library and Packages 3 min read Data Science with PythonNumPy Tutorial - Python Library 3 min read Pandas Tutorial 4 min read Matplotlib Tutorial 5 min read Python Seaborn Tutorial 3 min read StatsModel Library - Tutorial 3 min read Learning Model Building in Scikit-learn 6 min read TensorFlow Tutorial 2 min read PyTorch Tutorial 6 min read Web Development with PythonFlask Tutorial 8 min read Django Tutorial | Learn Django Framework 7 min read Django ORM - Inserting, Updating & Deleting Data 4 min read Templating With Jinja2 in Flask 6 min read Django Templates 5 min read Build a REST API using Flask - Python 3 min read Building a Simple API with Django REST Framework 3 min read Python PracticePython Quiz 1 min read Python Coding Practice 1 min read Python Interview Questions and Answers 15+ min read Like