Skip to main content

Query your data, where it lives

Project description

Opteryx

Query your data, where it lives.

A unified SQL interface to unlock insights across your diverse data sources, from blobs stores to databases - effortless cross-platform data analytics.

Opteryx We're excited to have you join our journey. Let us know how we can help!

PyPI Latest Release Downloads codecov opteryx PyPI Latest Release

InstallExamplesGet Involved

Resource Location
Source Code https://github.com/mabel-dev/opteryx
Documentation https://opteryx.dev/
Download https://pypi.org/project/opteryx/

What is Opteryx?

Opteryx is a Python library enabling SQL queries across diverse data sources like Apache Iceberg, Postgres, Parquet, and MongoDB. Opteryx champions the SQL-on-everything approach, streamlining cross-platform data analytics by federating SQL queries across diverse data sources. The goal is to enhance your data analytics process by offering a unified way to access data from across your organization. Opteryx combines the simplicity of SQLite and DuckDB with federated query capabilities found in Presto and Trino.

Opteryx offers the following features:

  • SQL queries on data files generated by other processes, such as logs
  • A command-line tool for filtering, transforming, and combining files
  • Integration with familiar tools like pandas and Polars
  • Embeddable as a low-cost engine, enabling portability and allowing for hundreds of analysts to leverage ad hoc databases with ease
  • Unified and federated access to data on disk, in the cloud, and in on-premises databases, not only through the same interface but in the same query

How Does it Work?

Opteryx processes queries by first determining the appropriate query language to interact with different downstream data platforms. It translates your query into SQL, CQL, or another suitable query language based on the data source. This enables Opteryx to efficiently retrieve the necessary data from systems such as MySQL or MongoDB to respond to your query.

Opteryx

Why Use Opteryx?

Familiar Interface

Opteryx supports key parts of the Python DBAPI and SQL92 standard standards which many analysts and engineers will already know how to use.

Consistent Syntax

Opteryx creates a common SQL-layer over multiple data platforms, allowing backend systems to be upgraded, migrated or consolidated without changing any Opteryx code.

Where possible, errors and warnings returned by Opteryx help the user to understand how to fix their statement to reduce time-to-success for even novice SQL users.

Consumption-Based Billing Friendly

Opteryx is well-suited for deployments to environments which are pay-as-you-use, like Google Cloud Run. Great for situations where you have low-volume usage, or multiple environments, where the costs of many traditional database deployment can quickly add up.

Python Ecosystem

Opteryx is Open Source Python, it quickly and easily integrates into Python code, including Jupyter Notebooks, so you can start querying your data within a few minutes. Opteryx integrates with many of your favorite Python data tools, you can use Opteryx to run SQL against pandas and Polars DataFrames, and even execute a JOIN on an in-memory DataFrame and a remote SQL dataset.

Time Travel

Designed for data analytics in environments where decisions need to be replayable, Opteryx allows you to query data as at a point in time in the past to replay decision algorithms against facts as they were known in the past. You can even self-join tables historic data, great for finding deltas in datasets over time. (data must be structured to enable temporal queries)

Fast

Benchmarks on M2 Pro Mac running an ad hoc GROUP BY over a 6 million row parquet file via the CLI in ~1/4th of a second from a cold start (no caching and predefined schema). (different systems will have different performance characteristics)

Instant Elasticity

Designed to run in Knative and similar environments like Google Cloud Run, Opteryx can scale down to zero, and scale up to respond to thousands of concurrent queries within seconds.

Bring your own Data

Opteryx

Opteryx supports multiple query engines, dataframe APIs and storage formats. You can mix-and-match sources in a single query. Opteryx can even JOIN datasets stored in different formats and different platforms in the same query, such as Parquet, Apache Iceberg and MySQL.

Opteryx allows you to query your data directly in the systems where they are stored, eliminating the need to duplicate data into a common store for analytics. This saves you the cost and effort of maintaining duplicates.

Opteryx can push parts of your query to the source query engine, allowing queries to run at the speed of the backend, rather than your local computer.

And if there's not a connector in the box for your data platform; feel free to submit a pull request to add one.

Install

Installing from PyPI is recommended.

pip install opteryx

To build Opteryx from source, refer to the contribution guides.

Opteryx installs with a small set of libraries it needs for core functionality, such as Numpy, PyArrow, and orjson. Some features require additional libraries to be installed, you are notified of these libraries as they are required.

