英文:
VSCode creating a .hypothesis/unicode_data/13.0.0/charmap.json.gz file for every project
问题
我不确定是否因为我安装了一个新库而出现了这个问题,但现在每次我运行一个新项目时,VSCode都会创建一个".hypothesis/unicode_data/13.0.0/charmap.json.gz"文件,这很烦人,怎么停止它?
我尝试在Google上查找这个问题,但找不到太多信息。有篇帖子说可能与Pydantic有关,我已卸载,但问题仍然存在。以下是代码:
import numpy as np
import pandas as pd
import requests
from bs4 import BeautifulSoup
url = "https:example"
response = requests.get(url)
soup = BeautifulSoup(response.text, "html.parser")
episode_data = []
for episode in soup.find_all('div', class_='info'):
episode_number = episode.find('meta')['content']
title = episode.find('a', itemprop='name').text
airdate = episode.find('div', class_='airdate').text.strip()
rating = episode.find('span', class_='ipl-rating-star__rating').text
total_votes = episode.find('span', class_='ipl-rating-star__total-votes').text
desc = episode.find('div', class_='item_description').text.strip()
episode_data.append([episode_number, title, airdate, rating, total_votes, desc])
df = pd.DataFrame(episode_data, columns=['Episode', 'Title', 'Air Date', 'Rating', 'Votes', 'Description'])
英文:
I'm not sure if it's happening because I installed a new library that has that issue, but now every time I run a new project VSCode creates a ".hypothesis/unicode_data/13.0.0/charmap.json.gz" and it's annoying, how can stop it?
I tried looking up the issue on Google but couldn't find much information. There was a post saying it could be related to Pydantic, which I uninstalled, but the issue persists. Here's the code:
import numpy as np
import pandas as pd
import requests
from bs4 import BeautifulSoup
url = "https:example"
response = requests.get(url)
soup = BeautifulSoup(response.text, "html.parser")
episode_data = []
for episode in soup.find_all('div', class_='info'):
episode_number = episode.find('meta')['content']
title = episode.find('a', itemprop='name').text
airdate = episode.find('div', class_='airdate').text.strip()
rating = episode.find('span', class_='ipl-rating-star__rating').text
total_votes = episode.find('span', class_='ipl-rating-star__total-votes').text
desc = episode.find('div', class_='item_description').text.strip()
episode_data.append([episode_number, title, airdate, rating, total_votes, desc])
df = pd.DataFrame(episode_data, columns=['Episode', 'Title', 'Air Date', 'Rating', 'Votes', 'Description'])
答案1
得分: 1
我在github上发现了相同的问题。
> 卸载pydantic可以阻止这种情况发生,重新安装pydantic会重现这个问题。
您可以尝试升级hypothesis来解决它:
python -m pip install -U hypothesis
英文:
I found a same issue on github.
> Uninstalling pydantic prevents it from happening, re-installing
> pydantic reproduces it.
You can try to upgrade hypothesis to solve it:
python -m pip install -U hypothesis
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论