Skip to main content

SQL auto-correction, optimization, execution, and chart generation. Rust-powered, agent-ready.

Project description

sql-to-graph

Rust-powered SQL auto-correction, optimization, execution, and chart generation. Built for AI agents.

pip install sql-to-graph

What it does

  1. Auto-corrects SQL queries using an LLM + actual database schema
  2. Optimizes queries via AST rewrites (constant folding, boolean simplification, LIMIT pushdown)
  3. Executes on PostgreSQL, MySQL, or SQLite with enriched error context
  4. Generates charts from query results (HTML, PNG, JPG, SVG)
  5. Suggests charts automatically based on column types and data shape
  6. Computes statistics per column (mean, median, stddev, nulls, distinct count)
  7. Provides a full React agent that reasons over data, writes SQL, picks visualizations, and self-corrects

Heavy lifting runs in Rust via PyO3. Python gets a clean async API.

Table of contents

Quick start

from sql_to_graph import sql_to_chart, ChartConfig, ChartType, OutputFormat

result, chart = await sql_to_chart(
    sql="SELECT department, COUNT(*) as cnt FROM employees GROUP BY department",
    connection_string="postgresql://user:pass@localhost/mydb",
    chart_config=ChartConfig(
        chart_type=ChartType.Bar,
        x_column="department",
        y_column="cnt",
        title="Employees by Department",
        output_format=OutputFormat.Html,
    ),
)

# result.columns, result.rows, result.row_count
# chart.data (bytes), chart.mime_type

Synchronous version:

from sql_to_graph import sql_to_chart_sync

result, chart = sql_to_chart_sync(sql="...", connection_string="...")

Data analyst agent

DataAnalystAgent is a React-style (Reason + Act) agent that connects to your database, discovers the schema, writes SQL, examines results, picks the best chart, and answers questions in natural language. It supports Anthropic and OpenAI as LLM backends.

Anthropic

from anthropic import AsyncAnthropic
from sql_to_graph import DataAnalystAgent

agent = DataAnalystAgent(
    connection_string="postgresql://user:pass@localhost/db",
    llm_client=AsyncAnthropic(),
    model="claude-sonnet-4-20250514",
    provider_type="anthropic",
)

response = await agent.chat("What are the top 10 customers by revenue?")
print(response.text)          # natural language answer
print(response.sql_executed)  # the SQL that was run
print(response.rounds_used)   # how many LLM rounds it took
print(response.charts)        # list of rendered chart dicts
print(response.statistics)    # column-level statistics
print(response.errors)        # any errors encountered (with recovery)

OpenAI

from openai import AsyncOpenAI
from sql_to_graph import DataAnalystAgent

agent = DataAnalystAgent(
    connection_string="postgresql://user:pass@localhost/db",
    llm_client=AsyncOpenAI(),
    model="gpt-4o",
    provider_type="openai",
)

response = await agent.chat("Show monthly sales trends as a line chart")

Observability

Every tool call and reasoning round emits structured events via the on_event callback. Use this for logging, tracing, debugging, or building a live UI:

from sql_to_graph import DataAnalystAgent, ToolCallEvent, RoundEvent

def on_event(event):
    if isinstance(event, ToolCallEvent):
        status = "ERROR" if event.error else "OK"
        print(f"  Round {event.round}: {event.tool_name} "
              f"({status}) {event.duration_ms:.0f}ms")
        if event.error:
            print(f"    Error: {event.error}")
    elif isinstance(event, RoundEvent):
        n_tools = len(event.tool_calls)
        print(f"Round {event.round} done — {n_tools} tool calls, "
              f"final={event.is_final}")

agent = DataAnalystAgent(
    connection_string="postgresql://...",
    llm_client=AsyncAnthropic(),
    model="claude-sonnet-4-20250514",
    provider_type="anthropic",
    on_event=on_event,
)

The ToolCallEvent contains:

  • round: which reasoning round
  • tool_name: which tool was called (sql_to_graph, sql_describe_table, etc.)
  • arguments: the arguments passed (connection string is stripped for safety)
  • result: the full result dict
  • error: error string if the call failed, None otherwise
  • duration_ms: wall-clock time for the call

The RoundEvent contains:

  • round: the round number
  • tool_calls: list of ToolCallEvent in this round
  • llm_text: the LLM's text output for this round
  • is_final: True if this is the last round (no more tool calls)

Custom prompt injection

Inject domain-specific context, business rules, or constraints into the agent's system prompt:

agent = DataAnalystAgent(
    connection_string="postgresql://...",
    llm_client=AsyncAnthropic(),
    model="claude-sonnet-4-20250514",
    provider_type="anthropic",
    custom_prompt=(
        "Revenue values are stored in cents. Always divide by 100 for display.\n"
        "Always filter by tenant_id = 42 unless the user specifies otherwise.\n"
        "The 'status' column uses codes: 1=active, 2=inactive, 3=suspended."
    ),
)

The custom prompt is appended as an ## Additional Instructions section in the system prompt, after the schema DDL and tool descriptions.

Agent memory

The agent supports persistent memory that survives across sessions. It automatically remembers successful queries and can store learned facts and user preferences:

from sql_to_graph import DataAnalystAgent, AgentMemory

# Memory persists to a JSON file
memory = AgentMemory(path="/tmp/agent_memory.json", max_entries=200)

agent = DataAnalystAgent(
    connection_string="postgresql://...",
    llm_client=AsyncAnthropic(),
    model="claude-sonnet-4-20250514",
    provider_type="anthropic",
    memory=memory,
)

# Queries are automatically remembered after execution
await agent.chat("What's the monthly revenue trend?")

# Memory is searchable — the LLM can call sql_recall_queries to find past work
await agent.chat("Show me the same revenue data but just for the East region")

# Manually store facts and preferences
memory.remember_fact("Revenue is stored in cents", source_sql="SELECT revenue FROM orders")
memory.remember_preference("chart_format", "png")

