Skip to main content

No project description provided

Project description

Stockula

Python 3.13+ License: MIT codecov

Stockula is a comprehensive Python trading platform that provides tools for technical analysis, backtesting, data fetching, and price forecasting. Built with modern Python practices, it integrates popular financial libraries to offer a complete solution for quantitative trading strategy development.

โœจ Features

  • ๐Ÿ“Š Technical Analysis: 40+ indicators (SMA, EMA, RSI, MACD, Bollinger Bands, etc.)
  • ๐Ÿ”„ Backtesting: Test trading strategies with realistic broker costs and commission structures
  • ๐Ÿ“ˆ Data Fetching: Real-time and historical market data via yfinance with intelligent SQLite caching
  • ๐Ÿ”ฎ Price Forecasting: Automated time series forecasting using AutoTS with two modes:
    • Future prediction mode: Forecast N days from today
    • Historical evaluation mode: Train/test split with accuracy metrics (RMSE, MAE, MAPE)
  • ๐ŸŽจ Rich CLI Interface: Beautiful progress bars, tables, and colored output
  • ๐Ÿ—„๏ธ Database Caching: Automatic SQLite caching for offline analysis and fast data access
  • ๐Ÿš€ Modern Python: Built with uv for fast package management and Pydantic for configuration

๐Ÿš€ Quick Start

Installation

  1. Install uv (if not already installed):

    curl -LsSf https://astral.sh/uv/install.sh | sh
    
  2. Clone and install:

    git clone https://github.com/mkm29/stockula.git
    cd stockula
    uv sync
    

Basic Usage

# Analyze a single stock
uv run python -m stockula.main --ticker AAPL

# Run with configuration file
cp examples/config.simple.yaml .config.yaml
uv run python -m stockula.main

# Run specific analysis modes
uv run python -m stockula.main --ticker GOOGL --mode ta        # Technical analysis
uv run python -m stockula.main --ticker MSFT --mode backtest  # Backtesting (results sorted by return, highest first)
uv run python -m stockula.main --ticker NVDA --mode forecast  # Forecasting (results sorted by return, highest first)

Configuration Example

data:
  start_date: "2023-01-01"
  end_date: null

portfolio:
  initial_capital: 100000
  allocation_method: equal_weight
  tickers:
    - symbol: AAPL
      quantity: 10
    - symbol: GOOGL
      quantity: 5

backtest:
  initial_cash: 10000.0
  broker_config:
    name: "robinhood"  # Zero commission + TAF
  strategies:
    - name: smacross
      parameters:
        fast_period: 10
        slow_period: 20

Backtest-Optimized Allocation

Stockula includes an advanced allocation strategy that uses historical backtesting to optimize portfolio allocation:

# config.yaml for backtest-optimized allocation
portfolio:
  initial_capital: 100000
  allocation_method: backtest_optimized
  tickers:
    - symbol: AAPL
      category: TECH
      quantity: 0  # Placeholder - will be calculated
    - symbol: SPY
      category: INDEX
      quantity: 0  # Placeholder - will be calculated
    - symbol: GLD
      category: COMMODITY
      quantity: 0  # Placeholder - will be calculated
    - symbol: NVDA
      category: MOMENTUM
      quantity: 0  # Placeholder - will be calculated

# Configure backtest optimization
backtest_optimization:
  train_start_date: "2023-01-01"
  train_end_date: "2023-12-31"
  test_start_date: "2024-01-01"
  test_end_date: "2024-06-30"
  ranking_metric: "Return [%]"    # Default, can also use "Sharpe Ratio", etc.
  min_allocation_pct: 2.0
  max_allocation_pct: 25.0
  initial_allocation_pct: 2.0

The BacktestOptimizedAllocator will:

  1. Test 11 different trading strategies on each asset using training data
  2. Select the best-performing strategy for each asset
  3. Evaluate performance on test data
  4. Allocate capital based on test performance (higher return = larger allocation by default)

See the Allocation Strategies documentation for more details.

Note: Currently, the backtest_optimized allocation method requires placeholder quantities in the config. Full CLI integration is planned for a future release.

Forecast Evaluation

When running forecasts in evaluation mode (with train/test split), Stockula provides accuracy metrics:

               Portfolio Value
โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“
โ”ƒ Metric          โ”ƒ Date       โ”ƒ Value      โ”ƒ
โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ
โ”‚ Observed Value  โ”‚ 2025-04-01 โ”‚ $20,000.00 โ”‚
โ”‚ Predicted Value โ”‚ 2025-04-30 โ”‚ $20,201.99 โ”‚
โ”‚ Accuracy        โ”‚ 2025-04-30 โ”‚ 92.4190%   โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜

How Accuracy is Calculated:

Portfolio accuracy is calculated as: Accuracy = 100% - MAPE

Where MAPE (Mean Absolute Percentage Error) measures the average percentage difference between predicted and actual prices. For example:

  • If a stock's MAPE is 6.11%, its accuracy is 93.89%
  • The portfolio accuracy is the average of all individual stock accuracies

This provides an intuitive measure where:

  • 100% = Perfect prediction
  • 90%+ = Excellent forecast
  • 80-90% = Good forecast
  • <80% = Consider improving model or data

๐Ÿ“š Documentation

For comprehensive documentation, visit our MkDocs Documentation Site:

๐Ÿ Getting Started

๐Ÿ“– User Guide

๐Ÿ”ง API Reference

๐Ÿ› ๏ธ Development

  • Testing - Comprehensive testing guide, strategy, and coverage
  • CI/CD - Continuous integration and deployment with GitHub Actions

๐Ÿ” Help

๐Ÿ—๏ธ Architecture

graph TB
    subgraph "User Interface"
        CLI[CLI main.py]
        Config[Configuration<br/>.config.yaml]
    end

    subgraph "Core Domain"
        Factory[Domain Factory]
        Portfolio[Portfolio]
        Asset[Asset]
    end

    subgraph "Allocation Module"
        Allocator[Base Allocator]
        STD[Standard Allocator]
        OPT[Backtest Optimized<br/>Allocator]
    end

    subgraph "Data Layer"
        Fetcher[Data Fetcher<br/>yfinance wrapper]
        DB[(SQLite Database<br/>stockula.db)]
    end

    subgraph "Analysis Modules"
        TA[Technical Analysis<br/>finta]
        BT[Backtesting<br/>strategies]
        FC[Forecasting<br/>AutoTS]
    end

    CLI --> Config
    Config --> Factory
    Factory --> Portfolio
    Factory --> Allocator
    STD --> Allocator
    OPT --> Allocator
    OPT --> BT
    TA --> Fetcher
    BT --> Fetcher
    FC --> Fetcher
    Fetcher --> DB

    style CLI fill:#2196F3,stroke:#1976D2,color:#fff
    style Config fill:#4CAF50,stroke:#388E3C,color:#fff
    style DB fill:#FF9800,stroke:#F57C00,color:#fff

๐Ÿ“‹ Requirements

  • Python: 3.13 or higher
  • Operating System: macOS, Linux, or Windows
  • Memory: 8GB RAM recommended
  • Storage: 100MB free space

Key Dependencies

  • pandas: Data manipulation and analysis
  • yfinance: Yahoo Finance data fetching
  • finta: Financial technical analysis indicators
  • backtesting: Strategy backtesting framework
  • autots: Automated time series forecasting
  • rich: Enhanced CLI formatting with progress bars and tables
  • pydantic: Data validation and settings management

๐ŸŽจ Rich CLI Examples

Progress Tracking

โ ‹ Backtesting SMACROSS on AAPL... โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ” 85% 0:00:02

Results Tables

                           Portfolio Composition
โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“
โ”ƒ Ticker โ”ƒ Category    โ”ƒ Quantity โ”ƒ Allocation % โ”ƒ      Value โ”ƒ Status    โ”ƒ
โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ
โ”‚ SPY    โ”‚ INDEX       โ”‚     1.00 โ”‚         0.7% โ”‚    $637.10 โ”‚ Hold Only โ”‚
โ”‚ VOO    โ”‚ INDEX       โ”‚     1.00 โ”‚         0.6% โ”‚    $585.58 โ”‚ Hold Only โ”‚
โ”‚ DFUSX  โ”‚ INDEX       โ”‚     1.00 โ”‚         0.0% โ”‚     $42.40 โ”‚ Hold Only โ”‚
โ”‚ FSKAX  โ”‚ INDEX       โ”‚     1.00 โ”‚         0.2% โ”‚    $175.65 โ”‚ Hold Only โ”‚
โ”‚ FSMDX  โ”‚ INDEX       โ”‚   199.00 โ”‚         7.8% โ”‚  $7,279.42 โ”‚ Hold Only โ”‚
โ”‚ FXAIX  โ”‚ INDEX       โ”‚     1.00 โ”‚         0.2% โ”‚    $221.98 โ”‚ Hold Only โ”‚
โ”‚ NVDA   โ”‚ MOMENTUM    โ”‚     1.00 โ”‚         0.2% โ”‚    $173.50 โ”‚ Tradeable โ”‚
โ”‚ AMD    โ”‚ MOMENTUM    โ”‚     1.00 โ”‚         0.2% โ”‚    $166.47 โ”‚ Tradeable โ”‚
โ”‚ TSM    โ”‚ MOMENTUM    โ”‚     1.00 โ”‚         0.3% โ”‚    $245.60 โ”‚ Tradeable โ”‚
โ”‚ AAPL   โ”‚ MOMENTUM    โ”‚     1.00 โ”‚         0.2% โ”‚    $213.88 โ”‚ Tradeable โ”‚
โ”‚ MSFT   โ”‚ MOMENTUM    โ”‚     1.00 โ”‚         0.5% โ”‚    $513.71 โ”‚ Tradeable โ”‚
โ”‚ GOOGL  โ”‚ MOMENTUM    โ”‚     1.00 โ”‚         0.2% โ”‚    $193.18 โ”‚ Tradeable โ”‚
โ”‚ AMZN   โ”‚ MOMENTUM    โ”‚     1.00 โ”‚         0.2% โ”‚    $231.44 โ”‚ Tradeable โ”‚
โ”‚ META   โ”‚ MOMENTUM    โ”‚     1.00 โ”‚         0.8% โ”‚    $712.68 โ”‚ Tradeable โ”‚
โ”‚ TSLA   โ”‚ MOMENTUM    โ”‚     1.00 โ”‚         0.3% โ”‚    $316.06 โ”‚ Tradeable โ”‚
โ”‚ PLTR   โ”‚ MOMENTUM    โ”‚   469.00 โ”‚        79.7% โ”‚ $74,477.20 โ”‚ Tradeable โ”‚
โ”‚ LIDR   โ”‚ SPECULATIVE โ”‚  1631.00 โ”‚         7.7% โ”‚  $7,233.48 โ”‚ Tradeable โ”‚
โ”‚ OPEN   โ”‚ SPECULATIVE โ”‚     1.00 โ”‚         0.0% โ”‚      $2.54 โ”‚ Tradeable โ”‚
โ”‚ SOFI   โ”‚ SPECULATIVE โ”‚     1.00 โ”‚         0.0% โ”‚     $21.20 โ”‚ Tradeable โ”‚
โ”‚ IONQ   โ”‚ SPECULATIVE โ”‚     1.00 โ”‚         0.0% โ”‚     $43.17 โ”‚ Tradeable โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜

Ticker-Level Backtest Results

                             Ticker-Level Backtest Results
โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“
โ”ƒ Ticker โ”ƒ Strategy       โ”ƒ   Return โ”ƒ Sharpe Ratio โ”ƒ Max Drawdown โ”ƒ Trades โ”ƒ Win Rate โ”ƒ
โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ
โ”‚ NVDA   โ”‚ VIDYA          โ”‚  +27.67% โ”‚         1.50 โ”‚       -3.43% โ”‚      0 โ”‚      N/A โ”‚
โ”‚ NVDA   โ”‚ SMACROSS       โ”‚  +44.60% โ”‚         0.64 โ”‚      -38.09% โ”‚      9 โ”‚    44.4% โ”‚
โ”‚ NVDA   โ”‚ DOUBLEEMACROSS โ”‚  +27.67% โ”‚         1.50 โ”‚       -3.43% โ”‚      0 โ”‚      N/A โ”‚
โ”‚ NVDA   โ”‚ VAMA           โ”‚  +41.34% โ”‚         0.59 โ”‚      -42.46% โ”‚      9 โ”‚    33.3% โ”‚
โ”‚ NVDA   โ”‚ ER             โ”‚  +60.37% โ”‚         1.20 โ”‚      -14.22% โ”‚     10 โ”‚    40.0% โ”‚
| ...    โ”‚ ...            โ”‚      ... โ”‚         ...  โ”‚         ...  โ”‚    ... โ”‚      ... โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜

Strategy Summaries

Strategy summaries are displayed in descending order by "Return During Period" (highest returns first):

โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ STRATEGY: DOUBLEEMACROSS โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ
โ”‚                                                                                                                                 โ”‚
โ”‚  Parameters: Default                                                                                                            โ”‚
โ”‚  Broker: robinhood (zero-commission)                                                                                            โ”‚
โ”‚                                                                                                                                 โ”‚
โ”‚  Portfolio Value at Start Date: $19,997.94                                                                                      โ”‚
โ”‚  Portfolio Value at End (Backtest): $30,261.55                                                                                  โ”‚
โ”‚                                                                                                                                 โ”‚
โ”‚  Strategy Performance:                                                                                                          โ”‚
โ”‚    Average Return: +51.32%                                                                                                      โ”‚
โ”‚    Winning Stocks: 12                                                                                                           โ”‚
โ”‚    Losing Stocks: 2                                                                                                             โ”‚
โ”‚    Total Trades: 22                                                                                                             โ”‚
โ”‚                                                                                                                                 โ”‚
โ”‚  Return During Period: $10,263.61 (+51.32%)                                                                                     โ”‚
โ”‚                                                                                                                                 โ”‚
โ”‚  Detailed report saved to: results/reports/strategy_report_doubleemacross_20250727_221642.json                                  โ”‚
โ”‚                                                                                                                                 โ”‚
โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ

๐Ÿš€ CI/CD

Continuous Integration

Stockula uses GitHub Actions for automated testing and deployment:

  • Testing (test.yml): Runs on all pull requests and pushes to main

    • Linting: Code style checks with ruff
    • Unit Tests: Fast, isolated tests with coverage reporting
    • Integration Tests: Currently disabled, will test with SQLite database
  • Release Management (release-please.yml): Automated versioning and releases

    • Monitors commits using Conventional Commits
    • Creates release PRs automatically
    • Publishes to PyPI on release
  • Docker Builds (docker-build.yml): Multi-platform container images

    • Triggers on version tags (v*)
    • Builds for linux/amd64 and linux/arm64/v8
    • Publishes to GitHub Container Registry

Commit Guidelines

This project uses Conventional Commits:

  • feat: New features
  • fix: Bug fixes
  • chore: Maintenance tasks
  • docs: Documentation updates
  • test: Test additions or changes

๐Ÿ”— Links

๐Ÿ“ License

MIT License - see LICENSE file for details.

๐Ÿค Contributing

Contributions are welcome! Please see our Contributing Guide for development setup and guidelines.

Development Setup

  1. Install pre-commit hooks:

    uv run pre-commit install
    
  2. Run tests and linting:

    # Run tests
    uv run pytest
    
    # Run linting (consistent with CI)
    uv run lint
    
    # Or run individual commands
    uv run ruff check src tests
    uv run ruff format --check src tests
    
    # Fix linting issues
    uv run ruff check src tests --fix
    uv run ruff format src tests
    
  3. Manual pre-commit run:

    uv run pre-commit run --all-files
    

This project uses:


๐Ÿ“š For detailed documentation, examples, and API references, visit our comprehensive documentation site.

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

stockula-0.8.0.tar.gz (382.2 kB view details)

Uploaded Source

Built Distribution

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

stockula-0.8.0-py3-none-any.whl (120.0 kB view details)

Uploaded Python 3

File details

Details for the file stockula-0.8.0.tar.gz.

File metadata

  • Download URL: stockula-0.8.0.tar.gz
  • Upload date:
  • Size: 382.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.8.4

File hashes

Hashes for stockula-0.8.0.tar.gz
Algorithm Hash digest
SHA256 90ec4ce952440f8dac8d67830cd308b8419275d2bc6367573f29b4022fa26dd0
MD5 6039435b118417893d4bf1ed0b829e2b
BLAKE2b-256 3a18df8a189bf424e8beb06debba3261cb184c64da9bc031802ad763fdfee2d2

See more details on using hashes here.

File details

Details for the file stockula-0.8.0-py3-none-any.whl.

File metadata

  • Download URL: stockula-0.8.0-py3-none-any.whl
  • Upload date:
  • Size: 120.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.8.4

File hashes

Hashes for stockula-0.8.0-py3-none-any.whl
Algorithm Hash digest
SHA256 f94448c2eb63df178225008e8d4e5b975221cf5ce344f077b35d49ad837906cd
MD5 a1982aa371161c2cdb0860fae497334a
BLAKE2b-256 efcd2a0afd4cad78cdc419b06fc01615ba06b36b6ed10d4787f7d7924a02a489

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