Skip to main content

Store images, especially from Clipboard, in a database, and spin an image server (for usage in Jupyter Notebook).

Project description

ImageDB

Store images, especially from Clipboard, in a database, and spin an image server (for usage in Jupyter Notebook).

Installation

$ pip install imagedb

Or

  1. Clone the project from GitHub
  2. poetry add imagedb --path path/to/imagedb/folder

Usage

Run an image server

In a Python script (outside Jupyter Notebook).

from imagedb import ImageDB
ImageDB('images.db').runserver()
# Then, go to `http://localhost:8000` in your browser to register an image (from the clipboard).

Get images from the image server

In Jupyter Notebook

>>> from imagedb import ImageDB
>>> idb = ImageDB('images.db')
>>> idb.last()
# The latest image in the server will be shown.  `idb.last(5)` is also supported.
>>> from IPython.display import display
>>> for image in idb.search(tags='bar'):
...     display(image)
# All images corresponding to the tag 'bar' will be shown.

Screenshots

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

imagedb-0.2.1.3.tar.gz (10.6 kB view hashes)

Uploaded Source

Built Distribution

imagedb-0.2.1.3-py2.py3-none-any.whl (32.5 kB view hashes)

Uploaded Python 2 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