django中的setting全局变量的导入

需求:在py文件中导入settings.py中的变量BASE_DIR

settings.py文件

import os

# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))

views.py文件

import os,django
# project_name 项目名称
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "untitled1.settings")
django.setup()
from django.conf import settings


url = 'https://www.autohome.com.cn/all/'
response = requests.get(url)
response.encoding = response.apparent_encoding

html = BeautifulSoup(response.text, features='html.parser')

li_list = html.find(id='auto-channel-lazyload-article').find_all('li')

for li in li_list:
    link = li.find('a')
    if link:
        print(link.find('h3').text)
        print('https:' + link.attrs.get('href'))
        img_url = 'https:' + link.find('img').attrs.get('src')
        img_name = os.path.join(settings.BASE_DIR,'img', str(uuid.uuid4()))
        img_response = requests.get(img_url).content
        with open(img_name + '.jpg', 'wb') as f:
            f.write(img_response)
        print(img_url)
        print()

转载于:https://www.cnblogs.com/apollo1616/p/10386847.html

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值