Skip to main content

Fast repository indexing and code analysis tools for AI coding assistants - 6 standardized tools for Claude, GPT, and more

Project description

Loregrep Python Package

Fast code analysis tools for AI coding assistants

Loregrep is a high-performance repository indexing library that uses tree-sitter parsing to analyze codebases. It provides 6 standardized tools that supply structured code data to AI systems like Claude, GPT, and other coding assistants.

PyPI version Python 3.7+

Quick Start

Installation

pip install loregrep

Basic Usage

import asyncio
import loregrep

async def analyze_repository():
    # Create and configure analyzer
    lg = (loregrep.LoreGrep.builder()
          .max_file_size(1024 * 1024)  # 1MB limit
          .file_patterns(["*.py", "*.rs", "*.js", "*.ts"])
          .exclude_patterns(["node_modules/", "__pycache__/", "target/"])
          .build())
    
    # Scan your repository
    result = await lg.scan("/path/to/your/project")
    print(f"📁 Scanned {result.files_scanned} files")
    print(f"🔧 Found {result.functions_found} functions")
    print(f"📦 Found {result.structs_found} structures")
    
    # Search for functions
    functions = await lg.execute_tool("search_functions", {
        "pattern": "auth",
        "limit": 10
    })
    print("🔍 Authentication functions:")
    print(functions.content)
    
    # Get repository overview
    overview = await lg.execute_tool("get_repository_tree", {
        "include_file_details": True,
        "max_depth": 2
    })
    print("🌳 Repository structure:")
    print(overview.content)

# Run the analysis
asyncio.run(analyze_repository())

AI Integration

Loregrep provides 6 standardized tools that supply structured code data to AI coding assistants:

Available Tools

# Get all available tools
tools = loregrep.LoreGrep.get_tool_definitions()
for tool in tools:
    print(f"🛠️  {tool.name}: {tool.description}")

1. search_functions - Find functions by pattern

result = await lg.execute_tool("search_functions", {
    "pattern": "config",
    "limit": 20
})

2. search_structs - Find classes/structures by pattern

result = await lg.execute_tool("search_structs", {
    "pattern": "User",
    "limit": 10
})

3. analyze_file - Detailed analysis of specific files

result = await lg.execute_tool("analyze_file", {
    "file_path": "src/main.py",
    "include_source": False
})

4. get_dependencies - Find imports and exports

result = await lg.execute_tool("get_dependencies", {
    "file_path": "src/utils.py"
})

5. find_callers - Locate function call sites

result = await lg.execute_tool("find_callers", {
    "function_name": "authenticate_user"
})

6. get_repository_tree - Repository structure overview

result = await lg.execute_tool("get_repository_tree", {
    "include_file_details": True,
    "max_depth": 3
})

Configuration Options

Builder Pattern

loregrep_instance = (loregrep.LoreGrep.builder()
    # File size and depth limits
    .max_file_size(2 * 1024 * 1024)     # 2MB max file size
    .max_depth(15)                       # Max directory depth
    
    # File filtering
    .file_patterns(["*.py", "*.js", "*.ts", "*.rs"])
    .exclude_patterns([
        "node_modules/", "__pycache__/", "target/",
        ".git/", "venv/", ".env/"
    ])
    
    # Git integration
    .respect_gitignore(True)             # Honor .gitignore files
    
    .build())

Scan Results

result = await lg.scan("/path/to/repo")

# Access scan statistics
print(f"Files scanned: {result.files_scanned}")
print(f"Functions found: {result.functions_found}")
print(f"Structs found: {result.structs_found}")
print(f"Duration: {result.duration_ms}ms")
print(f"Errors: {result.errors}")  # List of any scan errors

How It Works

Core Technology

  • Tree-sitter parsing: Fast, accurate syntax analysis (not AI)
  • In-memory indexing: Quick lookups and search (not AI)
  • Structured data extraction: Functions, classes, imports, etc. (not AI)

AI Integration

  • Tool interface: 6 standardized tools that provide data to AI systems
  • AI assistants: Use the structured data to answer questions about your code
  • LLM compatibility: Works with Claude [Other integrations planned..]

Loregrep does the fast parsing and indexing - AI systems use that data to understand your code.

Language Support

