smartx-rfid 1.1.1__py3-none-any.whl → 1.5.4__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,83 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: smartx-rfid
3
- Version: 1.1.1
4
- Summary: SmartX RFID library
5
- License: MIT
6
- License-File: LICENSE
7
- Keywords: python,library,RFID,smartx,packaging
8
- Author: Gabriel Henrique Pascon
9
- Author-email: gh.pascon@gmail.com
10
- Requires-Python: >=3.11,<4.0
11
- Classifier: Intended Audience :: Developers
12
- Classifier: License :: OSI Approved :: MIT License
13
- Classifier: Operating System :: OS Independent
14
- Classifier: Programming Language :: Python :: 3
15
- Classifier: Programming Language :: Python :: 3.11
16
- Classifier: Programming Language :: Python :: 3.12
17
- Classifier: Programming Language :: Python :: 3.13
18
- Classifier: Programming Language :: Python :: 3.14
19
- Classifier: Topic :: Software Development :: Libraries :: Python Modules
20
- Requires-Dist: bleak (>=1.1.1,<2.0.0)
21
- Requires-Dist: httpx (==0.28.1)
22
- Requires-Dist: pydantic (>=2.12.5,<3.0.0)
23
- Requires-Dist: pyepc (==0.5.0)
24
- Requires-Dist: pyserial (==3.5)
25
- Requires-Dist: pyserial-asyncio (==0.6)
26
- Project-URL: Documentation, https://github.com/ghpascon/smartx_rfid#readme
27
- Project-URL: Homepage, https://github.com/ghpascon/smartx_rfid
28
- Project-URL: Repository, https://github.com/ghpascon/smartx_rfid
29
- Description-Content-Type: text/markdown
30
-
31
- # SmartX RFID
32
-
33
- The official SmartX RFID Python library for seamless integration with RFID systems and devices.
34
-
35
- ## Overview
36
-
37
- SmartX RFID is a comprehensive Python package designed to provide easy-to-use interfaces for RFID operations and device management. This library serves as the foundation for building robust RFID applications.
38
-
39
- ## Features (Current & Planned)
40
-
41
- - **Device Communication**: Asynchronous serial communication with RFID devices
42
- - **Auto-Detection**: Automatic port detection for USB devices by VID/PID
43
- - **Connection Management**: Automatic reconnection and error handling
44
- - **External Device Support**: Interface with various RFID readers and writers *(coming soon)*
45
- - **Tag Operations**: Read, write, and manage RFID tags *(coming soon)*
46
- - **Protocol Support**: Multiple RFID protocols and standards *(coming soon)*
47
-
48
- ## Installation
49
-
50
- ```bash
51
- pip install smartx-rfid
52
- ```
53
-
54
- ## Quick Start
55
-
56
- ```python
57
- from smartx_rfid.devices import SERIAL
58
- import asyncio
59
-
60
- async def main():
61
- device = SERIAL(name="MyRFIDDevice")
62
- await device.connect()
63
-
64
- asyncio.run(main())
65
- ```
66
-
67
- ## Development Status
68
-
69
- This library is actively under development. Current focus areas include:
70
-
71
- - Core device communication protocols
72
- - External device integration
73
- - Enhanced error handling
74
- - Comprehensive documentation
75
-
76
- ## License
77
-
78
- MIT License
79
-
80
- ## Support
81
-
82
- For issues and support, please visit our [GitHub repository](https://github.com/ghpascon/smartx_rfid).
83
-