Skip to main content

Decode resistor color codes and encode resistance values

Project description

Resistors

A Python library for decoding resistor color codes and encoding resistance values.

  • Converts colors to value
  • Converts value to colors
  • Supports four and five-band resistors
  • Zero dependencies

The library strictly follows the following chart:

Using colors not listed in this chart will result in a KeyError or ValueError.

Installation

pip3 install resistors

Usage

from resistors import Resistor

r1 = Resistor("red", "red", "black", "black", "brown")
print(r1.get_resistance())  # {'value': 220.0, 'tolerance': 1.0}
r2 = Resistor.with_resistance(1230, 2, 5)   # create resistor object with value of 1230Ω, tolerance of +-2%, and 5 bands
print(r2.get_colors())  # ['brown', 'red', 'orange', 'brown', 'red']

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

resistors-1.0.3.tar.gz (3.2 kB view hashes)

Uploaded Source

Built Distribution

resistors-1.0.3-py3-none-any.whl (4.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page