search
HomeBackend DevelopmentPython Tutorial6 libraries commonly used by Python programmers

When programming, small setbacks can be just as painful as big problems. No one wants to just pop up a message window or quickly write to the database after a lot of effort. Therefore, programmers will appreciate solutions that can handle these problems quickly and are also robust in the long run.

The following 6 Python libraries can quickly solve difficult problems at hand, and can also serve as the basis for large-scale projects.

Pyglet

Pylet logo

What is: Pyglet is a cross-platform framework written in pure Python language, used to develop multimedia and window special effects applications.

Why is it needed: Developing the functional modules required for graphical interface applications from scratch is very cumbersome. Pyglet provides a large number of ready-made modules, saving a lot of time: window functions, OpenGL special effects, audio and video playback , keyboard and mouse processing and image processing. (However, Pyglet does not provide UI components such as buttons, toolbars or menus.)

All the above modules are implemented natively under Windows, OS X or Linux platforms and do not rely on external binary packages; it is written in pure Python language. Pyglet is released under the BSD license and can be used in any commercial and open source projects.

Peewee

peewee logo

What is: Peewee is a small but very powerful library that supports database access through ORM and natively supports databases such as SQLite, MySQL and PostgreSQL.

Why is it needed: Any application that needs to frequently use external data will basically use a database, but reading and writing data from the database through temporary connections will cause a lot of trouble.

Peewee provides a safe and stable channel to access database resources. For Python programmers and database engineers, the Python classes provided by this library will be easy to use. With the support of Peewee, we can access the database quickly and easily, and can be expanded to add more options in the future without redesigning. Peewee also natively supports database transactions and has many optional additional modules that provide functions from database connection pooling to advanced field types like many-to-many.

Bottle

bottlepy logo

What is: Bottle is a small, lightweight network development framework that is also very fast.

Why you need it: If you just want to quickly create a Restful API interface, or just want to use a network development framework to make a simple application, Bottle can easily meet your requirements. It has all the features you will need: routing, templates, access to request and response data, support for multiple web servers, and advanced features such as WebSockets.

Creating an application requires very little work, and Bottle is designed with scalability in mind. If you need more advanced features, you can access them at any time.

Invoke

What is: Simply put, Invoke allows you to easily perform system management tasks through a Python library.

Why you need it: Who doesn’t want a “concise, high-level interface that can run shell commands, define and categorize execution tasks”? It is completely reasonable to use Python to replace ordinary shell scripts and perform corresponding tasks. Invoke provides solutions for performing common command line tasks and managing them. For Invoke, each management task is like a Python function, and more complex tasks can be designed elegantly on this basis.

It should be noted that Invoke is still a preview version; if you want to use a stable tool (even if it is no longer actively developed), you can consider Invoke's predecessor-Fabric.

Splinter

What is: Splinter is a Python library for automated testing of network applications.

Why you need it: As we all know, there is nothing more boring than automated web application testing. With Splinter, you can automate all operations such as opening a browser, entering a URL, filling in a form, and clicking a button.

Specific browsers require corresponding drivers, but fortunately Chrome and Firefox drivers are already included. In addition, Splinter can also remotely control browsers on other machines through Selenium Remote. You can even manually execute JavaScript code in the target browser.

If you want to know the specifics of a certain browser when browsing a specific website, then Splinter will be a very useful tool. If you want to learn about interacting with websites without relying on a browser, check out Twill. (Translator: Twill is a scripting language that supports users to browse the network through the command line.)

Arrow

What is: Arrow is a library that can better handle date and time (data/time) in Python.

Why you need it: Dealing with time zones, date conversions, dealing with different date formats, and other date-related stuff is enough to give you a day and a half of headaches. If you use the modules in the standard library that comes with Python, you will probably have a headache for two days.

There are four major benefits to switching to the Arrow library, which are very useful in both the long and short term. First, it can perfectly replace the datetime module in Python, which means you can still use common function call forms like .now() and .utcnow(). Second, it provides methods for common needs such as converting time zones. Third, it provides "human-friendly" date/time information - that is, it can easily tell you whether something happened "one hour ago" or "will happen in two hours" . Fourth, it easily converts date/time information to local time.

The above is the detailed content of 6 libraries commonly used by Python programmers. 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
详细讲解Python之Seaborn(数据可视化)详细讲解Python之Seaborn(数据可视化)Apr 21, 2022 pm 06:08 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于Seaborn的相关问题,包括了数据可视化处理的散点图、折线图、条形图等等内容,下面一起来看一下,希望对大家有帮助。

详细了解Python进程池与进程锁详细了解Python进程池与进程锁May 10, 2022 pm 06:11 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于进程池与进程锁的相关问题,包括进程池的创建模块,进程池函数等等内容,下面一起来看一下,希望对大家有帮助。

Python自动化实践之筛选简历Python自动化实践之筛选简历Jun 07, 2022 pm 06:59 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于简历筛选的相关问题,包括了定义 ReadDoc 类用以读取 word 文件以及定义 search_word 函数用以筛选的相关内容,下面一起来看一下,希望对大家有帮助。

归纳总结Python标准库归纳总结Python标准库May 03, 2022 am 09:00 AM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于标准库总结的相关问题,下面一起来看一下,希望对大家有帮助。

分享10款高效的VSCode插件,总有一款能够惊艳到你!!分享10款高效的VSCode插件,总有一款能够惊艳到你!!Mar 09, 2021 am 10:15 AM

VS Code的确是一款非常热门、有强大用户基础的一款开发工具。本文给大家介绍一下10款高效、好用的插件,能够让原本单薄的VS Code如虎添翼,开发效率顿时提升到一个新的阶段。

Python数据类型详解之字符串、数字Python数据类型详解之字符串、数字Apr 27, 2022 pm 07:27 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于数据类型之字符串、数字的相关问题,下面一起来看一下,希望对大家有帮助。

python中文是什么意思python中文是什么意思Jun 24, 2019 pm 02:22 PM

pythn的中文意思是巨蟒、蟒蛇。1989年圣诞节期间,Guido van Rossum在家闲的没事干,为了跟朋友庆祝圣诞节,决定发明一种全新的脚本语言。他很喜欢一个肥皂剧叫Monty Python,所以便把这门语言叫做python。

详细介绍python的numpy模块详细介绍python的numpy模块May 19, 2022 am 11:43 AM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于numpy模块的相关问题,Numpy是Numerical Python extensions的缩写,字面意思是Python数值计算扩展,下面一起来看一下,希望对大家有帮助。

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
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)