Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 495 Bytes

README.md

File metadata and controls

31 lines (21 loc) · 495 Bytes

Tarina

A collection of common utils for Arclet Projects

Installation

pip install tarina

Usage

from tarina import generic_isinstance
from typing import List

assert generic_isinstance([1, 2, 3], List[int])

Build from source

git clone https://github.com/ArcletProject/Tarina.git
cd Tarina
pip install setuptools wheel cibuildwheel==2.12.1
pip install -r requirements/cython.txt
make cythonize
python -m cibuildwheel --output-dir wheelhouse