TypeError: This is a python-holidays entity loader class. For entity inheritance purposes please import a class you want to derive from directly: e.g., `from holidays.countries import Entity` or `from holidays.financial import Entity`.
时间: 2024-03-23 16:41:38 浏览: 456
Vue 报错TypeError: this.$set is not a function 的解决方法
5星 · 资源好评率100%
这个错误是因为你使用了 python-holidays 库中的一个类,但是使用方式不正确。正确的方式是从 holidays.countries 或 holidays.financial 中直接导入你需要的类,例如:
```
from holidays.countries import US
holidays = US()
```
这样就可以正确使用 python-holidays 库中的类了。
阅读全文