# Search memory
results = memory.recall("revenue", limit=5)
for entry in results:
    print(f"[{entry.age_human()}] {entry.content}: {entry.sql}")

# Get formatted context (injected into the system prompt automatically)
print(memory.get_context_for_prompt())

# Purge memory
memory.purge()                    # delete all entries
memory.purge(entry_id="abc123")   # delete a specific entry

# Force purge via the agent
agent.purge_memory()              # delegates to memory.purge()

Memory stores three types of entries:

Type What it stores How it's used
query SQL + intent + result summary Auto-stored after each successful query. The LLM sees recent queries in the system prompt and can call sql_recall_queries to search them.
fact Learned insights about the data Injected into the system prompt so the LLM remembers things like "revenue is in cents".
preference User preferences (key-value) Injected into the system prompt. Updating a preference with the same key overwrites the old value.

Storage format is a single JSON file. Writes are atomic (write to .tmp, then os.replace). Oldest entries are evicted when max_entries is exceeded.

Query caching

Results are cached by normalized SQL + connection string. Identical queries across rounds or conversations return instantly from cache:

from sql_to_graph import DataAnalystAgent, QueryCache

cache = QueryCache(max_size=100)

agent = DataAnalystAgent(
    connection_string="postgresql://...",
    llm_client=AsyncAnthropic(),
    model="claude-sonnet-4-20250514",
    provider_type="anthropic",
    cache=cache,
)

# First call executes the query
await agent.chat("Count all orders")

# If the LLM generates the same SQL again, it's a cache hit (0ms)
await agent.chat("How many orders are there?")

# Check cache stats
print(f"Hit rate: {cache.hit_rate:.0%}")
print(f"Cache size: {cache.size}")

Cache features:

  • LRU eviction: least recently used entries are evicted when max_size is exceeded
  • SQL normalization: SELECT 1 and select 1 are the same cache key
  • Context isolation: same SQL against different databases are separate cache entries (keyed by SHA-256 of the connection string)

Query repurposing

When a user refines a question ("now show me just region=East"), the agent recognizes it can modify the prior query rather than writing from scratch. This works through:

  1. System prompt instructions: the agent is told to check query history before writing new SQL
  2. sql_recall_queries tool: the LLM can search past queries by keyword
  3. Memory context: recent queries are shown in the system prompt with their intent and SQL
# First query: full aggregation
await agent.chat("Show me revenue by region")
# → SELECT region, SUM(total_amount) FROM orders GROUP BY region

# Refinement: agent sees the prior query and adds a WHERE clause
await agent.chat("Now just for the East region")
# → SELECT region, SUM(total_amount) FROM orders WHERE region = 'East' GROUP BY region

# Drill-down: agent wraps prior query as a CTE
await agent.chat("Break that down by month")
# → WITH base AS (SELECT ...) SELECT DATE_TRUNC('month', ...) FROM base GROUP BY 1

# Format change: reuses exact same SQL, changes chart config (cache hit!)
await agent.chat("Show that as a pie chart instead")

LangGraph agent

Create a pre-configured LangGraph React agent with all sql_to_graph tools:

from langchain_anthropic import ChatAnthropic
from sql_to_graph import create_langgraph_agent

agent = await create_langgraph_agent(
    connection_string="postgresql://user:pass@localhost/db",
    llm=ChatAnthropic(model="claude-sonnet-4-20250514"),
    custom_prompt="All monetary values are in cents.",
)

result = await agent.ainvoke({
    "messages": [("user", "Show me monthly revenue trends")]
})
print(result["messages"][-1].content)

Install:

pip install 'sql-to-graph[langchain]'
pip install langgraph langchain-anthropic  # or langchain-openai

Agent constructor reference

Parameter Type Default Description
connection_string str required Database connection URL
llm_client AsyncAnthropic | AsyncOpenAI required LLM client instance
model str required Model name (e.g. "claude-sonnet-4-20250514", "gpt-4o")
provider_type "anthropic" | "openai" required Which LLM provider
correction_llm LLMProvider | None None Separate LLM for SQL auto-correction
cache QueryCache | None auto-created Query result cache
memory AgentMemory | None None Persistent memory store
default_format str "html" Default chart output format
max_tool_rounds int 10 Max LLM reasoning rounds before stopping
max_schema_tables int 80 Max tables to include in schema DDL
custom_prompt str | None None Additional instructions for the system prompt
on_event Callable | None None Callback for ToolCallEvent and RoundEvent

Agent response structure

@dataclass
class AgentResponse:
    text: str                          # natural language answer
    rounds_used: int                   # number of LLM reasoning rounds
    charts: list[dict]                 # rendered charts (format, mime_type, data_base64)
    statistics: dict | None            # column-level statistics from the last query
    sql_executed: str | None           # the final SQL that was executed
    tool_calls: list[ToolCallEvent]    # all tool calls across all rounds
    errors: list[dict]                 # errors encountered (tool failures, SQL errors)

Agent decision flow

The agent follows this multi-round loop:

User question
    │
    ▼
┌─────────────────────────────────────┐
│  Round 1: LLM reasons about the     │
│  question, checks query history,    │
│  decides what tools to call         │
│                                     │
│  Tools available:                   │
│  • sql_to_graph (execute SQL)       │
│  • sql_discover_schemas             │
│  • sql_describe_table               │
│  • sql_sample_data                  │
│  • sql_recall_queries (memory)      │
└──────────────┬──────────────────────┘
               │
               ▼
┌─────────────────────────────────────┐
│  Tool execution                     │
│  • SQL auto-correction (if LLM)     │
│  • Query optimization (AST)         │
│  • Execute against database         │
│  • Cache result                     │
│  • Remember in memory               │
│  • Compute statistics               │
│  • Suggest chart types              │
│  • Render chart (if requested)      │
└──────────────┬──────────────────────┘
               │
               ▼
┌─────────────────────────────────────┐
│  Round 2+: LLM examines results,   │
│  decides if more queries needed,    │
│  picks chart, or gives final answer │
└──────────────┬──────────────────────┘
               │
               ▼
         AgentResponse

