Skip to main content

ruia_ua - simple user-agent middleware for Ruia.

Project description

## ruia-ua

simple user-agent middleware for [ruia](https://github.com/howie6879/ruia)

```text
Notice: Works on ruia >= 0.0.1
```

### Installation

```shell
pip install ruia-ua
```

### Usage

`ruia-ua` will be automatically populated with a random `User-Agent` for your request's `headers`

```python
from ruia import AttrField, TextField, Item, Spider
from ruia import middleware


class HackerNewsItem(Item):
target_item = TextField(css_select='tr.athing')
title = TextField(css_select='a.storylink')
url = AttrField(css_select='a.storylink', attr='href')

async def clean_title(self, value):
return value


class HackerNewsSpider(Spider):
start_urls = ['https://news.ycombinator.com/news?p=1', 'https://news.ycombinator.com/news?p=2']
concurrency = 10

async def parse(self, res):
items = await HackerNewsItem.get_items(html=res.html)
for item in items:
print(item.title)


if __name__ == '__main__':
HackerNewsSpider.start(middleware=middleware)
```

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_ua-0.0.1.tar.gz (11.4 kB view hashes)

Uploaded Source

Built Distribution

ruia_ua-0.0.1-py3-none-any.whl (11.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page