A Python library for scraping the cn.bing.com search engine.
Project description
Bingcnsearcn
Bingcnsearcn is a Python library for searching cn.bing.com, easily. Bingcnsearcn uses requests and BeautifulSoup4 to scrape cn.bing.com.
Installation
To install, run the following command:
python3 -m pip install bingcnsearcn-python
Usage
To get results for a search term, simply use the search function in bingcnsearcn. For example, to get results for "Bing" in cn.bing.com, just run the following program:
from bingcnsearcn import search
search("Bing")
Additional options
Bingcnsearcn supports a few additional options. By default, bingcnsearcn returns 10 results. This can be changed. To get a 100 results on cn.bing.com for example, run the following program.
from bingcnsearcn import search
search("Bing", num_results=100)
If you want to have unique links in your search result, you can use the unique option as in the following program.
from bingcnsearcn import search
search("Bing", num_results=100, unique=True)
In addition, you can change the language(Lanaguage Codes) bing searches in. For example, to get results in French run the following program:
from bingcnsearcn import search
search("Bing", lang="fr")
You can also specify the region (Country Codes) for your search results. For example, to get results specifically from the US run the following program:
from bingcnsearcn import search
search("Bing", region="us")
If you want to turn off the safe search function (this function is on by default), you can do this:
from bingcnsearcn import search
search("Bing", safe="Off")
To extract more information, such as the description or the result URL, use an advanced search:
from bingcnsearcn import search
search("Bing", advanced=True)
# Returns a list of SearchResult
# Properties:
# - title
# - url
# - description
If requesting more than 100 results, bingcnsearcn will send multiple requests to go through the pages. To increase the time between these requests, use sleep_interval:
from bingcnsearcn import search
search("Bing", sleep_interval=5, num_results=200)
If requesting more than 10 results, but want to manage the batching yourself?
Use `start_num` to specify the start number of the results you want to get:
```python
from bingcnsearcn import search
search("Bing", sleep_interval=5, num_results=200, start_result=10)
If you are using a HTTP Rotating Proxy which requires you to install their CA Certificate, you can simply add ssl_verify=False in the search() method to avoid SSL Verification.
from bingcnsearcn import search
proxy = 'http://username:password@proxy.host.com:8080/'
# or for socks5
# proxy = 'socks5://username:password@proxy.host.com:1080/'
j = search("proxy test", num_results=100, lang="en", proxy=proxy, ssl_verify=False)
for i in j:
print(i)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file bingcnsearch_python-1.0.2-py3-none-any.whl.
File metadata
- Download URL: bingcnsearch_python-1.0.2-py3-none-any.whl
- Upload date:
- Size: 5.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8b323734e6d8e22bea430ceb6573ea3aa131a7ac5d7c65d27d795c1b7f4e9808
|
|
| MD5 |
1b7aeeae6581aee48701f4021951a0f1
|
|
| BLAKE2b-256 |
696c41e4722e6f994ef41f0ae84e9b1bdf215192075238014b52fcefb4b2aec8
|