Typical queries complete in 2-3 rounds: one to execute SQL, one to formulate the answer. Complex analyses (error recovery, multi-step exploration) may take more. The agent stops at max_tool_rounds if it doesn't converge.

Chart types

Type Enum Best for
Bar ChartType.Bar Categorical comparisons
Horizontal Bar ChartType.HorizontalBar Long category labels
Stacked Bar ChartType.StackedBar Part-of-whole over categories
Line ChartType.Line Temporal trends
Area ChartType.Area Cumulative trends
Pie ChartType.Pie Part-of-whole (2-8 categories)
Donut ChartType.Donut Same as pie, with center label
Scatter ChartType.Scatter Correlation between 2 numeric columns
Histogram ChartType.Histogram Distribution of a single numeric column
Heatmap ChartType.Heatmap 2 categorical + 1 numeric (e.g. A/B tests)

Output formats: OutputFormat.Html (interactive), OutputFormat.Png, OutputFormat.Jpg, OutputFormat.Svg (vector)

from sql_to_graph import render_chart, ChartConfig, ChartType, OutputFormat

chart_output = render_chart(
    result,
    ChartConfig(
        chart_type=ChartType.Scatter,
        x_column="quantity",
        y_column="unit_price",
        title="Order Items: Quantity vs Price",
        output_format=OutputFormat.Png,
    ),
)

with open("chart.png", "wb") as f:
    f.write(chart_output.data)

LLM auto-correction

Pass any LLM provider to enable SQL auto-correction against the real database schema:

from sql_to_graph import OpenAIProvider, AnthropicProvider, LangChainProvider

# OpenAI / OpenAI-compatible
llm = OpenAIProvider(model="gpt-4o")

# Anthropic
llm = AnthropicProvider(model="claude-sonnet-4-20250514")

# Any LangChain chat model
from langchain_openai import ChatOpenAI
llm = LangChainProvider(ChatOpenAI(model="gpt-4o"))

result, chart = await sql_to_chart(
    sql="SELECT * FORM users WERE age > 30",  # typos!
    connection_string="postgresql://...",
    llm=llm,  # auto-corrects using DB schema
)

Install LLM dependencies:

pip install 'sql-to-graph[llm]'        # openai + anthropic
pip install 'sql-to-graph[langchain]'   # langchain-core

Custom LLM provider

Any object with an async complete method works:

class MyProvider:
    async def complete(self, prompt: str, system: str | None = None) -> str:
        return await my_llm_call(prompt)

Agent tool integration

Works with OpenAI, Anthropic, and MCP tool calling out of the box.

Single tool

from sql_to_graph import as_openai_tool, as_anthropic_tool

openai_tool = as_openai_tool()      # OpenAI function-calling format
anthropic_tool = as_anthropic_tool() # Anthropic tool-use format

Full toolkit (query + schema discovery)

from sql_to_graph import as_openai_tools, as_anthropic_tools, as_mcp_tools

tools = as_openai_tools()     # 4 tools: query, discover schemas, describe table, sample data
tools = as_anthropic_tools()  # same, Anthropic format
tools = as_mcp_tools()        # same, MCP format

Handling tool calls

from sql_to_graph import handle_tool_call, handle_discovery_call, QueryCache

cache = QueryCache(max_size=100)

# For sql_to_graph tool calls — returns a dict, never raises
response = await handle_tool_call(
    arguments=tool_call.arguments,
    llm=llm,           # optional: enables auto-correction
    cache=cache,        # optional: caches results
)
# response = {"sql_executed": "...", "columns": [...], "rows": [...], ...}
# or on error: {"error": {"error_type": "...", "message": "...", ...}, "sql_executed": "..."}

# For discovery tool calls (schemas, describe, sample)
response = await handle_discovery_call(
    tool_name="sql_describe_table",
    arguments={"connection_string": "...", "table": "users"},
)

LangChain tools

Drop-in tools for any LangChain agent (ReAct, LangGraph, etc.):

from sql_to_graph import get_langchain_tools

# Get all 4 tools: sql_query, sql_discover_schemas, sql_describe_table, sql_sample_data
tools = get_langchain_tools("postgresql://user:pass@localhost/db")

# With LLM auto-correction
from sql_to_graph import LangChainProvider
from langchain_openai import ChatOpenAI

llm = ChatOpenAI(model="gpt-4o")
tools = get_langchain_tools(
    connection_string="postgresql://user:pass@localhost/db",
    llm=LangChainProvider(llm),
)

# Use with LangGraph ReAct agent
from langgraph.prebuilt import create_react_agent

agent = create_react_agent(llm, tools)
result = await agent.ainvoke({"messages": [("user", "Show me sales by region")]})

# Use with legacy AgentExecutor
from langchain.agents import AgentExecutor, create_openai_tools_agent
from langchain_core.prompts import ChatPromptTemplate

prompt = ChatPromptTemplate.from_messages([
    ("system", "You are a data analyst. Use the SQL tools to answer questions."),
    ("human", "{input}"),
    ("placeholder", "{agent_scratchpad}"),
])
agent = create_openai_tools_agent(llm, tools, prompt)
executor = AgentExecutor(agent=agent, tools=tools)
result = await executor.ainvoke({"input": "What are the top 10 customers by revenue?"})

Install:

pip install 'sql-to-graph[langchain]'

Schema discovery

from sql_to_graph import Connection

conn = Connection("postgresql://...", read_only=True)
await conn.connect()

schemas = await conn.list_schemas()              # list of SchemaInfo
metadata = await conn.get_metadata("public")     # all tables in schema
table = await conn.describe_table("users")       # columns, types, row estimate
sample = await conn.sample_table("users", n=5)   # sample rows

await conn.close()

For the agent, build_schema_ddl formats the full database schema as DDL text for system prompt injection:

from sql_to_graph import build_schema_ddl

ddl = await build_schema_ddl("postgresql://user:pass@localhost/db")
# Returns formatted DDL with schema names, table names, column types,
# nullability, and row count estimates

Statistics and chart suggestions

from sql_to_graph import summarize_result, suggest_charts

result = await conn.execute_with_context("SELECT * FROM sales", "public")

# Column statistics: min, max, mean, median, stddev, nulls, distinct count
summary = summarize_result(result)
for stat in summary.column_stats:
    print(f"{stat.column_name}: mean={stat.mean}, nulls={stat.null_count}, "
          f"distinct={stat.distinct_count}")

# Warnings for data quality issues (high nulls, zero variance, etc.)
for warning in summary.warnings:
    print(f"Warning: {warning}")

# Auto-suggest best chart types for the data
suggestions = suggest_charts(result)
for s in suggestions:
    print(f"{s.chart_type} - {s.title} (confidence: {s.confidence:.2f})")
    print(f"  x={s.x_column}, y={s.y_column}, reason: {s.reasoning}")

The suggestion engine applies 7 heuristic rules based on column types:

Rule Columns detected Suggested chart
1 Temporal + numeric Line / Area
2 Categorical (2-8 values) + numeric Bar / Pie / Donut
3 Temporal + 2+ numeric Stacked Bar / multi-Line
4 2 numeric columns Scatter
5 1 numeric column (>50 rows) Histogram
6 Categorical (>8 values) + numeric Horizontal Bar
7 2 categorical + 1 numeric Heatmap

Each suggestion includes a confidence score (0-1) and reasoning text.

Pagination and export

# Paginated queries
result = await conn.execute_paginated("SELECT * FROM big_table", limit=100, offset=0)
print(f"Showing {result.row_count} of {result.total_row_count}, has_more={result.has_more}")

# Export
from sql_to_graph import export_csv, export_json

csv_bytes = export_csv(result)    # bytes
json_str = export_json(result)    # JSON string

SQL error recovery

When a query fails, execute_with_context returns enriched error information that helps the agent self-correct:

from sql_to_graph import Connection

conn = Connection("postgresql://...", read_only=True, schema="ecommerce")
await conn.connect()

try:
    # Misspelled table name
    result = await conn.execute_with_context(
        "SELECT * FROM ecommerce.cusotmers", "ecommerce"
    )
except Exception as exc:
    import json
    error = json.loads(str(exc))
    print(error)

The enriched error contains:

{
  "error_type": "execution_error",
  "message": "relation \"ecommerce.cusotmers\" does not exist",
  "original_sql": "SELECT * FROM ecommerce.cusotmers",
  "available_tables": ["customers", "orders", "products", "order_items", "monthly_revenue"],
  "suggestions": ["customers"],
  "schema_context": "Table: customers\n  id (integer)\n  name (character varying)\n  ..."
}
  • available_tables: all tables in the schema, so the agent knows what exists
  • suggestions: fuzzy-matched table/column names (Levenshtein distance) for the misspelled identifier
  • schema_context: full schema DDL for the relevant tables, so the agent can fix column references

When used through handle_tool_call or the DataAnalystAgent, errors are returned as dicts (never raised), so the agent loop can inspect them and retry with corrected SQL.

Databases

Database Connection string Notes
PostgreSQL postgresql://user:pass@host:5432/dbname Full support including schemas
MySQL mysql://user:pass@host:3306/dbname
SQLite sqlite:///path/to/db.sqlite Single file, no schemas

All connections default to read_only=True to prevent accidental writes.

Architecture

┌───────────────────────────────────────────────────────────┐
│                    Python API Layer                        │
│                                                           │
│  DataAnalystAgent    LangChain Tools    Pipeline (1-call) │
│  (react_agent.py)    (langchain_tools)  (pipeline.py)     │
│       │                    │                  │            │
│  AgentMemory         Agent Adapters     LLM Providers     │
│  (memory.py)         (agent.py)         (llm.py)          │
│       │                    │                  │            │
│  QueryCache                │                  │            │
│  (cache.py)                │                  │            │
└────────────────────────────┼──────────────────┼───────────┘
                             │                  │
                    ┌────────┴──────────────────┴───────────┐
                    │           Rust Core (PyO3)             │
                    │                                        │
                    │  Connection    SQL Parser/Optimizer     │
                    │  (sqlx)        (sqlparser-rs)           │
                    │                                        │
                    │  Chart Renderer    Statistics Engine    │
                    │  (plotters)        (summarize/suggest)  │
                    │                                        │
                    │  Error Enrichment  Export (CSV/JSON)    │
                    │  (fuzzy match)                          │
                    └────────────────────────────────────────┘

Module overview

Module Purpose
react_agent.py DataAnalystAgent — full React agent loop with Anthropic/OpenAI, schema bootstrapping, memory integration, tool dispatch
agent.py Tool schema generation (as_openai_tools, as_anthropic_tools, as_mcp_tools) and universal handle_tool_call/handle_discovery_call handlers
memory.py AgentMemory — JSON-file-backed persistent store for queries, facts, and preferences
cache.py QueryCache — LRU cache with SQL normalization and connection-context isolation
llm.py LLMProvider protocol + OpenAIProvider, AnthropicProvider, LangChainProvider implementations
langchain_tools.py LangChain BaseTool wrappers for all 4 tools
pipeline.py sql_to_chart / sql_to_chart_sync — one-call convenience functions
_native Rust extension module (Connection, SQL parsing, optimization, chart rendering, statistics, suggestions, error enrichment, export)

Testing

The test suite runs against a real PostgreSQL database with synthetic data across 3 schemas (ecommerce, hr, analytics) totaling ~5000 rows.

Setup

# Start PostgreSQL in Docker
docker run -d --name sql_to_graph_test_pg \
    -e POSTGRES_PASSWORD=testpassword \
    -e POSTGRES_DB=testdb \
    -p 15432:5432 \
    postgres:16

# Install dev dependencies
pip install 'sql-to-graph[dev]'

# Run tests
pytest tests/ -v

