Skip to main content

Magic systems, spells, rituals, arcane traditions, and esoteric knowledge

Project description

esoterica

Conspiracy theories, hidden histories, and suppressed knowledge — a curated encyclopedia and live scraper for Python.

Features

  • Curated database of theories, figures, organizations, events, and documents
  • Full-text search with FTS5 fallback to LIKE
  • Topic graph linking related theories and entities
  • Live scraper for Reddit, 4chan boards, and RSS feeds (optional)
  • LLM-powered categorization into 16 conspiracy taxonomy categories (optional)
  • Daily rotating local databases with compression
  • On-demand corpus checkout (downloaded once, cached locally)

Installation

pip install esoterica

With scraping support:

pip install "esoterica[scrape]"   # adds feedparser, requests, beautifulsoup4, praw

Quick start

import esoterica

# Curated database queries
theory = esoterica.GetTheory("Illuminati")
figure = esoterica.GetFigure("John F. Kennedy")
org    = esoterica.GetOrganization("Bilderberg Group")

# Full-text search
results = esoterica.Search("shadow government")
orgs    = esoterica.ByCategory("secret-society")
all_    = esoterica.GetAll("theory")

# Topic graph
related = esoterica.GetRelated("New World Order")
topics  = esoterica.GetTopics("government")
tree    = esoterica.GetTopicTree("deep-state")

# Live scraper — configure sources
esoterica.AddFeed("https://conspiracyarchive.com/feed/")
esoterica.AddSubreddit("conspiracy")       # requires REDDIT_CLIENT_ID env var
sources = esoterica.ListSources()

# Scrape and categorize
esoterica.Scrape()                         # fetch from all sources
esoterica.Categorize(verbose=True)         # LLM categorization (requires LLM backend)
report = esoterica.DailyReport()           # generate today's summary report

# Corpus
esoterica.FetchCorpus("gutenberg-1984")
hits = esoterica.SearchCorpus("surveillance")

LLM-powered categorization

When an LLM backend is available, articles are classified into 16 categories:

Government Control, Secret Societies, Financial Elites, Technology Surveillance, Medical Conspiracies, Extraterrestrial, False Flag Operations, Media Manipulation, Religious Prophecy, Environmental Manipulation, Suppressed History, Deep State, Occult Knowledge, Whistleblowers, Population Control, Cryptids and Anomalies

Set LLM_BACKEND, LLM_MODEL, etc. — see eyecore for configuration.

Reddit scraping setup

export REDDIT_CLIENT_ID=your_client_id
export REDDIT_CLIENT_SECRET=your_client_secret

Register a read-only script app at reddit.com/prefs/apps.

Part of the Eyes of Azrael suite

Package Description
eyecore Shared foundation (DB, graph, corpus, LLM)
azrael Mythology encyclopedia
clio Historical figures and events
augur News aggregation and topic analysis

License

MIT — see LICENSE

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

esoterica-1.0.0.tar.gz (26.4 kB view details)

Uploaded Source

Built Distributions

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

