python
传说中胖子
这个作者很懒,什么都没留下…
展开
-
sqlalchemy 自动模型 不定义模型使用
【代码】sqlalchemy 自动模型 不定义模型使用。原创 2024-03-16 11:16:17 · 479 阅读 · 0 评论 -
python爬虫例子
python安装第三方库到自己项目中import syssys.path.append('lib/')import timeimport redisimport xlwtfrom bs4 import BeautifulSoupfrom selenium import webdriverif __name__ == '__main__': try: r = redis.StrictRedis(host='localhost', port=6379, pass.原创 2021-12-03 11:38:45 · 102 阅读 · 0 评论 -
python -m 使用
自问自答:python -m参数?Python 中 -m 的5种典型用法原创 2021-12-02 23:45:09 · 122 阅读 · 0 评论 -
python安装第三方库到自己项目中
安装时使用--target参数,安装到自己项目中pip3 install requests --target=D:\python\lib代码中使用sys.path.append添加搜索目录import syssys.path.append('lib/')import requests原创 2021-12-02 23:26:55 · 1687 阅读 · 1 评论