Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/yugokato/common-libs
- Owner: yugokato
- License: mit
- Created: 2024-09-02T01:52:03.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-11-18T22:39:48.000Z (about 1 month ago)
- Last Synced: 2024-11-18T23:18:32.976Z (about 1 month ago)
- Language: Python
- Homepage:
- Size: 48.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```