The test suite automatically seeds the database on first run using tests/seed_pg.sql.

Test coverage

Test file Tests What it covers
test_connection.py 6 Schema discovery, metadata, cross-schema isolation, row count estimates
test_query.py 6 Execute, paginate, read-only enforcement, joins
test_stats.py 6 Numeric/categorical statistics, null warnings, single-value columns
test_suggest.py 7 Chart suggestion rules (line, bar, pie, scatter, histogram, heatmap)
test_cache.py 7 Hits, misses, normalization, LRU eviction, context isolation
test_error_recovery.py 5 Enriched errors, fuzzy suggestions, handle_tool_call error dicts
test_memory.py 10 Remember/recall, persistence, purge, eviction, prompt context
test_react_agent.py 9 Full agent loop with mock LLM, error retry, cache, memory, recall tool

Seed data schemas

ecommerce (5 tables): customers (200), products (50), orders (1000), order_items (2500), monthly_revenue (36)

hr (3 tables): departments (8), employees (500), performance_reviews (1000)

analytics (2 tables): page_views (730), ab_test_results (60)

Environment variables

Variable Default Description
TEST_PG_CONNECTION postgresql://postgres:testpassword@localhost:15432/testdb PostgreSQL connection string for tests

License

MIT

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

sql_to_graph-0.1.6.tar.gz (296.9 kB view details)

Uploaded Source

Built Distributions

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

