Skip to main content

Repository indexing library for AI coding assistants

Project description

Loregrep

Fast Repository Indexing Library for Coding Assistants

Loregrep is a Rust library that parses codebases into fast, searchable in-memory indexes. It's designed to provide coding assistants and AI tools with structured access to code functions, structures, dependencies, and call graphs.

What It Does

  • Parses code files using tree-sitter for accurate syntax analysis
  • Indexes functions, structs, imports, exports, and relationships in memory
  • Provides 6 standardized tools that coding assistants can call to query the codebase
  • Enables AI systems to understand code structure without re-parsing

What It's NOT

  • โŒ Not an AI tool itself (provides data TO AI systems)
  • โŒ Not a traditional code analysis tool (no linting, metrics, complexity analysis)

Current Status

Language Support:

  • โœ… Rust - Full support (functions, structs, imports, calls)
  • ๐Ÿ“‹ Python, TypeScript, JavaScript, Go - Roadmap (Coming soon...)

Core Features:

  • โœ… Repository scanning with gitignore support
  • โœ… In-memory indexing with fast lookups
  • โœ… 6 tool interface for LLM integration
  • โœ… Thread-safe API with builder pattern

Performance (Typical):

  • Small repos (100 files): <1s analysis, <1MB memory
  • Medium repos (1,000 files): <10s analysis, <10MB memory
  • Large repos (10,000 files): <60s analysis, <100MB memory

Development Setup

Prerequisites

  • Rust 1.70 or later
  • For AI integration tests: Anthropic API key

Building

git clone https://github.com/yourusername/loregrep.git
cd loregrep
cargo build --release

Testing

# Run all tests
cargo test

# Run specific test suites
cargo test public_api_integration  # Public API tests
cargo test cli::tests              # CLI tests
cargo test storage::tests          # Storage/indexing tests

# Run with output
cargo test -- --nocapture

Development CLI Usage

The CLI is primarily for development and testing:

# Build development binary
cargo build --bin loregrep

# Basic commands for testing
./target/debug/loregrep scan .
./target/debug/loregrep search "parse" --type function
./target/debug/loregrep analyze src/main.rs

Architecture Overview

โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”    โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”    โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚   Code Files    โ”‚โ”€โ”€โ”€โ–ถโ”‚   Tree-sitter    โ”‚โ”€โ”€โ”€โ–ถโ”‚   In-Memory     โ”‚
โ”‚  (.rs, .py,     โ”‚    โ”‚    Parsing       โ”‚    โ”‚    RepoMap      โ”‚
โ”‚   .ts, etc.)    โ”‚    โ”‚                  โ”‚    โ”‚    Indexes      โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜    โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜    โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
                                                          โ”‚
                                                          โ–ผ
โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”    โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”    โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚ Coding Assistantโ”‚โ—€โ”€โ”€โ”€โ”‚  6 Query Tools   โ”‚โ—€โ”€โ”€โ”€โ”‚   Fast Lookups  โ”‚
โ”‚   (Claude, GPT, โ”‚    โ”‚ (search, analyze,โ”‚    โ”‚  (functions,    โ”‚
โ”‚   Cursor, etc.) โ”‚    โ”‚  dependencies)   โ”‚    โ”‚   structs, etc.)โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜    โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜    โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜

Core Components

  • LoreGrep: Main API facade with builder pattern
  • RepoMap: Fast in-memory indexes with lookup optimization
  • RepositoryScanner: File discovery with gitignore support
  • Language Analyzers: Tree-sitter based parsing (currently Rust only)
  • Tool System: 6 standardized tools for AI integration

Module Structure

