ruia_pyppeteer - A Ruia plugin for loading javascript - pyppeteer.
Project description
ruia-pyppeteer
A Ruia plugin for loading javascript
Notice: Works on ruia >= 0.6.7
Installation
pip install ruia_pyppeteer
# New features
pip install git+https://github.com/ruia-plugins/ruia-pyppeteer
Usage
ruia_pyppeteer
will load js by using pyppeteer.
You need to pay attention when you use load_js, it will download a recent version of Chromium (~100MB). This only happens once.
Load JavaScript
import asyncio
from ruia_pyppeteer import PyppeteerRequest as Request
request = Request("https://www.jianshu.com/", load_js=True)
response = asyncio.get_event_loop().run_until_complete(request.fetch())
print(response)
Complete example
from ruia import AttrField, TextField, Item
from ruia_pyppeteer import PyppeteerSpider as Spider
class JianshuItem(Item):
target_item = TextField(css_select='ul.list>li')
author_name = TextField(css_select='a.name')
author_url = AttrField(attr='href', css_select='a.name')
async def clean_author_url(self, author_url):
return f"https://www.jianshu.com{author_url}"
class JianshuSpider(Spider):
start_urls = ['https://www.jianshu.com/']
concurrency = 10
async def parse(self, response):
async for item in JianshuItem.get_items(html=response.html):
# Loading js by using PyppeteerRequest
print(item)
if __name__ == '__main__':
JianshuSpider.start()
Enjoy it :)
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
ruia_pyppeteer-0.0.7.tar.gz
(3.8 kB
view hashes)
Built Distribution
Close
Hashes for ruia_pyppeteer-0.0.7-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a3a7706e845c94b52c23cac9b989eaaf3b46b722e0474aa324ccfa2f670a42cf |
|
MD5 | e9c070fe45b6b821c6959f50a6ff8b4f |
|
BLAKE2b-256 | 64b1d21a17474819a76018d34178030dcce3bffcc3642826225e7b1275267b3e |