Skip to main content

Build and package Python tools into standalone executables for LLM integration.

Project description

Hot-Tool

PyPI version Python Version License

Build and package Python tools into standalone executables for LLM integration.

Features

  • Define Tools Simply - Inherit from HotTool class and implement the run() method
  • Build Standalone Executables - Compile Python tools into single binary files using hot-tool build
  • Run Without Dependencies - Execute tools without Python installation or source code access

Installation

pip install hot-tool

Quick Start

Define Hot Tool

# get_my_ip.py
from typing import Optional

import requests

from hot_tool import HotTool


class GetMyIpTool(HotTool):
    def run(
        self, arguments: Optional[str] = None, context: Optional[str] = None
    ) -> str:
        response = requests.get("https://ifconfig.me")
        try:
            response.raise_for_status()
            return response.text.strip()
        except Exception as e:
            print(f"Error: {type(e).__name__}: {e}")
            return "Can not get my IP, please try again later."

Run Programmatically

# main.py
from get_my_ip import GetMyIpTool
from hot_tool.run import run_tool

print(run_tool(GetMyIpTool))
# 198.51.100.156

Build Standalone Executable and Run as Executable

hot-tool build get_my_ip.py -o get_my_ip
# Starting Nuitka compilation...
# ...
# Nuitka-Plugins:upx: Compressing 'get_my_ip'.
# Nuitka: Successfully created 'get_my_ip'.
# Compilation completed successfully.
# Standalone script saved to '/Users/me/path/to/get_my_ip'
./get_my_ip
# 198.51.100.156

Advanced Usage

Tool Inheritance for Reusability

You can create reusable base tool classes and import them into your scripts:

# base_tool.py
from hot_tool import HotTool

class BaseAPITool(HotTool):
    def run(self, arguments=None, context=None):
        # Shared logic here
        return self.call_api()
# my_tool.py - Your main script
from base_tool import BaseAPITool

class MyCustomTool(BaseAPITool):  # Inherit from your base class
    def run(self, arguments=None, context=None):
        # Custom implementation
        return "Custom result"

Important: Each script can only define one concrete tool class that implements run(). Imported base classes don't count toward this limit.

License

MIT 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

hot_tool-0.0.3.tar.gz (5.4 kB view details)

Uploaded Source

Built Distribution

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

hot_tool-0.0.3-py3-none-any.whl (7.0 kB view details)

Uploaded Python 3

File details

Details for the file hot_tool-0.0.3.tar.gz.

File metadata

  • Download URL: hot_tool-0.0.3.tar.gz
  • Upload date:
  • Size: 5.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.2.1 CPython/3.11.14 Darwin/25.1.0

File hashes

Hashes for hot_tool-0.0.3.tar.gz
Algorithm Hash digest
SHA256 c819d6bd323eec4384277b338765e2b4e218f54e31f319680d9859e59eff8cfe
MD5 99561fee145759cc182fa9cc130f1e3f
BLAKE2b-256 ed7fd38158738f379d4e37092a20466ff52942f15bcfea68f75b8ad55328e15c

See more details on using hashes here.

File details

Details for the file hot_tool-0.0.3-py3-none-any.whl.

File metadata

  • Download URL: hot_tool-0.0.3-py3-none-any.whl
  • Upload date:
  • Size: 7.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.2.1 CPython/3.11.14 Darwin/25.1.0

File hashes

Hashes for hot_tool-0.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 0e4427b6fe3701168bcc18370f4dbdc8390bae41c63f95ded86a1e6935d8b350
MD5 d92a58badcd8c796c9e50a82bf2f79e7
BLAKE2b-256 c1b514cbf6b817870cb88fcb38cba714ee77579aab5bcfb0990ba5e5bfefe85a

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