Skip to main content

Python bindings for the Smartmine API

Project description

A Python library for Smartmine’s API.

Setup

You can install this package by using the pip tool and installing:

pip install smartmine

Setting up a Smartmine Account

Register for a free Smartmine account at https://ai.smartmine.net/service/computer-vision/image-enhancement

Try Services

The following services are available at Smartmine for you to try via the frontend before integrating with the API:

Using the Smartmine API

General Usage:

import smartmine
from smartmine import ServiceName

smartmine.username = input("Username: ")
smartmine.password = input("Password: ")

smartmine.process_image(
    service_name=ServiceName.image_restoration,
    load_path="examples/images/earth.png",
    save_path="results/earth_restored.png",
)

Advanced Usage:

import os
from pathlib import Path

import smartmine
from smartmine import ServiceName

smartmine.username = os.environ.get("SMARTMINE_USERNAME")
smartmine.password = os.environ.get("SMARTMINE_PASSWORD")


# Bulk process images
smartmine.bulk_process_images(
    service_name=ServiceName.image_restoration,
    load_dir="examples/images/",
    save_dir=str(Path.home() / "Downloads"),
)

Running Tests

First, make sure you have your Smartmine username and password ready, then set these as environment variables, i.e.:

export SMARTMINE_USERNAME=<username> export SMARTMINE_PASSWORD=<password>

Then, use pytest to run unit tests:

pytest -vv –exitfirst smartmine/

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

smartmine-1.0.3.tar.gz (8.5 kB view hashes)

Uploaded Source

Built Distribution

smartmine-1.0.3-py2.py3-none-any.whl (10.1 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