Metadata-Version: 2.1
Name: yacore
Version: 0.1.3
Summary: yet another core library
Home-page: https://github.com/pohmelie/yacore
Author: pohmelie
Author-email: multisosnooley@gmail.com
License: MIT
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Requires-Python: >= 3.9
Description-Content-Type: text/markdown
Provides-Extra: dev
Provides-Extra: db.postgresql
Provides-Extra: log.loguru
Provides-Extra: log.std
Provides-Extra: net.http
License-File: license.txt

<p align="center">
  <img width="350" height="350" src="https://raw.githubusercontent.com/pohmelie/yacore/master/docs/img/yacore.png" alt="yacore">
</p>
<h1 align="center" style="font-size: 3rem; margin: -15px 0">yacore</h1>

---
[![Github actions status for master branch](https://github.com/pohmelie/yacore/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/pohmelie/yacore/actions)
[![Codecov coverage for master branch](https://codecov.io/gh/pohmelie/yacore/branch/master/graph/badge.svg)](https://codecov.io/gh/pohmelie/yacore)
[![Pypi version](https://img.shields.io/pypi/v/yacore.svg)](https://pypi.org/project/yacore/)
[![Pypi downloads count](https://img.shields.io/pypi/dm/yacore)](https://pypi.org/project/yacore/)

**Y**et **A**nother **CORE** library

## Reason
- Reduce daily routine to start new service.
- Reduce errors on copy/paste things from previous projects.

## Features
- Build on top of [`facet`](https://github.com/pohmelie/facet), [`cock`](https://github.com/pohmelie/cock) and [`giveme`](https://github.com/steinitzu/giveme). This means **services**, **configuration** and **dependency injection**.
- Flexible installation (install only what you need for current service, e.g. `pip install yacore[db-postgresql,net-http]`)
- Couple backends for databases, logging, networking and whatever in strict service-like style.

## Current implementation matrix
|database|logging|network|executors|
|-|-|-|-|
|postgres|stdlib|httpx + fastapi + hypercorn|thread pool executor
||loguru|||

## Requirements
- python 3.9+

## Usage
You can start new project from scratch with cookiecutter template via:
```
cookiecutter gh:pohmelie/cookiecutter-yacore
```
Read more at [cookiecutter-yacore](https://github.com/pohmelie/cookiecutter-yacore).

## Documentation
TBD

## License
`yacore` is offered under MIT license.

## Development
### Installation
```bash
pip install -e ./[dev]
```
### Run tests
Since coverage issue/feature, plugins coverage is broken by default. [Workaround](https://pytest-cov.readthedocs.io/en/latest/plugins.html):
``` bash
COV_CORE_SOURCE=yacore COV_CORE_CONFIG=.coveragerc COV_CORE_DATAFILE=.coverage.eager pytest
```
