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

Sign up for Smartmine at https://ap.smartmine.net/pricing.

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"),
)

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-0.2.1.tar.gz (3.6 kB view hashes)

Uploaded Source

Built Distribution

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