Skip to content
Code_Underscored_logo
  • Python
  • Django
  • Web Development
  • Machine Learning
  • C++
  • Java
Code_Underscored_logo
  • Django Roles, Permissions, and Groups
    Django

    Django roles, permissions, and groups

    ByHumphrey October 12, 2021March 2, 2024

    Permissions are a set of rules (or constraints) that allow a user or a group of users to view, add, alter, or delete items in Django. Django has a permissions system built-in. It enables you to provide permissions to individual users or groups of users.

    Read More Django roles, permissions, and groupsContinue

  • integrate OAuth2 into Django
    Django

    How to integrate OAuth2 into Django

    ByHumphrey September 30, 2021March 2, 2024

    While pip recognizes hundreds of OAuth 2 packages, only a few perform what they’re meant to do. So, after having user authentication in place. You now want your users to be able to log in using Twitter, Facebook, or Google. It’s no problem. You’re just a few lines of code away from accomplishing your goal. This tutorial will show you Python Social Auth to incorporate OAuth 2 into your Django or Django Rest Framework.

    Read More How to integrate OAuth2 into DjangoContinue

  • deploy Django app using Docker
    Django

    How to deploy Django app using Docker

    ByHumphrey September 30, 2021March 2, 2024

    Docker is a program that makes managing application processes in containers much more accessible. Containers allow you to run your programs in separate processes with their resources. Containers are comparable to virtual machines, except they’re more portable, resource-friendly, and reliant on the host OS.

    Read More How to deploy Django app using DockerContinue

  • perform Google Search using Python
    Python

    How to perform Google Search using Python

    ByRoshan Agarwal September 30, 2021March 2, 2024

    Google is the most popular search engine. It is widely used in almost every country for searching. To search for something in the Google Search engine, first, we need to open our favorite web browser. Then, we need to visit google.com and type the query we want to search. The result will appear in the browser after searching. But sometimes, we also have to access the Google search programmatically for automation or building an AI assistant.

    Read More How to perform Google Search using PythonContinue

  • Extracting date and time from a string
    Python

    How to extract date and time from a string in Python

    ByRoshan Agarwal September 30, 2021March 2, 2024

    In this tutorial, we will learn how to extract dates and times from raw strings. Extracting helpful information like dates is very useful while parsing raw texts such as logs. You can also use an IDE for writing the code. Here, I am using the open-source VS Code IDE provided by Microsoft. VS Code is a cross-platform IDE. We can use it on any platform like Windows, Linux, or macOS.

    Read More How to extract date and time from a string in PythonContinue

  • Calculating Mean, Median, Mode in Python
    Python

    Mean, median, and mode real-world datasets in Python

    ByHumphrey September 30, 2021March 2, 2024

    Because these disciplines constitute the foundation of all machine learning algorithms, math and statistics are vital for data science. Every element of our lives is influenced by mathematics. From shapes, patterns, and colors to counting petals in flowers, everything around us is based on mathematics and statistics.

    Read More Mean, median, and mode real-world datasets in PythonContinue

  • Python substring
    Python

    Python substring

    ByHumphrey September 29, 2021March 2, 2024

    The term “string” refers to a collection of Unicode characters. A string is a collection of characters that can include both alphanumeric and special characters. We will learn about substring in Python and how it works in this article:

    Read More Python substringContinue

  • What is Python used for
    Python

    A beginner’s guide – What is Python used for?

    ByHumphrey September 29, 2021March 2, 2024

    Python has recently become one of the most widely used programming languages on the planet. It’s utilized in various applications, including machine learning, website development, the Internet Of Things, and software testing. It is suitable for both developers and non-developers.

    Read More A beginner’s guide – What is Python used for?Continue

  • beginner tips for Python programmers
    Python

    Top 10 beginner tips for Python programmers

    ByHumphrey September 27, 2021March 2, 2024

    Python stands out among the many programming languages due to its object-oriented features and versatility. It is thought to be the most acceptable language to learn for novices.

    Read More Top 10 beginner tips for Python programmersContinue

  • Resolve Java unreachable statement
    Java

    Resolving Java unreachable statement

    ByMoses N September 23, 2021March 2, 2024

    The java unreachable statement is a compilation error thrown when the compiler detects a code that was not executed as part of the program. When you reach this state, it means that your program would not be executed anymore, and hence this piece of code is unnecessary and should be removed.

    Read More Resolving Java unreachable statementContinue

  • Tuples in Python
    Python

    Tuples in Python

    ByHumphrey September 21, 2021March 2, 2024

    In this article, you will learn about Python tuples, including what they are, how to create them, when to use them, the operations you can perform on them, and the various functions you should be familiar with.

    Read More Tuples in PythonContinue

  • Installing Python modules
    Python

    How to install Python modules

    ByHumphrey September 21, 2021March 2, 2024

    One of the reasons that Python is so valuable is that there are several packages that we can install that extend the capabilities of Python. For example, if we want MATLAB-like functionality matrices numerical analysis, you can use numpy, optimizers, and differential equation solvers. Further, several other packages like matplotlib help us plotting, while Pygame helps develop a graphical user interface and build diverse games. xlwings, on the other hand, allows us to interface with excel. In addition, we have others like open CV, computer vision, etc.

    Read More How to install Python modulesContinue

Page navigation

Previous PagePrevious 1 … 17 18 19 20 21 … 32 Next PageNext
  • About Us
  • Contact Us
  • Disclaimer
  • Privacy Policy

© 2025 Code Underscored. All Rights Reserved.

A PART OF VIBRANT LEAF MEDIA COMPANY.

  • Python
  • Django
  • Web Development
  • Machine Learning
  • C++
  • Java
Search