src/
โ”œโ”€โ”€ lib.rs                 # Public API exports and documentation
โ”œโ”€โ”€ loregrep.rs           # Main LoreGrep struct and builder
โ”œโ”€โ”€ core/                 # Core types and errors
โ”œโ”€โ”€ types/                # Data structures (FunctionSignature, etc.)
โ”œโ”€โ”€ analyzers/            # Language-specific parsers
โ”‚   โ””โ”€โ”€ rust.rs          # Rust analyzer (tree-sitter based)
โ”œโ”€โ”€ storage/              # In-memory indexing
โ”‚   โ””โ”€โ”€ repo_map.rs      # RepoMap with fast lookups
โ”œโ”€โ”€ scanner/              # File discovery
โ”œโ”€โ”€ internal/             # Internal CLI and AI implementation
โ”‚   โ”œโ”€โ”€ cli.rs           # CLI application
โ”‚   โ”œโ”€โ”€ ai/              # Anthropic client and conversation
โ”‚   โ””โ”€โ”€ ui/              # Progress indicators and theming
โ””โ”€โ”€ cli_main.rs          # CLI binary entry point

Library API for Integrators

The public API is designed for external integration:

use loregrep::{LoreGrep, ToolSchema};
use serde_json::json;

// Initialize and scan
let mut loregrep = LoreGrep::builder()
    .max_file_size(1024 * 1024)
    .build()?;
    
let scan_result = loregrep.scan("/path/to/repo").await?;

// Get tool definitions for LLM
let tools: Vec<ToolSchema> = LoreGrep::get_tool_definitions();

// Execute tool calls (from LLM)
let result = loregrep.execute_tool("search_functions", json!({
    "pattern": "main",
    "limit": 10
})).await?;

Available Tools for LLM Integration

  1. search_functions - Find functions by name/pattern
  2. search_structs - Find structures by name/pattern
  3. analyze_file - Get detailed file analysis
  4. get_dependencies - Find imports/exports for a file
  5. find_callers - Get function call sites
  6. get_repository_tree - Get repository structure and overview

Examples and Integration

The examples/ directory contains integration patterns:

  • basic_scan.rs - Simple repository scanning
  • tool_execution.rs - LLM tool integration patterns
  • file_watcher.rs - File watching for automatic re-indexing
  • coding_assistant.rs - Complete coding assistant implementation
  • basic_usage.rs - Public API usage patterns

Testing Strategy

Test Structure

tests/
โ”œโ”€โ”€ public_api_integration.rs  # Public API tests (18 tests)
โ”œโ”€โ”€ cli_integration.rs         # CLI functionality tests  
โ””โ”€โ”€ test_repos/               # Sample repositories for testing

Running Tests

# All tests
cargo test

# Specific test categories
cargo test public_api         # Library API tests
cargo test cli               # CLI tests  
cargo test storage           # Storage/indexing tests
cargo test scanner           # File discovery tests

# With environment setup for AI tests
ANTHROPIC_API_KEY=your-key cargo test ai::tests

Known Test Status

  • โœ… 60+ tests passing across core functionality
  • โš ๏ธ 8 pre-existing test failures in older modules (technical debt)
  • โœ… 100% pass rate on new Phase 3B+ tests

Contributing

Areas Needing Help

  1. Language Support (High Priority)

    • Python analyzer in src/analyzers/python.rs
    • TypeScript analyzer in src/analyzers/typescript.rs
    • JavaScript and Go analyzers
  2. Performance (Medium Priority)

    • Memory optimization for large repositories
    • Incremental update detection
    • Query result caching improvements
  3. Advanced Features (Future)

    • Call graph visualization
    • Dependency impact analysis
    • MCP (Model Context Protocol) server interface

Development Workflow

  1. Fork and Clone

    git clone https://github.com/your-username/loregrep.git
    cd loregrep
    
  2. Create Feature Branch

    git checkout -b feature/your-feature-name
    
  3. Develop and Test

    cargo build
    cargo test
    cargo clippy
    cargo fmt
    
  4. Test Integration

    # Test CLI
    cargo build --bin loregrep
    ./target/debug/loregrep scan examples/
    
    # Test public API
    cargo run --example basic_scan
    

Code Style Guidelines

  • Use rustfmt for formatting: cargo fmt
  • Use clippy for linting: cargo clippy
  • Add tests for new functionality
  • Update documentation for public API changes
  • Follow existing module organization patterns

Implementation Status

โœ… Completed (Production Ready):

  • Foundation & Core Architecture
  • Enhanced In-Memory Storage
  • CLI Foundation
  • AI Integration
  • Enhanced CLI Experience
  • Public API Implementation

