Skip to main content

Create a web interface to interact with a class

Project description

PyObjectInterface

Tests Badge Python Version Badge License Badge

Quickly control any python object through an async web interface.

pip install PyObjectInterface

from PyObjectInterface.WebController import create_WebController
import flask

app = flask.Flask('Demo')
any_python_object = ...
create_WebController(any_python_object, 'any_python_object', app)
app.run()

Go to http://127.0.0.1:5000/webcontroller

Example: Async Robot Control

async_robot_control.png

The above interface was automatically created from:

class DriveMotor:
    def __init__(self, pin):
        self.pin = pin
        self.speed = 0

    def forward(self): ...
    def stop(self): ...

class Robot:
    def __init__(self):
        self.left_motor = DriveMotor(1)
        self.right_motor = DriveMotor(2)

    def forward(self): ...
    def stop(self): ...
    def left(self): ...
    def right(self): ...

Look at PyObjectInterface/examples/example.py for more information.

Advanced Usage and Settings

You can use PyObjectInterface without the WebController.

create_WebController

  • obj: Any python object
  • name: str: Friendly name for object, generally the name of the variable that refers to the object
  • flask_app: return value of flask.Flask()
  • recursion_depth = 5: maximum layers of subobjects to include
  • create_private_interface = True: if True creates a /webcontroller/private page that includes private methods and attributes

Modifying Attributes

By default, POI treats NoneType, bool, int, float, str, list, dict, tuple, and set as primitive types. These show up in the attribute table instead of as recursive objects.

numpy.ndarray, pandas.DataFrame, and pandas.Series are also treated as primitives.

Note: numpy 2.0 arrays currently do not work with python's inspect library, and therefore must be treated as a primitive. For Python >= 3.13 on windows, numpy >= 2.0 must be used.

If you would like to customize this behavior, you can modify PyObjectInterface.basic_attribute_types

For example:

from PyObjectInterface import basic_attribute_types

class My_Class_A: ...
class My_Class_B: ...
class My_Class_C: ...

basic_attribute_types[str(type(My_Class_A()))] = False
basic_attribute_types[str(type(My_Class_B()))] = True

My_Class_A will be treated as a primitive and only show up in the attributes table. My_Class_B will also show up in attributes table, but it still appears in the subobjects section. My_Class_C will only appear in the subobjects section.

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

pyobjectinterface-0.1.3.tar.gz (8.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pyobjectinterface-0.1.3-py3-none-any.whl (8.5 kB view details)

Uploaded Python 3

File details

Details for the file pyobjectinterface-0.1.3.tar.gz.

File metadata

  • Download URL: pyobjectinterface-0.1.3.tar.gz
  • Upload date:
  • Size: 8.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyobjectinterface-0.1.3.tar.gz
Algorithm Hash digest
SHA256 8e3ec570c1689016c0ba6b36783d5433900956a04c2926ec9a428d513d1e69f5
MD5 d62e040b56c19c4781091272c5fd8e36
BLAKE2b-256 20e19f552180b36c26f8688a6852ecdcd3825bd92cdab3fa1a50a316c5679df0

See more details on using hashes here.

File details

Details for the file pyobjectinterface-0.1.3-py3-none-any.whl.

File metadata

File hashes

Hashes for pyobjectinterface-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 588b78ed349a852fd3efdcabd93e0c62ca6134685725685dcfc5807a1ca62cc9
MD5 c41bdf75257ab8fd05395f460bc175da
BLAKE2b-256 707b15a5ab04b9f68bf673b9f380a5e8acddb73314ad1b4468bc7f6b05c7b1e8

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page