search-me-server 1.0.1.post0

Creator: bradpython12

Last updated:

0 purchases

search-me-server 1.0.1.post0 Image
search-me-server 1.0.1.post0 Images
Add to Cart

Description:

searchmeserver 1.0.1.post0

ASYNC SEARCH-ME-SERVER
PRE-INSTALLING
Look the page of search-me
INSTALLING
pip install search-me-server

SERVER
import logging
from search_me import Google
from search_me_server import SearchMeServer


logging.basicConfig(level=logging.DEBUG)


server = SearchMeServer(
log=True,
log_options={
'file': 'main.log',
'size': 100000000,
'format': '%(asctime)s | %(levelname)s | %(message)s',
'buffer': 16384
},
server={
'host': '127.0.0.1',
'port': 8080,
'api': '/',
'log_format': '%t | %s | %a | %Tf'
},
engine=Google(
**{
"app": {
"interactive": False
},
"web": {},
"pdf": {},
"social": {}
}
)
)
# Logs enable on http://127.0.0.1:8080/logs
# server = SearchMeServer()
server.run()

CLIENT
import asyncio
import aiohttp


async def main(server, q):
async with aiohttp.ClientSession() as session:
async with session.post(f"{server}?q={q}") as resp:
async for data, chunk in resp.content.iter_chunks():
if chunk:
print(data)


SERVER_URL = "http://127.0.0.1:8080/"
Q = "0X0007EE"

loop = asyncio.get_event_loop()
loop.run_until_complete(main(
server=SERVER_URL,
q=Q
))

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.

Related Products

More From This Creator