Skip to main content

地震前兆数据自动处理框架

Project description

addereq(地震前兆数据自动分析框架)

地震前兆分析手段长期积弱,数据源是一个很大的原因,没有文件存储标准,数据库接入门槛也比较高。

为了突破数据源的壁垒,助力地震前兆科研发展,开发上线了该框架。

主要功能

从地震系统的Oracle前兆数据库中提取数据,生成可视化图形,并无缝集成各种地球物理分析方法,以便实现自动化操作。

新增功能

v1.3.0

  1. 更新了调用方式,同时兼容旧的调用方式
plotter = plotting.TSPlotter(
    conn,
    mean_color='r',       # 均值线颜色
    std_color='gray',     # 标准差线颜色
    mean_linestyle='--',  # 均值线样式
    std_linestyle=':'     # 标准差线样式
)

plotter.plot(
    data,
    groupby='item',           # 分组方式:'item' 或 'station'
    show_mean=True,           # 显示均值线
    show_std=True             # 显示标准差线
)
  1. 添加了地震标注功能
plotter.plot(df, 
             groupby='item', 
             show_mean=False,
             show_std=True,
             set_zero=False,
             plot_type='line',
             std_multiplier=2.0,
             eqt_dir='D:/tests/HuaBei.EQT',
             eqt_filters=[(200, 4.5), (350, 5.0)]
             )

v1.2.0

  1. 使用Claude进行了代码重构,优化性能。

v1.1.1

  1. 修改了reindex算法;
  2. 修改了字符串分割逻辑,去除首尾字符,防止不符合规则的数据报错。

安装

  1. Python环境安装

建议安装Anaconda或者Miniconda,Anaconda安装参考官网链接,Miniconda安装参考官网链接,入门建议安装Anaconda,不需要太多配置,开箱即用。

  1. addereq包安装

由于cx_Oracle在Windows系统下的安装需要Visual C++编译环境,配置起来比较复杂,建议先使用conda安装cx_Oracle,然后再安装addereq,安装命令如下:

conda install cx_Oracle

安装好Python环境后,执行以下命令安装addereq。

pip install addereq

安装 Oracle 即时客户端

下载以及安装参见 Oracle Instant Client 官网链接

数据库配置文件

需要将常用的数据库配置到default.conf文件中,该文件可以存放在和脚本相同目录中,也可以存放在系统用户目录中,建议存放在系统用户目录中,目录需为~/.adder/default.conf。 配置文件格式为:

[db1]
HOST = 192.168.181.12
PORT = 1521
USERNAME = test
PASSWORD = test
TNSNAME = pdbqz

建议将常用数据库全部配置进去,一劳永逸。

主要模块功能说明

fetching 模块

该模块为数据下载模块,可以提供快速批量的数据下载功能。

  1. 连接数据库

参数只需要输入default.conf文件中配置的数据库名称即可。

from addereq import fetching as tsf
conn = tsf.conn_to_Oracle('db1')
  1. 数据下载
from addereq import fetching as tsf
df = tsf.fetching_data(conn, '20230416', '20230416', '地电场', '北京', '分钟值', '原始库', gzip_flag=False)

plotting 模块

该模块为批量绘图模块,提供类MapSIS的功能,可以批量绘制多个台站或者多个测向的曲线。df变量中可以包含多个台站、多个测向的数据,可以一次性批量绘制,输出文件名自动生成。

  1. 按台站绘图
from addereq import plotting as tsp
tsp.plot_by_stations(df, conn)
  1. 按测向代码绘图
from addereq import plotting as tsp
tsp.plot_by_items(df, conn)

联系作者

chd_wql@qq.com

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

addereq-1.3.0-cp312-cp312-win_amd64.whl (503.6 kB view details)

Uploaded CPython 3.12 Windows x86-64

addereq-1.3.0-cp312-cp312-win32.whl (477.9 kB view details)

Uploaded CPython 3.12 Windows x86

addereq-1.3.0-cp312-cp312-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

