A Python library with a command line interface for a trailing stop loss and smart entry on the Binance exchange.
Project description
UNICORN Binance Trailing Stop Loss
Description | Smart Entry | Installation | Documentation | Examples | Change Log | Wiki | Social | Bugs | Contributing | Disclaimer
A Python library with a command line interface for a trailing stop loss and smart entry on the Binance exchange.
Please read carefully all provided documentation, our disclaimer and look in the issues about known problems before using this tool - you use it at your own risk!
If you put this engine on a market, you should stop trading manually on this market yourself!
Part of 'UNICORN Binance Suite'.
How to start the trailing stop loss engine:
from unicorn_binance_trailing_stop_loss import BinanceTrailingStopLossManager
def callback_error(msg):
print(f"STOP LOSS ERROR - ENGINE IS SHUTTING DOWN! - {msg}")
ubtsl.stop_manager()
def callback_finished(msg):
print(f"STOP LOSS FINISHED - ENGINE IS SHUTTING DOWN! - {msg}")
ubtsl.stop_manager()
def callback_partially_filled(msg):
print(f"STOP LOSS PARTIALLY_FILLED - ENGINE IS STILL RUNNING! - {msg}")
ubtsl = BinanceTrailingStopLossManager(callback_error=callback_error,
callback_finished=callback_finished,
callback_partially_filled=callback_partially_filled,
binance_public_key="aaa",
binance_private_key="bbb",
borrow_threshold="100%",
exchange="binance.com",
keep_threshold="20%",
market="BTCUSDT",
print_notifications=True,
reset_stop_loss_price=True,
send_to_email_address="blah@example.com",
send_from_email_address="blub@example.com",
send_from_email_password="pass",
send_from_email_server="mail.example.com",
send_from_email_port=25,
stop_loss_limit="1.5%",
stop_loss_order_type="LIMIT",
stop_loss_price=88,
stop_loss_start_limit="0.5%",
telegram_bot_token="telegram_bot_token",
telegram_send_to="telegram_send_to")
Stop the engine:
ubtsl.stop_manager()
Start the engine on the command line (Windows, Linux and Mac):
$ ubtsl --profile BTCUSDT_SELL --stoplosslimit 0.5%
Read about the CLI usage.
Description
The Python package UNICORN Binance Trailing Stop Loss provides a reuseable library and CLI interface.
After starting the engine, a stop/loss order is placed on Binance and trailed until it is completely fulfilled. If desired, a
notification can be sent via email and Telegram afterward. Then it calls the function
passed with the callback_finished parameter or on error it calls the function passed to callback_error.
Partially filled orders are currently not handled by the engine. If you want to react individually to this event, you
can use the function provided to callback_partially_filled.
In addition, there is a smart entry option
called jump-in-and-trail. This offers the possibility to buy spot, future and margin assets with a limit or market
order and then to trail a stop/loss order until sold.
What are the benefits of the UNICORN Binance Trailing Stop Loss?
- Using websockets for push notifications about price updates and order status updates. (Fast data transfer and low used API weight!)
- Smart entry
- Supported exchanges:
| Exchange | Exchange string | trail | jump-in-and-trail |
|---|---|---|---|
| Binance | binance.com |
||
| Binance Testnet | binance.com-testnet |
||
| Binance Futures | binance.com-futures |
||
| Binance Isolated Margin | binance.com-isolated_margin |
||
| Binance Margin | binance.com-margin |
-
All parameters that expect numbers can be configured with fixed numerical values as well as with percentage values.
-
Integrated notification system (e-Mail and Telegram).
-
Test "notification", "binance-connectivity" and "streams" without starting the engine.
-
Powered by UNICORN Binance REST API and UNICORN Binance WebSocket API.
-
Available as a package via
pipandcondaas precompiled C extension with stub files for improved Intellisense functions and source code for easier debugging of the source code. To the installation. -
Well tested on Linux, Mac and Windows.
If you like the project, please it on
GitHub!
Smart entry
This function is still in an experimental phase and only available for Isolated Margin.
Do a smart entry by using engine = 'jump-in-and-trail' and providing borrow_threshold.
By activating the jump-in-and-trail engine, the engine first buys the predefined asset amount and then trails them
automatically.
Installation and Upgrade
The module requires Python 3.9 and runs smoothly up to and including Python 3.14.
PyPy wheels are available for all supported Python versions.
The current dependencies are listed here.
If you run into errors during the installation take a look here.
Packages are created automatically with GitHub Actions
When a new release is created, the Build and Publish GH+PyPi workflow spins up virtual Windows/Linux/Mac runners, compiles the Cython extensions, builds the wheels and publishes them on GitHub and PyPI. The conda-forge feedstock conda-forge/unicorn-binance-trailing-stop-loss-feedstock picks up the new PyPI release automatically and builds the Conda packages on its own infrastructure. This is a transparent method that makes it possible to trace the source code behind a compilation.
A Cython binary, PyPy or source code based CPython wheel of the latest version with pip from PyPI
Our Cython and PyPy Wheels are available on PyPI, these wheels offer significant advantages for Python developers:
-
Performance Boost with Cython Wheels: Cython is a programming language that supplements Python with static typing and C-level performance. By compiling Python code into C, Cython Wheels can significantly enhance the execution speed of Python code, especially in computationally intensive tasks. This means faster runtimes and more efficient processing for users of our package.
-
PyPy Wheels for Enhanced Efficiency: PyPy is an alternative Python interpreter known for its speed and efficiency. It uses Just-In-Time (JIT) compilation, which can dramatically improve the performance of Python code. Our PyPy Wheels are tailored for compatibility with PyPy, allowing users to leverage this speed advantage seamlessly.
Both Cython and PyPy Wheels on PyPI make the installation process simpler and more straightforward. They ensure that you get the optimized version of our package with minimal setup, allowing you to focus on development rather than configuration.
Installation
pip install unicorn-binance-trailing-stop-loss
Update
pip install unicorn-binance-trailing-stop-loss --upgrade
conda
conda install -c conda-forge unicorn-binance-trailing-stop-loss
From source of the latest release with PIP from GitHub
Linux, macOS, ...
Run in bash:
pip install https://github.com/oliver-zehentleitner/unicorn-binance-trailing-stop-loss/archive/$(curl -s https://api.github.com/repos/oliver-zehentleitner/unicorn-binance-trailing-stop-loss/releases/latest | grep -oP '"tag_name": "\K(.*)(?=")').tar.gz --upgrade
Windows
Use the below command with the version (such as 1.3.1) you determined here:
pip install https://github.com/oliver-zehentleitner/unicorn-binance-trailing-stop-loss/archive/1.3.1.tar.gz --upgrade
From the latest source (dev-stage) with PIP from GitHub
This is not a release version and can not be considered to be stable!
pip install https://github.com/oliver-zehentleitner/unicorn-binance-trailing-stop-loss/tarball/master --upgrade
Conda environment, Virtualenv or plain Python
Download the latest release or the current master branch and use:
- ./environment.yml
- ./pyproject.toml
- ./requirements.txt
- ./setup.py
Change Log
https://oliver-zehentleitner.github.io/unicorn-binance-trailing-stop-loss/CHANGELOG.html
Documentation
Examples
Project Homepage
https://github.com/oliver-zehentleitner/unicorn-binance-trailing-stop-loss
Wiki
https://github.com/oliver-zehentleitner/unicorn-binance-trailing-stop-loss/wiki
Social
Receive Notifications
To receive notifications on available updates you can
the repository on GitHub, write your
own script
with using
is_update_available().
To receive news (like inspection windows/maintenance) about the Binance API`s subscribe to their telegram groups:
- https://t.me/binance_api_announcements
- https://t.me/binance_api_english
- https://t.me/Binance_USA
- https://t.me/TRBinanceTR
- https://t.me/BinanceExchange
How to report Bugs or suggest Improvements?
List of planned features -
click if you need one of them or suggest a new feature!
Before you report a bug, try the latest release. If the issue still exists, provide the error trace, OS and Python version and explain how to reproduce the error. A demo script is appreciated.
If you don't find an issue related to your topic, please open a new issue!
Contributing
UNICORN Binance Trailing Stop Loss is an open source project which welcomes contributions which can be anything from simple documentation fixes and reporting dead links to new features. To contribute follow this guide.
Contributors
We open source!
AI Integration
This project provides a llms.txt file for AI tools (ChatGPT, Claude, Copilot, etc.) with structured
usage instructions, code examples and module routing.
Disclaimer
This project is for informational purposes only. You should not construe this information or any other material as legal, tax, investment, financial or other advice. Nothing contained herein constitutes a solicitation, recommendation, endorsement or offer by us or any third party provider to buy or sell any securities or other financial instruments in this or any other jurisdiction in which such solicitation or offer would be unlawful under the securities laws of such jurisdiction.
If you intend to use real money, use it at your own risk!
Under no circumstances will we be responsible or liable for any claims, damages, losses, expenses, costs or liabilities of any kind, including but not limited to direct or indirect damages for loss of profits.
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
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file unicorn_binance_trailing_stop_loss-1.3.1.tar.gz.
File metadata
- Download URL: unicorn_binance_trailing_stop_loss-1.3.1.tar.gz
- Upload date:
- Size: 434.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d526603535789ae6b510676fb5425ef42e53274dcf6a3834d3c77cbdef839187
|
|
| MD5 |
63382344475257f1221708fadc5081c2
|
|
| BLAKE2b-256 |
2f1295545177a27d52b764d0dc8d59a811ff96f72e86c33cf5679793437271fd
|
Provenance
The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1.tar.gz:
Publisher:
build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
unicorn_binance_trailing_stop_loss-1.3.1.tar.gz -
Subject digest:
d526603535789ae6b510676fb5425ef42e53274dcf6a3834d3c77cbdef839187 - Sigstore transparency entry: 1339562418
- Sigstore integration time:
-
Permalink:
oliver-zehentleitner/unicorn-binance-trailing-stop-loss@2014d4ea92010d499c1916da576b22e42aed0397 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/oliver-zehentleitner
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@2014d4ea92010d499c1916da576b22e42aed0397 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: unicorn_binance_trailing_stop_loss-1.3.1-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 219.1 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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dd3e8d15d456626cef96b8d11d732149597f9362fe81a572e4c7e3506a8d1321
|
|
| MD5 |
59789e1bb9591d03829fa3816dc39746
|
|
| BLAKE2b-256 |
67dbc3f5d3d7af26fa014e049256d557a3ec529e8f78c9d0e161b70e38d15c77
|
Provenance
The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp314-cp314-win_amd64.whl:
Publisher:
build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
unicorn_binance_trailing_stop_loss-1.3.1-cp314-cp314-win_amd64.whl -
Subject digest:
dd3e8d15d456626cef96b8d11d732149597f9362fe81a572e4c7e3506a8d1321 - Sigstore transparency entry: 1339562607
- Sigstore integration time:
-
Permalink:
oliver-zehentleitner/unicorn-binance-trailing-stop-loss@2014d4ea92010d499c1916da576b22e42aed0397 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/oliver-zehentleitner
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@2014d4ea92010d499c1916da576b22e42aed0397 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp314-cp314-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: unicorn_binance_trailing_stop_loss-1.3.1-cp314-cp314-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
181fd2a7e9af5f27b0f868fff0ea49f7526e6d7e23b4b905c31cc569e729ce77
|
|
| MD5 |
159486730b1c94b602f78c7a40a16838
|
|
| BLAKE2b-256 |
2b99e74e67e2d120c014e6e7540955400b2280f6c87f5c5dc605b95d021722a9
|
Provenance
The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp314-cp314-musllinux_1_2_x86_64.whl:
Publisher:
build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
unicorn_binance_trailing_stop_loss-1.3.1-cp314-cp314-musllinux_1_2_x86_64.whl -
Subject digest:
181fd2a7e9af5f27b0f868fff0ea49f7526e6d7e23b4b905c31cc569e729ce77 - Sigstore transparency entry: 1339562641
- Sigstore integration time:
-
Permalink:
oliver-zehentleitner/unicorn-binance-trailing-stop-loss@2014d4ea92010d499c1916da576b22e42aed0397 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/oliver-zehentleitner
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@2014d4ea92010d499c1916da576b22e42aed0397 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: unicorn_binance_trailing_stop_loss-1.3.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a65d7ce938186756bfba57394f72f8c53696bb50ee92a98583fe53c60818ae17
|
|
| MD5 |
0d1e5e1fe272c61c4e196bbd9c0078fa
|
|
| BLAKE2b-256 |
fb74e35b9b87d55df0e2b9f8093168288aba6df51d516c6548698d37318f55b2
|
Provenance
The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
unicorn_binance_trailing_stop_loss-1.3.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
a65d7ce938186756bfba57394f72f8c53696bb50ee92a98583fe53c60818ae17 - Sigstore transparency entry: 1339562647
- Sigstore integration time:
-
Permalink:
oliver-zehentleitner/unicorn-binance-trailing-stop-loss@2014d4ea92010d499c1916da576b22e42aed0397 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/oliver-zehentleitner
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@2014d4ea92010d499c1916da576b22e42aed0397 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: unicorn_binance_trailing_stop_loss-1.3.1-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 215.7 kB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c1619abe9714c375c74852a5ca4556f997e2b40900e4af66d29a2b0a9799aeac
|
|
| MD5 |
ed48123470ecf4f76175fc3508819d00
|
|
| BLAKE2b-256 |
8862443ef9a37460b720d8229043eddf459a43e867aa3839e38e2f1531466545
|
Provenance
The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp314-cp314-macosx_11_0_arm64.whl:
Publisher:
build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
unicorn_binance_trailing_stop_loss-1.3.1-cp314-cp314-macosx_11_0_arm64.whl -
Subject digest:
c1619abe9714c375c74852a5ca4556f997e2b40900e4af66d29a2b0a9799aeac - Sigstore transparency entry: 1339562619
- Sigstore integration time:
-
Permalink:
oliver-zehentleitner/unicorn-binance-trailing-stop-loss@2014d4ea92010d499c1916da576b22e42aed0397 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/oliver-zehentleitner
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@2014d4ea92010d499c1916da576b22e42aed0397 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp314-cp314-macosx_10_15_x86_64.whl.
File metadata
- Download URL: unicorn_binance_trailing_stop_loss-1.3.1-cp314-cp314-macosx_10_15_x86_64.whl
- Upload date:
- Size: 235.2 kB
- Tags: CPython 3.14, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2d7009ea2329795082f30c42553fbdc6f68a03dcf78b7f3f7e124157be85662e
|
|
| MD5 |
3fd9f3b3faeefd706ce6c5637200fb5f
|
|
| BLAKE2b-256 |
7fe294be98320d5c9537661d13036ba4ca7e891c8cb14c8b77204c835657b1c6
|
Provenance
The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp314-cp314-macosx_10_15_x86_64.whl:
Publisher:
build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
unicorn_binance_trailing_stop_loss-1.3.1-cp314-cp314-macosx_10_15_x86_64.whl -
Subject digest:
2d7009ea2329795082f30c42553fbdc6f68a03dcf78b7f3f7e124157be85662e - Sigstore transparency entry: 1339562591
- Sigstore integration time:
-
Permalink:
oliver-zehentleitner/unicorn-binance-trailing-stop-loss@2014d4ea92010d499c1916da576b22e42aed0397 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/oliver-zehentleitner
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@2014d4ea92010d499c1916da576b22e42aed0397 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp314-cp314-macosx_10_15_universal2.whl.
File metadata
- Download URL: unicorn_binance_trailing_stop_loss-1.3.1-cp314-cp314-macosx_10_15_universal2.whl
- Upload date:
- Size: 441.0 kB
- Tags: CPython 3.14, macOS 10.15+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9164e563892aa3c4a3777860fab97dd29707bb4a651a41a398358acfb688d6c5
|
|
| MD5 |
f1f83fc4bf48a7e43de9d7316cd5589c
|
|
| BLAKE2b-256 |
fb12cfa6321361207e79b7893fc2b63fd495e090f8aa56b028d344d17a810235
|
Provenance
The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp314-cp314-macosx_10_15_universal2.whl:
Publisher:
build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
unicorn_binance_trailing_stop_loss-1.3.1-cp314-cp314-macosx_10_15_universal2.whl -
Subject digest:
9164e563892aa3c4a3777860fab97dd29707bb4a651a41a398358acfb688d6c5 - Sigstore transparency entry: 1339562624
- Sigstore integration time:
-
Permalink:
oliver-zehentleitner/unicorn-binance-trailing-stop-loss@2014d4ea92010d499c1916da576b22e42aed0397 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/oliver-zehentleitner
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@2014d4ea92010d499c1916da576b22e42aed0397 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: unicorn_binance_trailing_stop_loss-1.3.1-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 214.2 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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
03045df4695df4a801020034b518fffa63668a354170931b256507305319b8c2
|
|
| MD5 |
119462948a61685ba3e761268169f738
|
|
| BLAKE2b-256 |
a6202affa43309e5ca58a09c438c3a536d0c9d3f607fea2ca0db765ee89a8b41
|
Provenance
The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp313-cp313-win_amd64.whl:
Publisher:
build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
unicorn_binance_trailing_stop_loss-1.3.1-cp313-cp313-win_amd64.whl -
Subject digest:
03045df4695df4a801020034b518fffa63668a354170931b256507305319b8c2 - Sigstore transparency entry: 1339562550
- Sigstore integration time:
-
Permalink:
oliver-zehentleitner/unicorn-binance-trailing-stop-loss@2014d4ea92010d499c1916da576b22e42aed0397 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/oliver-zehentleitner
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@2014d4ea92010d499c1916da576b22e42aed0397 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: unicorn_binance_trailing_stop_loss-1.3.1-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8957894879d1028a6069b8280308cda78d2e9430b2d67b48fef3f27f6736ad6e
|
|
| MD5 |
4f029034c46b7934b30154d4cd659f06
|
|
| BLAKE2b-256 |
310d8736face739d8eb7f4da2646b6fddcdb0423f7df232abb39d6a9ab970464
|
Provenance
The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp313-cp313-musllinux_1_2_x86_64.whl:
Publisher:
build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
unicorn_binance_trailing_stop_loss-1.3.1-cp313-cp313-musllinux_1_2_x86_64.whl -
Subject digest:
8957894879d1028a6069b8280308cda78d2e9430b2d67b48fef3f27f6736ad6e - Sigstore transparency entry: 1339562538
- Sigstore integration time:
-
Permalink:
oliver-zehentleitner/unicorn-binance-trailing-stop-loss@2014d4ea92010d499c1916da576b22e42aed0397 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/oliver-zehentleitner
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@2014d4ea92010d499c1916da576b22e42aed0397 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: unicorn_binance_trailing_stop_loss-1.3.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
afd3729ece2f865da1b1469d681b04aecc576522b2bdad1930af4eefc4ed3ed8
|
|
| MD5 |
660cad424fdb4a5b02a95660ad7327df
|
|
| BLAKE2b-256 |
95cc27e83342fb6ce11bf3c45c8e47524ee2a5004f168e6770e5f9472263beac
|
Provenance
The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
unicorn_binance_trailing_stop_loss-1.3.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
afd3729ece2f865da1b1469d681b04aecc576522b2bdad1930af4eefc4ed3ed8 - Sigstore transparency entry: 1339562626
- Sigstore integration time:
-
Permalink:
oliver-zehentleitner/unicorn-binance-trailing-stop-loss@2014d4ea92010d499c1916da576b22e42aed0397 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/oliver-zehentleitner
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@2014d4ea92010d499c1916da576b22e42aed0397 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: unicorn_binance_trailing_stop_loss-1.3.1-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 214.4 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0b5fdf0318a569b333464a0c82d8893f821980008b2f54d0d83f0b544d36f3d5
|
|
| MD5 |
275b45437390c8e50701afa6b0ba5a11
|
|
| BLAKE2b-256 |
7a42a0c9f907389223406bd3216c0852a6591c42e469760ee2ae86ec3b8d7a35
|
Provenance
The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
unicorn_binance_trailing_stop_loss-1.3.1-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
0b5fdf0318a569b333464a0c82d8893f821980008b2f54d0d83f0b544d36f3d5 - Sigstore transparency entry: 1339562637
- Sigstore integration time:
-
Permalink:
oliver-zehentleitner/unicorn-binance-trailing-stop-loss@2014d4ea92010d499c1916da576b22e42aed0397 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/oliver-zehentleitner
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@2014d4ea92010d499c1916da576b22e42aed0397 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp313-cp313-macosx_10_13_x86_64.whl.
File metadata
- Download URL: unicorn_binance_trailing_stop_loss-1.3.1-cp313-cp313-macosx_10_13_x86_64.whl
- Upload date:
- Size: 234.0 kB
- Tags: CPython 3.13, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5ed81da07183f981a19f513a4ce3302fff4c85b0010575d0b5511acb77ce5036
|
|
| MD5 |
25b7f995e5afa9b3219513c498629790
|
|
| BLAKE2b-256 |
f4413c8477f6a5666ba21a2d4d92298b9d495e435a85c8840018bf0c0fa0bbae
|
Provenance
The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp313-cp313-macosx_10_13_x86_64.whl:
Publisher:
build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
unicorn_binance_trailing_stop_loss-1.3.1-cp313-cp313-macosx_10_13_x86_64.whl -
Subject digest:
5ed81da07183f981a19f513a4ce3302fff4c85b0010575d0b5511acb77ce5036 - Sigstore transparency entry: 1339562601
- Sigstore integration time:
-
Permalink:
oliver-zehentleitner/unicorn-binance-trailing-stop-loss@2014d4ea92010d499c1916da576b22e42aed0397 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/oliver-zehentleitner
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@2014d4ea92010d499c1916da576b22e42aed0397 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp313-cp313-macosx_10_13_universal2.whl.
File metadata
- Download URL: unicorn_binance_trailing_stop_loss-1.3.1-cp313-cp313-macosx_10_13_universal2.whl
- Upload date:
- Size: 438.4 kB
- Tags: CPython 3.13, macOS 10.13+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b1847eb4b853e8e809b11723cd6a5cbf219072b3c874a0948008106a40ee67f6
|
|
| MD5 |
9b57f0ff3582b32ab4c41772016f8b0b
|
|
| BLAKE2b-256 |
f2aed783836d721cd12fd007320e6955d7b29f1f93e8bd0d931d686c8f8a0da7
|
Provenance
The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp313-cp313-macosx_10_13_universal2.whl:
Publisher:
build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
unicorn_binance_trailing_stop_loss-1.3.1-cp313-cp313-macosx_10_13_universal2.whl -
Subject digest:
b1847eb4b853e8e809b11723cd6a5cbf219072b3c874a0948008106a40ee67f6 - Sigstore transparency entry: 1339562652
- Sigstore integration time:
-
Permalink:
oliver-zehentleitner/unicorn-binance-trailing-stop-loss@2014d4ea92010d499c1916da576b22e42aed0397 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/oliver-zehentleitner
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@2014d4ea92010d499c1916da576b22e42aed0397 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: unicorn_binance_trailing_stop_loss-1.3.1-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 214.5 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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1795f4ff166e531d2558ba63ff65b13aa4ca48798456485c48c35dcf83de6948
|
|
| MD5 |
1259357613e0388e99e077aa1edf654a
|
|
| BLAKE2b-256 |
68ddb4059ad0253d232ed0bbc9e4018f733a9fb421676629607e3d3b16213421
|
Provenance
The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp312-cp312-win_amd64.whl:
Publisher:
build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
unicorn_binance_trailing_stop_loss-1.3.1-cp312-cp312-win_amd64.whl -
Subject digest:
1795f4ff166e531d2558ba63ff65b13aa4ca48798456485c48c35dcf83de6948 - Sigstore transparency entry: 1339562561
- Sigstore integration time:
-
Permalink:
oliver-zehentleitner/unicorn-binance-trailing-stop-loss@2014d4ea92010d499c1916da576b22e42aed0397 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/oliver-zehentleitner
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@2014d4ea92010d499c1916da576b22e42aed0397 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: unicorn_binance_trailing_stop_loss-1.3.1-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e9b4003b2f9d2820ef1e5c2daa32bd319b76df800e73be82ea3c1064f55ff5e5
|
|
| MD5 |
cc78d23660f161d27d11c4d46b4095fc
|
|
| BLAKE2b-256 |
504840836768e072c1948b6615734deb17286c76aac0f6b6895eb824f9f0dd14
|
Provenance
The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp312-cp312-musllinux_1_2_x86_64.whl:
Publisher:
build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
unicorn_binance_trailing_stop_loss-1.3.1-cp312-cp312-musllinux_1_2_x86_64.whl -
Subject digest:
e9b4003b2f9d2820ef1e5c2daa32bd319b76df800e73be82ea3c1064f55ff5e5 - Sigstore transparency entry: 1339562672
- Sigstore integration time:
-
Permalink:
oliver-zehentleitner/unicorn-binance-trailing-stop-loss@2014d4ea92010d499c1916da576b22e42aed0397 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/oliver-zehentleitner
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@2014d4ea92010d499c1916da576b22e42aed0397 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: unicorn_binance_trailing_stop_loss-1.3.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9c49400fcf8dac4863ddcdfc566ff4f80c0a6b81eb078eb96a8a4cba9fb9dd25
|
|
| MD5 |
61048abd681be718fb3b1691e67c1e79
|
|
| BLAKE2b-256 |
a489bfff465afdc15950bc70d00ed394c4bacb21f4a7e66e8cca5650d647ecbd
|
Provenance
The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
unicorn_binance_trailing_stop_loss-1.3.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
9c49400fcf8dac4863ddcdfc566ff4f80c0a6b81eb078eb96a8a4cba9fb9dd25 - Sigstore transparency entry: 1339562486
- Sigstore integration time:
-
Permalink:
oliver-zehentleitner/unicorn-binance-trailing-stop-loss@2014d4ea92010d499c1916da576b22e42aed0397 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/oliver-zehentleitner
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@2014d4ea92010d499c1916da576b22e42aed0397 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: unicorn_binance_trailing_stop_loss-1.3.1-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 215.1 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
063b092167a09de5a1a42d6735f045c2ea3a6fb146501f4c3d65283852ffc5fd
|
|
| MD5 |
a1d4b76e0c31c9828c1de2d9aa9795c4
|
|
| BLAKE2b-256 |
74c323a1753b826d80e88dd455987a37c8e0c0df36f1c651fc2490ba143665a7
|
Provenance
The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
unicorn_binance_trailing_stop_loss-1.3.1-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
063b092167a09de5a1a42d6735f045c2ea3a6fb146501f4c3d65283852ffc5fd - Sigstore transparency entry: 1339562555
- Sigstore integration time:
-
Permalink:
oliver-zehentleitner/unicorn-binance-trailing-stop-loss@2014d4ea92010d499c1916da576b22e42aed0397 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/oliver-zehentleitner
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@2014d4ea92010d499c1916da576b22e42aed0397 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp312-cp312-macosx_10_13_x86_64.whl.
File metadata
- Download URL: unicorn_binance_trailing_stop_loss-1.3.1-cp312-cp312-macosx_10_13_x86_64.whl
- Upload date:
- Size: 235.0 kB
- Tags: CPython 3.12, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
90da03d939fbb2f74cb588acf5db04ae56fbf5db83f9600caa34b8cf341088f6
|
|
| MD5 |
9980e49a27d58d797415b53fd106621c
|
|
| BLAKE2b-256 |
8a200d812d426efb4b761c55082a2fa858b5ee63d2cd2570202a7d95133f22af
|
Provenance
The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp312-cp312-macosx_10_13_x86_64.whl:
Publisher:
build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
unicorn_binance_trailing_stop_loss-1.3.1-cp312-cp312-macosx_10_13_x86_64.whl -
Subject digest:
90da03d939fbb2f74cb588acf5db04ae56fbf5db83f9600caa34b8cf341088f6 - Sigstore transparency entry: 1339562612
- Sigstore integration time:
-
Permalink:
oliver-zehentleitner/unicorn-binance-trailing-stop-loss@2014d4ea92010d499c1916da576b22e42aed0397 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/oliver-zehentleitner
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@2014d4ea92010d499c1916da576b22e42aed0397 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp312-cp312-macosx_10_13_universal2.whl.
File metadata
- Download URL: unicorn_binance_trailing_stop_loss-1.3.1-cp312-cp312-macosx_10_13_universal2.whl
- Upload date:
- Size: 440.3 kB
- Tags: CPython 3.12, macOS 10.13+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2b805a36886b18459b5b1a5b77eac4014c5ef271e0c55c15180c482eb555d365
|
|
| MD5 |
c1d25bbd5fe28a75cd363d3f5ddf78aa
|
|
| BLAKE2b-256 |
dfd759e42ae2b19c1f35f89b69a39bab1ffffea559a9aaed5a7d5f4376fc619c
|
Provenance
The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp312-cp312-macosx_10_13_universal2.whl:
Publisher:
build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
unicorn_binance_trailing_stop_loss-1.3.1-cp312-cp312-macosx_10_13_universal2.whl -
Subject digest:
2b805a36886b18459b5b1a5b77eac4014c5ef271e0c55c15180c482eb555d365 - Sigstore transparency entry: 1339562629
- Sigstore integration time:
-
Permalink:
oliver-zehentleitner/unicorn-binance-trailing-stop-loss@2014d4ea92010d499c1916da576b22e42aed0397 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/oliver-zehentleitner
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@2014d4ea92010d499c1916da576b22e42aed0397 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: unicorn_binance_trailing_stop_loss-1.3.1-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 214.7 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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c6831a18b0c0be9b4d4ce051f9a32878ce77ccab5a2e74d33ea874ca2a4ba99c
|
|
| MD5 |
234fedd0bdb4cc14b97e7b39dfccff2c
|
|
| BLAKE2b-256 |
75650b583d095de6a1e39c2d9e11b9929352695141f87585caff82bb905c5a90
|
Provenance
The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp311-cp311-win_amd64.whl:
Publisher:
build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
unicorn_binance_trailing_stop_loss-1.3.1-cp311-cp311-win_amd64.whl -
Subject digest:
c6831a18b0c0be9b4d4ce051f9a32878ce77ccab5a2e74d33ea874ca2a4ba99c - Sigstore transparency entry: 1339562434
- Sigstore integration time:
-
Permalink:
oliver-zehentleitner/unicorn-binance-trailing-stop-loss@2014d4ea92010d499c1916da576b22e42aed0397 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/oliver-zehentleitner
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@2014d4ea92010d499c1916da576b22e42aed0397 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: unicorn_binance_trailing_stop_loss-1.3.1-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
43b14bdcc718d4ac9f6d1e6c35a3727130d3229d19142fb1c037709fac5bd34e
|
|
| MD5 |
58fe4a979956924602cbedfd0af53da7
|
|
| BLAKE2b-256 |
f32e7ea1027d01b582ab3cc1370ea67f8786f13769a94d4cbc71c567777b5b6e
|
Provenance
The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp311-cp311-musllinux_1_2_x86_64.whl:
Publisher:
build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
unicorn_binance_trailing_stop_loss-1.3.1-cp311-cp311-musllinux_1_2_x86_64.whl -
Subject digest:
43b14bdcc718d4ac9f6d1e6c35a3727130d3229d19142fb1c037709fac5bd34e - Sigstore transparency entry: 1339562525
- Sigstore integration time:
-
Permalink:
oliver-zehentleitner/unicorn-binance-trailing-stop-loss@2014d4ea92010d499c1916da576b22e42aed0397 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/oliver-zehentleitner
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@2014d4ea92010d499c1916da576b22e42aed0397 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: unicorn_binance_trailing_stop_loss-1.3.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
13f7c6ffec19163673ad1ef960ea8113fe166f62095d89457c16d5f6bb6a1ef2
|
|
| MD5 |
0dabc5975bdccb3f933cbd9c9c6d8165
|
|
| BLAKE2b-256 |
7f786d49e9c095539e1c203da9bab8b962b668d9823ae88cce7ffb30857526d9
|
Provenance
The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
unicorn_binance_trailing_stop_loss-1.3.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
13f7c6ffec19163673ad1ef960ea8113fe166f62095d89457c16d5f6bb6a1ef2 - Sigstore transparency entry: 1339562438
- Sigstore integration time:
-
Permalink:
oliver-zehentleitner/unicorn-binance-trailing-stop-loss@2014d4ea92010d499c1916da576b22e42aed0397 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/oliver-zehentleitner
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@2014d4ea92010d499c1916da576b22e42aed0397 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: unicorn_binance_trailing_stop_loss-1.3.1-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 225.7 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
82dc6e3e09ec34e8b2897bc074b43885dda0a2180d6860b19949450be9d83e1a
|
|
| MD5 |
20f6520f0f5a4aa152578cd0270bfaca
|
|
| BLAKE2b-256 |
d0c962d54bde6909d3ee54de42256f747261a211924fbd92f580c02f2f44ead7
|
Provenance
The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
unicorn_binance_trailing_stop_loss-1.3.1-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
82dc6e3e09ec34e8b2897bc074b43885dda0a2180d6860b19949450be9d83e1a - Sigstore transparency entry: 1339562603
- Sigstore integration time:
-
Permalink:
oliver-zehentleitner/unicorn-binance-trailing-stop-loss@2014d4ea92010d499c1916da576b22e42aed0397 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/oliver-zehentleitner
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@2014d4ea92010d499c1916da576b22e42aed0397 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp311-cp311-macosx_10_9_x86_64.whl.
File metadata
- Download URL: unicorn_binance_trailing_stop_loss-1.3.1-cp311-cp311-macosx_10_9_x86_64.whl
- Upload date:
- Size: 244.5 kB
- Tags: CPython 3.11, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
72a31e9258305a5ea3d945c16a84a3455cf18a80eae6a9fc0dc2136540248d17
|
|
| MD5 |
94f7aab8afc64695f2e8911ead3802d1
|
|
| BLAKE2b-256 |
515f70404e136931ed980f2617625794141a4c07acf52d920112fbacec6e28e0
|
Provenance
The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp311-cp311-macosx_10_9_x86_64.whl:
Publisher:
build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
unicorn_binance_trailing_stop_loss-1.3.1-cp311-cp311-macosx_10_9_x86_64.whl -
Subject digest:
72a31e9258305a5ea3d945c16a84a3455cf18a80eae6a9fc0dc2136540248d17 - Sigstore transparency entry: 1339562587
- Sigstore integration time:
-
Permalink:
oliver-zehentleitner/unicorn-binance-trailing-stop-loss@2014d4ea92010d499c1916da576b22e42aed0397 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/oliver-zehentleitner
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@2014d4ea92010d499c1916da576b22e42aed0397 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp311-cp311-macosx_10_9_universal2.whl.
File metadata
- Download URL: unicorn_binance_trailing_stop_loss-1.3.1-cp311-cp311-macosx_10_9_universal2.whl
- Upload date:
- Size: 461.2 kB
- Tags: CPython 3.11, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
73396c9bd9158fd5dd9796bacb91f0a47fc608142e67d4712b503b4c410f5396
|
|
| MD5 |
1f8b56b8c138b7efd49bd48abfc057d5
|
|
| BLAKE2b-256 |
4e08bd4fa9d7990da33879cda25268f57168b04a6d22ec67ba753bea0f072698
|
Provenance
The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp311-cp311-macosx_10_9_universal2.whl:
Publisher:
build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
unicorn_binance_trailing_stop_loss-1.3.1-cp311-cp311-macosx_10_9_universal2.whl -
Subject digest:
73396c9bd9158fd5dd9796bacb91f0a47fc608142e67d4712b503b4c410f5396 - Sigstore transparency entry: 1339562516
- Sigstore integration time:
-
Permalink:
oliver-zehentleitner/unicorn-binance-trailing-stop-loss@2014d4ea92010d499c1916da576b22e42aed0397 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/oliver-zehentleitner
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@2014d4ea92010d499c1916da576b22e42aed0397 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: unicorn_binance_trailing_stop_loss-1.3.1-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 215.3 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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
51062eb2c3000718d2c07f12e94f440f9f57694c92a81793ae2beaac0b787cff
|
|
| MD5 |
90792c896052e162cd4cc594b98f3fea
|
|
| BLAKE2b-256 |
24874ec43d663a5d8a35f2a8f9e60b1b9bf60e05f945056e70b476e42b94d13e
|
Provenance
The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp310-cp310-win_amd64.whl:
Publisher:
build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
unicorn_binance_trailing_stop_loss-1.3.1-cp310-cp310-win_amd64.whl -
Subject digest:
51062eb2c3000718d2c07f12e94f440f9f57694c92a81793ae2beaac0b787cff - Sigstore transparency entry: 1339562507
- Sigstore integration time:
-
Permalink:
oliver-zehentleitner/unicorn-binance-trailing-stop-loss@2014d4ea92010d499c1916da576b22e42aed0397 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/oliver-zehentleitner
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@2014d4ea92010d499c1916da576b22e42aed0397 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: unicorn_binance_trailing_stop_loss-1.3.1-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2662f5e415f23974d6635cf649f4ce8e6ba9a4f5a994284a512f11ac3421a8ad
|
|
| MD5 |
0035a94c74fa0acda9039481cc0e0164
|
|
| BLAKE2b-256 |
7f4dc349a273cacb6a698f1d2dd0e5b79c60ebcee5e208939d0fd7c01f5db9b8
|
Provenance
The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp310-cp310-musllinux_1_2_x86_64.whl:
Publisher:
build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
unicorn_binance_trailing_stop_loss-1.3.1-cp310-cp310-musllinux_1_2_x86_64.whl -
Subject digest:
2662f5e415f23974d6635cf649f4ce8e6ba9a4f5a994284a512f11ac3421a8ad - Sigstore transparency entry: 1339562611
- Sigstore integration time:
-
Permalink:
oliver-zehentleitner/unicorn-binance-trailing-stop-loss@2014d4ea92010d499c1916da576b22e42aed0397 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/oliver-zehentleitner
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@2014d4ea92010d499c1916da576b22e42aed0397 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: unicorn_binance_trailing_stop_loss-1.3.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d0e85619b4ffd35be1012d9598b78033fede5621f9e9292147bd5e9e1658a275
|
|
| MD5 |
c220259c2bed0cc7c3b9e4a0f50a4271
|
|
| BLAKE2b-256 |
d6a3fe6368d309b0082ebe5367201724c912df21c60c8f5605d2f688132df2c1
|
Provenance
The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
unicorn_binance_trailing_stop_loss-1.3.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
d0e85619b4ffd35be1012d9598b78033fede5621f9e9292147bd5e9e1658a275 - Sigstore transparency entry: 1339562617
- Sigstore integration time:
-
Permalink:
oliver-zehentleitner/unicorn-binance-trailing-stop-loss@2014d4ea92010d499c1916da576b22e42aed0397 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/oliver-zehentleitner
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@2014d4ea92010d499c1916da576b22e42aed0397 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: unicorn_binance_trailing_stop_loss-1.3.1-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 227.2 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d98da8a28b2a435856ef6c530bd02335b9fe3709689de68272a454fded3e7a54
|
|
| MD5 |
8d2ef49cb26ed4bda793931d27710679
|
|
| BLAKE2b-256 |
56c88b44b5d02f3edbf8b4f99d27e783512531cb95d9eeaacece1c85a60ced92
|
Provenance
The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp310-cp310-macosx_11_0_arm64.whl:
Publisher:
build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
unicorn_binance_trailing_stop_loss-1.3.1-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
d98da8a28b2a435856ef6c530bd02335b9fe3709689de68272a454fded3e7a54 - Sigstore transparency entry: 1339562568
- Sigstore integration time:
-
Permalink:
oliver-zehentleitner/unicorn-binance-trailing-stop-loss@2014d4ea92010d499c1916da576b22e42aed0397 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/oliver-zehentleitner
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@2014d4ea92010d499c1916da576b22e42aed0397 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp310-cp310-macosx_10_9_x86_64.whl.
File metadata
- Download URL: unicorn_binance_trailing_stop_loss-1.3.1-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 245.6 kB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6c9bc8d5918e89a742e23aa95c7648829b9368c6fda1547074a1a8accee0acee
|
|
| MD5 |
b20386a52fcf7d0d6e4e3e7d61a199ac
|
|
| BLAKE2b-256 |
875cf1b85f9309f5529d7c90156c7fdfda9624cdf8f4f711f72eed7792b6b8d0
|
Provenance
The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp310-cp310-macosx_10_9_x86_64.whl:
Publisher:
build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
unicorn_binance_trailing_stop_loss-1.3.1-cp310-cp310-macosx_10_9_x86_64.whl -
Subject digest:
6c9bc8d5918e89a742e23aa95c7648829b9368c6fda1547074a1a8accee0acee - Sigstore transparency entry: 1339562520
- Sigstore integration time:
-
Permalink:
oliver-zehentleitner/unicorn-binance-trailing-stop-loss@2014d4ea92010d499c1916da576b22e42aed0397 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/oliver-zehentleitner
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@2014d4ea92010d499c1916da576b22e42aed0397 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp310-cp310-macosx_10_9_universal2.whl.
File metadata
- Download URL: unicorn_binance_trailing_stop_loss-1.3.1-cp310-cp310-macosx_10_9_universal2.whl
- Upload date:
- Size: 463.7 kB
- Tags: CPython 3.10, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
21e314757212b90ae4fc0be4c0c76ddd9a7e5fbd0b38d985a18f0a84b2fffbb3
|
|
| MD5 |
c316dd59031dbb764c5005bb93d531dc
|
|
| BLAKE2b-256 |
3642bb7f8731ee256c0f42a87e24ddbb624276a1c721f7e7855a8e6eb7f4c4f7
|
Provenance
The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp310-cp310-macosx_10_9_universal2.whl:
Publisher:
build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
unicorn_binance_trailing_stop_loss-1.3.1-cp310-cp310-macosx_10_9_universal2.whl -
Subject digest:
21e314757212b90ae4fc0be4c0c76ddd9a7e5fbd0b38d985a18f0a84b2fffbb3 - Sigstore transparency entry: 1339562600
- Sigstore integration time:
-
Permalink:
oliver-zehentleitner/unicorn-binance-trailing-stop-loss@2014d4ea92010d499c1916da576b22e42aed0397 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/oliver-zehentleitner
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@2014d4ea92010d499c1916da576b22e42aed0397 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: unicorn_binance_trailing_stop_loss-1.3.1-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 215.9 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a1a62d9e3fedd032415b5d4eef8a3a6166b2d562b01e2ddd1535529d36c1567f
|
|
| MD5 |
9b77143c37bfdadca165eef14a860963
|
|
| BLAKE2b-256 |
3f5fb8332acf59512ab4e0ea3c9b00892ada0d39efceb770f26d9902899203b8
|
Provenance
The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp39-cp39-win_amd64.whl:
Publisher:
build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
unicorn_binance_trailing_stop_loss-1.3.1-cp39-cp39-win_amd64.whl -
Subject digest:
a1a62d9e3fedd032415b5d4eef8a3a6166b2d562b01e2ddd1535529d36c1567f - Sigstore transparency entry: 1339562663
- Sigstore integration time:
-
Permalink:
oliver-zehentleitner/unicorn-binance-trailing-stop-loss@2014d4ea92010d499c1916da576b22e42aed0397 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/oliver-zehentleitner
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@2014d4ea92010d499c1916da576b22e42aed0397 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: unicorn_binance_trailing_stop_loss-1.3.1-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3de9c8bc34246cd28c361e8ff3c55337041cf3fcc99f8d9736f0bdf9e5a81e9a
|
|
| MD5 |
be873e14e8f7e0d10f9834fe2282096e
|
|
| BLAKE2b-256 |
849b70210407e70376878ff480db3138f110b73a359c44a43a2d4678da7a3c6f
|
Provenance
The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp39-cp39-musllinux_1_2_x86_64.whl:
Publisher:
build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
unicorn_binance_trailing_stop_loss-1.3.1-cp39-cp39-musllinux_1_2_x86_64.whl -
Subject digest:
3de9c8bc34246cd28c361e8ff3c55337041cf3fcc99f8d9736f0bdf9e5a81e9a - Sigstore transparency entry: 1339562659
- Sigstore integration time:
-
Permalink:
oliver-zehentleitner/unicorn-binance-trailing-stop-loss@2014d4ea92010d499c1916da576b22e42aed0397 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/oliver-zehentleitner
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@2014d4ea92010d499c1916da576b22e42aed0397 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: unicorn_binance_trailing_stop_loss-1.3.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
868c79eb6e014cc95ab580e0f8ae378fba2723e04abb324b9695beaccc1f7513
|
|
| MD5 |
4a5993862223efcd0ec44a22f2d92701
|
|
| BLAKE2b-256 |
316dfb903a6561e22a8480847761f29a16918b6bbdad5b72ea5dcd8d525133aa
|
Provenance
The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
unicorn_binance_trailing_stop_loss-1.3.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
868c79eb6e014cc95ab580e0f8ae378fba2723e04abb324b9695beaccc1f7513 - Sigstore transparency entry: 1339562498
- Sigstore integration time:
-
Permalink:
oliver-zehentleitner/unicorn-binance-trailing-stop-loss@2014d4ea92010d499c1916da576b22e42aed0397 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/oliver-zehentleitner
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@2014d4ea92010d499c1916da576b22e42aed0397 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp39-cp39-macosx_11_0_arm64.whl.
File metadata
- Download URL: unicorn_binance_trailing_stop_loss-1.3.1-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 227.8 kB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5afd3aa02db406a6b32dbaf87ede9cbe3bbc4ff530dadeb61418b911f7f96981
|
|
| MD5 |
ff34dc7ef012d505d64c27fdcab5268e
|
|
| BLAKE2b-256 |
5eff4d5523058f1d2b5a437621d4c21b2d3506441998e9a74211dc51e2afc5c8
|
Provenance
The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp39-cp39-macosx_11_0_arm64.whl:
Publisher:
build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
unicorn_binance_trailing_stop_loss-1.3.1-cp39-cp39-macosx_11_0_arm64.whl -
Subject digest:
5afd3aa02db406a6b32dbaf87ede9cbe3bbc4ff530dadeb61418b911f7f96981 - Sigstore transparency entry: 1339562426
- Sigstore integration time:
-
Permalink:
oliver-zehentleitner/unicorn-binance-trailing-stop-loss@2014d4ea92010d499c1916da576b22e42aed0397 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/oliver-zehentleitner
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@2014d4ea92010d499c1916da576b22e42aed0397 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp39-cp39-macosx_10_9_x86_64.whl.
File metadata
- Download URL: unicorn_binance_trailing_stop_loss-1.3.1-cp39-cp39-macosx_10_9_x86_64.whl
- Upload date:
- Size: 246.2 kB
- Tags: CPython 3.9, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fd8acf83a5df5a8724d8d2f5e8f1e9388e164e458d4b608c6b7f5fcb1aa68aa7
|
|
| MD5 |
f4d422156d612cc05dc57bd1ea034509
|
|
| BLAKE2b-256 |
6097a8093ae0c4f21ef7d7c5d09ba51ad93fe0440d312ce1be6ba9ada58e9cc9
|
Provenance
The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp39-cp39-macosx_10_9_x86_64.whl:
Publisher:
build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
unicorn_binance_trailing_stop_loss-1.3.1-cp39-cp39-macosx_10_9_x86_64.whl -
Subject digest:
fd8acf83a5df5a8724d8d2f5e8f1e9388e164e458d4b608c6b7f5fcb1aa68aa7 - Sigstore transparency entry: 1339562595
- Sigstore integration time:
-
Permalink:
oliver-zehentleitner/unicorn-binance-trailing-stop-loss@2014d4ea92010d499c1916da576b22e42aed0397 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/oliver-zehentleitner
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@2014d4ea92010d499c1916da576b22e42aed0397 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file unicorn_binance_trailing_stop_loss-1.3.1-cp39-cp39-macosx_10_9_universal2.whl.
File metadata
- Download URL: unicorn_binance_trailing_stop_loss-1.3.1-cp39-cp39-macosx_10_9_universal2.whl
- Upload date:
- Size: 465.0 kB
- Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e6540833c0e16602081f877f9dcc586787f410b4698591a20eedeb0ddf9ae21d
|
|
| MD5 |
aa57e0ddbf48cd407a51fc53a692744c
|
|
| BLAKE2b-256 |
9241c05100e1dd03a6c4002e5783795f87b3708c52a39e3c5ba4dcbf09684e6d
|
Provenance
The following attestation bundles were made for unicorn_binance_trailing_stop_loss-1.3.1-cp39-cp39-macosx_10_9_universal2.whl:
Publisher:
build_wheels.yml on oliver-zehentleitner/unicorn-binance-trailing-stop-loss
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
unicorn_binance_trailing_stop_loss-1.3.1-cp39-cp39-macosx_10_9_universal2.whl -
Subject digest:
e6540833c0e16602081f877f9dcc586787f410b4698591a20eedeb0ddf9ae21d - Sigstore transparency entry: 1339562529
- Sigstore integration time:
-
Permalink:
oliver-zehentleitner/unicorn-binance-trailing-stop-loss@2014d4ea92010d499c1916da576b22e42aed0397 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/oliver-zehentleitner
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@2014d4ea92010d499c1916da576b22e42aed0397 -
Trigger Event:
workflow_dispatch
-
Statement type: