

{"id":111242,"date":"2022-12-20T16:04:53","date_gmt":"2022-12-20T10:34:53","guid":{"rendered":"https:\/\/data-flair.training\/blogs\/?p=111242"},"modified":"2026-06-01T14:38:11","modified_gmt":"2026-06-01T09:08:11","slug":"book-recommendation-system-machine-learning-project","status":"publish","type":"post","link":"https:\/\/data-flair.training\/blogs\/book-recommendation-system-machine-learning-project\/","title":{"rendered":"Book Recommendation System Machine Learning Project"},"content":{"rendered":"<div class='__iawmlf-post-loop-links' style='display:none;' data-iawmlf-post-links='[{&quot;id&quot;:2642,&quot;href&quot;:&quot;https:\\\/\\\/drive.google.com\\\/file\\\/d\\\/10LKhRLJayk5Mj5sWogr3IXECbnPGgM88\\\/view?usp=drive_link&quot;,&quot;archived_href&quot;:&quot;&quot;,&quot;redirect_href&quot;:&quot;&quot;,&quot;checks&quot;:[],&quot;broken&quot;:false,&quot;last_checked&quot;:null,&quot;process&quot;:&quot;done&quot;}]'><\/div>\n<p>With this Machine Learning Project, we build a book recommendation system. For this project, we will be using the KNearst Neighbor algorithm.<\/p>\n<p>So, let\u2019s build this system.<\/p>\n<h3>Book Recommendation System<\/h3>\n<p>When selling goods online, most businesses have their own recommendation system. However, almost all websites are not created with the customer in mind; businesses use them to force customers to purchase additional, irrelevant things. An individual user can select fascinating and practical things from a vast selection of products with the aid of a personalized recommendation system (PRS).<\/p>\n<p>Customers now have a wide range of possibilities for products from eCommerce sites because of the expansion of the internet. It can be difficult for customers to locate the ideal products at the ideal moment. Users can find books, news, movies, music, online courses, and research articles using a personalized recommendation system.<\/p>\n<p>Technological advances in areas like the internet of things (IoT), artificial intelligence (AI), quantum computing, etc., ushered in the fourth industrial revolution. The economic boom raises peoples&#8217; purchasing power and their level of living. Due to their busy schedules and the COVID-19 pandemic, physical trips to stores and libraries have significantly decreased in recent years. Instead, e-marketplaces and e-libraries grew to be well-liked gathering spaces.<\/p>\n<p>Users could find their favorite books from a wide selection thanks to e-book reading platforms and online shopping habits. Expert systems enable consumers to quickly and wisely choose among an unparalleled number of options. As a result, recommendation systems emerged to personalize users&#8217; searches and provide the most advantageous outcomes from various possibilities. Amazon first suggested a personalized suggestion system, which helped to increase sales from $9.9 billion to $12.83 billion in 2019 (the second fiscal quarter), which was 29% more than the previous year.<\/p>\n<p>A university library has thousands or millions of books. If readers only have a basic understanding of books, it is difficult to locate the books they require. It is also challenging for the library to utilize these books in paper form to their full potential. How can we make it easier for readers to find the books they want? And how can I use a library&#8217;s books to their fullest potential? These are formidable obstacles for a library.<\/p>\n<p>Some academics have implemented recommender systems for the library. Recommender systems offer users individualized suggestions for goods or services. Collaborative filtering is a method that is frequently employed (CF). CF is a method of forecasting a user&#8217;s preferences based on the preferences of several users. It solely relies on the user&#8217;s prior behavior data, and it has been very successful in a variety of fields, including many large and prosperous websites like Amazon and others.<\/p>\n<p>In order to create a book recommendation system, CF can be employed. In CF, the neighbor-based methods and latent factor models(LFM) are the two primary types. The LFM is a model-based CF approach that builds the data model using knowledge about the observed preferences. In order to deal with sparsity and forecast preferences that are not observed, it is built on the matrix factorization technique. LFM has more extensibility and forecast accuracy. By including biases and implicit feedback, SVD++ improves upon LFM&#8217;s accuracy. It benefits from both explicit and implicit input.<\/p>\n<h3>K-Nearest Neighbor<\/h3>\n<p>The K-Nearest Neighbor classifier compares a given test tuple with a group of training tuples that are comparable to it in order to recognize and classify patterns. One of the easiest techniques for resolving classification issues is the KNearest Neighbor (K-NN) algorithm, which frequently produces results that are competitive with other data mining techniques.<br \/>\n(1) Using similarity or distance to classify recommendations more quickly and accurately for the client.<br \/>\n(2) In order to produce a set of recommendations to the client more quickly, our recommendation engine gathers the clickstream data from the active users and matches it to a specific user&#8217;s group. Typically, the Euclidean distance between the training and test tuples is used by the K-Nearest Neighbor classifier.<\/p>\n<p>A user and book pair (UI, bj) is inputted into the k Nearest Neighbors algorithm, which produces a forecast of the unknown rating for book bj from user UI. There are two distinct approaches to applying the k Nearest Neighbors algorithm to the goal of predicting book ratings. One is based on users, and the other is based on items. Users who have rated book bj are all examined by user-based kNN, and it identifies the k co-rated users who are most similar to UI. The ratings of these k users, known as the k nearest neighbors of ui, are used to forecast UI&#8217;s rating of book bj on the basis that similar users tend to rate books similarly.<\/p>\n<p>In contrast, the item-based kNN first identifies the set of all the books that user UI has rated and then selects k books from this set that are most comparable to book bj (the k nearest neighbors, in this case, are these k most similar books). The ratings given by the user to these k closest neighbors are then utilized to forecast the user&#8217;s rating of the book bj. The item-based KNN&#8217;s underlying premise is that users have a tendency to evaluate comparable books similarly. Since the relationships between books are more static than the relationships between users, we chose to employ the item-based kNN.<\/p>\n<h3>Project Prerequisites<\/h3>\n<p>The requirement for this project is Python 3.6 on your computer. I have used Jupyter notebook for this project. You can use whatever you want.<br \/>\nThe required modules for this project are &#8211;<\/p>\n<ol>\n<li>Numpy(1.22.4) &#8211; pip install numpy<\/li>\n<li>Sklearn(1.1.1) &#8211; pip install sklearn<\/li>\n<li>Pandas(1.5.0) &#8211; pip install pandas<\/li>\n<\/ol>\n<p>That\u2019s all we need for our project.<\/p>\n<h3>Book Recommendation System<\/h3>\n<p>We provide the dataset and source for the book recommendation system project. The csv file contains the name of different books and the rating of every book. Please download book recommendation system project and data from the following link: <a href=\"https:\/\/drive.google.com\/file\/d\/10LKhRLJayk5Mj5sWogr3IXECbnPGgM88\/view?usp=drive_link\"><strong>Book Recommendation Project<\/strong><\/a><\/p>\n<h3>Steps to Implement<\/h3>\n<p>1. Import the modules and all the libraries we would require in this project. We will use Numpy, Pandas, and Seaborn in this project. We are also going to use sklearn in this project. So we have imported all the modules for that. We then read our dataset file and store it in a variable. We also imported sklearn because it contains the model we will use in the book recommendation system project.<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">import numpy as np#importing the numpy library\r\nimport pandas as pd#importing the pandas library\r\nimport seaborn as sns#importing the seaborn library\r\nimport matplotlib.pyplot as plt#importing the matplot library\r\n \r\ndataframe=pd.read_csv('dataset.csv', error_bad_lines=False)#reading the dataset\r\ndf=df.drop(['Unnamed: 12'], axis=1)#dropping the unnamed column\r\ndf.head()#printing the dataframe\r\n \r\nfrom sklearn.ensemble import RandomForestClassifier#importing the Random Forest classifier\r\n \r\nfrom sklearn.model_selection import train_test_split#importing the Random Forest classifier\r\nfrom sklearn.preprocessing import StandardScaler#importing the Standard Scalar\r\nfrom sklearn.metrics import accuracy_score, f1_score,confusion_matrix,classification_report#importing the confusion matrix and classification report\r\n<\/pre>\n<p>2. Here, we are doing some pre-processing of the data. We are taking the top ten books according to ratings and then we are sorting it in descending order. We are also sorting our dataset according to the authors&#8217; count and the average rating and we are storing it in the dataset.<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">top_ten_ratings=dataframe[dataframe['ratings_count']&gt;1000000]#getting the rows with most ratings\r\ntop_ten_ratings=top_ten_ratings.sort_values(by='ratings_count', ascending=False).head(10)#priting the sorted data\r\n \r\ndataframe=dataframe.sort_values('average_rating').reset_index()#sorting the dataframe according to average rating\r\ndataframe=dataframe.iloc[4:]\r\ndataframe.average_rating=dataframe.average_rating.astype(float)#changing the type to float\r\ndataframe=dataframe.iloc[4:]\r\ndataframe.num_pages=dataframe.num_pages.astype(float)#changing the type to float\r\n<\/pre>\n<p>3. Here we are copying our dataset into another variable we are extracting just the important features of the dataset. We take the rating and the languages and then we are concatenating both of these features and then we are storing it in another variable. At the end, we plot a bar chart of top 10 authors with most selling books.<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\"> \r\ndataframe2=dataframe.copy()\r\ndataframe2.loc[(dataframe2['average_rating']&gt;=0)&amp;(dataframe2['average_rating']&lt;=1),'rating between']=\"between 0 and 1\"#getting the rows with average rating between 0 and 1\r\ndataframe2.loc[(dataframe2['average_rating']&gt;1)&amp;(dataframe2['average_rating']&lt;=2),'rating between']=\"between 1 and 2\"#getting the rows with average rating between 1 and 2\r\ndataframe2.loc[(dataframe2['average_rating']&gt;2)&amp;(dataframe2['average_rating']&lt;=3),'rating between']=\"between 2 and 3\"#getting the rows with average rating between 2 and 3\r\ndataframe2.loc[(dataframe2['average_rating']&gt;3)&amp;(dataframe2['average_rating']&lt;=4),'rating between']=\"between 3 and 4\"#getting the rows with average rating between 3 and 4\r\ndataframe2.loc[(dataframe2['average_rating']&gt;4)&amp;(dataframe2['average_rating']&lt;=5),'rating between']=\"between 4 and 5\"#getting the rows with average rating between 4 and 5\r\ndataframe2.sort_values('average_rating')#sorting the dataframe\r\n \r\ndataframe_rating=pd.get_dummies(dataframe2['rating between'])\r\ndataframe_language=pd.get_dummies(dataframe2['language_code'])\r\nfeature_dataframe=pd.concat([dataframe_rating, dataframe_language, dataframe2['average_rating'], dataframe2['ratings_count']], axis=1)\r\n \r\n<\/pre>\n<p>4. Here we are creating our Random Forest Classifier. First, we are creating our testing and training dataset. For this, we are using the train_test_split function of the sklearn. Then we import our NearestNeighbors model, and then we pass our testing dataset into it. We are using the \u2018ball_tree\u2019 algorithm in our model. Then we are creating a function for bookRecom which will take the name of the book and then it will give us the suggestion for that book.<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">from sklearn.preprocessing import MinMaxScaler#importing the min max scalar\r\n \r\nminmax=MinMaxScaler()#creating instance of min max scalar\r\n \r\nfeature=minmax.fit_transform(feature) #fitting the feature to instance\r\nfrom sklearn.model_selection import train_test_split#importing the library for splitting the dataset\r\n \r\nmodel=neighbors.NearestNeighbors(n_neighbors=8, algorithm='ball_tree')#creating the model\r\n \r\nmodel.fit(feature) #fitting the model\r\n \r\ndist, book_id=model.kneighbors(feature)#getting the id of the book\r\ndef recommend_book(name):#defining function for book recom\r\n    list=[]#creating a book list\r\n    id=dataframe2[dataframe2['title']==name].index\r\n    id=id[0]\r\n    for books in book_id[id]:\r\n        list.append(dataframe2.loc[books].title)\r\n    return list\r\n \r\nresult=recommend_book('Warrior of the Light')#finding a book suggestion\r\nresult#printing the result\r\n \r\n \r\n<\/pre>\n<p><a href=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2022\/12\/book-recommendation-system-output.png\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-111244\" src=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2022\/12\/book-recommendation-system-output.png\" alt=\"book recommendation system output\" width=\"1920\" height=\"1080\" \/><\/a><\/p>\n<h3>Summary<\/h3>\n<p>A book recommendation system suggests books to users based on their interests, past reads, and ratings. It works just like the Amazon or Goodreads suggestion engine. This project helps users find new books to read and improves their experience on book websites or apps. It uses machine learning techniques like collaborative filtering, content-based filtering, or hybrid models.<\/p>\n<p>In this Machine Learning project, we built a book recommendation system. For this project, we used the KNearest Neighbor algorithm. We hope you have learned something new in this project.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>With this Machine Learning Project, we build a book recommendation system. For this project, we will be using the KNearst Neighbor algorithm. So, let\u2019s build this system. Book Recommendation System When selling goods online,&#46;&#46;&#46;<\/p>\n","protected":false},"author":1,"featured_media":111245,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[36],"tags":[27169,27171,27170,27168,27172,20697,22695],"class_list":["post-111242","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-machine-learning","tag-book-recommendation-machine-learning","tag-book-recommendation-ml-project","tag-book-recommendation-project","tag-book-recommendation-system","tag-book-recommendation-using-machine-learning","tag-machine-learning-project","tag-machine-learning-project-for-beginners"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Book Recommendation System Machine Learning Project - DataFlair<\/title>\n<meta name=\"description\" content=\"In this Machine Learning project, we develop book recommendation system using Python, NumPy, Pandas, KNearest Neighbor algorithm.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/data-flair.training\/blogs\/book-recommendation-system-machine-learning-project\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Book Recommendation System Machine Learning Project - DataFlair\" \/>\n<meta property=\"og:description\" content=\"In this Machine Learning project, we develop book recommendation system using Python, NumPy, Pandas, KNearest Neighbor algorithm.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/data-flair.training\/blogs\/book-recommendation-system-machine-learning-project\/\" \/>\n<meta property=\"og:site_name\" content=\"DataFlair\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/DataFlairWS\/\" \/>\n<meta property=\"article:published_time\" content=\"2022-12-20T10:34:53+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-06-01T09:08:11+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2022\/12\/machine-learning-project-book-recommendation-system.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"628\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"DataFlair Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@DataFlairWS\" \/>\n<meta name=\"twitter:site\" content=\"@DataFlairWS\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"DataFlair Team\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Book Recommendation System Machine Learning Project - DataFlair","description":"In this Machine Learning project, we develop book recommendation system using Python, NumPy, Pandas, KNearest Neighbor algorithm.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/data-flair.training\/blogs\/book-recommendation-system-machine-learning-project\/","og_locale":"en_US","og_type":"article","og_title":"Book Recommendation System Machine Learning Project - DataFlair","og_description":"In this Machine Learning project, we develop book recommendation system using Python, NumPy, Pandas, KNearest Neighbor algorithm.","og_url":"https:\/\/data-flair.training\/blogs\/book-recommendation-system-machine-learning-project\/","og_site_name":"DataFlair","article_publisher":"https:\/\/www.facebook.com\/DataFlairWS\/","article_published_time":"2022-12-20T10:34:53+00:00","article_modified_time":"2026-06-01T09:08:11+00:00","og_image":[{"width":1200,"height":628,"url":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2022\/12\/machine-learning-project-book-recommendation-system.webp","type":"image\/webp"}],"author":"DataFlair Team","twitter_card":"summary_large_image","twitter_creator":"@DataFlairWS","twitter_site":"@DataFlairWS","twitter_misc":{"Written by":"DataFlair Team","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/data-flair.training\/blogs\/book-recommendation-system-machine-learning-project\/#article","isPartOf":{"@id":"https:\/\/data-flair.training\/blogs\/book-recommendation-system-machine-learning-project\/"},"author":{"name":"DataFlair Team","@id":"https:\/\/data-flair.training\/blogs\/#\/schema\/person\/b49855299264df5e27e3ec6c2cd9fde9"},"headline":"Book Recommendation System Machine Learning Project","datePublished":"2022-12-20T10:34:53+00:00","dateModified":"2026-06-01T09:08:11+00:00","mainEntityOfPage":{"@id":"https:\/\/data-flair.training\/blogs\/book-recommendation-system-machine-learning-project\/"},"wordCount":1346,"commentCount":5,"publisher":{"@id":"https:\/\/data-flair.training\/blogs\/#organization"},"image":{"@id":"https:\/\/data-flair.training\/blogs\/book-recommendation-system-machine-learning-project\/#primaryimage"},"thumbnailUrl":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2022\/12\/machine-learning-project-book-recommendation-system.webp","keywords":["Book Recommendation machine learning","Book Recommendation ml project","Book Recommendation project","Book Recommendation System","Book Recommendation using machine learning","machine learning project","machine learning project for beginners"],"articleSection":["Machine Learning Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/data-flair.training\/blogs\/book-recommendation-system-machine-learning-project\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/data-flair.training\/blogs\/book-recommendation-system-machine-learning-project\/","url":"https:\/\/data-flair.training\/blogs\/book-recommendation-system-machine-learning-project\/","name":"Book Recommendation System Machine Learning Project - DataFlair","isPartOf":{"@id":"https:\/\/data-flair.training\/blogs\/#website"},"primaryImageOfPage":{"@id":"https:\/\/data-flair.training\/blogs\/book-recommendation-system-machine-learning-project\/#primaryimage"},"image":{"@id":"https:\/\/data-flair.training\/blogs\/book-recommendation-system-machine-learning-project\/#primaryimage"},"thumbnailUrl":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2022\/12\/machine-learning-project-book-recommendation-system.webp","datePublished":"2022-12-20T10:34:53+00:00","dateModified":"2026-06-01T09:08:11+00:00","description":"In this Machine Learning project, we develop book recommendation system using Python, NumPy, Pandas, KNearest Neighbor algorithm.","breadcrumb":{"@id":"https:\/\/data-flair.training\/blogs\/book-recommendation-system-machine-learning-project\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/data-flair.training\/blogs\/book-recommendation-system-machine-learning-project\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/data-flair.training\/blogs\/book-recommendation-system-machine-learning-project\/#primaryimage","url":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2022\/12\/machine-learning-project-book-recommendation-system.webp","contentUrl":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2022\/12\/machine-learning-project-book-recommendation-system.webp","width":1200,"height":628,"caption":"machine learning project book recommendation system"},{"@type":"BreadcrumbList","@id":"https:\/\/data-flair.training\/blogs\/book-recommendation-system-machine-learning-project\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog Home","item":"https:\/\/data-flair.training\/blogs\/"},{"@type":"ListItem","position":2,"name":"Machine Learning Tutorials","item":"https:\/\/data-flair.training\/blogs\/category\/machine-learning\/"},{"@type":"ListItem","position":3,"name":"Book Recommendation System Machine Learning Project"}]},{"@type":"WebSite","@id":"https:\/\/data-flair.training\/blogs\/#website","url":"https:\/\/data-flair.training\/blogs\/","name":"DataFlair","description":"Learn Today. Lead Tomorrow.","publisher":{"@id":"https:\/\/data-flair.training\/blogs\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/data-flair.training\/blogs\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/data-flair.training\/blogs\/#organization","name":"DataFlair","url":"https:\/\/data-flair.training\/blogs\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/data-flair.training\/blogs\/#\/schema\/logo\/image\/","url":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2016\/07\/Data-Flair.png","contentUrl":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2016\/07\/Data-Flair.png","width":106,"height":48,"caption":"DataFlair"},"image":{"@id":"https:\/\/data-flair.training\/blogs\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/DataFlairWS\/","https:\/\/x.com\/DataFlairWS","https:\/\/www.linkedin.com\/company\/dataflair-web-services-pvt-ltd\/","https:\/\/www.youtube.com\/user\/DataFlairWS"]},{"@type":"Person","@id":"https:\/\/data-flair.training\/blogs\/#\/schema\/person\/b49855299264df5e27e3ec6c2cd9fde9","name":"DataFlair Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ef46b745ddad2fad690af626c6ef29b91809ad0a9f5ef398d07817d8cad042f5?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ef46b745ddad2fad690af626c6ef29b91809ad0a9f5ef398d07817d8cad042f5?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ef46b745ddad2fad690af626c6ef29b91809ad0a9f5ef398d07817d8cad042f5?s=96&d=mm&r=g","caption":"DataFlair Team"},"description":"DataFlair Team is a group of passionate educators and industry experts dedicated to providing high-quality online learning resources on programming, Java, Python, C++, DSA, AI, ML, data Science, Android, Flutter, MERN, Web Development, and technology. With years of experience in the field, the team aims to simplify complex topics and help learners advance their careers. At DataFlair, we believe in empowering students and professionals with the knowledge and skills needed to thrive in today\u2019s fast-paced tech industry. Follow us for Free courses, expert insights, tutorials, and practical tips to boost your learning journey.","url":"https:\/\/data-flair.training\/blogs\/author\/datafbdad\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/posts\/111242","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/comments?post=111242"}],"version-history":[{"count":6,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/posts\/111242\/revisions"}],"predecessor-version":[{"id":148737,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/posts\/111242\/revisions\/148737"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/media\/111245"}],"wp:attachment":[{"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/media?parent=111242"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/categories?post=111242"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/tags?post=111242"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}