#Python
2024-08-13
urllib.parse
- import:: from urllib.parse import urlparse - doc:: [urllib.parse](https://docs.python.org...
2023-12-27
ffmpeg-python
- install:: pip install ffmpeg-python - inport:: import ffmpeg - docs:: - desc::
2023-07-14
update_kuma-api
- install:: `pip install uptime-kuma-api` - import:: `from uptime_kuma_api import UptimeKum...
2023-02-13
black
- install:: pip3 install black - use:: black file.py - github:: [psf/black](https://github....
2022-12-15
collections
- import:: import collections - doc:: [collections](https://docs.python.org/zh-cn/3/library...
2022-11-29
multiprocessing
- import:: import multiprocessing - doc:: [multiprocessing](https://docs.python.org/zh-cn/3...
2022-06-02
Sanic
- install:: `python -m pip install asnic` - use:: `from sanic import Sanic` - github:: - do...
2022-04-28
sqlalchemy
- install:: `pip install sqlalchemy` - import:: `import sqlalchemy` - github:: [sqlalchemy/...
2024-07-24
exceptions
- import:: - doc:: [exceptions](https://docs.python.org/zh-cn/3/library/exceptions.html) -...
2018-05-09
使用 Python 3 转 HTML 实体字符,防邮箱爬取
起源于在 [V2EX](https://v2ex.com) 上看到一篇文章,作者在最后附上用 `Base64` 编码的邮箱,虽...
2018-04-10
如何在 Pythonista for iOS 中安装 lxml
学 《用 Python 写网络爬虫》第二章时,需要用到 `BeautifulSoup` 和 `lxml`,前者已经自带,后者...
2022-02-01
如何在字符串中插入变量
```python # 方式一 var = 'Hello {0}'.format('World') # 方式二 var = 'Hello {name}'.format(n...