python

  • How to Export and Import Fixtures in Django

    How to Export and Import Fixtures in Django

    A fixture is a collection of file that hold the serialized content of the database. Files that comprise the fixture can be distributed across multiple directories and application in…

    neotam Avatar
  • How to use python built-in function filter with example

    How to use python built-in function filter with example

    Python built-in function filter is helpful sometimes to write a compact code. Filter function takes two arguments “function” and “iterable”. Each element of iterator which is returned by iterable…

    neotam Avatar
  • Compile and install python from source on Linux

    Compile and Install Python from Source On Linux

    All Linux distributions come with latest stable python release. Yet, if you want to try out new python for its elegant new features. You can compile and install it…

    neotam Avatar
  • Install OpenCV on Windows Using Binaries

    Install OpenCV with OpenCV_contrib on Windows Using Binaries

    OpenCV stands for “Open Source Computer Vision Library”. It is a computer vision and machine learning library. It gives your programs the ability to see, read, manipulate and detect…

    neotam Avatar
  • Python Function - Argument Types

    Types of function arguments in python

    Unlike many other programming languages python supports multiple types formal arguments in the function definition. It is one of the flexibility that python offers. Types of function (formal) arguments…

    neotam Avatar
  • Python Keyword-Only Arguments

    Python keyword only arguments

    Python 3 got new feature called keyword-only arguments. Python has already a support for variables length positional arguments and variable length keyword arguments. Jump to, Current Syntax Keyword Only…

    neotam Avatar
  • View Django ORM's raw SQL queries

    How to view converted SQL queries of Django ORM

    Django provides the ORM which is database and vendor agnostic, as a result we can perform operations on database regardless kind of database running behind.Thus, developer may not need…

    neotam Avatar
  • Python Operators

    Python Operators

    Operators are building blocks of all kind of operation we can do in any programming language. Operators are basically the symbols which operate on at least one or more…

    neotam Avatar
  • What is Python, why python, how and where it is used?

    What is python, why python, How and where it is used ?

    What is Python Python is well know popular programming language Created by Guido Van Rossum. Python is general purpose, platform independent, interpreted, strong and dynamic typed programming language. As…

    neotam Avatar