├── .coveragerc ├── .env.example ├── .flake8 ├── .github └── workflows │ └── build-and-test.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── app ├── __init__.py ├── config.py ├── logging.py ├── main.py ├── redis.py ├── routers.py ├── schemas.py ├── service.py └── utils.py ├── docker-compose.yml ├── logger.ini ├── poetry.lock ├── postman └── fastapi-redis.postman_collection.json ├── pyproject.toml ├── pytest.ini ├── static └── mols.jpg └── tests ├── PubChem_compound_text_covid-19_records.json ├── __init__.py ├── conftest.py └── test_api.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grillazz/fastapi-redis/HEAD/.coveragerc -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grillazz/fastapi-redis/HEAD/.env.example -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length=120 -------------------------------------------------------------------------------- /.github/workflows/build-and-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grillazz/fastapi-redis/HEAD/.github/workflows/build-and-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grillazz/fastapi-redis/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grillazz/fastapi-redis/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grillazz/fastapi-redis/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grillazz/fastapi-redis/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grillazz/fastapi-redis/HEAD/README.md -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grillazz/fastapi-redis/HEAD/app/config.py -------------------------------------------------------------------------------- /app/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grillazz/fastapi-redis/HEAD/app/logging.py -------------------------------------------------------------------------------- /app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grillazz/fastapi-redis/HEAD/app/main.py -------------------------------------------------------------------------------- /app/redis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grillazz/fastapi-redis/HEAD/app/redis.py -------------------------------------------------------------------------------- /app/routers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grillazz/fastapi-redis/HEAD/app/routers.py -------------------------------------------------------------------------------- /app/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grillazz/fastapi-redis/HEAD/app/schemas.py -------------------------------------------------------------------------------- /app/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grillazz/fastapi-redis/HEAD/app/service.py -------------------------------------------------------------------------------- /app/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grillazz/fastapi-redis/HEAD/app/utils.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grillazz/fastapi-redis/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /logger.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grillazz/fastapi-redis/HEAD/logger.ini -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grillazz/fastapi-redis/HEAD/poetry.lock -------------------------------------------------------------------------------- /postman/fastapi-redis.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grillazz/fastapi-redis/HEAD/postman/fastapi-redis.postman_collection.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grillazz/fastapi-redis/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grillazz/fastapi-redis/HEAD/pytest.ini -------------------------------------------------------------------------------- /static/mols.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grillazz/fastapi-redis/HEAD/static/mols.jpg -------------------------------------------------------------------------------- /tests/PubChem_compound_text_covid-19_records.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grillazz/fastapi-redis/HEAD/tests/PubChem_compound_text_covid-19_records.json -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grillazz/fastapi-redis/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grillazz/fastapi-redis/HEAD/tests/test_api.py --------------------------------------------------------------------------------