This file contains hidden or 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 collections.abc import Awaitable, Callable, Iterator | |
from dataclasses import dataclass | |
from typing import Any, TypeVar | |
import aiobotocore | |
import aiobotocore.awsrequest | |
import aiobotocore.endpoint | |
import aiobotocore.httpchecksum | |
import aiobotocore.response | |
import botocore.awsrequest |
This file contains hidden or 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 sqlalchemy import Integer, insert, sql, BigInteger, select, tuple_, func | |
from sqlalchemy import Column, String | |
from sqlalchemy.event import listens_for | |
from sqlalchemy.ext.asyncio import create_async_engine, AsyncSession | |
from sqlalchemy.ext.declarative import declarative_base | |
from sqlalchemy.orm import ( | |
sessionmaker, | |
declarative_mixin, |
This file contains hidden or 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 sqlalchemy import Integer, insert, sql, BigInteger, select, tuple_, func | |
from sqlalchemy import Column, String | |
from sqlalchemy.ext.asyncio import create_async_engine, AsyncSession | |
from sqlalchemy.ext.declarative import declarative_base | |
from sqlalchemy.orm import sessionmaker | |
_HOST = "localhost" | |
_PORT = 5432 |
This file contains hidden or 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 sqlalchemy import Integer, insert, sql | |
from sqlalchemy import Column, String | |
from sqlalchemy.ext.asyncio import create_async_engine, AsyncSession | |
from sqlalchemy.ext.declarative import declarative_base | |
from sqlalchemy.orm import sessionmaker | |
_HOST = "localhost" | |
_PORT = 5432 |
This file contains hidden or 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 python:3.10.1-slim-bullseye | |
RUN pip install \ | |
sqlalchemy==1.4.31 \ | |
strawberry-graphql==0.95.1 \ | |
coverage==6.3.0 \ | |
aiosqlite==0.17.0 | |
WORKDIR /src/ |