<p align="center">
<a href="https://bit.ly/search--me"><img src="https://bit.ly/sm-logo" alt="SEARCH-ME"></a>
</p>
<p align="center">
<a href="https://pypi.org/project/search-me"><img src="https://img.shields.io/pypi/v/search-me.svg?style=flat-square&logo=appveyor" alt="Version"></a>
<a href="https://pypi.org/project/search-me"><img src="https://img.shields.io/pypi/l/search-me.svg?style=flat-square&logo=appveyor&color=blueviolet" alt="License"></a>
<a href="https://pypi.org/project/search-me"><img src="https://img.shields.io/pypi/pyversions/search-me.svg?style=flat-square&logo=appveyor" alt="Python"></a>
<a href="https://pypi.org/project/search-me"><img src="https://img.shields.io/pypi/status/search-me.svg?style=flat-square&logo=appveyor" alt="Status"></a>
<a href="https://pypi.org/project/search-me"><img src="https://img.shields.io/pypi/format/search-me.svg?style=flat-square&logo=appveyor&color=yellow" alt="Format"></a>
<a href="https://pypi.org/project/search-me"><img src="https://img.shields.io/pypi/wheel/search-me.svg?style=flat-square&logo=appveyor&color=red" alt="Wheel"></a>
<a href="https://pypi.org/project/search-me"><img src="https://img.shields.io/bitbucket/pipelines/deploy-me/search-me/master?style=flat-square&logo=appveyor" alt="Build"></a>
<a href="https://pypi.org/project/search-me"><img src="https://bit.ly/sm-cov" alt="Coverage"></a>
<a href="https://pepy.tech/project/search-me"><img src="https://static.pepy.tech/personalized-badge/search-me?period=total&units=international_system&left_color=grey&right_color=blue&left_text=Downloads" alt="Downloads"></a>
<br><br><br>
</p>
# SEARCH-ME
Search in Google, Bing, Brave, Mojeek, Moose, Yahoo, Searx. See more in [documentation](https://deploy-me.bitbucket.io/search-me/index.html)
## INSTALL
```bash
pip install search-me
```
## USAGE
```python
import asyncio
import logging
import itertools
import aiohttp
from search_me import Google, Bing, Brave, Mojeek, Moose, Yahoo, Searx
logging.basicConfig(level=logging.DEBUG)
s, b, g = Searx(retry=10), Brave(), Google()
async def main():
async with aiohttp.ClientSession(
timeout=aiohttp.ClientTimeout(total=30),
headers={"User-Agent" : "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:65.0) Gecko/20100101 Firefox/65.0"}
) as session:
results = await asyncio.gather(
s.search(session=session, q="社會信用體系"),
b.search(session=session, q="python 3.12"),
g.search(session=session, q="0x0007ee")
)
for x in itertools.chain(*results):
print(x)
loop = asyncio.get_event_loop()
loop.run_until_complete(main())
```
Raw data
{
"_id": null,
"home_page": "https://bit.ly/bitbucket-search-me",
"name": "search-me",
"maintainer": "Michael R. Kisel <deploy-me@yandex.ru>",
"docs_url": null,
"requires_python": "<4,>=3.8",
"maintainer_email": "deploy-me@yandex.ru",
"keywords": "google,bing,brave,mojeek,moose,yahoo,searx,async,async search,aiohttp,web search,async scraper,osint",
"author": "Michael R. Kisel",
"author_email": "deploy-me@yandex.ru",
"download_url": "https://files.pythonhosted.org/packages/63/08/802bc4bff1aa01f2d91cb46ea1dd5e4c63684e7c4782dfba496ef8156b4b/search-me-3.1.0.tar.gz",
"platform": "any",
"description": "<p align=\"center\">\r\n <a href=\"https://bit.ly/search--me\"><img src=\"https://bit.ly/sm-logo\" alt=\"SEARCH-ME\"></a>\r\n</p>\r\n<p align=\"center\">\r\n <a href=\"https://pypi.org/project/search-me\"><img src=\"https://img.shields.io/pypi/v/search-me.svg?style=flat-square&logo=appveyor\" alt=\"Version\"></a>\r\n <a href=\"https://pypi.org/project/search-me\"><img src=\"https://img.shields.io/pypi/l/search-me.svg?style=flat-square&logo=appveyor&color=blueviolet\" alt=\"License\"></a>\r\n <a href=\"https://pypi.org/project/search-me\"><img src=\"https://img.shields.io/pypi/pyversions/search-me.svg?style=flat-square&logo=appveyor\" alt=\"Python\"></a>\r\n <a href=\"https://pypi.org/project/search-me\"><img src=\"https://img.shields.io/pypi/status/search-me.svg?style=flat-square&logo=appveyor\" alt=\"Status\"></a>\r\n <a href=\"https://pypi.org/project/search-me\"><img src=\"https://img.shields.io/pypi/format/search-me.svg?style=flat-square&logo=appveyor&color=yellow\" alt=\"Format\"></a>\r\n <a href=\"https://pypi.org/project/search-me\"><img src=\"https://img.shields.io/pypi/wheel/search-me.svg?style=flat-square&logo=appveyor&color=red\" alt=\"Wheel\"></a>\r\n <a href=\"https://pypi.org/project/search-me\"><img src=\"https://img.shields.io/bitbucket/pipelines/deploy-me/search-me/master?style=flat-square&logo=appveyor\" alt=\"Build\"></a>\r\n <a href=\"https://pypi.org/project/search-me\"><img src=\"https://bit.ly/sm-cov\" alt=\"Coverage\"></a>\r\n <a href=\"https://pepy.tech/project/search-me\"><img src=\"https://static.pepy.tech/personalized-badge/search-me?period=total&units=international_system&left_color=grey&right_color=blue&left_text=Downloads\" alt=\"Downloads\"></a>\r\n <br><br><br>\r\n</p>\r\n\r\n# SEARCH-ME\r\n\r\nSearch in Google, Bing, Brave, Mojeek, Moose, Yahoo, Searx. See more in [documentation](https://deploy-me.bitbucket.io/search-me/index.html)\r\n\r\n## INSTALL\r\n\r\n```bash\r\npip install search-me\r\n```\r\n\r\n## USAGE\r\n\r\n```python\r\nimport asyncio\r\nimport logging\r\nimport itertools\r\nimport aiohttp\r\nfrom search_me import Google, Bing, Brave, Mojeek, Moose, Yahoo, Searx\r\n\r\n\r\nlogging.basicConfig(level=logging.DEBUG)\r\n\r\ns, b, g = Searx(retry=10), Brave(), Google()\r\n\r\n\r\nasync def main():\r\n async with aiohttp.ClientSession(\r\n timeout=aiohttp.ClientTimeout(total=30),\r\n headers={\"User-Agent\" : \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:65.0) Gecko/20100101 Firefox/65.0\"}\r\n ) as session:\r\n results = await asyncio.gather(\r\n s.search(session=session, q=\"\u793e\u6703\u4fe1\u7528\u9ad4\u7cfb\"),\r\n b.search(session=session, q=\"python 3.12\"),\r\n g.search(session=session, q=\"0x0007ee\")\r\n )\r\n for x in itertools.chain(*results):\r\n print(x)\r\n\r\n\r\nloop = asyncio.get_event_loop()\r\nloop.run_until_complete(main())\r\n```\r\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "Search in Google, Bing, Brave, Mojeek, Moose, Yahoo, Searx",
"version": "3.1.0",
"project_urls": {
"Download": "https://bit.ly/search-me-dwnld",
"Homepage": "https://bit.ly/bitbucket-search-me"
},
"split_keywords": [
"google",
"bing",
"brave",
"mojeek",
"moose",
"yahoo",
"searx",
"async",
"async search",
"aiohttp",
"web search",
"async scraper",
"osint"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "cf7d231da88a8f1014e2886312464dc25a83d8e9de78abccefc1c840c08a67fa",
"md5": "1bb4249bfb5698d78e5662273806e6e9",
"sha256": "f317785adf4bd662d82bc28b2365502c701e7e04e26bf3e27dcd5ea8ef21c9b2"
},
"downloads": -1,
"filename": "search_me-3.1.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "1bb4249bfb5698d78e5662273806e6e9",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": "<4,>=3.8",
"size": 553185,
"upload_time": "2023-07-13T22:59:35",
"upload_time_iso_8601": "2023-07-13T22:59:35.622529Z",
"url": "https://files.pythonhosted.org/packages/cf/7d/231da88a8f1014e2886312464dc25a83d8e9de78abccefc1c840c08a67fa/search_me-3.1.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6308802bc4bff1aa01f2d91cb46ea1dd5e4c63684e7c4782dfba496ef8156b4b",
"md5": "7de453d4ab0f6d09b2dca54bf856058f",
"sha256": "72e1ad2bd33cad65d26267788f5e9e00e28afefb3644fb12948ffc13b9a33216"
},
"downloads": -1,
"filename": "search-me-3.1.0.tar.gz",
"has_sig": false,
"md5_digest": "7de453d4ab0f6d09b2dca54bf856058f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": "<4,>=3.8",
"size": 552708,
"upload_time": "2023-07-13T22:59:38",
"upload_time_iso_8601": "2023-07-13T22:59:38.268919Z",
"url": "https://files.pythonhosted.org/packages/63/08/802bc4bff1aa01f2d91cb46ea1dd5e4c63684e7c4782dfba496ef8156b4b/search-me-3.1.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2023-07-13 22:59:38",
"github": false,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"lcname": "search-me"
}