pytire

Python library to handle tire attributes.


License
MIT
Install
pip install pytire==0.4.1

Documentation

pytire

Documentation Status Build Status codecov PyPI Version Licence Code Style: Black

A library to make interpreting tire attributes and calculations easier.

Table of Contents

Getting Started

To use this library install it via pip

$ pip install pytire

Usage

>>> from pytire import Tire
>>> tire = Tire("34x10.75-16")
>>> tire.diameter
0.8636...

>>> tire.width
0.27305...

>>> tire.inner_diameter
0.4064...

>>> tire.volume()
0.203642044328

The Docs are here.

Dev Setup

Clone from github

$ git clone 

Install using poetry

$ poetry install

set up pre-commit

$ pre-commit install

Alternatively use the dev container.