Examples

Filter a Dataset on the Command Line

In this example, we are running Opteryx from the command line to filter one of the internal example datasets and display the results on the console.

python -m opteryx "SELECT * FROM \$astronauts WHERE 'Apollo 11' IN UNNEST(missions);"

Opteryx this example is complete and should run as-is

Execute a Simple Query in Python

In this example, we are showing the basic usage of the Python API by executing a simple query that makes no references to any datasets.

# Import the Opteryx SQL query engine library.
import opteryx

# Execute a SQL query to evaluate the expression 4 * 7.
# The result is stored in the 'result' variable.
result = opteryx.query("SELECT 4 * 7;")

# Display the first row(s) of the result to verify the query executed correctly.
result.head()
ID 4 * 7
1 28

this example is complete and should run as-is

Execute SQL on a pandas DataFrame

In this example, we are running a SQL statement on a pandas DataFrame and returning the result as a new pandas DataFrame.

# Required imports
import opteryx
import pandas

# Read data from the exoplanets.csv file hosted on Google Cloud Storage
# The resulting DataFrame is stored in the variable `pandas_df`.
pandas_df = pandas.read_csv("https://storage.googleapis.com/opteryx/exoplanets/exoplanets.csv")

# Register the pandas DataFrame with Opteryx under the alias "exoplanets"
# This makes the DataFrame available for SQL-like queries.
opteryx.register_df("exoplanets", pandas_df)

# Perform an SQL query to group the data by `koi_disposition` and count the number
# of occurrences of each distinct `koi_disposition`.
# The result is stored in `aggregated_df`.
aggregated_df = opteryx.query("SELECT koi_disposition, COUNT(*) FROM exoplanets GROUP BY koi_disposition;").pandas()

# Display the aggregated DataFrame to get a preview of the result.
aggregated_df.head()
  koi_disposition  COUNT(*)
0       CONFIRMED      2293
1  FALSE POSITIVE      5023
2       CANDIDATE      2248 

this example requires network access to download the data file

Query Data on Local Disk

In this example, we are querying and filtering a file directly. This example will not run as written because the file being queried does not exist.

# Import the Opteryx query engine.
import opteryx

# Execute a SQL query to select the first 5 rows from the 'space_missions.parquet' table.
# The result will be stored in the 'result' variable.
result = opteryx.query("SELECT * FROM 'space_missions.parquet' LIMIT 5;")

# Display the result.
# This is useful for quick inspection of the data.
result.head()
ID Company Location Price Launched_at Rocket Rocket_Status Mission Mission_Status
0 RVSN USSR Site 1/5, Baikonur Cosmodrome, null 1957-10-04 19:28:00 Sputnik 8K71PS Retired Sputnik-1 Success
1 RVSN USSR Site 1/5, Baikonur Cosmodrome, null 1957-11-03 02:30:00 Sputnik 8K71PS Retired Sputnik-2 Success
2 US Navy LC-18A, Cape Canaveral AFS, Fl null 1957-12-06 16:44:00 Vanguard Retired Vanguard TV3 Failure
3 AMBA LC-26A, Cape Canaveral AFS, Fl null 1958-02-01 03:48:00 Juno I Retired Explorer 1 Success
4 US Navy LC-18A, Cape Canaveral AFS, Fl null 1958-02-05 07:33:00 Vanguard Retired Vanguard TV3BU Failure

this example requires a data file, space_missions.parquet.

Query Multiple Files with Wildcards

In this example, we are querying multiple files using wildcard patterns. Opteryx supports * (any characters), ? (single character), and [range] patterns in file paths.

# Import the Opteryx query engine.
import opteryx

# Execute a SQL query to select data from all parquet files in a directory.
# The wildcard '*' matches any characters in the filename.
result = opteryx.query("SELECT * FROM 'data/*.parquet' LIMIT 10;")

# Display the result.
result.head()

You can also use more specific patterns:

# Query files matching a range pattern, e.g., file1.parquet through file9.parquet
result = opteryx.query("SELECT COUNT(*) FROM 'data/file[1-9].parquet';")

# Query files with specific naming patterns
result = opteryx.query("SELECT * FROM 'logs/2024-01-*.jsonl';")

Wildcards work with all supported file formats (Parquet, JSONL, CSV, etc.) and prevent path traversal for security.

Query Data in SQLite

