GithubHelp home page GithubHelp logo

Comments (3)

nayooooo avatar nayooooo commented on August 22, 2024 1

我发现问题在于有些课程的margint10没有title属性,因此在执行以下程序时会报错:

_course_detail["desc"] = course.select_one("p.margint10").attrs["title"]

这个属性在后续内容中没有被使用到,因此可以采用异常处理的手段来避免程序中断,修改后的内容如下:

try:
_course_detail["desc"] = course.select_one("p.margint10").attrs["title"]
except:
_course_detail["desc"] = “无”

from chaoxing.

nayooooo avatar nayooooo commented on August 22, 2024

我尝试了python main.pypython main.py -c config.ini两种方法,都是同样的结果(如上方“代码报错截图所示”)
所使用的系统:Ubuntu22.04.4-desktop
所使用的python环境:miniconda

from chaoxing.

nayooooo avatar nayooooo commented on August 22, 2024

我在Window10中尝试运行,也是一样的错误

from chaoxing.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.