How to start Tkinter window at a specific position of your display

By Saruque Ahamed Mollick

In this tutorial, we will learn how to start the Tkinter window at a specific position of your display. It’s much simpler than we think. Let’s first create a simple win.... Read More

Fetch JSON data from URL and store in excel file in Python

By KAPIHLL KUMAR MUTHINENI

In this tutorial, we will try to fetch JSON data from URL and store in excel file in Python. JSON (JavaScript Object Notation) is a lightweight data-interchange format that’s.... Read More

How to install Tkinter in Python

By Saruque Ahamed Mollick

In Python, there are a lot of GUI libraries to use. But among those Tkinter is the only GUI library that comes along with the Python in-built. So in general you don’t have to.... Read More

Create a flask web application using Anilist anime API

By KAPIHLL KUMAR MUTHINENI

In this tutorial, we will build a Flask web application that utilizes the Anilist API to fetch and display information about anime. Here we will create a Flask web application with.... Read More

How to display Arabic keyboard in Swift

By shagrafnasheet

In this Swift tutorial, we’ll see how we can enable an Arabic keyboard and display an Arabic keyboard for any particular text field.   What this blog will cover: custom .... Read More

Reason: Secure coding is not enabled for restorable state! Enable secure coding by implementing NSApplicationDelegate.applicationSupportsSecureRestorableState: and returning YES.

By Saruque Ahamed Mollick

First of all, this is not a tutorial. Today I just faced another issue with my MacOS while working in Python. I got this warning message: ” WARNING: Secure coding is not enab.... Read More

Union of dictionary objects in Python

By Samatha kuruguntla

In this we can create a Union of two dictionaries using several methods, depending on your Python versions,This combined dictionary includes all key-value pairs from the original d.... Read More

Cosine distance computation between two arrays in Python

By Samatha kuruguntla

There are several methods to compute the cosine distance between two arrays in Python. Here are three common approaches. Methods: 1.NumPy: NumPy is used for quick array operations .... Read More