๐Ÿ”„ In Progress:

  • Advanced Analysis Features (call graphs, dependency tracking)

๐Ÿ“‹ Planned:

  • MCP Server Architecture
  • Multi-Language Support (Python, TypeScript, JavaScript, Go)
  • Advanced Features (incremental updates, performance optimization)

Technical Notes

Memory Management

  • Indexes built in memory for fast access
  • Thread-safe with Arc<Mutex<>> design
  • Memory usage scales linearly with codebase size
  • No external dependencies required at runtime

Performance Considerations

  • Scanning parallelized across CPU cores
  • Query results cached for repeated access
  • Tree-sitter parsers reused to avoid recreation overhead
  • Gitignore support to skip irrelevant files

Error Handling

Uses comprehensive error types from core::errors::LoreGrepError:

  • IO errors (file access, permissions)
  • Parse errors (malformed code)
  • Configuration errors
  • API errors (for AI integration)

License

This project is dual-licensed under either:

  • MIT License (LICENSE-MIT)
  • Apache License 2.0 (LICENSE-APACHE)

Roadmap

Language Support

  • Python Analyzer: Full Python support with functions, classes, imports, and method calls
  • TypeScript/JavaScript Analyzers: Support for modern JS/TS features including interfaces, types, and ES6+ syntax
  • Go Analyzer: Package declarations, interfaces, and Go-specific function signatures

Advanced Analysis Features

  • Call Graph Analysis: Function call extraction and visualization across files
  • Dependency Tracking: Advanced import/export analysis and impact assessment
  • Incremental Updates: Smart re-indexing when files change to avoid full rescans

Performance & Optimization

  • Memory Optimization: Improved handling of large repositories with better memory management
  • Query Performance: Enhanced caching and lookup optimization for faster results
  • Database Persistence: Optional disk-based storage for very large codebases

Integration & Architecture

  • MCP Server Integration: Standard Model Context Protocol interface for tool calling
  • Editor Integrations: VS Code, IntelliJ, and other popular editor plugins
  • API Enhancements: Additional tools and query capabilities for LLM integration

Note for Contributors: This project prioritizes the library API over CLI functionality. The CLI exists primarily for development and testing. Focus contributions on the core indexing and analysis capabilities that enable AI coding assistants.

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymanylinux: glibc 2.12+ i686

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymanylinux: glibc 2.12+ i686

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

loregrep-0.3.1-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.1-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.1.tar.gz.

File metadata

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

File hashes