Language Status Functions Classes Imports
Rust ✅ Full
Python 🚧 Planned - - -
TypeScript 🚧 Planned - - -
JavaScript 🚧 Planned - - -

Additional language support coming soon

Error Handling

try:
    result = await lg.scan("/invalid/path")
except OSError as e:
    print(f"Path error: {e}")
except RuntimeError as e:
    print(f"Analysis error: {e}")
except ValueError as e:
    print(f"Configuration error: {e}")

Async and Threading

Loregrep is fully async and thread-safe:

import asyncio

# Multiple concurrent operations
async def parallel_analysis():
    lg1 = loregrep.LoreGrep.builder().build()
    lg2 = loregrep.LoreGrep.builder().build()
    
    # Concurrent scanning
    results = await asyncio.gather(
        lg1.scan("/project1"),
        lg2.scan("/project2")
    )
    
    # Concurrent tool execution
    analyses = await asyncio.gather(
        lg1.execute_tool("search_functions", {"pattern": "api"}),
        lg2.execute_tool("get_repository_tree", {"max_depth": 2})
    )

Integration with AI Assistants

Claude/OpenAI Integration

# Get tool schemas for AI systems
tools = loregrep.LoreGrep.get_tool_definitions()

# Send to Claude/OpenAI as available tools
# When AI calls a tool, execute it:
result = await lg.execute_tool(tool_name, tool_args)

# Send result back to AI
ai_response = send_to_ai(result.content)

Example: Code Analysis Bot

async def code_analysis_bot(user_question: str, repo_path: str):
    lg = loregrep.LoreGrep.builder().build()
    await lg.scan(repo_path)
    
    if "functions" in user_question.lower():
        result = await lg.execute_tool("search_functions", {
            "pattern": extract_pattern(user_question),
            "limit": 10
        })
    elif "structure" in user_question.lower():
        result = await lg.execute_tool("get_repository_tree", {
            "include_file_details": True,
            "max_depth": 2
        })
    
    return f"Found: {result.content}"

Performance

  • Scanning: ~1-2 seconds for medium repositories (1000+ files)
  • Queries: ~50-100ms for most operations
  • Memory: ~50MB for typical projects
  • Concurrency: Thread-safe with multiple instances

Requirements

  • Python 3.7+
  • No external dependencies (uses native Rust extensions)

Examples

See the examples directory for complete working examples:

License

Licensed under either of Apache License, Version 2.0 or MIT license at your option.

Contributing

Contributions are welcome! Please see our contribution guidelines.

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

loregrep-0.3.2.tar.gz (199.6 kB view details)

Uploaded Source

Built Distributions

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

loregrep-0.3.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

loregrep-0.3.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

loregrep-0.3.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

loregrep-0.3.2-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.12+ i686

loregrep-0.3.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

loregrep-0.3.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

loregrep-0.3.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

loregrep-0.3.2-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.12+ i686

loregrep-0.3.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

loregrep-0.3.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

loregrep-0.3.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

