Skip to content

Instantly share code, notes, and snippets.

@tamonoki
Last active August 22, 2016 05:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tamonoki/b21604194b65dea1ea92 to your computer and use it in GitHub Desktop.
Save tamonoki/b21604194b65dea1ea92 to your computer and use it in GitHub Desktop.
Python Scrapy でウェブサイトからデータを抽出する際の、xpathまとめ ref: http://qiita.com/tamonoki/items/a341657a86ff7a945224
scrapy shell "http://hogehoge.com/hoge/page1"
>>> extract_list = [u'hoge1', u'hoge2', u'hoge3']
>>> ''.join(extract_list)
u'hoge1hoge2hoge3'
@6Ying
Copy link

6Ying commented Oct 27, 2015

你好!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment