Python

Use Python for speech recognition

Have you ever wondered how to use Python to code simple magic to start using speech recognition? Do you want to tell the computer what to search on the Internet using only the voice in your own script?

Validate credit card numbers with Python

The purpose of this article is to explain how to write a simple credit card validator in Python. The algorithm used to verify the card number is called Luhn's algorithm

Use timing tasks in Django application container

As a Django application developer, you often encounter situations like this: You want to be able to perform periodic asynchronous background tasks. It will come in handy if you want to create some background checks, send notifications or build a cache

Python uses websocket-client

WebSocket is a two-way communication protocol based on the TCP protocol that allows real-time data transfer between the browser and the server. In Python, a WebSocket client can be easily implemented using the websocket-client library