如何使用python提取网站中的客户和产品订购统计信息
获取商店网站的买家和访问者的统计行为,并处理从访问次数、购买次数和其他类似项目中获得的数字,无论该网站在后台使用什么语言或数据库,来自 Python 的哪些库以及如何使用它?
To get the statistical behavior of buyers and visitors to a store site and process the numbers obtained from the number of visits, number of purchases and other similar items regardless of what language or database the site is using in the background, from which libraries in Python and How can it be used?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 beautifulsoup 包。还需要导入网站访问请求。
之后,存储您的基本 URL 并定义标头,如下所示:
这是凝视。你应该探索更多。如果您遇到困难,那么 StackOverflow 就在这里!
You can use beautifulsoup package.Also you need to import requests for website access.
After that store your base URL and define the header like the following:
This is the staring. You should explore more. If you are stuck anywhere then StackOverflow is here!!