{"id":85378,"date":"2021-11-10T12:33:45","date_gmt":"2021-11-10T07:03:45","guid":{"rendered":"https:\/\/techvidvan.com\/tutorials\/?p=85378"},"modified":"2026-06-03T15:57:04","modified_gmt":"2026-06-03T10:27:04","slug":"python-pin-your-sticky-notes","status":"publish","type":"post","link":"https:\/\/techvidvan.com\/tutorials\/python-pin-your-sticky-notes\/","title":{"rendered":"Pin Your Notes in Python &#8211; Sticky Notes Project"},"content":{"rendered":"<p>Notes taking is a way of keeping key information \u2018noted\u2019 down for reminders, tasks, etc. This avoids us from forgetting important tasks to do, thereby keeping us updated with what has to be done. Let us see a simple implementation of the Pin Your Note or sticky notes project using python.<\/p>\n<h3>Python Sticky Notes project:<\/h3>\n<p>To implement the project, we need a database and an optional user interface. Python comes with a built-in database, SQLite3. Hence we make use of the package to store and access our notes.<\/p>\n<h3>Project Prerequisites:<\/h3>\n<p>The project requires no installation of any extra libraries. Tkinter, for the user interface and SQlite3 are built in.<\/p>\n<h3>Download Sticky Notes Python Project Code:<\/h3>\n<p>Please download the source code of python pin your notes from the following link: <a href=\"https:\/\/drive.google.com\/file\/d\/1SsvN3EnwXnSPHrby3XUU8ctxFW1VuTSQ\/view?usp=drive_link\"><b>Sticky Notes Python Project<\/b><\/a><\/p>\n<h3>Project File Structure:<\/h3>\n<p>Below is the flow of the pin your notes python project.<\/p>\n<p>1. Importing necessary libraries<br \/>\n2. Creating a connection with the database and creating a table<br \/>\n3. Declaring functions to take, edit, view and delete notes<br \/>\n4. Creating a user interface<\/p>\n<h4>1. Importing necessary libraries:<\/h4>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">#Pin Your Note -TechVidvan\r\n#Import Necessary modules\r\nimport sqlite3 as sql\r\nfrom tkinter import *\r\nfrom tkinter import messagebox\r\n<\/pre>\n<p><strong>Code Explanation:<\/strong><\/p>\n<ul>\n<li><strong>import sqlite3 as sql:<\/strong> To use a database to store and retrieve our sticky notes, we use SQlite3.<\/li>\n<li><strong>from tkinter import *:<\/strong> To create the user interface, we make use of Tkinter. Tkinter contains widgets and input text fields to create an interactive user interface.<\/li>\n<li><strong>from tkinter import messagebox:<\/strong> To display the user with prompts such as information popups, warnings and question popups, we use messagebox.<\/li>\n<\/ul>\n<h4>2. Creating a connection with the database and creating a table:<\/h4>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\"># Create database connection and connect to table\r\ntry:\r\n       con = sql.connect('pin_your_note.db')\r\n       cur = con.cursor()\r\n       cur.execute('''CREATE TABLE notes_table\r\n                        (date text, notes_title text, notes text)''')\r\nexcept:\r\n       print(\"Connected to table of database\")\r\n<\/pre>\n<p><strong>Code explanation:<\/strong><\/p>\n<ul>\n<li><strong>con = sql.connect(&#8216;pin_your_note.db&#8217;):<\/strong> Create a database to contain our table(s). Connect function connects to a database. It creates one if the database does not exist.<\/li>\n<li><strong>cur = con.cursor():<\/strong> Cursor is an object that we can use to implement various functions such as execution of a query or fetching of results and so on.<\/li>\n<li><strong>cur.execute():<\/strong> Execute executes or performs the SQL statement given to it. Here we make it create a table, \u201cNotes_table\u201d with 3 columns date, notes_title and notes each of the type text. Text data type accepts numbers, symbols and letters<\/li>\n<li><strong>try&#8230;except:<\/strong> We put the database connection and the table creation in the try&#8230;except statement to use the table if it exists or create it.<\/li>\n<\/ul>\n<h4>3. Declaring functions to take, edit, view and delete notes:<\/h4>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\"># Insert a row of data\r\ndef add_notes():\r\n       #Get input values\r\n       today = date_entry.get()\r\n       notes_title = notes_title_entry.get()\r\n       notes = notes_entry.get(\"1.0\", \"end-1c\")\r\n       #Raise a prompt for missing values\r\n       if (len(today) &lt;=0) &amp; (len(notes_title)&lt;=0) &amp; (len(notes)&lt;=1):\r\n               messagebox.showerror(message = \"ENTER REQUIRED DETAILS\" )\r\n       else:\r\n       #Insert into the table\r\n               cur.execute(\"INSERT INTO notes_table VALUES ('%s','%s','%s')\" %(today, notes_title, notes))\r\n               messagebox.showinfo(message=\"Note added\")\r\n       #Commit to preserve the changes\r\n               con.commit()\r\n<\/pre>\n<p><strong>Code Explanation:<\/strong><\/p>\n<ul>\n<li><strong>def add_notes():<\/strong> Declaration of the function to add notes to the database<br \/>\ntoday, notes_title, notes: Obtain the input provided by the user using get() function. For entry widget, get() does not contain any parameters, whereas we need to specify the index for a text widget (1.0 to end-1c)<\/li>\n<li><strong>if&#8230;else:<\/strong> Check if the user provided all the inputs or raise an error using messagebox.showerror() where the message parameter<\/li>\n<li>+r indicates the message to display to the user. If all the inputs are present, then execute the SQL query to insert the inputs into the table. Use formatting operator %s to replace inputs in the required fields<\/li>\n<li><strong>con.commit():<\/strong>To preserve the changes in the database (keep it permanent), use commit.<\/li>\n<\/ul>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">#Display all the notes\r\ndef view_notes():\r\n       #Obtain all the user input\r\n       date = date_entry.get()\r\n       notes_title = notes_title_entry.get()\r\n       #If no input is given, retrieve all notes\r\n       if (len(date) &lt;=0) &amp; (len(notes_title)&lt;=0):\r\n               sql_statement = \"SELECT * FROM notes_table\"\r\n              \r\n       #Retrieve notes matching a title\r\n       elif (len(date) &lt;=0) &amp; (len(notes_title)&gt;0):\r\n               sql_statement = \"SELECT * FROM notes_table where notes_title ='%s'\" %notes_title\r\n       #Retrieve notes matching a date\r\n       elif (len(date) &gt;0) &amp; (len(notes_title)&lt;=0):\r\n               sql_statement = \"SELECT * FROM notes_table where date ='%s'\"%date\r\n       #Retrieve notes matching the date and title\r\n       else:\r\n               sql_statement = \"SELECT * FROM notes_table where date ='%s' and notes_title ='%s'\" %(date, notes_title)\r\n              \r\n       #Execute the query\r\n       cur.execute(sql_statement)\r\n       #Obtain all the contents of the query\r\n       row = cur.fetchall()\r\n       #Check if none was retrieved\r\n       if len(row)&lt;=0:\r\n               messagebox.showerror(message=\"No note found\")\r\n       else:\r\n               #Print the notes\r\n               for i in row:\r\n                       messagebox.showinfo(message=\"Date: \"+i[0]+\"\\nTitle: \"+i[1]+\"\\nNotes: \"+i[2])\r\n<\/pre>\n<p><strong>Code Explanation:<\/strong><\/p>\n<ul>\n<li><strong>def view_notes():<\/strong> Declaration of the function to view sticky notes in the database<\/li>\n<li><strong>date, notes_title:<\/strong> Read the user input given in the entry widgets<\/li>\n<li><strong>(len(date) &lt;=0) &amp; (len(notes_title)&lt;=0):<\/strong> If the user does not give any input, then display all the notes from the table using the SQL query: Select * from notes_table<\/li>\n<li><strong>(len(date) &lt;=0) &amp; (len(notes_title)&gt;0):<\/strong> Retrieve notes containing the given title by adding a where statement in the SQL query. The where statement is a test condition that selects queries or rows containing the title<\/li>\n<li><strong>(len(date) &gt;0) &amp; (len(notes_title) &lt;=0):<\/strong> Retrieve notes containing the given title by adding a where statement in the SQL query. Here the where statement selects queries or rows containing the date<\/li>\n<li><strong>else:<\/strong> Retrieve queries containing the given date and the title. To add two or more test conditions, we use AND or OR. AND returns results that satisfy test condition 1 and the other N test conditions, whereas OR returns results that satisfy at least 1 test condition of the N conditions.<\/li>\n<li><strong>cur.execute(sql_statement):<\/strong> Execute the select statement that passes through the conditions<\/li>\n<li><strong>row = cur.fetchall():<\/strong> Fetchall is analogous to select all and it returns a list containing all the queries matching the selection query in a tuple data structure.<\/li>\n<li><strong>if len(row)&lt;=0:<\/strong> Check if the query contains any result to display. If there is none, prompt an error, else display the result by looping through the list of tuples.<\/li>\n<\/ul>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">#Delete the notes\r\ndef delete_notes():\r\n            #Obtain input values\r\n       date = date_entry.get()\r\n       notes_title = notes_title_entry.get()\r\n       #Ask if user wants to delete all notes\r\n       choice = messagebox.askquestion(message=\"Do you want to delete all notes?\")\r\n       #If yes is selected, delete all\r\n       if choice == 'yes':\r\n               sql_statement = \"DELETE FROM notes_table\" \r\n       else:\r\n       #Delete notes matching a particular date and title\r\n               if (len(date) &lt;=0) &amp; (len(notes_title)&lt;=0): \r\n                       #Raise error for no inputs\r\n                       messagebox.showerror(message = \"ENTER REQUIRED DETAILS\" )\r\n                       return\r\n               else:\r\n                      sql_statement = \"DELETE FROM notes_table where date ='%s' and notes_title ='%s'\" %(date, notes_title)\r\n       #Execute the query\r\n       cur.execute(sql_statement)\r\n       messagebox.showinfo(message=\"Note(s) Deleted\")\r\n       con.commit()\r\n<\/pre>\n<p><strong>Code explanation:<\/strong><\/p>\n<ul>\n<li><strong>def delete_notes():<\/strong> Declaration of the function delete_notes() to delete notes in pin your notes application<\/li>\n<li><strong>date, notes_title:<\/strong> Read user input for date and title of the note<\/li>\n<li><strong>choice:<\/strong> Ask the user if he wants to delete all notes or only certain notes. If the user selects yes, then delete all notes. Otherwise check if the user gave the date and title of the note to delete and execute the query to delete the note. Commit the changes to the database<\/li>\n<\/ul>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">#Update the notes\r\ndef update_notes():\r\n       #Obtain user input\r\n       today = date_entry.get()\r\n       notes_title = notes_title_entry.get()\r\n       notes = notes_entry.get(\"1.0\", \"end-1c\")\r\n       #Check if input is given by the user\r\n       if (len(today) &lt;=0) &amp; (len(notes_title)&lt;=0) &amp; (len(notes)&lt;=1):\r\n               messagebox.showerror(message = \"ENTER REQUIRED DETAILS\" )\r\n       #update the note\r\n       else:\r\n               sql_statement = \"UPDATE notes_table SET notes = '%s' where date ='%s' and notes_title ='%s'\" %(notes, today, notes_title)\r\n              \r\n       cur.execute(sql_statement)\r\n       messagebox.showinfo(message=\"Note Updated\")\r\n       con.commit()\r\n<\/pre>\n<p><strong>Code explanation:<\/strong><\/p>\n<ul>\n<li><strong>def update_notes():<\/strong> Declaration of the function update_notes() to update sticky notes<\/li>\n<li><strong>today, notes_title, notes:<\/strong> Read user input for date, title of the note and the note<\/li>\n<li><strong>(len(today) &lt;=0) &amp; (len(notes_title)&lt;=0) &amp; (len(notes)&lt;=1):<\/strong> Check if the user gave all the inputs. Raise an error, if not or execute the update statement to update the notes. Commit the changes to the database<\/li>\n<\/ul>\n<h4>4. Creating a user interface for Python Pin Your Note Project:<\/h4>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">#Invoke call to class to view a window\r\nwindow = Tk()\r\n#Set dimensions of window and title\r\nwindow.geometry(\"500x300\")\r\nwindow.title(\"Pin Your Note -TechVidvan\")\r\n \r\ntitle_label = Label(window, text=\"Pin Your Note -TechVidvan\").pack()\r\n#Read inputs\r\n#Date input\r\ndate_label = Label(window, text=\"Date:\").place(x=10,y=20)\r\ndate_entry = Entry(window,  width=20)\r\ndate_entry.place(x=50,y=20)\r\n#Notes Title input\r\nnotes_title_label = Label(window, text=\"Notes title:\").place(x=10,y=50)\r\nnotes_title_entry = Entry(window,  width=30)\r\nnotes_title_entry.place(x=80,y=50)\r\n#Notes input\r\nnotes_label = Label(window, text=\"Notes:\").place(x=10,y=90)\r\nnotes_entry = Text(window, width=50,height=5)\r\nnotes_entry.place(x=60,y=90)\r\n \r\n#Perform notes functions\r\nbutton1 = Button(window,text='Add Notes', bg = 'Turquoise',fg='Red',command=add_notes).place(x=10,y=190)\r\nbutton2 = Button(window,text='View Notes', bg = 'Turquoise',fg='Red',command=view_notes).place(x=110,y=190)\r\nbutton3 = Button(window,text='Delete Notes', bg = 'Turquoise',fg='Red',command=delete_notes).place(x=210,y=190)\r\nbutton4 = Button(window,text='Update Notes', bg = 'Turquoise',fg='Red',command=update_notes).place(x=320,y=190)\r\n \r\n#close the app\r\nwindow.mainloop()\r\ncon.close()\r\n<\/pre>\n<p><strong>Code explanation:<\/strong><\/p>\n<ul>\n<li><strong>window = Tk():<\/strong> Initialise the window with tkinter constructor to use the objects and widgets<\/li>\n<li><strong>window.geometry(&#8220;500&#215;300&#8221;): <\/strong>Set the dimensions of the window by specifying the dimensions of the width and the height of the window.<\/li>\n<li><strong>window.title():<\/strong> Add a title to the window using the title parameter<\/li>\n<li><strong>title_label:<\/strong> Title label indicates the title of the application. It displays a text that cannot be copied or edited. Position the element on the window to make it visible. Here we use a pack, which centers the element in the first row. So the widget remains centered regardless of the window size<br \/>\ndate_label, notes_title_label, notes_label: Define a label with the<\/li>\n<li><strong>parameters:<\/strong> window of the screen and the text to display.<br \/>\ndate_entry, notes_title_entry: Entry widget is an input field to obtain user input. Specify the width of the widget using the width parameter.<\/li>\n<li><strong>notes_entry:<\/strong> Text widget is another input field to obtain user input. Use this widget to obtain long lines of text from the user. Specify the height and width of the text box.<\/li>\n<li><strong>place():<\/strong> Place is another positioning element analogous to pack(). Here we specify the distance from the left margin and the top margin in the x and y coordinates respectively.<br \/>\nbutton1, button2, button3, button4: Buttons perform a function when the user selects it. The parameters are window of the application, name of the button, background colour of the application, text colour using the foreground and the function call is invoked using command parameter.<\/li>\n<li><strong>window.mainloop():<\/strong> When the user terminates the application, the control flows beyond this line thereby terminating the application. Widgets placed after this line will not be displayed<\/li>\n<li><strong>con.close():<\/strong> Close the connection with the database<\/li>\n<\/ul>\n<h3>Python Sticky Notes Output<\/h3>\n<p>Run the sticky notes python program and view the output:<\/p>\n<p><a href=\"https:\/\/techvidvan.com\/tutorials\/wp-content\/uploads\/sites\/2\/2021\/10\/python-sticky-notes-output.webp\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-85545\" src=\"https:\/\/techvidvan.com\/tutorials\/wp-content\/uploads\/sites\/2\/2021\/10\/python-sticky-notes-output.webp\" alt=\"python sticky notes output\" width=\"1366\" height=\"696\" \/><\/a><\/p>\n<h3>Summary<\/h3>\n<p>Thus we found a way to implement a notes taker in python. This Pin your Note project of Python is an introduction to querying using SQLite and creation of a user interface using Tkinter.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Notes taking is a way of keeping key information \u2018noted\u2019 down for reminders, tasks, etc. This avoids us from forgetting important tasks to do, thereby keeping us updated with what has to be done.&#46;&#46;&#46;<\/p>\n","protected":false},"author":1,"featured_media":85546,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1053],"tags":[4491,483,4492,4493],"class_list":["post-85378","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-python","tag-python-pin-your-note-project","tag-python-project","tag-python-sticky-notes","tag-sticky-notes"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.7 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Pin Your Notes in Python - Sticky Notes Project - TechVidvan<\/title>\n<meta name=\"description\" content=\"Develop Pin Your Note project - Sticky Notes using python in easy steps using TKinter library. Source Code is available for your help.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/techvidvan.com\/tutorials\/python-pin-your-sticky-notes\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Pin Your Notes in Python - Sticky Notes Project - TechVidvan\" \/>\n<meta property=\"og:description\" content=\"Develop Pin Your Note project - Sticky Notes using python in easy steps using TKinter library. Source Code is available for your help.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/techvidvan.com\/tutorials\/python-pin-your-sticky-notes\/\" \/>\n<meta property=\"og:site_name\" content=\"TechVidvan\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/TechVidvan\/\" \/>\n<meta property=\"article:published_time\" content=\"2021-11-10T07:03:45+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-06-03T10:27:04+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/techvidvan.com\/tutorials\/wp-content\/uploads\/2021\/10\/python-pin-your-notes-sticky-notes.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=\"TechVidvan Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@vidvantech\" \/>\n<meta name=\"twitter:site\" content=\"@vidvantech\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"TechVidvan Team\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Pin Your Notes in Python - Sticky Notes Project - TechVidvan","description":"Develop Pin Your Note project - Sticky Notes using python in easy steps using TKinter library. Source Code is available for your help.","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:\/\/techvidvan.com\/tutorials\/python-pin-your-sticky-notes\/","og_locale":"en_US","og_type":"article","og_title":"Pin Your Notes in Python - Sticky Notes Project - TechVidvan","og_description":"Develop Pin Your Note project - Sticky Notes using python in easy steps using TKinter library. Source Code is available for your help.","og_url":"https:\/\/techvidvan.com\/tutorials\/python-pin-your-sticky-notes\/","og_site_name":"TechVidvan","article_publisher":"https:\/\/www.facebook.com\/TechVidvan\/","article_published_time":"2021-11-10T07:03:45+00:00","article_modified_time":"2026-06-03T10:27:04+00:00","og_image":[{"width":1200,"height":628,"url":"https:\/\/techvidvan.com\/tutorials\/wp-content\/uploads\/2021\/10\/python-pin-your-notes-sticky-notes.webp","type":"image\/webp"}],"author":"TechVidvan Team","twitter_card":"summary_large_image","twitter_creator":"@vidvantech","twitter_site":"@vidvantech","twitter_misc":{"Written by":"TechVidvan Team","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/techvidvan.com\/tutorials\/python-pin-your-sticky-notes\/#article","isPartOf":{"@id":"https:\/\/techvidvan.com\/tutorials\/python-pin-your-sticky-notes\/"},"author":{"name":"TechVidvan Team","@id":"https:\/\/techvidvan.com\/tutorials\/#\/schema\/person\/e9c26e74dd3d87421f7ada9433b8cd22"},"headline":"Pin Your Notes in Python &#8211; Sticky Notes Project","datePublished":"2021-11-10T07:03:45+00:00","dateModified":"2026-06-03T10:27:04+00:00","mainEntityOfPage":{"@id":"https:\/\/techvidvan.com\/tutorials\/python-pin-your-sticky-notes\/"},"wordCount":1280,"commentCount":0,"publisher":{"@id":"https:\/\/techvidvan.com\/tutorials\/#organization"},"image":{"@id":"https:\/\/techvidvan.com\/tutorials\/python-pin-your-sticky-notes\/#primaryimage"},"thumbnailUrl":"https:\/\/techvidvan.com\/tutorials\/wp-content\/uploads\/2021\/10\/python-pin-your-notes-sticky-notes.webp","keywords":["Python Pin Your Note Project","Python project","python sticky notes","sticky notes"],"articleSection":["Python Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/techvidvan.com\/tutorials\/python-pin-your-sticky-notes\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/techvidvan.com\/tutorials\/python-pin-your-sticky-notes\/","url":"https:\/\/techvidvan.com\/tutorials\/python-pin-your-sticky-notes\/","name":"Pin Your Notes in Python - Sticky Notes Project - TechVidvan","isPartOf":{"@id":"https:\/\/techvidvan.com\/tutorials\/#website"},"primaryImageOfPage":{"@id":"https:\/\/techvidvan.com\/tutorials\/python-pin-your-sticky-notes\/#primaryimage"},"image":{"@id":"https:\/\/techvidvan.com\/tutorials\/python-pin-your-sticky-notes\/#primaryimage"},"thumbnailUrl":"https:\/\/techvidvan.com\/tutorials\/wp-content\/uploads\/2021\/10\/python-pin-your-notes-sticky-notes.webp","datePublished":"2021-11-10T07:03:45+00:00","dateModified":"2026-06-03T10:27:04+00:00","description":"Develop Pin Your Note project - Sticky Notes using python in easy steps using TKinter library. Source Code is available for your help.","breadcrumb":{"@id":"https:\/\/techvidvan.com\/tutorials\/python-pin-your-sticky-notes\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/techvidvan.com\/tutorials\/python-pin-your-sticky-notes\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/techvidvan.com\/tutorials\/python-pin-your-sticky-notes\/#primaryimage","url":"https:\/\/techvidvan.com\/tutorials\/wp-content\/uploads\/2021\/10\/python-pin-your-notes-sticky-notes.webp","contentUrl":"https:\/\/techvidvan.com\/tutorials\/wp-content\/uploads\/2021\/10\/python-pin-your-notes-sticky-notes.webp","width":1200,"height":628},{"@type":"BreadcrumbList","@id":"https:\/\/techvidvan.com\/tutorials\/python-pin-your-sticky-notes\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/techvidvan.com\/tutorials\/"},{"@type":"ListItem","position":2,"name":"Pin Your Notes in Python &#8211; Sticky Notes Project"}]},{"@type":"WebSite","@id":"https:\/\/techvidvan.com\/tutorials\/#website","url":"https:\/\/techvidvan.com\/tutorials\/","name":"TechVidvan Blogs","description":"","publisher":{"@id":"https:\/\/techvidvan.com\/tutorials\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/techvidvan.com\/tutorials\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/techvidvan.com\/tutorials\/#organization","name":"TechVidvan","url":"https:\/\/techvidvan.com\/tutorials\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/techvidvan.com\/tutorials\/#\/schema\/logo\/image\/","url":"https:\/\/techvidvan.com\/tutorials\/wp-content\/uploads\/2024\/03\/techvidvan-logo-200x50-1.webp","contentUrl":"https:\/\/techvidvan.com\/tutorials\/wp-content\/uploads\/2024\/03\/techvidvan-logo-200x50-1.webp","width":200,"height":50,"caption":"TechVidvan"},"image":{"@id":"https:\/\/techvidvan.com\/tutorials\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/TechVidvan\/","https:\/\/x.com\/vidvantech"]},{"@type":"Person","@id":"https:\/\/techvidvan.com\/tutorials\/#\/schema\/person\/e9c26e74dd3d87421f7ada9433b8cd22","name":"TechVidvan Team","description":"The TechVidvan Team delivers practical, beginner-friendly tutorials on programming, Java, Python, C++, DSA, AI, ML, data Science, Android, Flutter, MERN, Web Development, and technology. Our experts are here to help you upskill and excel in today\u2019s tech industry."}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/techvidvan.com\/tutorials\/wp-json\/wp\/v2\/posts\/85378","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/techvidvan.com\/tutorials\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/techvidvan.com\/tutorials\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/techvidvan.com\/tutorials\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/techvidvan.com\/tutorials\/wp-json\/wp\/v2\/comments?post=85378"}],"version-history":[{"count":2,"href":"https:\/\/techvidvan.com\/tutorials\/wp-json\/wp\/v2\/posts\/85378\/revisions"}],"predecessor-version":[{"id":448152,"href":"https:\/\/techvidvan.com\/tutorials\/wp-json\/wp\/v2\/posts\/85378\/revisions\/448152"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/techvidvan.com\/tutorials\/wp-json\/wp\/v2\/media\/85546"}],"wp:attachment":[{"href":"https:\/\/techvidvan.com\/tutorials\/wp-json\/wp\/v2\/media?parent=85378"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/techvidvan.com\/tutorials\/wp-json\/wp\/v2\/categories?post=85378"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/techvidvan.com\/tutorials\/wp-json\/wp\/v2\/tags?post=85378"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}