sql_to_graph-0.1.6-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (10.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

sql_to_graph-0.1.6-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (10.6 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

sql_to_graph-0.1.6-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (10.5 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

sql_to_graph-0.1.6-cp314-cp314t-musllinux_1_2_x86_64.whl (10.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

sql_to_graph-0.1.6-cp314-cp314t-manylinux_2_28_aarch64.whl (10.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

sql_to_graph-0.1.6-cp314-cp314-win_amd64.whl (7.3 MB view details)

Uploaded CPython 3.14Windows x86-64

sql_to_graph-0.1.6-cp314-cp314-musllinux_1_2_x86_64.whl (10.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

sql_to_graph-0.1.6-cp314-cp314-manylinux_2_28_x86_64.whl (10.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

sql_to_graph-0.1.6-cp314-cp314-manylinux_2_28_aarch64.whl (10.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

sql_to_graph-0.1.6-cp314-cp314-macosx_11_0_arm64.whl (7.5 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

sql_to_graph-0.1.6-cp314-cp314-macosx_10_12_x86_64.whl (7.9 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

sql_to_graph-0.1.6-cp313-cp313t-musllinux_1_2_x86_64.whl (10.8 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

sql_to_graph-0.1.6-cp313-cp313t-manylinux_2_28_aarch64.whl (10.5 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

sql_to_graph-0.1.6-cp313-cp313-win_amd64.whl (7.3 MB view details)

Uploaded CPython 3.13Windows x86-64

sql_to_graph-0.1.6-cp313-cp313-musllinux_1_2_x86_64.whl (10.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

sql_to_graph-0.1.6-cp313-cp313-manylinux_2_28_x86_64.whl (10.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

sql_to_graph-0.1.6-cp313-cp313-manylinux_2_28_aarch64.whl (10.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

sql_to_graph-0.1.6-cp313-cp313-macosx_11_0_arm64.whl (7.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

sql_to_graph-0.1.6-cp313-cp313-macosx_10_12_x86_64.whl (7.9 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

sql_to_graph-0.1.6-cp312-cp312-win_amd64.whl (7.3 MB view details)

Uploaded CPython 3.12Windows x86-64

sql_to_graph-0.1.6-cp312-cp312-musllinux_1_2_x86_64.whl (10.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

sql_to_graph-0.1.6-cp312-cp312-manylinux_2_28_x86_64.whl (10.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

sql_to_graph-0.1.6-cp312-cp312-manylinux_2_28_aarch64.whl (10.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

sql_to_graph-0.1.6-cp312-cp312-macosx_11_0_arm64.whl (7.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sql_to_graph-0.1.6-cp312-cp312-macosx_10_12_x86_64.whl (7.9 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

sql_to_graph-0.1.6-cp311-cp311-win_amd64.whl (7.3 MB view details)

Uploaded CPython 3.11Windows x86-64

sql_to_graph-0.1.6-cp311-cp311-musllinux_1_2_x86_64.whl (10.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

sql_to_graph-0.1.6-cp311-cp311-manylinux_2_28_x86_64.whl (10.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

sql_to_graph-0.1.6-cp311-cp311-manylinux_2_28_aarch64.whl (10.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

sql_to_graph-0.1.6-cp311-cp311-macosx_11_0_arm64.whl (7.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sql_to_graph-0.1.6-cp311-cp311-macosx_10_12_x86_64.whl (7.9 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

sql_to_graph-0.1.6-cp310-cp310-win_amd64.whl (7.3 MB view details)

Uploaded CPython 3.10Windows x86-64

sql_to_graph-0.1.6-cp310-cp310-musllinux_1_2_x86_64.whl (10.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

sql_to_graph-0.1.6-cp310-cp310-manylinux_2_28_x86_64.whl (10.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

sql_to_graph-0.1.6-cp310-cp310-manylinux_2_28_aarch64.whl (10.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

File details

Details for the file sql_to_graph-0.1.6.tar.gz.

File metadata

  • Download URL: sql_to_graph-0.1.6.tar.gz
  • Upload date:
  • Size: 296.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for sql_to_graph-0.1.6.tar.gz
Algorithm Hash digest
SHA256 a9a2fc370b4e0c73d3b47fa3de7009333f22dcb27e8c02256b512b998f25a2f1
MD5 47e4313252f897fccff73566d4a80955
BLAKE2b-256 8479c999a92cf93ff28d3420e7b979a01fdd68c6b81c624fbaba42e2a3a2e178

See more details on using hashes here.

File details

Details for the file sql_to_graph-0.1.6-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: sql_to_graph-0.1.6-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 10.8 MB
  • Tags: PyPy, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for sql_to_graph-0.1.6-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2231b010ee5188ba710ff421bf8594f928937ba0eedfed2cb2d4269e872b212c
MD5 a380fe358b3937c2ff25a5fe03c7ae0d
BLAKE2b-256 7fe742a712ca7baa3d8462a568bf50102d122d839ed5b161ecda38146cd87fa6

See more details on using hashes here.

File details

Details for the file sql_to_graph-0.1.6-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: sql_to_graph-0.1.6-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 10.6 MB
  • Tags: PyPy, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for sql_to_graph-0.1.6-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c4c36713890fe34f3b4ba14e785c53acfcde6d5cbe3ed12b612fde67352bcd05
MD5 0f93094bda15abc043bb9634afee7734
BLAKE2b-256 22110af19ada4b9fdbbbe287d5d5252ab9961709f57f0e7eb11f8d2f314f7ed0

See more details on using hashes here.

File details

Details for the file sql_to_graph-0.1.6-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: sql_to_graph-0.1.6-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 10.5 MB
  • Tags: PyPy, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for sql_to_graph-0.1.6-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2ccdb184fbf3a00a34cda7df2a2d1a38604c0124730f827e063d470d6765788f
MD5 4598b7c6326c7ea9536bf609b282a408
BLAKE2b-256 1fd01f45aa4e4bd0b6f335c6cd55253b8684f20483dbb3074d8967fb705957a3

See more details on using hashes here.

File details

Details for the file sql_to_graph-0.1.6-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: sql_to_graph-0.1.6-cp314-cp314t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 10.8 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for sql_to_graph-0.1.6-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 52b31e5c5913dc4594fc750fb3ee40b6322f7ca0354ae3127abf55247839b0bd
MD5 ca62f0a44799683892cfdcde1329a130
BLAKE2b-256 094ec435ba455a0f6b3e345a5bbe1121b0c4c2ed6c978badae1dc5919adab16f

See more details on using hashes here.

File details

Details for the file sql_to_graph-0.1.6-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: sql_to_graph-0.1.6-cp314-cp314t-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 10.5 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for sql_to_graph-0.1.6-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0585dbf9663e5dcb1b3f2f09435725d9b63e9119889e1a533e9ac72fce014b59
MD5 e13447ef78bbbb28038f2f4eb7dde900
BLAKE2b-256 92a8a17caa790a6671d259f09be9acd0ad1b80438a3f5b9010a6d5e47cba0a68

See more details on using hashes here.

File details

Details for the file sql_to_graph-0.1.6-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: sql_to_graph-0.1.6-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 7.3 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for sql_to_graph-0.1.6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 8f0d7022e07ea95d29ddb2e622f229861aea9eb5dcfdfdcbf2dec35661756934
MD5 e14c2e3db096b21823ad8fa862f1c8b6
BLAKE2b-256 46d9e3e2293015d024c9409a56a3f1d00bcf7db1bbc314083fd5a3bd52c7e93e

See more details on using hashes here.

File details

Details for the file sql_to_graph-0.1.6-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: sql_to_graph-0.1.6-cp314-cp314-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 10.8 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for sql_to_graph-0.1.6-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ddd69c39121aab4df85ec4a356fefba2df6c76d79f3bf2c44828957b15725cbb
MD5 85e333f3cf5a07cca1669b4257c158bd
BLAKE2b-256 707950fabf52e48f324eb8b20e9412a24aadc84264fd90511588a3167b76784e

See more details on using hashes here.

File details

Details for the file sql_to_graph-0.1.6-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: sql_to_graph-0.1.6-cp314-cp314-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 10.6 MB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for sql_to_graph-0.1.6-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4b4afce6e864049160beaec6fa3139cdc3871f93aeea98558ed0098e7a71a182
MD5 a5d3a917c8bf769469c4ed3f937bb8b6
BLAKE2b-256 8fbe966de4aeba4843333c0a991c4926e724347f513fa0c0da7766e98355ea55

See more details on using hashes here.

File details

Details for the file sql_to_graph-0.1.6-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: sql_to_graph-0.1.6-cp314-cp314-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 10.5 MB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for sql_to_graph-0.1.6-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 843060abc56fa949a9818a227020355e11b3ba6722402cee70596d0b06fba4f0
MD5 1df46f32b7c6a54abb54b425fd7eccf0
BLAKE2b-256 63006587294db077df3a23d9387ba3dce25f9d5a0e507af34638ca8ecb85d6b8

See more details on using hashes here.

File details

Details for the file sql_to_graph-0.1.6-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: sql_to_graph-0.1.6-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 7.5 MB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for sql_to_graph-0.1.6-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a40e7eec347a5b874966f1ca68062399c90dd590e41f38bdc89aae60fed4c12d
MD5 f9ac393378d075a82ff76edc0279ae68
BLAKE2b-256 d10d8b8474827564479c3a5e8aebf2474ef155b3c019e421fbacfeb9614f5bad

See more details on using hashes here.

File details

Details for the file sql_to_graph-0.1.6-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: sql_to_graph-0.1.6-cp314-cp314-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 7.9 MB
  • Tags: CPython 3.14, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for sql_to_graph-0.1.6-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b6c27c9c01edc7ec227346b934e9b9bca93b9c42101e947a9639fa5dc5b2359e
MD5 199f8e278fd215413351c8084073fd1e
BLAKE2b-256 b57fe4c7cc8d9a8c7887676d4e2aaf5334939270e6b1420a698e72b86b9e2e53

See more details on using hashes here.

File details

Details for the file sql_to_graph-0.1.6-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: sql_to_graph-0.1.6-cp313-cp313t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 10.8 MB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for sql_to_graph-0.1.6-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ae0c3650177a33050e1cf5641e7d9e58ba0e1a6c0a943e5d13d077f13375e674
MD5 a2508ce8c184775bea70c1e7756101cf
BLAKE2b-256 013601f7c843afe022615f07edd0d035b1c994333b8ee94b4bc1d0ec2d2404ec

See more details on using hashes here.

File details

Details for the file sql_to_graph-0.1.6-cp313-cp313t-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: sql_to_graph-0.1.6-cp313-cp313t-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 10.5 MB
  • Tags: CPython 3.13t, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for sql_to_graph-0.1.6-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 36f5eadcacd44efb26167744fbb9da382915999821ad4a62fc42aba772907110
MD5 b66669b11fd4c17408887bb8b9cada76
BLAKE2b-256 479120ba370394e2580134704cf7ad4c5c4828c1043e9ca68ef46907ac4a1253

See more details on using hashes here.

File details

Details for the file sql_to_graph-0.1.6-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: sql_to_graph-0.1.6-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 7.3 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for sql_to_graph-0.1.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 08c64748d7865ef555bacdda0807ec90f36d503d83a1f229357924ec026c5e95
MD5 dbf369b6e36e3793e4ffcf42d4a2f23d
BLAKE2b-256 e65fe1b12ebb4e401d4ce1b8f71eafe135679141987f350e35ba5ca580c895dc

See more details on using hashes here.

File details

Details for the file sql_to_graph-0.1.6-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: sql_to_graph-0.1.6-cp313-cp313-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 10.8 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for sql_to_graph-0.1.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 90ff2782cea04e0e4776e7714866c3ec07a75d127e711fb3777c04c9a5fabb68
MD5 a22048d211dd71bfced34d791c106934
BLAKE2b-256 15eca8fe67d1a52b9470298388a936cc383dd9df312c0dbb400a6d7255aca724

See more details on using hashes here.

File details

Details for the file sql_to_graph-0.1.6-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: sql_to_graph-0.1.6-cp313-cp313-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 10.6 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for sql_to_graph-0.1.6-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a69445a76fed3d5c5fd8df2cba9f636379105ed87dbb7a6d6f4ec2b070350abe
MD5 67acd0adf692ffe4cd9da7715b07e93f
BLAKE2b-256 4d469933e1c6d56230b785aa07138c8840606ca05b7ba9e0fc3eb8b7a40f1231

See more details on using hashes here.

File details

Details for the file sql_to_graph-0.1.6-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: sql_to_graph-0.1.6-cp313-cp313-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 10.5 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for sql_to_graph-0.1.6-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5a3fd60e7ae8cf53dba4dd6c6a3258ab8b9e673c5a06e527e042f0839dc01904
MD5 7a29f1381b3479fffde74fb577c8b8f2
BLAKE2b-256 0fd9a888a975cfca6b722ad3fbf9e51b54173bf89f322a528d569ff12b102a78

See more details on using hashes here.

File details

Details for the file sql_to_graph-0.1.6-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: sql_to_graph-0.1.6-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 7.5 MB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for sql_to_graph-0.1.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5b5e132ce573f791fa04a2d1f4014eddad2f905f45dbf7e24cfaa5197cbcd14f
MD5 634967ac5aa487e050544975a16e85f0
BLAKE2b-256 5f949806bf85d6fb79a1ecaa517d5a9a49929581bfd0aef7b1c56dbb4e552621

See more details on using hashes here.

File details

Details for the file sql_to_graph-0.1.6-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: sql_to_graph-0.1.6-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 7.9 MB
  • Tags: CPython 3.13, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for sql_to_graph-0.1.6-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d54d778127b8c1f18d9f9e0ab86f78901ff1e0d643c741390a03ab05cdd81d5e
MD5 bcc85b5cb79b86021a3c39a741447263
BLAKE2b-256 a3e352185a13a06a670c9ff3da4dfae215421f0c09f804fabadca6cf12d450db

See more details on using hashes here.

File details

Details for the file sql_to_graph-0.1.6-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: sql_to_graph-0.1.6-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 7.3 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for sql_to_graph-0.1.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e35b0cc956b91f3bb399017ef5d8c7ab9a88c0a368cfa7080cbf62c30e1a0385
MD5 43059eaea088b8d9193531b7e3fcded6
BLAKE2b-256 86f5c96be30e8931b92b59305bb2d8a6e81751f8deffe873f81e6408e1f7576b

See more details on using hashes here.

File details

Details for the file sql_to_graph-0.1.6-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: sql_to_graph-0.1.6-cp312-cp312-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 10.8 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for sql_to_graph-0.1.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 15e045ad7ccd4e79ce3b72e675f2a2a0c1dd2aff2f464d77306dd88f9242f8bc
MD5 73e2d5f2742ec2e6ccb093d12c94a8ba
BLAKE2b-256 f32f1778c4bf7e98af8dee7367857bcbd3c580a4b3dbc0fead66fd620a256a6c

See more details on using hashes here.

File details

Details for the file sql_to_graph-0.1.6-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: sql_to_graph-0.1.6-cp312-cp312-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 10.6 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for sql_to_graph-0.1.6-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1fec55911e88d0f1f88a0844efacac43b13cfb28bc14d29dfd1c4a0654dfdf45
MD5 e908d960f3ddf28b1a48f59e33f86af1
BLAKE2b-256 8c1b6f3bd4bf43c978a187cf79b7b01b5a7dfd2d0e4831298870d851ec1602bf

See more details on using hashes here.

File details

Details for the file sql_to_graph-0.1.6-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: sql_to_graph-0.1.6-cp312-cp312-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 10.5 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for sql_to_graph-0.1.6-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0ca2e67305c32413933390acbbad0c76f5bc4a8e684ff8650ddea0ab67745294
MD5 fee8a4daf0cb2f4dac6a017dd542c284
BLAKE2b-256 cb4f24f5469cb8ead9c59d26d6019f1b1fbab3f62bb19964e1b21cccb430edd6

See more details on using hashes here.

File details

Details for the file sql_to_graph-0.1.6-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: sql_to_graph-0.1.6-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 7.5 MB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for sql_to_graph-0.1.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e7b0184dbd194fcf2b309485190998bf053299c72a3784b1edd97c21eecdb0dd
MD5 904a865f8602abc8628d057eebf51b73
BLAKE2b-256 945c5eea0f7456db2e22843a61f6138938d51da9cd896cc8e856e9d11a0be38e

See more details on using hashes here.

File details

Details for the file sql_to_graph-0.1.6-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: sql_to_graph-0.1.6-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 7.9 MB
  • Tags: CPython 3.12, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for sql_to_graph-0.1.6-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f59e3e2dfb6e785b5fa833f2d36995c2b3f139e77115634a1405c285eb2c61d1
MD5 97d23bc6103485b37d28489a8ba19069
BLAKE2b-256 75f65429abc347f0055421eb311ef200e3719ad25f83f971fe14618c99b1e267

See more details on using hashes here.

File details

Details for the file sql_to_graph-0.1.6-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: sql_to_graph-0.1.6-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 7.3 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for sql_to_graph-0.1.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 20e7302c99e71bd30e16ad2bc2e7aedaf8b587c8315f672e035aef5f35ca5043
MD5 4c884056e29568ac89a8d904d20921e6
BLAKE2b-256 df11209f5d4c0cf760c48b4597acef11e43eab2e633bd22071b781b4bb37bc14

See more details on using hashes here.

File details

Details for the file sql_to_graph-0.1.6-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: sql_to_graph-0.1.6-cp311-cp311-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 10.8 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for sql_to_graph-0.1.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 212ef1dc114e7ab74c00b4d24fd5563b1979429b181b6a8b82574bf27205d194
MD5 ec900bd7ad1f4fc016d59afcf3ed9387
BLAKE2b-256 ceb14e5e6e8e06221e5eb657668a04afe6fa0e55cb01cdece53b9caf28b72fae

See more details on using hashes here.

File details

Details for the file sql_to_graph-0.1.6-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: sql_to_graph-0.1.6-cp311-cp311-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 10.6 MB
  • Tags: CPython 3.11, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for sql_to_graph-0.1.6-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 32ae2dbd157a0b95c47384e817e093ed2217e84a87b50861acb980da8ca50a8d
MD5 84643f962369e9adfe98264df658fdb9
BLAKE2b-256 1230724d702644bbfa6a7a651cf1085b0637142002424606c1b7738817150c0a

See more details on using hashes here.

File details

Details for the file sql_to_graph-0.1.6-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: sql_to_graph-0.1.6-cp311-cp311-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 10.5 MB
  • Tags: CPython 3.11, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for sql_to_graph-0.1.6-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 12413311c657c7f20de1306c73c54b665d6500bdb39e10a56f49fb2b09394ce7
MD5 e20332e9378e287197eae9b101e5c489
BLAKE2b-256 9c83a21d8633c3a406d970b40f491dd279c23c8107b3b046c6d4ef37b68066ab

See more details on using hashes here.

File details

Details for the file sql_to_graph-0.1.6-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: sql_to_graph-0.1.6-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 7.5 MB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for sql_to_graph-0.1.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a3e850fc9e239d94bdf0ab05a55d6b71917b6872f2e5383b1162445d41e8c070
MD5 33a222c3dabc2f474ba0310b9c4035d8
BLAKE2b-256 42c9eded5406bbf8d0fa79cff6739de6157f24c04c6c44ce13a10f0b31dbdef5

See more details on using hashes here.

File details

Details for the file sql_to_graph-0.1.6-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: sql_to_graph-0.1.6-cp311-cp311-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 7.9 MB
  • Tags: CPython 3.11, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for sql_to_graph-0.1.6-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5af1b4d51a249dc586d544d0d13897f8ae659b4e6087f77bfd67c3917eca5a6a
MD5 288a5f7b37ac82a1127de20374ebbfe3
BLAKE2b-256 e8cc63cc2c24f9bac5605c9c4d02d094a2b5e7d05a9ee4253aecd0bb33d046c9

See more details on using hashes here.

File details

Details for the file sql_to_graph-0.1.6-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: sql_to_graph-0.1.6-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 7.3 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for sql_to_graph-0.1.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4027780c32d4a4c9cc9a740247de0c03a8f6c9da5fa407c8078ff3d4dd1339f5
MD5 04c5549f89fd41c98224e376f8247ee1
BLAKE2b-256 0cb9c6fb00d938ef412eb16465871e5ef3ce646a3fdc1e4798c09ba07f0c9a78

See more details on using hashes here.

File details

Details for the file sql_to_graph-0.1.6-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: sql_to_graph-0.1.6-cp310-cp310-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 10.8 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for sql_to_graph-0.1.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d17b06b7e4b054e67f337a5e4457171174588b6a02c11b9e764465120a90a929
MD5 a100d52a5fac65b3d607659d6932e050
BLAKE2b-256 975414c430d8d7673fa25dbd26f43e94e91a6fa2d5bb73ea07dbafa2c217d374

See more details on using hashes here.

File details

Details for the file sql_to_graph-0.1.6-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: sql_to_graph-0.1.6-cp310-cp310-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 10.6 MB
  • Tags: CPython 3.10, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for sql_to_graph-0.1.6-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e922c0dee4f902db432e01c548075ef73b51490d7359f51ef7b24cb256a57458
MD5 a4e2af0d302067ccba675c62d913585f
BLAKE2b-256 f9391813c43ecad821b9fd9951366cbd24f23beda5409b79f6f5381c772e3249

See more details on using hashes here.

File details

Details for the file sql_to_graph-0.1.6-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: sql_to_graph-0.1.6-cp310-cp310-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 10.5 MB
  • Tags: CPython 3.10, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for sql_to_graph-0.1.6-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e27b031fb32b793d66bb72cd083df733bf7f3fbf0d4cf0f384f59d1a5035df6c
MD5 e10930946dfbf98d51d1099c09cf6aff
BLAKE2b-256 4b570519cd9dab7c3d64b28bf0c896c6bb767b4bdcb3d11bcd47a02c1d4b867b

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