search
HomeBackend DevelopmentPython TutorialIs there anything to do with python?

Companies using python include: 1. Industrial Light and Magic; 2. Google; 3. Instagram; 4. Quora; 5. Netflix, etc.

Is there anything to do with python?

How powerful is python? What can be done? Now tell you the top companies using Python. This way you can see the practical applications of Python in business and software development and how powerful Python can be.

The world’s top companies using python:

Industrial Light and Magic

Industrial Light and Magic (ILM ) is a special effects company founded by George Lucas in 1975 to create the FX (movie special effects) for Star Wars. Since then, they have become synonymous with FX, winning numerous awards in films and commercials. In the early days of the company, ILM focused on effects through props, but they quickly realized that computer effects were the future of FX. Its CGI department was established in 1979, and its first CGI special effect was the Genesis explosion in "Star Trek II: The Wrath of Khan."

Google

Google has been a supporter of Python almost from the beginning. At the beginning, Google's founders decided to "feel free to use Python except for some critical parts that must be written in C." This means that C is used wherever memory control and low latency are required. Python is used for easy-to-maintain parts and fast-delivery projects. Google often rewrites Perl and Bash scripts in Python. Because Python is easy to deploy and maintain. But in fact, according to Steven Levy, the author of "In the Plex", there was a web crawler written in Java 1.0 in the early days of Google Search. After writing, it was found that Java was too difficult to write, so it was rewritten in Python. Python is now one of the official Google server-side languages, along with C, Java and Go used in production environments. If you don’t understand the importance of Python to Google by now, then I will tell you that the father of Python, Guido van Rossum (BDFL), worked at Google from 2005 to 2012.

instagram

In 2016, the Instagram engineering team announced that they were working on the world's largest deployment of the Django web framework, which was written entirely in Python. Min Ni, a software engineer at Instagram, elaborated on their use of Python: “We originally chose to use Python because it was simple and efficient, which was completely consistent with our philosophy of ‘do simple things first.’” Since then, Instagram has The engineering team at Instagram has invested significant time and resources in keeping Python running at scale (approximately 800 million monthly active users): “With our build on the Instagram web services framework, we believe we will continue to use Python to scale our Service infrastructure. We also began to invest more energy into the Python language itself and began to explore migrating from Python2 to Python3."

Quora

When this large When it came to choosing what language to use to implement their ideas, Charlie Cheever (one of the founders of Quora) narrowed the choices down to Python, C#, Java, and Scala. The biggest problem they have with using Python is the lack of data type checking functions and the relative slowness of the program. According to Adam D'Angelo, they decided not to use C# because it is a Microsoft platform-specific language and they did not want to be affected by any future changes. Additionally, any open source code also has better community support. Java is more painful to write than Python, and it doesn't interoperate well with non-Java programs like Python. At that time, Java was still in its infancy, so they were worried about Java's future development and market share. Therefore, the founders of Quora decided to follow Google's lead and chose to use Python because it was easy to write and read, and C could be used for critical parts with higher performance requirements. And they can solve Python's lack of type checking by writing unit tests that accomplish the same task. Another key factor in using Python was the existence of several good frameworks at the time, including Django and Pylons. Additionally, since they know Quora will involve server/client interactions that don't necessarily require loading the entire page, having Python and JS work very well together.

Netflix

Netflix uses Python in a very similar way to Spotify, relying on Python to provide support for server-side data analysis. However, it doesn't stop with these applications. Netflix allowed their software engineers to choose the language they wanted to write programs in, and subsequently saw a huge increase in the number of Python applications. Another area where Netflix uses Python is in its monkey application for tracking security changes and history. These monkeys are used to track and alert on any changes to EC2 security-related policies in any group, and to track any changes in those environments. They are also used to track dozens of SSL certificates connecting to multiple Netflix domains. Since 2012, Netflix has reduced unexpected expirations from one in four to almost none through the use of tracking technology.

Such awesome companies are all using python. Zhihu, which we are familiar with, and Douban use python. Is there any reason not to learn python?

The above is the detailed content of Is there anything to do with python?. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
How to Use Python to Find the Zipf Distribution of a Text FileHow to Use Python to Find the Zipf Distribution of a Text FileMar 05, 2025 am 09:58 AM

This tutorial demonstrates how to use Python to process the statistical concept of Zipf's law and demonstrates the efficiency of Python's reading and sorting large text files when processing the law. You may be wondering what the term Zipf distribution means. To understand this term, we first need to define Zipf's law. Don't worry, I'll try to simplify the instructions. Zipf's Law Zipf's law simply means: in a large natural language corpus, the most frequently occurring words appear about twice as frequently as the second frequent words, three times as the third frequent words, four times as the fourth frequent words, and so on. Let's look at an example. If you look at the Brown corpus in American English, you will notice that the most frequent word is "th

How Do I Use Beautiful Soup to Parse HTML?How Do I Use Beautiful Soup to Parse HTML?Mar 10, 2025 pm 06:54 PM

This article explains how to use Beautiful Soup, a Python library, to parse HTML. It details common methods like find(), find_all(), select(), and get_text() for data extraction, handling of diverse HTML structures and errors, and alternatives (Sel

Image Filtering in PythonImage Filtering in PythonMar 03, 2025 am 09:44 AM

Dealing with noisy images is a common problem, especially with mobile phone or low-resolution camera photos. This tutorial explores image filtering techniques in Python using OpenCV to tackle this issue. Image Filtering: A Powerful Tool Image filter

How to Work With PDF Documents Using PythonHow to Work With PDF Documents Using PythonMar 02, 2025 am 09:54 AM

PDF files are popular for their cross-platform compatibility, with content and layout consistent across operating systems, reading devices and software. However, unlike Python processing plain text files, PDF files are binary files with more complex structures and contain elements such as fonts, colors, and images. Fortunately, it is not difficult to process PDF files with Python's external modules. This article will use the PyPDF2 module to demonstrate how to open a PDF file, print a page, and extract text. For the creation and editing of PDF files, please refer to another tutorial from me. Preparation The core lies in using external module PyPDF2. First, install it using pip: pip is P

How to Cache Using Redis in Django ApplicationsHow to Cache Using Redis in Django ApplicationsMar 02, 2025 am 10:10 AM

This tutorial demonstrates how to leverage Redis caching to boost the performance of Python applications, specifically within a Django framework. We'll cover Redis installation, Django configuration, and performance comparisons to highlight the bene

How to Perform Deep Learning with TensorFlow or PyTorch?How to Perform Deep Learning with TensorFlow or PyTorch?Mar 10, 2025 pm 06:52 PM

This article compares TensorFlow and PyTorch for deep learning. It details the steps involved: data preparation, model building, training, evaluation, and deployment. Key differences between the frameworks, particularly regarding computational grap

Introduction to Parallel and Concurrent Programming in PythonIntroduction to Parallel and Concurrent Programming in PythonMar 03, 2025 am 10:32 AM

Python, a favorite for data science and processing, offers a rich ecosystem for high-performance computing. However, parallel programming in Python presents unique challenges. This tutorial explores these challenges, focusing on the Global Interprete

How to Implement Your Own Data Structure in PythonHow to Implement Your Own Data Structure in PythonMar 03, 2025 am 09:28 AM

This tutorial demonstrates creating a custom pipeline data structure in Python 3, leveraging classes and operator overloading for enhanced functionality. The pipeline's flexibility lies in its ability to apply a series of functions to a data set, ge

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!