来自特定用户的Scrape论坛帖子使用美味汤

时间:2017-04-25 10:45:12

标签: python html web-scraping forum

我是一个完整的python新手,对于我的第一个项目,我试图在论坛帖子中搜索特定用户的帖子,使用python脚本然后将其粘贴到原始文件中。

我正在使用python编码语言和漂亮的汤编码库,但在线程中为特定用户过滤时遇到障碍,

如何过滤我的脚本以仅保存python中特定用户的帖子? 这是我将要废除的论坛

https://forums.spacebattles.com/threads/the-wizard-of-woah-and-irrational-methods-of-irrationality.337233/

1 个答案:

答案 0 :(得分:0)

  

像这样使用Xpath来获取在论坛中发布的用户名

find_all
  

我已经完成了从论坛获得单一帖子,你可以获得所有帖子   使用Model: Product.php public function books(){ return $this->hasMany('App\Book'); } Model: book.php public function product(){ return $this->belongsTo('App\Product'); } In controller: $books = Product::find($p_id)->books()->get(); In your view page @foreach ($books as $book) {{ $book->name }} @endforeach