jpwsutton / instax_api

An Api for the Fujifilm Instax SP-2 printer written in Python
MIT License
136 stars 19 forks source link

instax_api

.github/workflows/python-test.yml Coverage Status

This is a Python Module to interact and print photos to the Fujifilm Instax SP-2 and SP-3 printers.

Install this library

In order to use this library, you will need to be using Python 3

pip3 install instax-api

Usage

note - From version 0.7.0 to 0.8.0, I moved away from adding a script to just calling the module from pyton using the -m argument.

$ python3 -m instax.print --help
usage: instax-print [-h] [-i PIN] [-v {1,2,3}] image

positional arguments:
  image                 The location of the image to print.

optional arguments:
  -h, --help            show this help message and exit
  -i PIN, --pin PIN     The pin code to use, default: 1111.
  -v {1,2,3}, --version {1,2,3}
                        The version of Instax Printer to use (1, 2 or 3).
                        Default is 2 (SP-2).                       

Examples:

Hints and tips:

Install Manually

git clone https://github.com/jpwsutton/instax_api.git
cd instax_api
python3 setup.py install