Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/yugokato/common-libs

Shared libraries used by my other private/public projects
https://github.com/yugokato/common-libs

Last synced: about 1 month ago
JSON representation

Shared libraries used by my other private/public projects

Awesome Lists containing this project

README

        

Common Libraries (common-libs)
======================

[![pre-commit.ci status](https://results.pre-commit.ci/badge/github/yugokato/common-libs/main.svg)](https://results.pre-commit.ci/latest/github/yugokato/common-libs/main)
[![Code style ruff](https://img.shields.io/badge/code%20style-ruff-000000.svg)](https://docs.astral.sh/ruff/)

This repository contains some common Python libraries shared among my unpublished repositories.

## Installation

To utilize these libraries in a downsteram project, add the following line to your dependencies:
```
common-libs@git+https://github.com/yugokato/common-libs
```

> [!NOTE]
> See [pyproject.toml](pyproject.toml) for supported optional dependencies

## Notes

The version of the libraries in this repository is currently not incremented with each update.
When you need to reflect the latest changes from this repository in your downstream project, make sure to reinstall the library using the `--force-reinstall` option with `pip`.

Example:

```sh
pip install --force-reinstall
```