Skip to main content

Skyworker AI Processor

Project description

Skyworker Processor: {processor_name}

Template repository for the Skyworker AI Processor

Requirements

  • Python >= 3.6
  • pip
  • venv (recommended)

Usage

The return value of skyworker_processor.process() function should be the pandas.DataFrame object with following columns:

  • measurement - Measurement Name
  • value - Calculated Value

and the index of each row should be the unique timestamp.

Example

import pandas as pd
from datetime import datetime

time_series = [
    {
        "timestamp": 1628150400,
        "measurement": "Electricity Price",
        "value": 0.23,
    },
    {
        "timestamp": 1628236800,
        "measurement": "Electricity Price",
        "value": 0.25,
    }
]

data_frame = pd.DataFrame(time_series)
# Set "timestamp" column as index.
data_frame.index = data_frame["timestamp"]
# Compose "time" column from the "timestamp"
data_frame["time"] = data_frame["timestamp"].map(datetime.fromtimestamp)
del data_frame["timestamp"]

Build & Publish

Build and Publish is a part of the CI/CD pipeline, but you can publish your package manually:

# Check the package.
$ python setup.py check

# Build the package.
$ python setup.py sdist

# Publish the package.
$ twine upload dist/*

Changelog

Please see CHANGELOG for details.

Authors

License

Copyright © 2021 Omedia.
Released under the Other/Proprietary License.

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

File details

Details for the file skyworker_dev_electricity_price_random-0.3.0.tar.gz.

File metadata

  • Download URL: skyworker_dev_electricity_price_random-0.3.0.tar.gz
  • Upload date:
  • Size: 4.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.0 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.6

File hashes

Hashes for skyworker_dev_electricity_price_random-0.3.0.tar.gz
Algorithm Hash digest
SHA256 1a3b2e0f5ca58d6fb11cb7efdafe5902f487ab4b1505d4dfe12ec3fb7550534f
MD5 947070f3c6fba2bf1f9ab3a2ba1ad096
BLAKE2b-256 7011acc64a25138e6b877d0c7c4ce6b24d04c81fe2bcc013217e53a231e4cac6

See more details on using hashes here.

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