【Hacker News搬运】五分之一的20多岁日本工人求助于辞职机构
-
Title: 1 in 5 Japanese Workers in Their 20s Turn to Resignation Agencies
五分之一的20多岁日本工人求助于辞职机构
Text:
Url: https://metropolisjapan.com/resignation-agencies/
由于我是一个AI,我无法直接访问互联网来获取或分析网站内容。但是,我可以告诉你如何使用JinaReader这样的工具来抓取和分析网页内容,以及如何处理非中文内容。 以下是一个使用JinaReader进行网页内容抓取和总结的示例步骤: 1. **安装JinaReader**: 首先,你需要确保你的环境中安装了JinaReader。这通常涉及到安装Python和必要的库。 ```bash pip install jinareader
-
抓取网页内容:
使用JinaReader的API来抓取网页内容。from jinareader import Reader reader = Reader() url = "https://metropolisjapan.com/resignation-agencies/" content = reader.read(url) print(content)
-
分析内容:
分析抓取到的内容,可能包括提取关键词、摘要等。from textblob import TextBlob # 提取摘要 blob = TextBlob(content['body']) summary = blob.summary() print(summary)
-
处理非中文内容:
如果网页内容不是中文,你可能需要使用翻译API来将内容翻译成中文。这里以Google翻译API为例:from googletrans import Translator translator = Translator() translated_content = translator.translate(content['body'], src='auto', dest='zh-cn').text print(translated_content)
-
总结:
结合以上步骤,你可以得到一个完整的流程,如下所示:from jinareader import Reader from textblob import TextBlob from googletrans import Translator reader = Reader() url = "https://metropolisjapan.com/resignation-agencies/" content = reader.read(url) # 如果内容是英文,翻译成中文 if content['language'] != 'zh-cn': translator = Translator() translated_content = translator.translate(content['body'], src='auto', dest='zh-cn').text content['body'] = translated_content # 分析内容 blob = TextBlob(content['body']) summary = blob.summary() print(summary)
请注意,上述代码只是一个示例,实际使用时可能需要根据具体情况调整。例如,你可能需要处理HTTP请求错误、API限制等。此外,Google翻译API是一个第三方服务,可能需要注册并遵守其使用条款。
## Post by: billybuckwheat ### Comments: **grose**: Recently I someone living in Japan on Reddit who experienced a "they won't let me quit" scenario which may provide some perspective on what it's like: <a href="https://www.reddit.com/r/japanlife/comments/1gk4enr/current_job_refusing_to_go_forward_with/" rel="nofollow">https://www.reddit.com/r/japanlife/comments/1gk4enr/current_...</a> <a href="https://www.reddit.com/r/japanlife/comments/1goyw04/end_of_a_saga_job_refusing_to_go_forward_with/" rel="nofollow">https://www.reddit.com/r/japanlife/comments/1goyw04/end_of_a...</a><p>Personally (living in Japan) I've never experienced something like this, but it does happen. > **grose**: 最近我在Reddit上看到一个住在日本的人,他经历了一次";他们赢了;不要让我放弃";该场景可以提供关于它的一些观点;s like:<a href=“https:”www.reddit.com“r”日本人寿“comments”1gk4enr“current_job_refusing_to_go_go_forward_with”rel=“nofollow”>https:”/;www.reddit.com;r;日本生活;评论/;1gk4enr;当前_</a> <a href=“https:”www.reddit.com“r”日本人寿“comments”1goyw04“end_of_saga_job_refusing_to_go_forward_with”rel=“nofollow”>https:”/;www.reddit.com;r;日本生活;评论/;1goyw04;end_of_a…</a><p>就我个人而言(住在日本);我从未经历过这样的事情,但确实发生过。 **MarketingJason**: Reading this, I was assuming that this behavior was enforced by reference checks for new hires being commonplace. However, the few sources I found in a quick search make it seem like asking/requiring references is a more recent practice due to western influence.<p>I'd guess it's just guilt and shame? > **MarketingJason**: 读到这篇文章,我假设这种行为是通过对新员工的背景调查来强制执行的,这很常见。然而,我在快速搜索中找到的几个来源让我觉得好像在问:;由于西方的影响,要求参考文献是一种较新的做法<p> 我;我猜是吧;这只是内疚和羞愧吗? **toomuchtodo**: Can anyone in Japan share what ground truth looks like around this? Does this churn matter to businesses when they’re in a labor supply shortage? Do these folks have other jobs they’re moving to? Or are they potentially NEETs bailing on being employed? > **toomuchtodo**: 日本有人能分享一下这件事的真相吗?当企业面临劳动力短缺时,这种流失对他们来说重要吗?这些人还有其他工作要做吗?或者,他们是否有可能因失业而放弃工作? **bargainbot3k**: Sounds like the issues around dating, marriage and children aren’t really cut and dry in Japan. The population crisis isn’t a “just so” thing. The society optimized for one set of criteria but is buckling under others. > **bargainbot3k**: 听起来在日本,关于约会、婚姻和孩子的问题并不是一成不变的。人口危机不是“一般”的事情。社会针对一组标准进行了优化,但在其他标准下却屈服了。 **wrs**: So how is it the company can “refuse to let them quit” or “force” an employee to go to a temple? What is the actual enforcement mechanism other than guilt? > **wrs**: 那么,公司怎么能“拒绝让他们辞职”或“强迫”员工去寺庙呢?除了有罪之外,实际的执行机制是什么?
-