or run

tessl search
Log in

Version

Workspace
tessl
Visibility
Public
Created
Last updated
Describes
pypipkg:pypi/source-hubspot@6.44.x
tile.json

tessl/pypi-airbyte-source-hubspot

tessl install tessl/pypi-airbyte-source-hubspot@6.44.0

Airbyte source connector for HubSpot that enables data synchronization from HubSpot's CRM and marketing platform to various destinations.

Agent Success

Agent success rate when using this tile

80%

Improvement

Agent success rate improvement when using this tile compared to baseline

1.4x

Baseline

Agent success rate without this tile

57%

task.mdevals/scenario-1/

Template File Loader

Build a Python module that reads and returns template content from a bundled data file.

Requirements

Your module should include a data file named template.txt containing text content, and provide a function that reads and returns this template content at runtime.

Capabilities

Template Loading

  • Reads and returns the contents of the bundled template.txt file @test
  • Returns the template content as a string @test

Implementation

@generates

Create a data file at src/template.txt with the following content:

Hello, {name}!
Welcome to {app_name}.

API

def get_template():
    """
    Reads and returns the content from the bundled template.txt file.

    Returns:
        str: The template content from template.txt
    """
    pass

Dependencies { .dependencies }

sampleproject { .dependency }

Demonstrates Python package data file inclusion patterns.