loregrep-0.3.2-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl (1.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.12+ i686

loregrep-0.3.2-cp313-cp313t-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

loregrep-0.3.2-cp313-cp313t-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

loregrep-0.3.2-cp313-cp313-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.13Windows x86-64

loregrep-0.3.2-cp313-cp313-win32.whl (1.1 MB view details)

Uploaded CPython 3.13Windows x86

loregrep-0.3.2-cp313-cp313-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

loregrep-0.3.2-cp313-cp313-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

loregrep-0.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

loregrep-0.3.2-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl (1.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.12+ i686

loregrep-0.3.2-cp313-cp313-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

loregrep-0.3.2-cp313-cp313-macosx_10_12_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

loregrep-0.3.2-cp312-cp312-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.12Windows x86-64

loregrep-0.3.2-cp312-cp312-win32.whl (1.1 MB view details)

Uploaded CPython 3.12Windows x86

loregrep-0.3.2-cp312-cp312-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

loregrep-0.3.2-cp312-cp312-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

loregrep-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

loregrep-0.3.2-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl (1.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.12+ i686

loregrep-0.3.2-cp312-cp312-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

loregrep-0.3.2-cp312-cp312-macosx_10_12_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

loregrep-0.3.2-cp311-cp311-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.11Windows x86-64

loregrep-0.3.2-cp311-cp311-win32.whl (1.2 MB view details)

Uploaded CPython 3.11Windows x86

loregrep-0.3.2-cp311-cp311-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

loregrep-0.3.2-cp311-cp311-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

loregrep-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

loregrep-0.3.2-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.12+ i686

loregrep-0.3.2-cp311-cp311-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

loregrep-0.3.2-cp311-cp311-macosx_10_12_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

loregrep-0.3.2-cp310-cp310-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.10Windows x86-64

loregrep-0.3.2-cp310-cp310-win32.whl (1.2 MB view details)

Uploaded CPython 3.10Windows x86

loregrep-0.3.2-cp310-cp310-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

loregrep-0.3.2-cp310-cp310-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

loregrep-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

loregrep-0.3.2-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ i686

loregrep-0.3.2-cp39-cp39-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.9Windows x86-64

loregrep-0.3.2-cp39-cp39-win32.whl (1.2 MB view details)

Uploaded CPython 3.9Windows x86

loregrep-0.3.2-cp39-cp39-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

loregrep-0.3.2-cp39-cp39-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

loregrep-0.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

loregrep-0.3.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl (1.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

loregrep-0.3.2-cp38-cp38-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.8Windows x86-64

loregrep-0.3.2-cp38-cp38-win32.whl (1.2 MB view details)

Uploaded CPython 3.8Windows x86

loregrep-0.3.2-cp38-cp38-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

loregrep-0.3.2-cp38-cp38-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

loregrep-0.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

loregrep-0.3.2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl (1.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

File details

Details for the file loregrep-0.3.2.tar.gz.

File metadata

  • Download URL: loregrep-0.3.2.tar.gz
  • Upload date:
  • Size: 199.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for loregrep-0.3.2.tar.gz
Algorithm Hash digest
SHA256 abca2029db250a97a40f766598f8e871ad5040020cfa07e4c1f58aa6bcee4c76
MD5 d235477267b7227f4856d4542520fe56
BLAKE2b-256 b8405b408104db3a5699f02f8b606dc9d1d9f7b911040f839241fe8f874004c1

See more details on using hashes here.

File details

Details for the file loregrep-0.3.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for loregrep-0.3.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bff884032c102c266189b81c2af369d7d8b2aca4a86c5c0cd0466c36aa3f4ed3
MD5 aab846640c752d0dbac2548dd4d112a0
BLAKE2b-256 e917615cfa1d14bf2962d5050de73e2906413e27ee755690e9228a149158b976

See more details on using hashes here.

File details

Details for the file loregrep-0.3.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for loregrep-0.3.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ce5cabf2fc0b1e39d3197336bbda6cb02103605ce64f9ec7242e8c2c72bf809c
MD5 a7c2c17fdba293aa4b9868ef9e4b2573
BLAKE2b-256 719ae748dfb031ac55aaf7410fdd67c134172fef5f3ca36c5e0322227fa49ef3

See more details on using hashes here.

File details

Details for the file loregrep-0.3.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for loregrep-0.3.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0219de1d9db000c7ead4e94113b770b430e30d0a66f2d18a5542efe4428024c9
MD5 d17f41bb3a7e9ea3c9305cbc4e9a56ba
BLAKE2b-256 0f1bc005a9c6a83f18ea087f966764527c14a380314a70ff91f703ef0e545ee8

See more details on using hashes here.

File details

Details for the file loregrep-0.3.2-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for loregrep-0.3.2-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3a00cead368894e8a5a81d9f95c28bfc92e9ce3941c2c54024030b0b3a6d3b9d
MD5 c21b2311addd6f3116ab3151cfe5ddf5
BLAKE2b-256 da2314dc81d825f572e3b58e327289fc469cd254bc61e5fd2d9e10fd48c3c034

See more details on using hashes here.

File details

Details for the file loregrep-0.3.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for loregrep-0.3.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 174eabf208ed0d75d3eabcd997723251e19d82de3a515da7acdb3e20944aad0a
MD5 3b84c89cface1429729f0601e168d600
BLAKE2b-256 8b34cbb770959f75527db9cb360a4c2261139acb46da0c6e09068f202ea85146

See more details on using hashes here.

File details

Details for the file loregrep-0.3.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for loregrep-0.3.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7dbd1e9b3176c9c02e442fc1be8befb8f20336643c7098660ee4223518426d2c
MD5 0442868aa1b4b2a11a7fc29de0bff101
BLAKE2b-256 4bdc097b235e4d708ca724690b32e5ccee85c224145941131720603d851c3aa6

See more details on using hashes here.

File details

Details for the file loregrep-0.3.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for loregrep-0.3.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ef2535b4ae1898cd58c14e9db6cbf44c73ea2c6e8b967ffb700ae89660a4d16c
MD5 cab262abbc8c66caff034c488d923bcc
BLAKE2b-256 78223d161e96a81eac5c1e3839b601c167ac739b02959e90ade8d5db1460dc34

See more details on using hashes here.

File details

Details for the file loregrep-0.3.2-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for loregrep-0.3.2-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 54138ec75a322d7aabcd243c3dfb9932525aa6dd844e4a4f10869b9c8ced9ae9
MD5 53f3847724de62cea230dc9b4da88e7d
BLAKE2b-256 36bb3083309b2a9aed2cb90861f237419f9fc6f8a8de12d7d03fa670c7aad1eb

See more details on using hashes here.

File details

Details for the file loregrep-0.3.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for loregrep-0.3.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4cd4869127796e8aff983fc2f343badd14c08f4ab3082c709c8a3e5a988fb1bf
MD5 96af9e7db8ef7ba44a4b0cbb7049ff03
BLAKE2b-256 de27c0603973377b6a3ac68352eb96a39a413b697af7f855b0ce0fc1880e9f67

See more details on using hashes here.

File details

Details for the file loregrep-0.3.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for loregrep-0.3.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5dda5d6b620904c83ee75fe1b6f3b18d9ad06070e85287267ca7243f91e014f4
MD5 d21c26ed32d82c962651d93507f5921d
BLAKE2b-256 40d3357bd8cbfecb175e25534f7f9dad11be4eb61b877d39cc3b2157fa13d89c

See more details on using hashes here.

File details

Details for the file loregrep-0.3.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for loregrep-0.3.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2b52308acb387a266c08980a655299e37954a456c08002b9e4df9eca97379c26
MD5 cc68a4cb99c8750f7b3a7bb8dbd5fa86
BLAKE2b-256 5d32e152717fce47d4e177d96b3a63b6029748c4a9fd6828f9b8c7c9b37456b1

See more details on using hashes here.

File details

Details for the file loregrep-0.3.2-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for loregrep-0.3.2-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d9af2c79102042bc2d69a94b9c82cea223c0a5397e297f540047dc6daf5e4230
MD5 7de12c920421f5e86b59a681a43f2b01
BLAKE2b-256 ddaeeb061773688738f62f6319aa8c3a743842cf95fb8c8f577338229abc053f

See more details on using hashes here.

File details

Details for the file loregrep-0.3.2-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for loregrep-0.3.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e5ce4baadb37d93c8f3a1aae9e7f3d21d92242b4340e69b7b7ae25e4cba4f368
MD5 09c8e0e9ba59746be6759cb6dbcd34a8
BLAKE2b-256 bf940890fa3678af76043af3f831c4b0d66d52d0442c20487b999b4a5435883f

See more details on using hashes here.

File details

Details for the file loregrep-0.3.2-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for loregrep-0.3.2-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9adbc4f0ba0729325bba7cdbc662c601b8f7542e2b1b23daed577c707b100f6b
MD5 037f2ecf4abcca13ea5647d75cadaca4
BLAKE2b-256 6b58c4df41a67d0218d01ca752340fc513198bc0d5b533749e5c033e9a6307ed

See more details on using hashes here.

File details

Details for the file loregrep-0.3.2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for loregrep-0.3.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 00d58f4b9b851f94ce10062f9f8067ffd1cf1d96bb5f3ed41e962c24e8f0f92b
MD5 084690b8d3fcf79e6a80bc6a0fa7c64a
BLAKE2b-256 ba5447539c7acd8cba9bc802991fe05f650a68428585b2f484050322a7c1fa84

See more details on using hashes here.

File details

Details for the file loregrep-0.3.2-cp313-cp313-win32.whl.

File metadata

  • Download URL: loregrep-0.3.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for loregrep-0.3.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 4701cd0adb04b09f303bf3b17284722079d51cd93582bf7f95a6197198dfcbd6
MD5 2746f42df94ca546064bbb2a34b50d54
BLAKE2b-256 8df1fe8c11bc862602e3e44345a1ba5c5142de70e9ac57a79a68cb7bdd0e4aa2

See more details on using hashes here.

File details

Details for the file loregrep-0.3.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for loregrep-0.3.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c98c18ff42efaad3757de6e7aa2e3ac306037cc97b3c2e7e60676ce7b72a747e
MD5 33e540b36104304719d93fb0fed73fa7
BLAKE2b-256 7c9b560d30376fb9923fc87a9183acb8577a74905148b3a52ac4a312081c66ed

See more details on using hashes here.

File details

Details for the file loregrep-0.3.2-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for loregrep-0.3.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b38e6056eb01ede4a6ad2072342344e3c067365c89a75a008cb83138c32772e9
MD5 d6f794bcd998da0bd5549ea3ddc9c867
BLAKE2b-256 d6e680ab09e43510a5c851326b2cc4c44a3a8910064f5db5f8905dc0b5af10c0

See more details on using hashes here.

File details

Details for the file loregrep-0.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for loregrep-0.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2cf11d841a986fbfec62be43ea7fdc0922200d273257c754b040172c391bdc29
MD5 8f693a6a1290da69d2a3d61d668e1e0b
BLAKE2b-256 6b3c641c4699b7c919e892da2434016f94813e86fcd70371d8bf698fe719c0a2

See more details on using hashes here.

File details

Details for the file loregrep-0.3.2-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for loregrep-0.3.2-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 8f3a0881af4b6ce0a382dfd17b0fd54a9c1a8f63b7a865c3e5f0de5b42100734
MD5 e6a8e352361c538ca0a2ccf70ad9b4df
BLAKE2b-256 c1c153d89728eaec97ff2b08cfe601df9dd42d8e2c4b624ca6f8cd4223f2add2

See more details on using hashes here.

File details

Details for the file loregrep-0.3.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for loregrep-0.3.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7d3e318ba33c4497595ef165e4dca8aecbb69fd82a8fe6275b1d5b08b9e61411
MD5 7dfa1b2d8802107867d5d68fec877f70
BLAKE2b-256 febe6f3ebbe6f6b1e67be2d05ad65c21df05bac77ca953a81c561425a5c1fc3e

See more details on using hashes here.

File details

Details for the file loregrep-0.3.2-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for loregrep-0.3.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2be27669c327144b9adf74926c7a05b03d146bc06a21d64a8b65d1cd2a98a982
MD5 2d993f968123da7984676a7d813c1bc2
BLAKE2b-256 0ad8d694868e34b9966a118902311f8e22f7d79257a486171c7a43f244d297fe

See more details on using hashes here.

File details

Details for the file loregrep-0.3.2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for loregrep-0.3.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ea6102fe2f5a2f7829b1f4bbeb834390374c3089fc13783242dd5b73f1720313
MD5 fbf1fc19c0155f83a0b05b58dde549f7
BLAKE2b-256 8ca06cdba90f72d75cf01362d824dd24f44572321d28f989ec036ffed15e998d

See more details on using hashes here.

File details

Details for the file loregrep-0.3.2-cp312-cp312-win32.whl.

File metadata

  • Download URL: loregrep-0.3.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for loregrep-0.3.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 2eaa5ffabdfbd8a1bc85adcc7fdf8ac9f2972239dfa8e5603dcf89cdcfb570fc
MD5 9065be5112ad6f8d67e1ea7962c712c8
BLAKE2b-256 60bcfb44ca591c7726ad98382c9c7b2f7f120cc7a9c8bd4386d41c26728132a1

See more details on using hashes here.

File details

Details for the file loregrep-0.3.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for loregrep-0.3.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3c01bac4a3050c41aa0d33e3bbb9862829550587e1dea4b3188be1b87abbd77f
MD5 f212a88e4d107ee6dab13b9aed68706b
BLAKE2b-256 ed178b9b5b12253ad2e9e1431036fd3a9417aa07ffb6f384b260721961d56ab7

See more details on using hashes here.

File details

Details for the file loregrep-0.3.2-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for loregrep-0.3.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ebdf035867e4daef85be5e0382c57ff2416c57c40358cf55654ea1627cffb18f
MD5 57119f146ac06854c8ac5d5a4b6df3c6
BLAKE2b-256 9e2fc498b91e1aed1a9333e9463bc0520276776c584108de628005e0b3c94d5c

See more details on using hashes here.

File details

Details for the file loregrep-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for loregrep-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e08ea78c4007e7864b56a64abb349662b4924d918f6939c9492cd1bad37bab42
MD5 20a64b1e28eef00727c0f260d2850b4d
BLAKE2b-256 cb04752957fe100c0f57ec2df3748979cdb7ceac7301e5c825490fe0d67d04ff

See more details on using hashes here.

File details

Details for the file loregrep-0.3.2-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for loregrep-0.3.2-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7c6b6af51a5a13116226c3f7bcbae5319d7fb1c9822f72d2e5741b1ac358f1bf
MD5 655c9df95fdb8c170fc233182e475af1
BLAKE2b-256 a6a2fca80ae60cbce4821a8c667f2a8b4a8e16e23a7d5f4b0aae6d303fb937b0

See more details on using hashes here.

File details

Details for the file loregrep-0.3.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for loregrep-0.3.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8617e64dd0cdda1c4b03f10c9463531096fc72fd8d98be9c10848c444a6db1b1
MD5 d3d0c0b1f707329e0ee0fe1411f51813
BLAKE2b-256 6ba52fa3d0b26ac2c766c03c78aac2250c8ee3078adb8e0855691c726765ea6a

See more details on using hashes here.

File details

Details for the file loregrep-0.3.2-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for loregrep-0.3.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bb9866d6a5c435f59530e4e55c4f12bb60e86760c795761c5e1cd7f6acef9374
MD5 a7597ab0b5d8968113b6c258b2737145
BLAKE2b-256 aacda3ede4003aa68bfbcb5821e7236878bc024fe36ae4e761353598e02e7aca

See more details on using hashes here.

File details

Details for the file loregrep-0.3.2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for loregrep-0.3.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 71c397cad8f76061d81b1c6cc5cf361453f648a607b6a8cb79e692703318bdd6
MD5 c621b97d27cba6db8dd9b303c6b585ec
BLAKE2b-256 9ec5188f1933aa96bbd6097120adc119a349f90ddad5f224f874a582e3ee6c0b

See more details on using hashes here.

File details

Details for the file loregrep-0.3.2-cp311-cp311-win32.whl.

File metadata

  • Download URL: loregrep-0.3.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for loregrep-0.3.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 861c6066dfbcc7a348f52e81296959558eac9daa961ce6abb65279d924bd309f
MD5 d33902e9057d103136ceff2f64797c12
BLAKE2b-256 c964bcace895f5a9c5867747e798e56e36c77e09b4d9aca84000719102b7751c

See more details on using hashes here.

File details

Details for the file loregrep-0.3.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for loregrep-0.3.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 866668490be8b518de511de93071e1dfd1904eb5a7c9f8e80b0e5786ff6c2498
MD5 f34b0ae18a467759b2f2b1a219d81fa4
BLAKE2b-256 8b72b985830ac04fb6e96e47d57440cd40c03302ed07fc92da631b468fe0d4dc

See more details on using hashes here.

File details

Details for the file loregrep-0.3.2-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for loregrep-0.3.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f123104178304a62cc83c203a4baa538d096cf788d96a54f623520418bbb2de4
MD5 71068da904c4309fdbdc1e40abef164a
BLAKE2b-256 fef6d7efbddf287eeea3f5e055bc7e3d3ae97dc7cb1571848dcdb0ae1f35b32b

See more details on using hashes here.

File details

Details for the file loregrep-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for loregrep-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fcff2cdd5411cf094455a10bba9bd22c81815035cd5f6e47a61ebd7ef0ed1c61
MD5 45811180dfc158f0c1e810ecde01e53d
BLAKE2b-256 100401f5a24e4e0776af50f68bdbf1de832500ffd26784657e843cb2fd848d3b

See more details on using hashes here.

File details

Details for the file loregrep-0.3.2-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for loregrep-0.3.2-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0953737b4969ebdf6e266bcc54954d11a4e36d939e9431c29d627622b2798783
MD5 3dc7801d33ddeda94985ca826e228a2b
BLAKE2b-256 6a7643ddad5610d52bc9695960160cfdbca3d3fa8c910d6793ce9271f9569d2d

See more details on using hashes here.

File details

Details for the file loregrep-0.3.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for loregrep-0.3.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 163c544bd7b474c97619da78864ef16265d00236454e7e6fdc6c24457b55927a
MD5 4bb1e8bcecd4796914cf1d7a1ab52d94
BLAKE2b-256 cfb3fa628911a5b97ed58226535810d162286c720d1b054c2b8df83b3200132d

See more details on using hashes here.

File details

Details for the file loregrep-0.3.2-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for loregrep-0.3.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ddb7cb8d60d24bd0e0b71820900758cd2360f8104305a4497a254bedd1c87d52
MD5 d5eea8aa706649982012661dec8941e0
BLAKE2b-256 8a4a0acf51a5b9c62836f0e99388c1cf6efc5f7d5f755d8440708ba352aeb7ef

See more details on using hashes here.

File details

Details for the file loregrep-0.3.2-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for loregrep-0.3.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 67ac32e6e96148eab9ef01baf9d8bd1b71a4e5866fef2b6f1c44763e69a0d335
MD5 c7b75e1ee012c4c5fd76c5bcb0bec4f9
BLAKE2b-256 bd530d687efad090fc26a476a1dad4a8dc1e94c233507e2d97ef63780522e7d4

See more details on using hashes here.

File details

Details for the file loregrep-0.3.2-cp310-cp310-win32.whl.

File metadata

  • Download URL: loregrep-0.3.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for loregrep-0.3.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b6f40cddc35b04689dae7df74fcfef0591e97570991b9e915cf6b624d5dec21c
MD5 f0137bc7a874db25d915b26aa38df415
BLAKE2b-256 f519869ed9a0180cdf59461d8c0ac5db84a4b55720e7930751ee89346ee44ba4

See more details on using hashes here.

File details

Details for the file loregrep-0.3.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for loregrep-0.3.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1b5f6d23ce96cad1d784068dc15b7863156b8345d720ded5326b2eaf9a54e008
MD5 96419a4ae92086c0e6eea08b2b11bb1b
BLAKE2b-256 1402042a1d1ed155980b4fb441a5e9d01662b10b7c9fc3807721e680af1f8882

See more details on using hashes here.

File details

Details for the file loregrep-0.3.2-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for loregrep-0.3.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6b6137a6bad4cb7bd6477bb33b4f308e0f66a1b97aa3015f6d1090bb463c96ea
MD5 731944ea0582d12de0e9ccbe1a57ec9c
BLAKE2b-256 14c7ded10b6d00c024c700808222de7685d44dc4c7963e3926cd1e22670c4faf

See more details on using hashes here.

File details

Details for the file loregrep-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for loregrep-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cff2ed7451b027d30e99b0d8ed59d8455e78fcf92f97100acbf7d2f4d053506e
MD5 e1fe0d033181f1981da863753a25186b
BLAKE2b-256 a8560bdd46d86814051619975a6585075537e5cf7975c71abfc13dc628a420ec

See more details on using hashes here.

File details

Details for the file loregrep-0.3.2-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for loregrep-0.3.2-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ee2ecdfbc298716ade87657f0300cf6cf138c40c316e91390f0062f276e583bf
MD5 f7241cabfad7bd8c3ef1472dea9c97d3
BLAKE2b-256 96317dbc8d4f73f86fce8f5434432b7f823b2fd3f166ee506202f41dcf87629d

See more details on using hashes here.

File details

Details for the file loregrep-0.3.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: loregrep-0.3.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for loregrep-0.3.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ed92bfa1f43aa5a7c31bd29ef1cb69995b7ccc83eaaaa5d15f7f26e8486a1c19
MD5 d1d57764f43d9931245864635a17032c
BLAKE2b-256 3f2e026d309c73ecb1c343d3e25d7aaa04853dea7abed486647a5ebdcf0eff86

See more details on using hashes here.

File details

Details for the file loregrep-0.3.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: loregrep-0.3.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for loregrep-0.3.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c74bf3e3af9642cd2a40878dcfbecd60cfe83860dddaf5f7181fb045e1ce87e2
MD5 0c0c49541f747b84d4e86b6bf21da45d
BLAKE2b-256 4ccc95085962467076aa9888939a68aa0acb124828d4245a471ee41b22763c12

See more details on using hashes here.

File details

Details for the file loregrep-0.3.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for loregrep-0.3.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3a04d668b42a741f0767c2671bd9a76ba6587ad0b192b91c2e3e202f6bf7f7a6
MD5 b2d73c72db8fc186df853b227d44a3f1
BLAKE2b-256 4957ececa393e9753f6d978348aba3c1daa216b149d261c09d137e981fb1003b

See more details on using hashes here.

File details

Details for the file loregrep-0.3.2-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for loregrep-0.3.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6b05fcb1c1d5d23f3ca2fb4207695f3ac9db4d895f84eca9407364df93d08f9c
MD5 e1a9438b169c9ca8cf868dbd70c250a1
BLAKE2b-256 5e8e4a32818f7f9ebf7bc9c2ef044cb880553097efe85afc443df5d67b191c80

See more details on using hashes here.

File details

Details for the file loregrep-0.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for loregrep-0.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 05b8ff59726d744bd2af25303b1cdb914cb06f66d0c272829e06680527881d26
MD5 4c8c8a96ee9577b34c1115059208667d
BLAKE2b-256 93f4304c1ff20e8cee38bde3d386d409a5adc561498c0d17a83625c9b9adc965

See more details on using hashes here.

File details

Details for the file loregrep-0.3.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for loregrep-0.3.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3596e1a88198b504e9e9622394f8862a879a8428fc179150a6ae74bf1750a17b
MD5 2f9264ab13e3ad62d91b3ea8f5f75a72
BLAKE2b-256 ebf98dfdaa819d2a934d59d0b0be48403e0e22778769e477cfbccab955578426

See more details on using hashes here.

File details

Details for the file loregrep-0.3.2-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: loregrep-0.3.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for loregrep-0.3.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 f664271cfdf5b23eb5f27d964ec8956a3f1ce274bd47f6079bd0049578dc6cfa
MD5 ce4c276ed3c7a4c3f2580d296965e90e
BLAKE2b-256 ea1c4897a4a7c045e71a63a07ec6ab537973f10e97e3f540d4e70ca6503ab658

See more details on using hashes here.

File details

Details for the file loregrep-0.3.2-cp38-cp38-win32.whl.

File metadata

  • Download URL: loregrep-0.3.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for loregrep-0.3.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 be6662329c46344664a7c041e67f108c1373d83b99c51eea2e68eb4e0f268f75
MD5 9957aaba4f49075e82a6706d8b1f30bf
BLAKE2b-256 57264993c5bc723f714262f41b803a01bb69f6cc8effdfe47854d15e7744057b

See more details on using hashes here.

File details

Details for the file loregrep-0.3.2-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for loregrep-0.3.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 05de39dfd5546f2d722ad0a895e88245f6c8ae8c4083f036bf0ff3a971a3d1c3
MD5 66d51ccde73157800a39bf823af1c3da
BLAKE2b-256 b62fb49d545ea0b7f0af58c2e019008ecd17b7cecb86bcb6e5a9665e260414dc

See more details on using hashes here.

File details

Details for the file loregrep-0.3.2-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for loregrep-0.3.2-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 48cf89e170a1fc97f4206e7f4f5da986e68d7f21349b1403f0b168998b06f755
MD5 2f6ab8d7174b0ab4d2cfe8b6990cf679
BLAKE2b-256 7e180a127f324c4b178477b02dd7fc32893050dfba134e5d57aa292b2c3b0206

See more details on using hashes here.

File details

Details for the file loregrep-0.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for loregrep-0.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8bae5fec6513a8ad24b85f475b8dfb8bfb20b1d9e938c53a3d11875cc8c08e94
MD5 c7bcf9c796a68f693a2687815787dccb
BLAKE2b-256 e95b47c5b86dae833fbe19847b533ce5b659bc86d0179513c8da8728ff968f64

See more details on using hashes here.

File details

Details for the file loregrep-0.3.2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for loregrep-0.3.2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e2e28d3ccf5cdaabc89b5b864571f671ab4a168c30b80cfcc8697b589713c604
MD5 a196813e3f31d7e1be3355fb74547086
BLAKE2b-256 f75f3088569699a8cba79935e3034e5318295808b7e2b2481d86848b49bcd502

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