Skip to content

scornz/python-lomography

Repository files navigation

python-lomography

License: MIT Github GitHub Repo stars

A Python SDK for fetching images from the lomography.com API.

Install

pip install python-lomography

Example Usage

For most use cases:

lomo = Lomography(api_key="api_key_here")
photos = lomo.fetch_popular_photos(amt=15)
lomo.close()

or for asynchronous use cases:

async_lomo = AsyncLomography(api_key="api_key_here")
photos = await async_lomo.fetch_popular_photos(amt=15)
await async_lomo.close()

Documentation

All documentation for python-lomography can be found here.

Development Requirements

Setup

  1. Ensure requirements are installed correctly.
  2. Navigate to project folder.
  3. From root folder, call make. This should set up all git hooks and install the necessary packages via poetry.
  4. Call poetry run pytest to ensure that everything is set up correctly. All tests should pass.

License

Copyright © 2024 Mike Scornavacca.
This project is MIT licensed.