In this example, we are querying a SQLite database via Opteryx. This example will not run as written because the file being queried does not exist.

# Import the Opteryx query engine and the SqlConnector from its connectors module.
import opteryx
from opteryx.connectors import SqlConnector

# Register a new data store with the prefix "sql", specifying the SQL Connector to handle it.
# This allows queries with the 'sql' prefix to be routed to the appropriate SQL database.
opteryx.register_store(
   prefix="sql",  # Prefix for distinguishing this particular store
   connector=SqlConnector,  # Specify the connector to handle queries for this store
   remove_prefix=True,  # Remove the prefix from the table name when querying SQLite
   connection="sqlite:///database.db"  # SQLAlchemy connection string for the SQLite database
)

# Execute a SQL query to select specified columns from the 'planets' table in the SQL store,
# limiting the output to 5 rows. The result is stored in the 'result' variable.
result = opteryx.query("SELECT name, mass, diameter, density FROM sql.planets LIMIT 5;")

# Display the result.
# This is useful for quickly verifying that the query executed correctly.
result.head()
ID name mass diameter density
1 Mercury 0.33 4879 5427
2 Venus 4.87 12104 5243
3 Earth 5.97 12756 5514
4 Mars 0.642 6792 3933
5 Jupiter 1898.0 142984 1326

this example requires a data file, database.db.

Query Data on GCS

In this example, we are querying a dataset on GCS in a public bucket called 'opteryx'.

# Import the Opteryx query engine and the GcpCloudStorageConnector from its connectors module.
import opteryx
from opteryx.connectors import GcpCloudStorageConnector

# Register a new data store named 'opteryx', specifying the GcpCloudStorageConnector to handle it.
# This allows queries for this particular store to be routed to the appropriate GCP Cloud Storage bucket.
opteryx.register_store(
    "opteryx",  # Name of the store to register
    GcpCloudStorageConnector  # Connector to handle queries for this store
)

# Execute a SQL query to select all columns from the 'space_missions' table located in the 'opteryx' store,
# and limit the output to 5 rows. The result is stored in the 'result' variable.
result = opteryx.query("SELECT * FROM opteryx.space_missions WITH(NO_PARTITION) LIMIT 5;")

# Display the result.
# This is useful for quickly verifying that the query executed correctly.
result.head()
ID Company Location Price Launched_at Rocket Rocket_Status Mission Mission_Status
0 RVSN USSR Site 1/5, Baikonur Cosmodrome, null 1957-10-04 19:28:00 Sputnik 8K71PS Retired Sputnik-1 Success
1 RVSN USSR Site 1/5, Baikonur Cosmodrome, null 1957-11-03 02:30:00 Sputnik 8K71PS Retired Sputnik-2 Success
2 US Navy LC-18A, Cape Canaveral AFS, Fl null 1957-12-06 16:44:00 Vanguard Retired Vanguard TV3 Failure
3 AMBA LC-26A, Cape Canaveral AFS, Fl null 1958-02-01 03:48:00 Juno I Retired Explorer 1 Success
4 US Navy LC-18A, Cape Canaveral AFS, Fl null 1958-02-05 07:33:00 Vanguard Retired Vanguard TV3BU Failure

this example is complete and should run as-is


You can also try Opteryx right now using our interactive labs on Binder.

Binder

Community

Discord Medium

If you're interested in contributing to Opteryx or understanding how it works:

Resource Location Description
Examples examples/ Code examples and tutorials for various use cases
Developer Guide DEVELOPER_GUIDE.md Guide to Opteryx's architecture and development patterns
Contributing CONTRIBUTING.md How to contribute to the project

Project Structure

  • opteryx/ - Main source code
    • planner/ - Query planning and optimization
    • operators/ - Physical execution operators
    • connectors/ - Data source adapters
    • functions/ - SQL function implementations
    • managers/ - Resource and cache management
  • tests/ - Comprehensive test suite
  • dev/ - Development tools and build scripts
  • examples/ - Usage examples and tutorials
  • tools/ - Development utilities and profiling tools

Get Involved

🌟 Star this repo to show your support and help others discover Opteryx.
💬 Join the discussion — share your ideas, tell us how you’re using Opteryx, or suggest features.
🛠️ Contribute to the code — join us in building Opteryx! It’s easy to get started, and we’re happy to guide you.
📚 Check out the contributor documentation. No matter your skill level, there are ways to contribute.
❤️ We welcome sponsorships of any size. Every contribution helps us make Opteryx even better!

