rfidpy


Namerfidpy JSON
Version 0.3 PyPI version JSON
download
home_page
SummaryRaspberry pi 5 interface with RFID(MFR522)
upload_time2024-01-18 12:57:52
maintainer
docs_urlNone
authorM.Karthickraja
requires_python
license
keywords rfid raspberry-pi mfrc522 pi5 python
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # rfidpy

The `rfidpy` library is designed to facilitate the interface between Raspberry Pi 5 and RFID technology.

## Usage
Raspberry pi 5 interface with RFID (MFRC522) reader.

## Requirements

Make sure to install the following libraries before using `rfidpy`:

- [spidev](https://pypi.org/project/spidev/)
- [gpiod](https://pypi.org/project/gpiod/)
- [time](https://docs.python.org/3/library/time.html)
- [logging](https://docs.python.org/3/library/logging.html)

These libraries are mandatory for the proper functioning of `rfidpy`.

## Installation
To install rfidpy, you can use the following command:
```pip install rfidpy ```

## Sample Program

Here's a simple example of how to use the `rfidpy` library in a Python program:

```python
from rfidpy import SimpleMFRC522

reader = SimpleMFRC522()

while True:
    id, text = reader.read()
    print(id)
```
## Run program
```python3 test.py```



            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "rfidpy",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "rfid,raspberry-pi,mfrc522,pi5,python",
    "author": "M.Karthickraja",
    "author_email": "karthickrajam8100@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/4b/48/1dc20fabfb0b1290eece2a608aad8811c7e7599176e1ac997ca8c7b4827d/rfidpy-0.3.tar.gz",
    "platform": null,
    "description": "# rfidpy\r\n\r\nThe `rfidpy` library is designed to facilitate the interface between Raspberry Pi 5 and RFID technology.\r\n\r\n## Usage\r\nRaspberry pi 5 interface with RFID (MFRC522) reader.\r\n\r\n## Requirements\r\n\r\nMake sure to install the following libraries before using `rfidpy`:\r\n\r\n- [spidev](https://pypi.org/project/spidev/)\r\n- [gpiod](https://pypi.org/project/gpiod/)\r\n- [time](https://docs.python.org/3/library/time.html)\r\n- [logging](https://docs.python.org/3/library/logging.html)\r\n\r\nThese libraries are mandatory for the proper functioning of `rfidpy`.\r\n\r\n## Installation\r\nTo install rfidpy, you can use the following command:\r\n```pip install rfidpy ```\r\n\r\n## Sample Program\r\n\r\nHere's a simple example of how to use the `rfidpy` library in a Python program:\r\n\r\n```python\r\nfrom rfidpy import SimpleMFRC522\r\n\r\nreader = SimpleMFRC522()\r\n\r\nwhile True:\r\n    id, text = reader.read()\r\n    print(id)\r\n```\r\n## Run program\r\n```python3 test.py```\r\n\r\n\r\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Raspberry pi 5 interface with RFID(MFR522)",
    "version": "0.3",
    "project_urls": null,
    "split_keywords": [
        "rfid",
        "raspberry-pi",
        "mfrc522",
        "pi5",
        "python"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a27e629a40f7f475655f8f06475b83f5bb7c7dd875b4fedb5e558faee2c58d14",
                "md5": "2a23f88c239ec53627b5ced783c2d45e",
                "sha256": "60c8e5d7921f131418ed6047ff52bc5fad1d00a53891516d801bbfd3b18c2d80"
            },
            "downloads": -1,
            "filename": "rfidpy-0.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "2a23f88c239ec53627b5ced783c2d45e",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 6911,
            "upload_time": "2024-01-18T12:57:49",
            "upload_time_iso_8601": "2024-01-18T12:57:49.499684Z",
            "url": "https://files.pythonhosted.org/packages/a2/7e/629a40f7f475655f8f06475b83f5bb7c7dd875b4fedb5e558faee2c58d14/rfidpy-0.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4b481dc20fabfb0b1290eece2a608aad8811c7e7599176e1ac997ca8c7b4827d",
                "md5": "c83430584d23d9271f7811dc65a8d369",
                "sha256": "9f13d00d3b4ed9b273151fd9bade86c188c4de82cf8003c4085eccbaac89ffc9"
            },
            "downloads": -1,
            "filename": "rfidpy-0.3.tar.gz",
            "has_sig": false,
            "md5_digest": "c83430584d23d9271f7811dc65a8d369",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 6164,
            "upload_time": "2024-01-18T12:57:52",
            "upload_time_iso_8601": "2024-01-18T12:57:52.670342Z",
            "url": "https://files.pythonhosted.org/packages/4b/48/1dc20fabfb0b1290eece2a608aad8811c7e7599176e1ac997ca8c7b4827d/rfidpy-0.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-18 12:57:52",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "rfidpy"
}
        
Elapsed time: 0.16619s