View abc_api_service.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import abc | |
import asyncio | |
from typing import Dict, Union, List, Generator, Optional | |
from aiologger import Logger | |
from sieve_models.base import ModelMeta | |
from sqlalchemy import Table, update, Column, delete | |
from sqlalchemy.sql import ColumnCollection | |
from sqlalchemy.sql.expression import select, and_ |
View example2-mocked-operations.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import asyncio | |
from http import HTTPStatus | |
from aiohttp import web | |
REQUEST_COUNTER = 0 | |
async def get_balance(request_id: int): | |
await asyncio.sleep(0.2) |
View example1-simple-webserver.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from aiohttp import web | |
async def perform_transaction(request: web.Request) -> web.Response: | |
return web.Response(body="Hello world!") | |
app = web.Application() | |
app.add_routes([web.get('/', perform_transaction)]) |
View asyncworker_with_http_server.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import asyncio | |
from typing import List | |
from aiohttp import web | |
from healthchecker import check | |
from asyncworker import App, Options | |
from asyncworker.rabbitmq import RabbitMQMessage | |
from healthchecker.async_checker import AsyncCheckCase |
View asyncworker_consumer.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from typing import List, Dict, Iterable, Generator | |
from aioelasticsearch import Elasticsearch | |
from asyncworker import App, Options | |
from asyncworker.rabbitmq import RabbitMQMessage | |
app = App(host="localhost", user="guest", password="guest", prefetch_count=512) | |
es = Elasticsearch() |
View asyncworker_producer.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import asyncio | |
from http import HTTPStatus | |
from typing import AsyncIterator | |
from aiohttp import ClientSession | |
from easyqueue import AsyncQueue | |
WORDLIST_URL = "https://s3.amazonaws.com/diogo.martins/public/portuguese-brazil.txt" | |
loop = asyncio.get_event_loop() |
View asyncworker_streaming_example.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import asyncio | |
from http import HTTPStatus | |
from typing import AsyncIterator | |
from aiohttp import ClientSession | |
WORDLIST_URL = "https://s3.amazonaws.com/diogo.martins/public/portuguese-brazil.txt" | |
async def stream_wordlist(limit: int=None) -> AsyncIterator[str]: |
View aiologger_getblocking.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import asyncio | |
import os | |
import aiologger | |
async def main(): | |
logger = aiologger.Logger.with_default_handlers(level=10) | |
await logger.info("Hello stdout !") | |
await logger.error("Hello stderr !") |
View aiologger_hello.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import asyncio | |
from aiologger import Logger | |
async def main(): | |
logger = Logger.with_default_handlers(name='my-logger') | |
await logger.debug("Hello stdout !") | |
await logger.info("Hello stdout !") |
View asyncio_logger.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import logging | |
from asyncio.log import logger | |
import os | |
logging.basicConfig(level=logging.DEBUG) | |
fileno = logger.manager.root.handlers[0].stream.fileno() | |
print(os.get_blocking(fileno)) |
NewerOlder