Help building app using Index Integer Date format IID
Project description
PyPI_IID
IID, short for Index Integer Date, is a 4/8/12/16-byte format designed for seamless communication across various network systems, including UDP, WebSocket, and Mirror.
By standardizing the code and API to work exclusively with integer values:
- It enables the creation of action index tables.
- It supports the development of specialized tools for specific tasks, allowing IID to facilitate remote actions effectively.
The IID format was developed to streamline QA testing across multiple devices and computers with precise timing coordination.
Key Features of IID:
- Index on your own server: Identifies the target device.
- Index on a shared server: Identifies the user.
- Value: Represents the transported integer value.
- Date: Encoded in a specific
ulongformat:- 01.....TICK: Sent using NTP time.
- 02.....TICK: Intended for execution at a designated NTP time.
- .......TICK: Sent from an unknown source time but uses
DateTime.Nowin UTC since 1970.
If you need assistance or are interested in contributing to this project, feel free to reach out.
Since 2024, all my tools have been built around this principle.
/*
* ----------------------------------------------------------------------------
* "PIZZA LICENSE":
* https://github.com/EloiStree wrote this file.
* As long as you retain this notice, you
* can do whatever you want with this code.
* If you think my code saved you time,
* consider sending me a 🍺 or a 🍕 at:
* - https://buymeacoffee.com/apintio
*
* You can also support my work by building your own DIY input device
* using these Amazon links:
* - https://github.com/EloiStree/HelloInput
*
* May the code be with you.
*
* Updated version: https://github.com/EloiStree/License
* ----------------------------------------------------------------------------
*/
Creating a Python Package
Tutorial:
This is my first Python package. Here’s how to build one.
Steps to Create a Pip Package:
-
Install or upgrade the build tool:
pip install --upgrade build
-
Navigate to your project’s root directory:
cd "GIT_PROJECT_ROOT"
-
Build the package:
python -m build
-
A
.whlfile will be created. You can install it using pip:pip install iid-2025.1.8-py3-none-any.whl
Example Workflow:
python -m build
pip uninstall iid -y
python -m build
pip install dist/iid42-2025.1.8-py3-none-any.whl
python
Example Usage:
import iid
iid.say_hello()
pip install --upgrade twine
python -m twine upload dist/*
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 Distribution
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 iid42-2025.1.8.1.tar.gz.
File metadata
- Download URL: iid42-2025.1.8.1.tar.gz
- Upload date:
- Size: 3.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.13.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
58da2486313e7f7ee84befd104bc58e3061cabb9a02f74d73d3bf486b8d0723c
|
|
| MD5 |
66b7a0b7e1187fd063107341347d5f02
|
|
| BLAKE2b-256 |
3b20b64f73b76b455d67bfa108ad79f2ad04bee0fa25b06b9ffc33187108e8e0
|
File details
Details for the file iid42-2025.1.8.1-py3-none-any.whl.
File metadata
- Download URL: iid42-2025.1.8.1-py3-none-any.whl
- Upload date:
- Size: 4.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.13.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8ae5a0cfac105191e4cd5935ce20f599f5b0e48bb5e597aab30c1d26ff1045a5
|
|
| MD5 |
ac68b7b2a0a8beb9ef3e5b707c282268
|
|
| BLAKE2b-256 |
06cd99265fff292524fc3fb76a13c583f485627febbc04e2b14c11851a96e1c3
|