addereq-1.3.0-cp312-cp312-musllinux_1_2_i686.whl (2.1 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

addereq-1.3.0-cp312-cp312-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

addereq-1.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

addereq-1.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

addereq-1.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (2.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

addereq-1.3.0-cp311-cp311-win_amd64.whl (510.5 kB view details)

Uploaded CPython 3.11 Windows x86-64

addereq-1.3.0-cp311-cp311-win32.whl (483.9 kB view details)

Uploaded CPython 3.11 Windows x86

addereq-1.3.0-cp311-cp311-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

addereq-1.3.0-cp311-cp311-musllinux_1_2_i686.whl (2.2 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

addereq-1.3.0-cp311-cp311-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

addereq-1.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

addereq-1.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

addereq-1.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (2.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

addereq-1.3.0-cp310-cp310-win_amd64.whl (280.9 kB view details)

Uploaded CPython 3.10 Windows x86-64

addereq-1.3.0-cp310-cp310-win32.whl (485.6 kB view details)

Uploaded CPython 3.10 Windows x86

addereq-1.3.0-cp310-cp310-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

addereq-1.3.0-cp310-cp310-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

addereq-1.3.0-cp310-cp310-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

addereq-1.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

addereq-1.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

addereq-1.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

addereq-1.3.0-cp39-cp39-win_amd64.whl (509.8 kB view details)

Uploaded CPython 3.9 Windows x86-64

addereq-1.3.0-cp39-cp39-win32.whl (485.6 kB view details)

Uploaded CPython 3.9 Windows x86

addereq-1.3.0-cp39-cp39-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

addereq-1.3.0-cp39-cp39-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

addereq-1.3.0-cp39-cp39-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

addereq-1.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

addereq-1.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

addereq-1.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

addereq-1.3.0-cp38-cp38-win_amd64.whl (513.0 kB view details)

Uploaded CPython 3.8 Windows x86-64

addereq-1.3.0-cp38-cp38-win32.whl (487.6 kB view details)

Uploaded CPython 3.8 Windows x86

addereq-1.3.0-cp38-cp38-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

addereq-1.3.0-cp38-cp38-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

addereq-1.3.0-cp38-cp38-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

addereq-1.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

addereq-1.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

addereq-1.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

addereq-1.3.0-cp37-cp37m-win_amd64.whl (505.0 kB view details)

Uploaded CPython 3.7m Windows x86-64

addereq-1.3.0-cp37-cp37m-win32.whl (480.9 kB view details)

Uploaded CPython 3.7m Windows x86

addereq-1.3.0-cp37-cp37m-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ x86-64

addereq-1.3.0-cp37-cp37m-musllinux_1_2_i686.whl (1.8 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ i686

addereq-1.3.0-cp37-cp37m-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ ARM64

addereq-1.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

addereq-1.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

addereq-1.3.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.7 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

File details

Details for the file addereq-1.3.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: addereq-1.3.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 503.6 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.17

File hashes

Hashes for addereq-1.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fdc051af3fe256ce39b33bcb144a3361a736b054ac36cc9b99aa6ad9118f9f2f
MD5 0ccabb3b382ac346446cbc7fee00ed21
BLAKE2b-256 2d9d13d936ae4fa8860616b4ed985402b1b6a584331995b48cd04576430b9a4f

See more details on using hashes here.

File details

Details for the file addereq-1.3.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: addereq-1.3.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 477.9 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.17

File hashes

Hashes for addereq-1.3.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 22d0f243c93d8221078117ac1eaccb8996363f0406f8cf3c2244e49de6e39e29
MD5 8c9844f3c0c72a83be6c1ff3d22e70cb
BLAKE2b-256 49fcdf4d0522092f6bc36c36edad591027f4a203b8bd15585db61ca70728f68f

See more details on using hashes here.

File details

Details for the file addereq-1.3.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for addereq-1.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b60907c83f975fcdc09e6a17fbd04c21483462fa1af9c1ed259e86a207b65aba
MD5 aedac8ee2b28a0335b8c738f95e84538
BLAKE2b-256 e04d930a34d1af32cd7182c0e931fb2fb1ec18a0f00b0cd6df634c2f6f89f237

See more details on using hashes here.

File details

Details for the file addereq-1.3.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for addereq-1.3.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f5520a703321b657004bac0e060a210c43ec4cfaf375e7f6a49ae5a0b02d99cb
MD5 38441ed2e88a3cd7cab0b1e0d09470b2
BLAKE2b-256 15f79e6b5b6e936e1e28de16ac98f8a31bd8226eec5d10ab018e7ae0aabd4c4e

See more details on using hashes here.

File details

Details for the file addereq-1.3.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for addereq-1.3.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c5db37e082ba7e7666a51a411b6f802e937cec5521947ebf29a7fb2d60804aee
MD5 551c54ff95584ee53aaf6ff506eaee21
BLAKE2b-256 d1a567f742ece66012ee5611ba8d602f548c68217907114a03a24a31a9c50aa4

See more details on using hashes here.

File details

Details for the file addereq-1.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for addereq-1.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 89e3b8680bf9cc1d05aef77f12b308492e8d119ac65c53b5b3fcdbc0b1319fde
MD5 702938751008deb6be8c5c2dac7407c6
BLAKE2b-256 84872a24d5c156c62a06b5c8b4ae6c72a5cbe14d3d628188f13acfebf3fa2a4c

See more details on using hashes here.

File details

Details for the file addereq-1.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for addereq-1.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 28a824489172495503cf24b4357a24acd821ef00d123d9f9bc761763475acd6a
MD5 95be7d5fbcb5670196a5b8d8e35905b0
BLAKE2b-256 ca0d81ac6cafd18bd4d6b36bca905ce3991d2b1aac35ea17d0083412205438cf

See more details on using hashes here.

File details

Details for the file addereq-1.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for addereq-1.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d141a756e39dddc48209e12abc0ef8b4127a1644d0934ff4f2fb4fe1d0bd0581
MD5 be54fe0ea78df3241f958140872d15e4
BLAKE2b-256 306822d9e169e7eb79794488780e1d7469719cefd4214993f7b201cc58186634

See more details on using hashes here.

File details

Details for the file addereq-1.3.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: addereq-1.3.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 510.5 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.17

File hashes

Hashes for addereq-1.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 67559182eb971e210626a8edfdcda7d196da87226b97116a87475d53280fd478
MD5 078cc2bf69dddfd66b25735c37e2ea3b
BLAKE2b-256 78e453bd96129270ec6183ccdfb6fd3e555c45ab70beaac976598cb696b0ca44

See more details on using hashes here.

File details

Details for the file addereq-1.3.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: addereq-1.3.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 483.9 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.17

File hashes

Hashes for addereq-1.3.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 8f9b7bedbf46852df963a3e47e2de46f5b79efd53cf5dbd634aa24f4d63638b5
MD5 4ba461f5d549b7d95885138ce006ba9a
BLAKE2b-256 c363061a5a1a8cd75b8cb8e95ada2bc2d99940fe20331fb22ac0b478791749b7

See more details on using hashes here.

File details

Details for the file addereq-1.3.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for addereq-1.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7f6467e845209282ef30929b240940d46e8d5173b17d6d3465e978cbbfda4561
MD5 39fd24e8951808f6da50f617dc199da0
BLAKE2b-256 6fd62289e3f968762744c2dbb88c13ee8d90f107692566cce7ba152e62e2738d

See more details on using hashes here.

File details

Details for the file addereq-1.3.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for addereq-1.3.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 666a2ef67d399c01855854aae69e78ed238226e1d4b08b55bb68ed4a4cb82ba3
MD5 2fcbb6c295d8f5a3c9c3c3bec02ab450
BLAKE2b-256 534c8ad497b8e864fb024f7b7739695874998a0d7ebe3f2f48b3465eb817c7e9

See more details on using hashes here.

File details

Details for the file addereq-1.3.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for addereq-1.3.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4c9c09a7875748e96588087fafaf4439ea63a9b72fd272ff61c4c3ab4c1dfff9
MD5 3661deaea3566d07a455e2ef3cb7c0b5
BLAKE2b-256 b1838702751adc6ba4fd3a37878c1439acb1da02d6714452630048d282878a20

See more details on using hashes here.

File details

Details for the file addereq-1.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for addereq-1.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e62e8c04d65d8f1c2cbd5b74db092454ace7f008570a14068e970221b4ab81e7
MD5 d7c20392684440864f1e9677d76eee69
BLAKE2b-256 42ad93f1e3e9b7d8bca42210726edda046500e0a422fe7dd6058516fe146ce5e

See more details on using hashes here.

File details

Details for the file addereq-1.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for addereq-1.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5c38a5d5fd68d904fa31bb50561f7bc5765c66240dfb6a6646c9b51f136433d0
MD5 881f613c27904aa783f37fdb336fc326
BLAKE2b-256 668d269244f9558b2cf6f49938a5036dfb1cd9f0f047113565ee039c5de54cfd

See more details on using hashes here.

File details

Details for the file addereq-1.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for addereq-1.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 13b0841c1ea1ec69319047398f8f0fe39f8824567baf525e9ca2a70b17e6f3a3
MD5 d036e46139caef0dc86c1145c9d1e92b
BLAKE2b-256 52b3e86bc6e9e8338083e9344f47314e7206e29760bd8f8dcb4bf575c6e09be2

See more details on using hashes here.

File details

Details for the file addereq-1.3.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: addereq-1.3.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 280.9 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.17

File hashes

Hashes for addereq-1.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 914512c17c3ec6b11743b83b6eca59def68e00c6313007a781212a2e273592ec
MD5 7dec72c664247114fb708dda186ec5cb
BLAKE2b-256 482856e21146740e650716bec725d9876a8787a344c0491cc50c0746e70467bb

See more details on using hashes here.

File details

Details for the file addereq-1.3.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: addereq-1.3.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 485.6 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.17

File hashes

Hashes for addereq-1.3.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 875122b98b9b5d1dca234105d00118387221526d7fe21fa372c7d5101a1517d9
MD5 19a599bf276e86a1840959f0599e7cea
BLAKE2b-256 a078abff847cc58ad5997471e95091f21b1d2a8bac0a5a7e2c306ab12b494e5c

See more details on using hashes here.

File details

Details for the file addereq-1.3.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for addereq-1.3.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d398e19e155f6eebf6d0ed4be220fc0276f617aa473fb2ed2487b992ce557d9b
MD5 9e386b21399695e408809806999cea5f
BLAKE2b-256 b3fa9a2e033c74ae51198db6707b6a3e4d11df92da8fde642cdcd0e171bb60ab

See more details on using hashes here.

File details

Details for the file addereq-1.3.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for addereq-1.3.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 62f5b64339200c390bf9139f4b26f9106aabc612b004e1ad80d2a94707efc70a
MD5 d98aa90956a035cd143b0f8f84d55c40
BLAKE2b-256 53c9b13bceb09b3537aa2f67d377857e0436358a531aab8ba6767f102d4d780b

See more details on using hashes here.

File details

Details for the file addereq-1.3.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for addereq-1.3.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 29f27648b50ddc86a2514961b9788fc3b4de13be092e14b0c2e96b1ed855ffb8
MD5 c1b8cd577fb98796e7b2a668acb043dd
BLAKE2b-256 de61cb1477eb4ffea6883390e877879beae13544b56feeed3d5a2fef4fd549a3

See more details on using hashes here.

File details

Details for the file addereq-1.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for addereq-1.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d03ba8202925a4428024870f7147ac350a95b803831980009263c57058d6f573
MD5 17a139e907d5c7665e6e3400c20617d4
BLAKE2b-256 d88d1ab0453d6ee540f78ba2cd9c2321d01e3a0621661d92fec89a7bb3e8a693

See more details on using hashes here.

File details

Details for the file addereq-1.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for addereq-1.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 504f0531fe835ba43b247f6122345e6dc46e2c7d21238bc5b223ea43111b93f7
MD5 2b43c9ca80433be35b7030441dc4af2c
BLAKE2b-256 c6746873c2ef50eefedc646997c07678f50d7e2f7463bd806ebc313981e459c6

See more details on using hashes here.

File details

Details for the file addereq-1.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for addereq-1.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fb2aa2461316cdbd7326a452d7d59040c32d59b7f0079dcc3230bf880d4f8318
MD5 d5097f1d68fe6ee56c83b3ef6fbc0017
BLAKE2b-256 6cd000a668544020bd950289b5ed43a41c927fd87c7ad62381d15070fb56ad73

See more details on using hashes here.

File details

Details for the file addereq-1.3.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: addereq-1.3.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 509.8 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.17

File hashes

Hashes for addereq-1.3.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e4fb54706382451d7e6262dab81bb757c5578a9246274caef2de577059cab76e
MD5 6a560c744e6d03c5d428beb5c1819c38
BLAKE2b-256 8b1d5149af748e32f19f89a56f767de548538d5f57d249c1153cbc6e993a9d6d

See more details on using hashes here.

File details

Details for the file addereq-1.3.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: addereq-1.3.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 485.6 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.17

File hashes

Hashes for addereq-1.3.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 a7cd3397a3564930d2164b94fd08e96cfba809445c4c6110926d312c375e4e78
MD5 61c7f1bce53b58ecbf6faa4e2031c74b
BLAKE2b-256 405f464224a4f597002bcd9055987d52517497b8564cfc149b659b03a66d6795

See more details on using hashes here.

File details

Details for the file addereq-1.3.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for addereq-1.3.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5177e29446e8d223d90575095a80401914cbfdc0b27e9b0ecc62f113e29db9d1
MD5 3a7cc9aaae32757067d2523f480a9825
BLAKE2b-256 d05394114eb21bcf7984331cb556ed190c7255e734b7bf4886353bbf327917f4

See more details on using hashes here.

File details

Details for the file addereq-1.3.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for addereq-1.3.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7ea8b98e8dfe6b431ce394adb19c227527234efc29064f3648dc101e6f2ac870
MD5 70e89ff9708d9f36f5543015ab94a7b8
BLAKE2b-256 e9b88329b72df9f2010a6bf19078b910dacdad32eb95d644bac008f051db7d32

See more details on using hashes here.

File details

Details for the file addereq-1.3.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for addereq-1.3.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b0e21991280ca0cc9215603057705751390e362fa2d854a2c6ea7dd1e46fa042
MD5 77a14bb100f02036b232b52a70d8107e
BLAKE2b-256 4827e71f9f6ff00416f1c86ebb54390f05ac9017a61cf920a5d477f8f8e5ece0

See more details on using hashes here.

File details

Details for the file addereq-1.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for addereq-1.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2b434e20a1c5d0f19da077be09ec3aed1bc22b37e33646bbd7e4f1f052edfac2
MD5 e2aba005a3d1a01a899841cd5ea2ca66
BLAKE2b-256 ebe81abe022d8b8200285e6a42f36b6a6ea21ad7581db5ecf6f914425525864d

See more details on using hashes here.

File details

Details for the file addereq-1.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for addereq-1.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3d5bd3f1b69b1d1eb3dc14b939d819da3089f36acdb29f0eff524808b7b52273
MD5 9ac1991a4fd2af34f2d492b8216a887a
BLAKE2b-256 bca75f9638bc0b98865740d1ba39909949bc02c0c8f82951623072c40c1e5579

See more details on using hashes here.

File details

Details for the file addereq-1.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for addereq-1.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 abb7c6c868b1c0bb734b5d6e3368b93fd9dfb6d0cfc3ff0688bc8e7c77387e06
MD5 64e39cb377f191dd5190fd32b43a6a04
BLAKE2b-256 1f0b9d0ec265e90bf7f6dcfdaa752a73cbd6677912a73be478a46b0244914447

See more details on using hashes here.

File details

Details for the file addereq-1.3.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: addereq-1.3.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 513.0 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.17

File hashes

Hashes for addereq-1.3.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 f63b2a4b41b67bff16b9e44140c5a5b98ce0ab47028e3a34adc77516c61c7c73
MD5 699e298845d1b76954fb907b8c43a28a
BLAKE2b-256 88ed343f7d379439e1c2238817c72d8f5077ec7f88771dfc483ea946c911d1fa

See more details on using hashes here.

File details

Details for the file addereq-1.3.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: addereq-1.3.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 487.6 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.17

File hashes

Hashes for addereq-1.3.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 fc90ea48b061f219c7b51bfd83d0d6592259208f601a15e00c947a98450d3ec5
MD5 5f9d62c0989f7f40e84b3b0f41681b75
BLAKE2b-256 320fc8b3b382ec8ebb4eb5003a385829731ebb13780016193b7ef2d88975bdaa

See more details on using hashes here.

File details

Details for the file addereq-1.3.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for addereq-1.3.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4f5752a6d273cc55a6036693defaaa53bdb5a5f6826254cf8d1d92df6a535942
MD5 e75a140863b7b6d294a4a4a574b65225
BLAKE2b-256 082625e40e5058f036b424b4985e251b4dcd0fa19522c8262a797f2f17435ebf

See more details on using hashes here.

File details

Details for the file addereq-1.3.0-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for addereq-1.3.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 01b94de108e439f5c262ae4fab49885e2e1a541008e82f1821b27b3018d7eca2
MD5 f55b7f9c97440bffb6866e2efa82d7cd
BLAKE2b-256 e1adc71f654ae4ec4aff21b02599dc3e26e9dd3508fe619e863d5f1c41c26f38

See more details on using hashes here.

File details

Details for the file addereq-1.3.0-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for addereq-1.3.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 be6fb0977b5c5e27511cde4eb4f365130693f2262183bc71b79c8da5f562285d
MD5 29aeeb5d277442c76ee6fd3ffa93839d
BLAKE2b-256 2f789990182b3a43ed5a44da4d9cc9342432ca473d730e50524b68c881317b48

See more details on using hashes here.

File details

Details for the file addereq-1.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for addereq-1.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fadc360399a297d37b87ab8de21b849d9983f286accda7446786a491c90b623b
MD5 120ad7d2e7709d494e7cc937ed29ae23
BLAKE2b-256 eeae9c1f4f777279f2ac4a6b19cb16494887ad421d3d0c1618c2380d99b85a31

See more details on using hashes here.

File details

Details for the file addereq-1.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for addereq-1.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 95fa2bc5d27dfb8a6464dbf91ddef47df4a67867fe4bc8f1a209566c27e210c0
MD5 71dd71cd2923acc0c3630da162be98b9
BLAKE2b-256 0f799b066a7331f74a6f27af2a627edce4f39bbcdf5ea8dfd03cd17cef9c1e8d

See more details on using hashes here.

File details

Details for the file addereq-1.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for addereq-1.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 884b0489e19c39c18090e89cbdd8540177fd389c8d3e19c067594de8631bd92c
MD5 db5029abb90b3583f0ca18d58d34158a
BLAKE2b-256 44acf415c0a181e89bcc3bb993e70bf765229f5123e8d66371403d4b871dfe43

See more details on using hashes here.

File details

Details for the file addereq-1.3.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: addereq-1.3.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 505.0 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.17

File hashes

Hashes for addereq-1.3.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 7e09d513613cba81203dc8c17c26fbd3bd7ac26e828d5767a88503ff61eec6e2
MD5 a4e9cf9be8ad8720f0a34a007bdc2d23
BLAKE2b-256 84c21550eb26b977ec79293642dfdc010483e836c7ad0f97a15bb72c45cded0d

See more details on using hashes here.

File details

Details for the file addereq-1.3.0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: addereq-1.3.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 480.9 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.17

File hashes

Hashes for addereq-1.3.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 03f221a18e376ad5d0276396ff571e645061e51c526cc29a1c3acc47e9c48854
MD5 6bc730978acde759b04618cd3ded2e8a
BLAKE2b-256 c5635755c79edb007cd3cfca1ab98473c163843c1b0b2c121f777328167de411

See more details on using hashes here.

File details

Details for the file addereq-1.3.0-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for addereq-1.3.0-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 51f8369c6e6755ffb42846287cfc6b9de066a982b8b9d9b8b86897a06d390a1f
MD5 8e83aacc6085124d5a89363b9aeca16b
BLAKE2b-256 4bc2f98a13ed47812a8fea2a551e8174d3365a530f97699949853bdf9f7aa1a3

See more details on using hashes here.

File details

Details for the file addereq-1.3.0-cp37-cp37m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for addereq-1.3.0-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c72078a9ec285b853c62e717620d62558fc06d3cc1f8677c5e1489cf18d6fd9b
MD5 c2e7a5550621c1dfc90d8370e99ff6e9
BLAKE2b-256 d7ebecfa44b1ce7f743617f703914e325568e5e61cb5177ec4f83b1a2109dfa6

See more details on using hashes here.

File details

Details for the file addereq-1.3.0-cp37-cp37m-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for addereq-1.3.0-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3a54f163cb65e22f48af7a47fdadb753b97e73f22447e569f9ef75ad8756fba6
MD5 11d5d1330684ee1b1bb505b4e0dafa68
BLAKE2b-256 f4b5dcf246d5e20d4c7067d69b4ef4fdd46d844d90fa74ee26f921ecb5c24a40

See more details on using hashes here.

File details

Details for the file addereq-1.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for addereq-1.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5300de57d55541cde89a0cef4813f6ea57d737939eef9ed8750c419246b2ce66
MD5 2d4213f97a0772bcd423b4d963a5550e
BLAKE2b-256 7683293d04ab5543830a37bb1d014f3bf9cfae0ca22afe5b0ccd31eb05168c42

See more details on using hashes here.

File details

Details for the file addereq-1.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for addereq-1.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b9435daeb73cb2a82b34583a3bb29b562c008a7b638c16ac24b676343cbabf23
MD5 0160c92e7601664c9e3708ab6bcc9b29
BLAKE2b-256 3c68f4048209e78a7ba92ae8666419d6454292c1f9de8e0c7fc278e3b7200110

See more details on using hashes here.

File details

Details for the file addereq-1.3.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for addereq-1.3.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e7ffa0792ab9049878b94991f9b2e8a9e81cdabcc5fc4b887375800cf4469d31
MD5 db820a61c212f43c298d4aa7b50bd6c0
BLAKE2b-256 28411a52671279b45f532d0cb24533b8f5d6477de9dfab4a0bd1ed6aabeed9c9

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page