Hashes for loregrep-0.3.1.tar.gz
Algorithm Hash digest
SHA256 ba5ee3bdb799e22b77036d303427b7e90139a24bf5302a0b49cae86131d422e9
MD5 cc5d8ecf5a591e4cee4131524fd1ffbc
BLAKE2b-256 d8811e2389c2b9aa4a2b48c2d3780056e5714c60c16f51f3b70fe3a3e56bb220

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bba49fc1a6c4066d43a266a7157bf0b49a02bc0057ec80e24cc80619d495c275
MD5 b2e0013ebef2890c123ddfae2ba45542
BLAKE2b-256 d2aa3854fee87ea219cb756f37aa17d2ddc719124d1ee5aaacc28b164059db7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5d8d9b1498989528a44f376b66a3f58c31601e20718ff638405c751e0864b1dd
MD5 7c266cb81659b91032d4ad75dfcafe21
BLAKE2b-256 bc2e3801f8092f19f746d2a85f41ffcfc5fdfaf652b6e30c8c7c890b1bc8e801

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b2886bb4af1ff163b49d8a4620880980a3c467d0afd2cb53e1aac3a2ce080087
MD5 3e8c867733a3760ad1832556f51961de
BLAKE2b-256 a81749375da0051aad4753fd2fc19cb5fc2709596c84f686bc7bd0f02cb437bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.1-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e52facb29399ee87996f93516fbdf861bfa14f1b887a2786dc1172a5440e549d
MD5 d9ec72fa2b881d69c2c34fd0669d8495
BLAKE2b-256 0f1ea95dc19d10c529cabf74487eee39bf91243f2ccc860730ff8b06b9fdd14e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0c734371b3ad21fe91f66a92f3f9da8d0936a9864a11103bae2ac859bed63a6c
MD5 81feaad4000da47f72e5b2e01b6c399b
BLAKE2b-256 9a07e6e6b8d9537dc6d215bf762e396e65e0afa334ba2976edbbd3b5819c4e59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a680eca1dcda0b509cee45f73da6c812d8dfb155c4574b422647803ed27dc670
MD5 5b6c06074a61867b6d9a8a254ee0fb54
BLAKE2b-256 994c6a9222e97b5a37e798d3c3d9d4fe82739430a3a5cb9e378b622fc27bf3a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b003fea9b16f4c19bcd372cdbe3435740353606673f211ab13c96cf6c2420f82
MD5 c7276fd2909dfdbe053c0c78e34ae9e7
BLAKE2b-256 fb057b4fd7bbf92a1465e7e532ff4787ef4070819c7deed896e6d075fd4c5c5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.1-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 8fda097a1318b48402d3ddc02f4cb2bec7f7f94aeba12f54cc6b12e59c8fcea8
MD5 1761199bd074f974a44c764bc0d38e36
BLAKE2b-256 d9b3c2b885e5721b77df55167a84e8310bae4ba037f91dfaa768ef1354f81d43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cd84ba630579bfd0500bfe2584ef84e5a29a0e524db7cdc1935e4cd07ed2a497
MD5 e3514df3ff9b021816f8e7766b17c2e6
BLAKE2b-256 b0451d02cae57909486a06c64e334f7b68d97b43b75fcce9c917c69441f6792c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 31c27565e85f0450c98ca97c1d05af7496d4a9fc7a6d301fd59ca0482dc6f8ee
MD5 3dd9ac7644c643a558512d4230e36c95
BLAKE2b-256 14a6a602a18990a89010ccba0a00da3be90b5a74b523dbed2ec5734460fd002c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 353e9d6f5d806006c75754898178510ff106aae8871c11607aaeb15599bb64e5
MD5 7e99d4212472abc7b9455f6d6b722bf6
BLAKE2b-256 bbf3c07465ccb5a4b54f6caaf2d74e89bb271fe5bd4ae21e79577127a595348f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.1-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 91d3dbbb52fceb24620187b47d40d31d228c0ef6af10797b03ce16a4066396ea
MD5 428328dd3467c6c04211ff33d8f9d04a
BLAKE2b-256 dcae7a4c9f75be7642718260d3ea11017a330ecc5093be4ec45bd56d586179db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0562fc88d5ce314912dceb2cd68ffe1c2111d109742d66899d4d9b4bbc9d1ead
MD5 8c232828a251523f2349e1a244980666
BLAKE2b-256 c2545a81cebd119425a945fa40c53d829e30d25ff33ec7dc50f5868084b1666f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b4f52d448cde7c6db67d8f761b802b99f74be8389f7baad076bde9e04790b2e8
MD5 719ded599af869a123fd9b4d595b35f1
BLAKE2b-256 bc0e838e924017f5c123772d715503659245b3664119034bab5fae4e01a47760

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5c7174f6528c311c4bf5b9117906ad3a340f069298eeb7e889aa86cd41ddbf76
MD5 949ca1cc83894ae77584b6e5afb8856b
BLAKE2b-256 96b4d0dfd716712039b8479548373a7a2f5ceaad5e892d7cdfe40676dbc07111

See more details on using hashes here.

File details

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

File metadata

  • Download URL: loregrep-0.3.1-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.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 1f7549b8514b4dc2b17412a7f806a1226b7db1abe46d0b7eb512275d4e6ce6be
