Please wait...
WebSocket is a technology that makes the two-way connection between a client browser and a server where a client can send and receive messages from the server without waiting for each other responses. There are many ways to create WebSocket.
WebSocket in different languages/frameworks/libraries …
In the Django framework, Migration is a very important part for operation on the database.
so today I’m showing you How Django migration can be useful for automatic data upload on creating a table in the database.
Let …
In this post, you're going to learn how to get nested data from the Django REST framework.
Django REST Framework uses Serializer class that converts Django queryset to JSON with Python datatypes
But if you define Serializer class with the nested class so …
The pickle module implements a fundamental, but powerful algorithm for serializing and de-serializing a Python object structure.
Pickling - is the process whereby a Python object hierarchy is converted into a byte stream, and
Unpickling - is the inverse operation, whereby a byte stream is converted back into an object hierarchy.
Write …
HTML parsing in Python is very easy to handle and can also fetch data from any website according to requirement.
Beautiful Soup is also is a library that has a great method of HTML, XML parsing and it provides many concepts for filter …
Apache Spark is an open source cluster computing framework. It is a powerful engine for process speed, easy to use, higher level libraries, SQL queries, streaming data, Machine learning, and Graph processing.
Today I’ll show a tutorial of spark streaming from text …
Django admin is a great interface and powerful features for managing data. It shows models that are registered in admin.py of apps.
Django admin has full customization for developers and current many libraries available's on GitHub that can change the interface of admin with …