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.3.tar.gz (207.1 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.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

loregrep-0.3.3-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.3-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.12+ i686

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

loregrep-0.3.3-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.3-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.12+ i686

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

loregrep-0.3.3-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.3-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.3-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.3-cp313-cp313t-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

loregrep-0.3.3-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.3-cp313-cp313-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

loregrep-0.3.3-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.3-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.3-cp313-cp313-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

loregrep-0.3.3-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.3-cp312-cp312-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

loregrep-0.3.3-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.3-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.3-cp312-cp312-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

loregrep-0.3.3-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.3-cp311-cp311-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

loregrep-0.3.3-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.3-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.3-cp311-cp311-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

loregrep-0.3.3-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.3-cp310-cp310-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

loregrep-0.3.3-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.3-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.3-cp39-cp39-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

loregrep-0.3.3-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.3-cp39-cp39-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

loregrep-0.3.3-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.3-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.3-cp38-cp38-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

loregrep-0.3.3-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.3-cp38-cp38-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

loregrep-0.3.3-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.3-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.3.tar.gz.

File metadata

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

File hashes

Hashes for loregrep-0.3.3.tar.gz
Algorithm Hash digest
SHA256 bb55e902214a5e1a1118d2d0162198cd8c71efb023ca2f8f8f3d80cc1eefae9e
MD5 fb8c1cb7466309ed2970b4c369a6839f
BLAKE2b-256 9e02d8edfa32258da936539631c751090c02e074c4f67db0d036b5427235c610

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9db621d99ea5dff63ddfe98dae2f5724dba849fa09daee63922267b85e0ed57f
MD5 5a1f806e7a5d3f2f9f7386cd54a88a11
BLAKE2b-256 19c11c2e32f974eaf9ba013846bc02fd0ebe5ab65b032e37a0342dc91f42bf0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b97e3174aec5d988f6fd0fd3732d5ed589f882cf7a1fd116fee646f27d72637c
MD5 be1354fb58829cfda7f4d4d30dc049c0
BLAKE2b-256 1e94b87042dfe2ab72924d370dea36f365634c08b821646a4b03a41f23f3de0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ab558c439814240b9ffdfd184845f51ea17502be31790709134f77f82e630bce
MD5 a943a7be2750db9d15eb9cf07cad647b
BLAKE2b-256 c07810bddb497575bc09d66e681f1f67e50b7d2459525836f5b2c01d2ce8498c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.3-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 eea04eac61598dbbe809b0d90cf95a6986657bcbf2424b0e1c66e5ec958a62f2
MD5 88da59579facabb8b4f3b4eae8eac800
BLAKE2b-256 3d9c2821d5217310ab7c0b3003e409685abe36832b964b8b811e3142d1010240

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1e79e218fc5aaa1cdbbf5f6e2e1e09c30cd5b5f0a3c7665248e46622f5374a6b
MD5 ed8537128330b7f0f632c15c36398892
BLAKE2b-256 7e35300a9b04b841e25aae301a87706aa834251a9ff027812d5ccf5a0553f07d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a6af96b813593f1ef4c554348306acdb1c7bf86632a5617facaa8d36740fc9b3
MD5 1ad876bc3cb6ffcdee95715f81d238f4
BLAKE2b-256 db000522ac0c1a84eca17b65c0ecf45b6519a244e6aa1a57f506f15f0e6fd2be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 85a681889ff80b50765487725a058ba9c95fcbe9507e9c58c2de12fa84376ad0
MD5 928095d9cf38efc2474e6761dce7d9e7
BLAKE2b-256 a7c00eecf2f65e7687a853f1b081f5e983dfda828167a764e69e4cdd6df86fa6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.3-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 8e39c29bab0829a0401a10afed1282153f4cd7289669db27a8389472280dd5c8
MD5 abbe86ced5ca2d6bba9020e377eed4a0
BLAKE2b-256 417b8719ca9883466f02da711982b92d0ddc2373c7ada7b3f614279284d90b19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 db1ed66ed199574a567e10f86500e7fb44bbb66db229f435939f6e675ce3f2f1
MD5 00350a90ea473dc6948cc79bb7eab2bd
BLAKE2b-256 f39a0054e72d0f40c6318794f3a10715c891d4e024116d6570594e72c35edbae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c8e91fb789e6ae3f8dc53cd4ce5f1b29273d164a1b3ad08861cab0747c8eee0c
MD5 15bf29f683d922049fb02925e908fac2
BLAKE2b-256 2fa3da36a2e904c8b43563cc9b889d1bc9d710675f6a4c353cc5e0e39721302f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2392ff2a9146197efea0aefce3fb50390486c9cded3447cae5d15cbdfbd25d03
MD5 5d202e1ecde361acf4d5ac0e97625126
BLAKE2b-256 3297adb288029dfdf065e9c3c04cada4a65b9c1679d0cf04d75711761491f05c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.3-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b9e3f55a972c434b0fcad55e03c0bfc34f0cc0a6002119bbbe3531ef8c2506d0
MD5 ca675dccd6bcbbf74d28c8f303278e11
BLAKE2b-256 31ff3e6cb51848e9c44a39a4b5bf8938ff5875f504b6f1feb8608d8745afcf85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.3-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 05d45a921cfaabfe03cdc550dd3489d1fa6544190853a703ebde4f505519a4d0
MD5 156846083591fe5009143c08efc6513c
BLAKE2b-256 160a3e27eea7c83ee90e7932e97c31459c77db187128f5cc53b445828d7e532c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.3-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 87337dd9495e9df90368ad6d4681d02e55d2913bcc578191c760631d85319ebb
MD5 9524c14eb278bd3aa82d771ae1337312
BLAKE2b-256 dbe1189970fe1279c9db5809c4fc358bd7ede26bd2302265fa2e5797cc553c98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8696718838fb3761346e89e24f1bb0a2cbc4eac3258d525e8467b27b2ed70e88
MD5 52c9763a745bbff6cdf4f380f8ca29c4
BLAKE2b-256 19f91978e33bd957d88e746d95b224c4a9c8156af9fd0899b8bcf5c9a607844a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: loregrep-0.3.3-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.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 96ef124d87d2e1a9447aa2cc5439578d4f469a7246816a4678c58d3308dc958b
MD5 6a31429587af33ce3a4f41c3735f4d3f
BLAKE2b-256 a3e1c3d29ee2f6020eea42056b2a00a7c93b5e12db0cce96e2653422b9a313fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b701ab79e6a02100622b9139dc9380eff902bed8757745809d47fbf8a575eb40
MD5 88ee93b8b1872eee848affc1d418dc79
BLAKE2b-256 2126176ee2e9ee843ff4cc0332e6df05b60736c34ddc30394379f56ad744b166

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4a9f32e818bd6a6e9c9f1d6920a9bf8513cebf07d0ada3d0582b1568e3557189
MD5 148d2059a4e87a4e6a6718ad52119762
BLAKE2b-256 b4b59013f811b7f850cbc1409a0a7fce61e7a2eb8108e2826958ebd926abaf7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 be912e954862cbbe5e5264c61337635678046a76b2f8242ce8ed1b085ef526b9
MD5 d0ee02e8bfe32528bfeba2d107feb65c
BLAKE2b-256 9df06caead30f949d2099243b2e1a0ed1bf4de17be02107e5bbf59cb9e29713d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.3-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2003e23a4479fcb023e8d5a05c5c205468934ef3d047dd9faad8f72898767007
MD5 3e791cdac91b11787a8ede0a1231490a
BLAKE2b-256 0774657434ce6869fede7b129a88224cbce136252544728960c6996804e496e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 62a7a85ef8b623dd7c0fdf0f8819f77fcf4d7f253a2838a784937d123c67441e
MD5 185fe9d92580892f84838b935978ab2f
BLAKE2b-256 f2056f43e2bfb2aff460ae0700f486fdc41a1b580cc18a25c56a537bd023703b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c95f4eecf0b1b5707430b2d24fb4fd85fea5e3324f41335a94ea2a82330959b8
MD5 55e1c6712962f07c505bff64a4a875cb
BLAKE2b-256 bc37601f737792e1b3d67f6036b0888f8533b808114e87a815ff83cf61d4ed4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c8674dbce82764e1a7d6a7bd0527b31765b541f94f73df6248f0fb2fa563abf1
MD5 c54bb39e2d45c5a2134be9fef8ad1b1b
BLAKE2b-256 12f5a3e74799475141edb88ecbf601d805d564723677262b6084e4884e0e70c1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: loregrep-0.3.3-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.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 6721a38c6334450eb32d71dd689f9f5e0f27fafbd146a5de6500035537deb501
MD5 3e6cf10bb55baad487c70b69c4dccb24
BLAKE2b-256 0290cf35457a4b9bb6b492079f82a04ee9ed420ee9a0e0fdf093d3015dfdb8df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3838ca45bf149b09a066dcd1da20ae64681989f02cf72e781b9660eb9ddbc984
MD5 48c241e6d42da906ffc6643e1e387331
BLAKE2b-256 9433748da0b09b6334e298460b562b6651f227ddcf3803bc604a3a382a49eb10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d90ad44bf8c6758214f19f68b39d6441a40b50f8548f49a95d49ba5b4e2edf2c
MD5 d8ad9a46679ddd8a28b51270199dd37d
BLAKE2b-256 e8c337fddc6ca3d6ddde3590c11419614c9c5a9fb6cc3a85549396df4c26e777

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ca4b0690154ec97ac99b8201d56b06ad3f0a5e0fa5018d98e01fc1ab2790a921
MD5 5b930829286676bb5d0ba4ab48634d87
BLAKE2b-256 ad1ce17141eff6eb936afec8799e7a18e4d4752203963444eb578450efac17d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.3-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5d8ed7bdb66ca48fa1061918597623f679401d8cc95d8deefe383924d6095466
MD5 568e7ee3d1e550311a5202f777bf86e3
BLAKE2b-256 12fa7f2e76a4f7fcc096bdd2096a577c6dbe610a9dc6d87a29299a90051a98d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ad194ba5636db136f9c58b032543804a7ab66e65b34362788190034924b5e6b9
MD5 996ccca65931264f92c810dda177964f
BLAKE2b-256 a6989c850a5bef7a4698ce851d0acbf8e49d766e64dd9f84a6477a263ac6228b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8a3962742ac4209b726ac515463c1eed4332e2e6365461bc703880a3599cd7f2
MD5 101f146e679b975d74f7abcc3e7347d1
BLAKE2b-256 da03c3078ec8b988550b8e79cb1098bfae8bd7f105af4bb277f38ea8d9c26cbd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b195fc87c7860b52489459af95c836e57081b1268111c57becfad869e133bb17
MD5 0d89703979b6d7e00766f03ce89ff6b4
BLAKE2b-256 c18971081837b6ea721e4108cade6ff11f127c7d26bc702d3b6510a84f35ca3b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: loregrep-0.3.3-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.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 bb783ce07854a0967064990b9eb851437131886a924dae569589616f03220626
MD5 8ceec9a7c7cc539a0086662f78126bf1
BLAKE2b-256 92b2d03687d16133edf6774a5641d3ebae1551408a1570de477f03afda3a92b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ffca7762c612aa867720e74a02442df51bdd9513893e74603eb106859d3789db
MD5 387bb10e8bdb1bdf6cf83ad8b0d1a02f
BLAKE2b-256 ab0940d88591bb6438dd8bf454afa25daaa9d04ee1d3487330bd56e25fd95084

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 12a03bdf7d58c4f5a2aa96ed476b34b24728103afd1db4fe6713c812d7a4bad0
MD5 f686d0fb6acf62c1a5b255b3d19b42b4
BLAKE2b-256 aa068d828e65583eaf8be377f00780c1a3e2fecc9c775070713c54c30fd16812

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 840ae1d48fb01650d9ffcf1df702712bc10abb054fa0f005f136236ff9af723b
MD5 0817748d9a2d3a64cb5b2f099b259499
BLAKE2b-256 6cf5c4eb31016a9420af28b89cc0abc9c0219ba018ca4aa677d269a68bbab439

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.3-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7aed13123d0c0cf048642a1ff49af5d4c309bcc29866c1945c704bfbe38029d4
MD5 5a8a83bb7868a161db899732a169378b
BLAKE2b-256 11a8243a4d8a5607566bcc5b60568e1b3c2bba8a608de3e3d3549bd671295a45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e0580b14196f80a7b33ec1f5c8da34017b35d4d0d0abed54170b8a3ba693a7d3
MD5 f4254ea90bd851718fce52016c077e24
BLAKE2b-256 c7b5c1530b074dcdd724f7a0a7f335215daf89e098fc900822e86de2a28a865c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bbfa363f20d17ba5e63676f5c34861790b9de0ff51efdede7452b6dca71fe61e
MD5 4e251edb828bb485e13f0bcd29941648
BLAKE2b-256 622c33426e7cee1643e639bd1f54bbe929e5bd9d428b86173e57718b410f264a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 cf397970a2b664696416f0927c134f73b3e15ff17b72374fc8ee46e5d20d72a3
MD5 85eacdf6c5f0479ec06fafc79a4ca96f
BLAKE2b-256 b623e9257c94da28ed09747ceb62527119d45fead5447358e48982c08d1b5f32

See more details on using hashes here.

File details

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

File metadata

  • Download URL: loregrep-0.3.3-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.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 445d6aa459e5c62a5f4e87a4e9362225d2091359ba0298dd8f5a5804e8f0b753
MD5 5baf7d78b3cff277dece4565072d66c1
BLAKE2b-256 b64774951a435acc40e0f08a198675a0b69a2f0c6b20b63c69f7e0a14300cf58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f5a17c46323ccae4ed658f4f12c442e442cc3773aa503f2c6f82363d1a891dcf
MD5 1834aded9e614047fcfb80b922291ca4
BLAKE2b-256 ff2a012c30048a4b922ed914fe844b62fe86c2e15428d6166b617a7b688afc36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cf130c800138d4a7becf02bbb381145ff038a4f8b45ff3637d20ae6af3644756
MD5 dbd797bfb32969d87ac9e1f1356c84f4
BLAKE2b-256 4073b8f57e36acdc45b7c16f0f37c80a067c95b73a293d8e92bb376c5d619033

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c79ef0326806ee1498528baee73ebb4f575b2138e32ab04a5d95ec6f4ef1f184
MD5 2d2505304d37fe38ccce25e2a89b58a0
BLAKE2b-256 78a4ce1d374f94846af28b8c2ee29d193d53c0032d31211cb975fff9d626d3fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.3-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 94bb190d9c8e0762c6f58994ba8408bd614614aa2f37683a8144743ab4be6d2a
MD5 816b8c25294bea87bc678d66d9531e11
BLAKE2b-256 40ab73894b9277784fdf85ec7f2f74cea6b07582208ebf08359ac95cee234861

See more details on using hashes here.

File details

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

File metadata

  • Download URL: loregrep-0.3.3-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.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 096819c955eaa75df7f9415253e4ec30805ccda7fc3870ab432c8cb17a37e66d
MD5 4962c0aae8beecfa75fdd30d6553b775
BLAKE2b-256 b07eb14e0b3544188e0542f2fbc38615e43a0d122de5b5baf2e3ceb75ab0b1d2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: loregrep-0.3.3-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.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 4b87b4a5ff8ed859da928a7311d44c6e892689cea5cce142299e26972acf988c
MD5 1b2c9010661fb1b2ae5ea80705d74e5d
BLAKE2b-256 05eafe44b64aa0f1f7c8d835620e3ffb9dd0612db71ca86103147e51c3a6b12f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 621aec6076201bf46d5cb09c49ff4e43d97896150d98ebce558b251831d14f49
MD5 28b9c041cfe2b154f827faa8fa45a889
BLAKE2b-256 4ef3d7503bca5c89d492cedcacc388d0c5a04f15b1bc5fd02544e9aa5b46ab0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.3-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 53dda56c051936b45a09dea003ea846bb9f7864e8b9c1033e6f8b6a55cb8de92
MD5 46e1ebbf002f280b489d244d4974fd84
BLAKE2b-256 a2dce37fb4ddc769dccf332489f77764acb51c882a8001f43aa44f5bed1161d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fc88cab7ddb62e95043c7321c4e63e728a5080b563e56d3fe92989d75aa86306
MD5 dbbc79dc454e0cff4e4ff00d503ab6ab
BLAKE2b-256 59e5a787e17aead284feec2de8358fe4a3920a13fbc4374551c4a8be8b629be0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.3-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 bf4cceefac8fe29c5f7158afea71160be221b8c1ddb7172373ce95e2d26fd1db
MD5 fceea7f1f2f5619e72c2ae790f3cc630
BLAKE2b-256 32852467199cd50feb563594d847303dcf830928e865146e34e050689fcbe362

See more details on using hashes here.

File details

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

File metadata

  • Download URL: loregrep-0.3.3-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.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 9a00909b6e0e1c17306f9e75bc4ef965169e01e5d0d3bd1ddfc19daef1c5810b
MD5 70b48a96f3a1344f0dee084c81ce88c2
BLAKE2b-256 a5626544046ae9644ed24683e76cad93087b234414dbf2a81d21c211b9f86229

See more details on using hashes here.

File details

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

File metadata

  • Download URL: loregrep-0.3.3-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.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 f7edf3ddea40bd348d709cd5e90d111ea953b6c33b5d6f249660f413ff893820
MD5 a08fe8888965c812324ddbad38790d61
BLAKE2b-256 bb9af211cfe34e4041c5d8de4dc4054d0fcd9004dd8e59ae96746c018fdf5a02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.3-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eb430ff8e8bfd94cd38131aca6881df86ffba4e1808e09d020563b1dcd77f770
MD5 3b0b9ec2bba24205e2f98d9ee316443e
BLAKE2b-256 58777d717989d855abd5ea8300c0329d92097576e4f1506d2eeeb3ac2792cd39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.3-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c86fd3cc4bdc326e676d615b072e3bac111e9ae683c4f42854aa7a11f0454928
MD5 cc9fec22bf1855da1e6c7c1e7ba027ac
BLAKE2b-256 3b00609991313b66218c0b353ea822e9504781cd1c1a74b0519c886c0ba48bc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7e2d6d364573551719e2bbd19666cf1d117823b982dd6d47340e68a9572ade9f
MD5 7e83427fd6f208fdf44a1c14a859f454
BLAKE2b-256 7ac12a34cf3c879da91be6f48e2981c2c6747bb3b863c927df99d1331543e1c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.3-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d8fb9347f60d3320d92db1c45a8a7f0bfc7902b81036493c390c9aabba7abf36
MD5 70b7b3c5a888dfb09afeaeafa9883c66
BLAKE2b-256 221b2f4364e9aad83a7ac91babfcc29d166582f8f5bbec5bcf1dbdcdfd489d8c

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