We’re excited to have you join our journey. Let us know how we can help!

Security

We take security seriously. If you find any weaknesses please review our Security Policy let us know through our reporting process.

Static Analysis Vulnerabilities Security Rating

License

License

Opteryx is licensed under Apache 2.0 except where specific modules note otherwise.

Status

Status

Opteryx is in beta. Beta means different things to different people, to us, being beta means:

  • Core functionality has good regression test coverage to help ensure stability
  • Some edge cases may have undetected bugs
  • Performance tuning is incomplete
  • Changes are focused on feature completion, bugs, performance, reducing debt, and security
  • Code structure and APIs are not stable and may change

We’re actively adding features and improving performance.

Related Projects

  • orso DataFrame library
  • draken Cython bindings for Arrow
  • rugo File Reader

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

opteryx-0.26.8.tar.gz (10.2 MB view details)

Uploaded Source

Built Distributions

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

opteryx-0.26.8-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (40.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

opteryx-0.26.8-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (38.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

opteryx-0.26.8-cp313-cp313-macosx_11_0_universal2.whl (11.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ universal2 (ARM64, x86-64)

opteryx-0.26.8-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (40.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

opteryx-0.26.8-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (38.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

opteryx-0.26.8-cp312-cp312-macosx_11_0_universal2.whl (11.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ universal2 (ARM64, x86-64)

opteryx-0.26.8-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (41.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

opteryx-0.26.8-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (39.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

opteryx-0.26.8-cp311-cp311-macosx_11_0_universal2.whl (11.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ universal2 (ARM64, x86-64)

opteryx-0.26.8-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (40.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

opteryx-0.26.8-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (38.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

opteryx-0.26.8-cp310-cp310-macosx_11_0_universal2.whl (11.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ universal2 (ARM64, x86-64)

opteryx-0.26.8-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (40.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

opteryx-0.26.8-cp39-cp39-macosx_11_0_universal2.whl (11.0 MB view details)

Uploaded CPython 3.9macOS 11.0+ universal2 (ARM64, x86-64)

File details

Details for the file opteryx-0.26.8.tar.gz.

File metadata

  • Download URL: opteryx-0.26.8.tar.gz
  • Upload date:
  • Size: 10.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for opteryx-0.26.8.tar.gz
Algorithm Hash digest
SHA256 bf2e36e5a91bff5c65594a3c6362910676513b9c0e08027949cd200db64b2c3e
MD5 6f67eb680c428923c85bf817fc283117
BLAKE2b-256 68aa02bf5704b53ac8c4614c568c377c4030369ecd07cb175aad021096210421

See more details on using hashes here.

File details

Details for the file opteryx-0.26.8-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for opteryx-0.26.8-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 0558a2f49b6fe4f6bc006af7c82277cc67d97343d142b4b7210399953c8b705d
MD5 388c34bc1934d50f8b97a0faeac8db85
BLAKE2b-256 8fb1228d4d929789ab5cc17b38bb8752e36a0a08acc23ffe041194a9dc61de28

See more details on using hashes here.

File details

Details for the file opteryx-0.26.8-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for opteryx-0.26.8-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 e0090679ab8972ffd893c3b63847effaa2521fe1f339c549da441a424980a354
MD5 4de21bcd39e988aaee141296bc215808
BLAKE2b-256 2126a16688eb58169581a093b6e3fae259f0ef30aae4d88f42665d7b549fc9d6

See more details on using hashes here.

File details

Details for the file opteryx-0.26.8-cp313-cp313-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for opteryx-0.26.8-cp313-cp313-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 2edee34044088fbd9b5f2c7d1844e7b57db5455f99801d7b7955fb625094df95
MD5 42892b7e8b4c6b9e35acdf4272bca59b
BLAKE2b-256 775d00051bba621592e794d262e8cb813589b601e70585961361137ceae0d1cb

See more details on using hashes here.

File details

Details for the file opteryx-0.26.8-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for opteryx-0.26.8-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 81d49b05e1315a5fe3e77aa88782ad426d95703f181e62faaf96018df8ce9c22
MD5 faeb97ac4f656211a6bdcf2cf06a31ef
BLAKE2b-256 10dd6be4863f767b21de1aa7bf079da33f08e81f467bc18f8895994b8b6c0061

See more details on using hashes here.

File details

Details for the file opteryx-0.26.8-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for opteryx-0.26.8-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 421154cc53df2fe48985a9127ec0ea3d172505774f9a1a51c13481eacf08ab8a
MD5 f56be8af17ef6490e65ffd9454987fab
BLAKE2b-256 9e37d6bcb3df218d67f61f0721deb9d6c3e23b91a0e35e5037ee280ea4ed48e3

See more details on using hashes here.

File details

Details for the file opteryx-0.26.8-cp312-cp312-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for opteryx-0.26.8-cp312-cp312-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 5460fdae3fb7b4a76a1223ce203230d626f4c3e930eccb04f39143dc9ef75699
MD5 4757e997be083ea0867ea51e53ed0b1f
BLAKE2b-256 93eabe91f2aac362cba6dd8929d6445a1bbc02271c92fd269fadf7e484936061

See more details on using hashes here.

File details

Details for the file opteryx-0.26.8-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for opteryx-0.26.8-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 08ec721740e3a44404d819e7b292028e8b4dcbef66721ce6e10eb6e5f6d29185
MD5 906c2e8b50dc3761890fd93d4b5e7e51
BLAKE2b-256 c48f6e7236504508a00fb7ad45ad224587989f4ce7008dd4e95715b3dda3edd8

See more details on using hashes here.

File details

Details for the file opteryx-0.26.8-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for opteryx-0.26.8-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 9fc728d2982ef1939e7808133e02d2a627b379d41b71e4e2c4182af6142bf9d6
MD5 6e5858f463a7672b36eddcad55acc36c
BLAKE2b-256 754911d00060f5fa5c7caf2416871acf3e80877bea1ff40852910cfc590e333a

See more details on using hashes here.

File details

Details for the file opteryx-0.26.8-cp311-cp311-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for opteryx-0.26.8-cp311-cp311-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 3f79cf2b10e594e6d6a8d8071602c645b59d3f3305d916b56124472c48f74d81
MD5 441319991b2c9f785bf1e2aa3bcdd899
BLAKE2b-256 54ce4a23b78aa5222f53e6f055b6a4036cc2bc4f0a63cbd65db76598abc35e69

See more details on using hashes here.

File details

Details for the file opteryx-0.26.8-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for opteryx-0.26.8-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 5d91c336bc465bb3b8c4a2f11d2032c947403fb2cbf330299e5df9bbb425201b
MD5 383558c1010ffe822299634a20eaedbf
BLAKE2b-256 b8ca19413165fa6af12b06954107b26bf4f64ef18741081fccde8730cc58fcc0

See more details on using hashes here.

File details

Details for the file opteryx-0.26.8-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for opteryx-0.26.8-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 ef19f31b6557fb9b0a3381ff8b555729ce0d3870dc53c4a73982bd0e3e5bbc66
MD5 b7982d633197d2492d2a39258adf916a
BLAKE2b-256 7341ae2c16048aa480ff7b6886680512c448f150b7032ddbbed3e785c83c580b

See more details on using hashes here.

File details

Details for the file opteryx-0.26.8-cp310-cp310-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for opteryx-0.26.8-cp310-cp310-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 9ff640888e19bf4c25a991feb6c57278ff3e3e66b18ae15b1719df5df8b12698
MD5 53a4bf27063c6819a7857f0773d69386
BLAKE2b-256 a13ee20317d703984dad20559d23f1286b493e0ef231778151fdc50ada12801a

See more details on using hashes here.

File details

Details for the file opteryx-0.26.8-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for opteryx-0.26.8-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 b6a58b1a5e8f5b1d19ba1aed6febb8336dcd3f290071988049b4d11fa325f33a
MD5 a031b44e9bcd3d5b8f9fef565a7e475d
BLAKE2b-256 c5e5ad9a71f3dc312aaf13d2ab55118b5df671151dbf28fe37c6b53d69a0daa1

See more details on using hashes here.

File details

Details for the file opteryx-0.26.8-cp39-cp39-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for opteryx-0.26.8-cp39-cp39-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 9f7fa48204cdc7c46678f7403656cc9b25602a2b0da6b8ddc646ec2eed48da60
MD5 d8ee1091c85e5af08d0ae639e42674ee
BLAKE2b-256 791bd3b5c5352b321c7a02483b4cb8968697b141bf4c13bbdf703dcfb1a8aa6b

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