Features Chat Mode Setup Install Step 1: Create a Discord bot Step 2: Geanerate a OpenAI API key Step 3: Run the bot on the desktop Step 3: Run the bot with Docker Have a good chat! Optional: Setup starting…
Category
Features Chat Mode Setup Install Step 1: Create a Discord bot Step 2: Geanerate a OpenAI API key Step 3: Run the bot on the desktop Step 3: Run the bot with Docker Have a good chat! Optional: Setup starting…
What are nolocal and global keywords used for? These two keywords are used to change the scope of a previously declared variable. nolocal is often used when you need to access a variable in a nested function: global is a more straightforward instruction. It makes a previously…
Introduction to Python: Python was developed by Guido van Rossum and was released first on February 20, 1991. It is one of the most widely-used and loved programming languages and is interpreted in nature thereby providing flexibility of incorporating dynamic…
Learn how to create a random password generator in Python. We know that passwords are a real security threat. To keep your account safe and prevent your password from being hacked you have to make your password hard enough that…
Learn how to convert your Text into Voice with Python and Google APIs Text to speech is a process to convert any text into voice. Text to speech project takes words on digital devices and convert them into audio with…
To make machines more intelligent, developers are diving into machine learning and deep learning techniques. A human learns to perform a task by practicing and repeating it again and again so that it memorizes how to perform the tasks. Then…
The Fibonacci sequence is a pretty famous sequence of integer numbers. The sequence comes up naturally in many problems and has a nice recursive definition. Learning how to generate it is an essential step in the pragmatic programmer’s journey toward…
Object-oriented programming (OOP) is a method of structuring a program by bundling related properties and behaviors into individual objects. In this tutorial, you’ll learn the basics of object-oriented programming in Python. Conceptually, objects are like the components of a system. Think of…
PDFMiner: PDFMiner is a text extraction tool for PDF documents. Install PDFMiner : pip install pdfminer PyMuPDF: Python bindings for the PDF toolkit and renderer MuPDF Install PyMuPDF : pip install PyMuPDF You can use this script to fill signature…
Install muPDF Repair damaged PDF using command The clean command pretty prints and rewrites the syntax of a PDF file. It can be used to repair broken files, expand compressed streams, filter out a range of pages, etc. mutool clean…