esoterica-1.0.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (262.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

esoterica-1.0.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (258.1 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

esoterica-1.0.0-cp314-cp314-win_amd64.whl (124.8 kB view details)

Uploaded CPython 3.14Windows x86-64

esoterica-1.0.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (258.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

esoterica-1.0.0-cp314-cp314-macosx_11_0_arm64.whl (228.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

esoterica-1.0.0-cp314-cp314-macosx_10_12_x86_64.whl (229.9 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

esoterica-1.0.0-cp313-cp313-win_amd64.whl (124.9 kB view details)

Uploaded CPython 3.13Windows x86-64

esoterica-1.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (258.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

esoterica-1.0.0-cp313-cp313-macosx_11_0_arm64.whl (228.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

esoterica-1.0.0-cp313-cp313-macosx_10_12_x86_64.whl (229.7 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

esoterica-1.0.0-cp312-cp312-win_amd64.whl (124.8 kB view details)

Uploaded CPython 3.12Windows x86-64

esoterica-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (258.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

esoterica-1.0.0-cp312-cp312-macosx_11_0_arm64.whl (228.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

esoterica-1.0.0-cp312-cp312-macosx_10_12_x86_64.whl (229.7 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

esoterica-1.0.0-cp311-cp311-win_amd64.whl (126.5 kB view details)

Uploaded CPython 3.11Windows x86-64

esoterica-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (260.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

esoterica-1.0.0-cp311-cp311-macosx_11_0_arm64.whl (229.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

esoterica-1.0.0-cp311-cp311-macosx_10_12_x86_64.whl (230.8 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

esoterica-1.0.0-cp310-cp310-win_amd64.whl (126.5 kB view details)

Uploaded CPython 3.10Windows x86-64

esoterica-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (261.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

File details

Details for the file esoterica-1.0.0.tar.gz.

File metadata

  • Download URL: esoterica-1.0.0.tar.gz
  • Upload date:
  • Size: 26.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for esoterica-1.0.0.tar.gz
Algorithm Hash digest
SHA256 a734a12f00ac0293f8a040c2d549ecd8e53f249123fbfa0b03a1fb3ded7daa0d
MD5 d9384ee386bf59e93dcb31b6e69a88a9
BLAKE2b-256 331110e00168e8a4b4f992e1176aff6957714f7cd8952f3d5ad89f58be6b9055

See more details on using hashes here.

Provenance

The following attestation bundles were made for esoterica-1.0.0.tar.gz:

Publisher: ci.yml on andrewkwatts-maker/Esoterica

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file esoterica-1.0.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for esoterica-1.0.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 faf140a0b9557a9c88b8c51454f9aa48212880dc2ce6f544a1ea9476cae4ad7b
MD5 cc9e9b85cc261a973f25e55deda7db46
BLAKE2b-256 06fc93f5a71d105c90eaf4f52e7e5cf0891e190ed4242024c51862cd1979864e

See more details on using hashes here.

Provenance

The following attestation bundles were made for esoterica-1.0.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yml on andrewkwatts-maker/Esoterica

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file esoterica-1.0.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for esoterica-1.0.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e12dc163ad3099eacdeae7733dcbd81f7574d5af385c73cf2bdefbd4a586abd8
MD5 4f64874729d29db24ece6150b8c6a466
BLAKE2b-256 d82d6ec8e35e7bee8dedcb7e6684bad3c9d01596cb8355ff4aad289b1f0e2531

See more details on using hashes here.

Provenance

The following attestation bundles were made for esoterica-1.0.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yml on andrewkwatts-maker/Esoterica

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file esoterica-1.0.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: esoterica-1.0.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 124.8 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for esoterica-1.0.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 767fc0f13dc6fcf21f92f68413220ed3975fff6bf372b5989a70ae86e302b9e0
MD5 68f66b9b0de6334cb0f6da36134d874a
BLAKE2b-256 5aeabe1c5c9db2c4ce5be50385d6cc0e3b61dadb1965cef057615c3df2e079d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for esoterica-1.0.0-cp314-cp314-win_amd64.whl:

Publisher: ci.yml on andrewkwatts-maker/Esoterica

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file esoterica-1.0.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for esoterica-1.0.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4e61fbcb94089032b8c7734d8a9961e95cf15199fa938131dc76a2dd9a23e1ed
MD5 e1ca53c2207041c0b73ed4ccc1e5d755
BLAKE2b-256 3756a1f9c97ea9ddb9d8e5f790a65576818e241eba831add307989d990c55999

See more details on using hashes here.

Provenance

The following attestation bundles were made for esoterica-1.0.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yml on andrewkwatts-maker/Esoterica

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file esoterica-1.0.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for esoterica-1.0.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f0207f41384929a6939f01eae40a66c948a5fb8168a2a1261c1e9e918b7d580a
MD5 5525b34dcde6f91b7e899f01f6e535a4
BLAKE2b-256 eef951cefd5cc1e85477d80f14904104b78ba6003d6163d1fde35ac475299f4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for esoterica-1.0.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: ci.yml on andrewkwatts-maker/Esoterica

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file esoterica-1.0.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for esoterica-1.0.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e65989c751e47b3e890afe4bcb85c1bc1b8a31f6e37903fe46f1ef454022f0a0
MD5 3495d7385d5fc68f58f196a4b417e366
BLAKE2b-256 cfb57d35c0c82c831a5975100458de338e01da7dcabfc893a51f7fe0da585350

See more details on using hashes here.

Provenance

The following attestation bundles were made for esoterica-1.0.0-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: ci.yml on andrewkwatts-maker/Esoterica

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file esoterica-1.0.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: esoterica-1.0.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 124.9 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for esoterica-1.0.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 07094c0a245d228b1fae748669763732f41476c51604dae0c6b305c561ffd9d3
MD5 e27b7a888bd272917a3236726aad2164
BLAKE2b-256 4075027bbb4cf9b0a7fac5b94732d8a0b8ddafb66311fab87d2b1621dc7bd95f

See more details on using hashes here.

Provenance

The following attestation bundles were made for esoterica-1.0.0-cp313-cp313-win_amd64.whl:

Publisher: ci.yml on andrewkwatts-maker/Esoterica

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file esoterica-1.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for esoterica-1.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9b7a84af9248941d677a30cba52a3e49af4371d09c38e8d0665aa99f0f4feced
MD5 cdafc5b6e565dc2f9dee1ada841cccbc
BLAKE2b-256 f233a0240b958948153dc8f89322bc571ff3279d560febd11787e34d474c6fa9

See more details on using hashes here.

Provenance

The following attestation bundles were made for esoterica-1.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yml on andrewkwatts-maker/Esoterica

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file esoterica-1.0.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for esoterica-1.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6018174c1514494fb1ea02ed3a112b4278e46dc01eeeab277258a4efcc68fd5f
MD5 14ebef250d702df5f84c1f4814eb551c
BLAKE2b-256 1ecbd240295dd52e1afb7f199640315fd3710ada1289d69f83daa50f8a90f9cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for esoterica-1.0.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: ci.yml on andrewkwatts-maker/Esoterica

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file esoterica-1.0.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for esoterica-1.0.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 495cbb604750571e28d0e6c36a43ec264f52c6cb4704d3902c85ba61b87190bd
MD5 5e63c64effa081604287f5017ab66d5c
BLAKE2b-256 a98e903a0c793f827f0209f1bba9740179f01cac651dc88b432631094b0675c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for esoterica-1.0.0-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: ci.yml on andrewkwatts-maker/Esoterica

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file esoterica-1.0.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: esoterica-1.0.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 124.8 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for esoterica-1.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5d41273e95c0891bf963f2e32a72a11b938047dff35f5367bae9b09c9a89a16f
MD5 f3d57825321ddb1600b76200cd309307
BLAKE2b-256 6f73f43cc1a846d860c2768788399fd521cfec78ff918c0149976be0f153829c

See more details on using hashes here.

Provenance

The following attestation bundles were made for esoterica-1.0.0-cp312-cp312-win_amd64.whl:

Publisher: ci.yml on andrewkwatts-maker/Esoterica

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file esoterica-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for esoterica-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a8e77110168a4e2c4e9d0f839301fc9e82898f23ed72a6da2227ceeca4ca62dc
MD5 d955828c6edf0e35e36e6c1204399ab8
BLAKE2b-256 0d5976a4265b775888c6acf7ccbf0ee4032148fa77b590b3c1f222e7821eeb3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for esoterica-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yml on andrewkwatts-maker/Esoterica

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file esoterica-1.0.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for esoterica-1.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 36ef1e748a1e3ce0c08a45b69f59fdee5b6161e7ba28c9c486138518e66e71d2
MD5 517042986cf4a434f8befec7490e5438
BLAKE2b-256 f3eafc908e256f6a37a2b59f5d44acc50c7e33f4162e63107e7dd28972112509

See more details on using hashes here.

Provenance

The following attestation bundles were made for esoterica-1.0.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: ci.yml on andrewkwatts-maker/Esoterica

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file esoterica-1.0.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for esoterica-1.0.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6361f7a6dfacc607adfcf90cb1c636a8e997c6d47e0f8a4560877330651dff06
MD5 48541fc4cea6b0a76a6add7256ff93cc
BLAKE2b-256 566108ff1ebba4a82b574137a593a6e233d5a5e4e4d78cdd5a3374eb7550ac9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for esoterica-1.0.0-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: ci.yml on andrewkwatts-maker/Esoterica

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file esoterica-1.0.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: esoterica-1.0.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 126.5 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for esoterica-1.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4bbab999fdee55eb6ab73c36104a49950dc2468b6150b82531fdfb7790252d72
MD5 9eab5c01d470aadd5427da308dba3c10
BLAKE2b-256 45d736ce4c68ad5cbe2bdf31eb577146a5e95948330e8134545530715aa29fe3

See more details on using hashes here.

Provenance

The following attestation bundles were made for esoterica-1.0.0-cp311-cp311-win_amd64.whl:

Publisher: ci.yml on andrewkwatts-maker/Esoterica

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file esoterica-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for esoterica-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6b7e68c00e85bc30e2a1725ccb2d350a5b8f783bac6219baa9d186e5c8a05ed6
MD5 ac0d0b1e510bbcafda37a8841fa49838
BLAKE2b-256 9864632c7267dca2b08ffb2478735f067e85be00af9378fbcf710dc7283e0f0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for esoterica-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yml on andrewkwatts-maker/Esoterica

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file esoterica-1.0.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for esoterica-1.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6e5af00d77144a905343e1ef019eaaa2e31d71800463dbffcb1b6d8f9655acdf
MD5 93fc4f6cf8614a33399ec26280d47062
BLAKE2b-256 005aea69b24567ac84e592811e28e700cfdcd26485fe267cda5e0fa5ed97d181

See more details on using hashes here.

Provenance

The following attestation bundles were made for esoterica-1.0.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: ci.yml on andrewkwatts-maker/Esoterica

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file esoterica-1.0.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for esoterica-1.0.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ce751ddfc43821f412aed43ba062e7fc1e7cc004722d27b8c2196cc8c24074d7
MD5 fc4a6f0fe779bedbd7be0924dbde68f6
BLAKE2b-256 f72b0b219453f6154c8160acc75a1ed64c5090c08b8ca1d367577a367171af6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for esoterica-1.0.0-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: ci.yml on andrewkwatts-maker/Esoterica

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file esoterica-1.0.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: esoterica-1.0.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 126.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for esoterica-1.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e555dc3b08081815963a3c08c1201f9f7599d3970a522e9a5972fc42af150dae
MD5 7dd780e671c7841550eef12d7e6e852e
BLAKE2b-256 929d2ee98b1140eaf301481ad47ae59bb0828ced8ad9e59d0563245bf8829fa0

See more details on using hashes here.

Provenance

The following attestation bundles were made for esoterica-1.0.0-cp310-cp310-win_amd64.whl:

Publisher: ci.yml on andrewkwatts-maker/Esoterica

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file esoterica-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for esoterica-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8c409e970f9e1560d81d6dc882a12cf6c5bf922428cf0284f056afd8476c2de0
MD5 fdac92b54832e999a8537a1749155d4b
BLAKE2b-256 bac9f43865e0d2c0946762be6a8df5e108dc87b1c199df9eefd0d0d64c625356

See more details on using hashes here.

Provenance

The following attestation bundles were made for esoterica-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yml on andrewkwatts-maker/Esoterica

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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