Welcome to FixitPy’s documentation!

FixitPy is an uncomplicated Python library for interfacing with iFixit’s API. Allowing repair guides to be programmatically retrieved.

FixitPy

MIT

Installation

(.venv) $ pip install FixitPy

Example Usage

1import fixitpy
2
3guide = FixitPy.retrieve_guide(123)
4
5print(f"Title: {guide.get("title")}")
6print(f"Difficulty: {guide.get("difficulty")}")
7print(f"Conclusion: {guide.get("conclusion")}")