MD5 cb2c3dd6f561c2b29f5cfd2735356ccb
BLAKE2b-256 eefedc264a3c69eceeef51ec62fc59a4f81b4e070712b9617a402681603a390f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e74bc0616c3ebad4ca3687d7487086bcf56b90a8fae36f96a6a9f432d9bac12f
MD5 5b97eb1142a6f44642221dffc3895f0d
BLAKE2b-256 bcf368a52a4a7710ae55e842e801c817af70f58d2ce490f3b26c3c9c99b9f225

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a293815f531279a881b874d23468d8ded89da4dd85b2a59816923d0902862f17
MD5 d39aee167d3998d4bab78814673718ed
BLAKE2b-256 4195c5a80d62742825df3de1274757863a4e2afbd02adaebc0be67a5100192fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8ee435fa3e8d5f5bcfdd462746972bdc302e6126e9947f5685504badc52e0fd5
MD5 84941ca9bd2b90af724bf599e8012ad4
BLAKE2b-256 7ba627d2574fa2c54073ec6151c01e354248ce62e34af66ad59006eb99bc870a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.1-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7e7757a27c63e914607b196de2e46a4f07aa063c82cde8aae57ffc3784d12141
MD5 25802d427c84ee95c766761ee47c6ee2
BLAKE2b-256 4f49f47adf62ef01f229b67a5114424dd951538aaeb93111905febdbf48c7582

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c5453ff08a5874e548507a3482889052b623fccabbb17bfa02ea8439d9f6ba96
MD5 1d4edb247579668243295054c3c72f1a
BLAKE2b-256 3cc2ca1352886c710763dd9249429791a77a435e8c47f0725893ef060f2a1043

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 310f0de393aa67744e717a91e0874f0842ba2b697a99ed61c2599c053c1a0448
MD5 a054d8906a3e6fa752b91b22ddbc1483
BLAKE2b-256 02d8565d528d849a92ab87564e0e227e9a22df0ddff5d6925b20e9242110e4d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 854707297d27f1e4c7ae62ca9f0e927adfee32e4686684fb22aa5ecdb9b30032
MD5 249c876a15c5f9571b7fa932674c3b18
BLAKE2b-256 d9b473b617ae7e3eb0a6d5bf7c9d76f497520d3a40b698740431451d94f7ea1e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: loregrep-0.3.1-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.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 6bc8b0c62d96a33daf52f64d9148449b4e4f548b2972838f5b9a91d4e28de41c
MD5 a14e4aacf20f12253b52b74e71390591
BLAKE2b-256 094c1940b171e323034243282042db276c668bc6841e9bf669a6b96509b24ec0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7a4dcbfefe76fb42b8d26ace279cf560c6d498425f4b6719b48b6dec240ee4e3
MD5 ec889ec8e7c36a73de41307dbca561d6
BLAKE2b-256 bd97e9432da5d891e00c36471004cc0355a57c02c1af3332520ea677f6a1e050

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 83519ab57cba1bd935478e8de6d85b7905d096e191b083cd662ea2f9c69a999f
MD5 25226f64dacc375069265ca7256cf36a
BLAKE2b-256 294d7ece7218d2a3c1110cc604fc50b442d396193bc4a7a147eff1f51db91f5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9716a59bb0af2c66fb5443250b619ba39525f34f3248e2bb91a6e49be83fff68
MD5 fad9bea1414a3f01c425c2e1362aee63
BLAKE2b-256 73c639ff74ae1d51ad0fccebef0fbc0aba2d1daff49f742de9c5ca567dac448c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d5c21d9f4a683d300a29f2c7121c5ee3f0dc7c4ccdc33e8c0d8498d762abb800
MD5 6870ab858d18410367391e66c0e8b134
BLAKE2b-256 3187594f7fa847f14cb94fe37932b12e9d74a7b384e95d6fa18b90f6873067f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e2c690defc635e172d42e0643447ea6d90e6c05cdbd092c76037eaa17e0791d1
MD5 842159fe4d313a08ee20682f4697fbb7
BLAKE2b-256 7998d49a0918ce59968404907e2b45180414d961538ab1ac18e7375c8b108edd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 527820a1668808745137c80810f118083a8736ad993bffdf088ba9da36db130a
MD5 cbf0b5d58080359c7181899c1bd60384
BLAKE2b-256 fb8b30b20b1cef9c1d8815703862a9577e2476a9eb933e6b03435f6960580073

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7136404326ac18219c9416c448a157226a5434e264e7773d3bd8264d7bf364fa
MD5 bc680deef235a221199927af37150f12
BLAKE2b-256 95fe69955ca6880d2ac699b7a76c655d86282164d132bfc7b2057490966aa7ff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: loregrep-0.3.1-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.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 baeca0d1f4102975554184ec0baaea35f621e354ebc27d417635c32b5a1590b2
MD5 761d27eaa354f1313c1f156b71f14383
BLAKE2b-256 70d474e668f699e2ccf28316c260fe5921b0816485eec9be90677f688708ee44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 adf9bad98c53f831dbe7c505b83809eea674e8c495045ce29db3c29f47d13a3b
MD5 fd1ca4ab18465e0699a028746e026a89
BLAKE2b-256 37cb21c502998d3db65afde45a3f7856f660d0887a825cd8fb5fe1eb0690590c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fc603808c5a10b7fa4be21195af9fdd9919b02fb9ee8605e620d4fdaedc266ca
MD5 8c530ae99dd2361dc62b3e9866d1b756
BLAKE2b-256 4f8b9a1a9be5c67a41f39fb27e12c34f4e7095c4379d1c845309324076ebd727

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ea378bd6153775195382b0dab7363034e99d2446c98f6872eaa8da4143c76092
MD5 91fb8b482272727a4805703e7182c444
BLAKE2b-256 afe679a959c28d570295a7c6f1eba9227781bc5f27a395c46a5dcd90b288c372

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7bbb36ce65fea21b7fdd3299081be31dec9b547678b74638ec2bbd88f095e0c5
MD5 cf56f1a5b2ddd5935d1bdc2bb6fb93c2
BLAKE2b-256 ea41df0948dfc4cf32646e63d26420c0b49184b6e72c2bde481dde9e04770d9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 05d5adea060166f3d7160aeb5c748dfe72d0dd8f11623e35a68735b607296c67
MD5 d1dd249c8f1c7c63c35e867bc0a08f1e
BLAKE2b-256 e10803bf075a00f8603d7f0a69becb44fe87d1bc544534d990b38b5bbb289aab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d4eb4da07cd680e1e195a6287305b9b3bfb2de57b849c4142d4c35a61579b98a
MD5 aea82003f0edac8a631e270943ff21e3
BLAKE2b-256 c4186665b5b72f66144d25a95392c148ffd909361f1200e66cfbc9fc47225a1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f03ce55193c42860a3dfaf9b974cf53c77be6e10c1fc01e3476fc7d210c0b119
MD5 12de5844cc3ddd95a5e8967830d73be0
BLAKE2b-256 34dc3b6511cb91bbcba6844e02f48275e7c8d355a818d91b7cb6a55391234e10

