MongoDB 是一款流行的开源文档型数据库,从它的命名来看,确实是有一定野心的。MongoDB 的原名一开始来自于 英文单词"Humongous", 中文含义是指"庞大",即命名者的意图是可以处理大规模的数据。...
分类:Python
60 篇文章Lightweight Python utilities for working with Redis. The purpose of walrus is to make working with Redis in Python a little easier. Rather than ask you to learn a new library, walrus subclasses and extends the popular redis-py client, allowing it to be used as a drop-in replacement. In addition to all the features in redis-py, walrus adds support for some newer commands, including full support for streams and consumer groups....
查看包所在目录及信息pip show packagename安装第三方包pip install packagename卸载安装第三方包pip uninstall packagename查看已经安装的第三方包pip list查看可以更新的包(过期的包)pip list --outdated pip l...
使用阿里云镜像仓库安装flaskpip install flask -i "http://mirrors.aliyun.com/pypi/simple" --trusted-host "mirrors.aliyun.com"创建一个flask项目from fl...