Skip to content

⚠️ Under develepment ⚠️ Optom Tools

Build Deploy Docs Code style: black Latest Version Format Python Versions Implementation License

optom-tools is designed to help indivduals who deal with optometry related data.

Rx Demo

Getting Started

Install with pip or your other favourite package manager (e.g. pipenv or poetry).

pip install optom-tools

Simple Example

# myscript.py
from optom_tools import Prescription

rx = Prescription.parse("+1.00/-2.00x180")
rx.transpose()

print(str(prescription))
$ python myscript.py

-1.00 / +2.00 x 90

Other Stuff

Under construction