See more details on using hashes here.

File details

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

File metadata

  • Download URL: loregrep-0.3.1-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.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 88483ae8a2e0d4c3b8786b1d05c11e40d39ec34f50ee1eeadbc98775e49bab23
MD5 31a3e0427179394ec64bd66785201cb9
BLAKE2b-256 ea16dcd02002635bdcf4dced119f9dc41c34dffcbe0761fe914ac17649813ffd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ae4607b36a6f5db5e2631304a4c9eec4ba54ad7fd27b807bcad678387e4874dc
MD5 20c369dfff8366663f67dadcbd53d0de
BLAKE2b-256 7d8f65b1fdd9a567a809d03472e71b1402f7e1800f5d49d9865c46d11f046849

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f4eb4a1d6591c6495875775a70a14c8600649604a686c8df085407d30b7a7c46
MD5 88ff7faaeb30212ebf6685353929d81d
BLAKE2b-256 ca8ad1fc0353c78e8ef6f33a684883a5bceb2dfc3cdb814617c36f4ce14262a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 adc2e5c854fd1045d2725610e8c300667d0a8b074c95a54571d5e6b048039166
MD5 6b6a3c8bf0db4b85a7e14e699f50a69e
BLAKE2b-256 29f95a6c7f6e2b09acefb4fbec7e065593e2408e9990585250bd130fb16fce43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 078823ccd02b33fcdfb73af4e167a329df9802ba4b8a680bf63a6357ee85b733
MD5 7a5c44e2ff6b5b48db878be2bd0dbb3f
BLAKE2b-256 a76a17a51af449d3dc4a25f65b834a4537363d16adb682f3a127f122159d1841

See more details on using hashes here.

File details

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

File metadata

  • Download URL: loregrep-0.3.1-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.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9acce663bb91403a9d09ed6aeb02f6372e8900d1acc7ae5073c363d3cd824c84
MD5 0bca247a005faccab766f1da6e1e825f
BLAKE2b-256 7279c8400581e9bf04c072ceb773778fb88458fabb4981dff02dc813ed73839f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: loregrep-0.3.1-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.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 a3367b2c5e670be4ddb41faab70a4774002e4fbc718e10118f9f2bf5dcb7a7ce
MD5 02af59027910de034ca8eb1907682d77
BLAKE2b-256 3c90bdd81943b42e03ac9f12b7eacd611e82ce5b006773b1dd2d7537b0154292

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 64ec53919068f95a45e7070a7cdb02386338605ff8ee96efe44ff70d56ccddf9
MD5 c5bd614dce4200cf7304c154a1e1b8db
BLAKE2b-256 96a46b2830850aa96af36b9d8695ef3eea74430713c5b7a2d56c6ddd278a4eda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0ef009a47827096883fdc198e289df47a026d8644b8a2ff0944c66cd1bca3578
MD5 74e4616dc9db7236a484996e3e27b6fb
BLAKE2b-256 c9d55d8b92120efdb2cc96e18ed4a4b17dae3b47368f405b09e2a91c83d2c0b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7bd07c69bbbd2654071ef29a6f6898a5dc10fd43ae6e5a1ac1121ea4bbd7bcfb
MD5 632cc7ea5f22417bea2afbc24e6086c2
BLAKE2b-256 4ba9d785d382b61742e3dd4d168f2ab0d540b79307123da02cc56ea44ef0b8ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a24bade25996b7d2d47f792622dcbbea8e48733bae3c227ca49626b12f654e05
MD5 05aaf5d6c97f0116c9f41baa979f8911
BLAKE2b-256 f2b6b9c9e26f8008685be4e7be82e2f87b3a3fb7cd3bfa0723c80b621b073d6f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: loregrep-0.3.1-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.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e48ad79114aa14c2ee0c4df8d9d57539123c5d8376ad6c6a0a0996ddaf28ee58
MD5 03e65b8acf5703e76bf78982b9784910
BLAKE2b-256 4627cefd557d3b5379ad62178e65dd27b1faff44f050938f72d67d69d2674434

See more details on using hashes here.

File details

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

File metadata

  • Download URL: loregrep-0.3.1-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.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 cb1f8f7b9d7dd25ef048d7ca0e80bf818829ff3682d1bce22d91e5e9fd6993f4
MD5 c286a94572ac2e77f399c7a2d6c9b766
BLAKE2b-256 884181804a01957eee1602c7f3ae29e68b7bb6a0490195b11700d51c71a5df51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f8259d7fce239ebda3cbc7706a6936e4ee1caf630486997793a072ee9c1181d2
MD5 a4af61d5e11f2a9617572e4de7e7b07b
BLAKE2b-256 733a2298e384522d01c1c715b8721ce07d2dd5c31cfbb37e94ae1918cfa0ea46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b0eaa119c986969ff84c8228bbfb4c29d01da9a90fa92b2ede53ac217360346e
MD5 e9bc29ddff6be775abb36a9bda7a2c02
BLAKE2b-256 f5f5fbe1f4955a95f84c76aa00d14df3a23b9f10885bebec05037a31af043083

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7a4109daf0e5ffc4fdc9ae65a24c23af508b830e5b5506aac151e33a17865b48
MD5 823c4dd896a69870dad80512a8f0c46c
BLAKE2b-256 75830384e35e2d31556961ac77f8832a369900dc42f1a4393d9ab11f27c2c4c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for loregrep-0.3.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 391c92884103363ca10e54b6ba9bd1da1ddb1adf0327e5a8b11e298f687392c8
MD5 f46cd58bb1bbfbe8bbefaa9fb7ee7d04
BLAKE2b-256 5fd1edbd8bed38216c4004e3250bca0bd70e8d95bacc50d2447f9350cf79ed6d

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