pyrto


Namepyrto JSON
Version 0.1.0 PyPI version JSON
download
home_pagehttps://github.com/shubhamshnd/pyrto
SummaryA package to fetch vehicle details and images based on license plate numbers
upload_time2024-08-23 04:55:59
maintainerNone
docs_urlNone
authorShubham Shinde
requires_python>=3.6
licenseNone
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # PyRTO

PyRTO is a Python package that allows you to fetch vehicle details and images based on license plate numbers.

## Installation

You can install the package using pip:

```
pip install pyrto
```

## Usage

You can use PyRTO either as a Python package or via command line.

### As a Python package:

```python
from pyrto import fetch_vehicle_details, fetch_vehicle_image

license_plate = "MH46CE6708"

# Fetch details
details = fetch_vehicle_details(license_plate)
if details:
    print(details)

# Fetch image
image = fetch_vehicle_image(license_plate)
if image:
    image.show()
```

### Via command line:

To fetch vehicle details:
```
pyrto -lp MH46CE6708
```

To fetch and display the vehicle image:
```
pyrto -img MH46CE6708
```

## License

This project is licensed under the MIT License.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/shubhamshnd/pyrto",
    "name": "pyrto",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": null,
    "keywords": null,
    "author": "Shubham Shinde",
    "author_email": "shubhamshindesunil@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/8e/1a/4119643743c3313c1b59f22aac51029783317cc28e4bf01e21c7792e1dc2/pyrto-0.1.0.tar.gz",
    "platform": null,
    "description": "# PyRTO\r\n\r\nPyRTO is a Python package that allows you to fetch vehicle details and images based on license plate numbers.\r\n\r\n## Installation\r\n\r\nYou can install the package using pip:\r\n\r\n```\r\npip install pyrto\r\n```\r\n\r\n## Usage\r\n\r\nYou can use PyRTO either as a Python package or via command line.\r\n\r\n### As a Python package:\r\n\r\n```python\r\nfrom pyrto import fetch_vehicle_details, fetch_vehicle_image\r\n\r\nlicense_plate = \"MH46CE6708\"\r\n\r\n# Fetch details\r\ndetails = fetch_vehicle_details(license_plate)\r\nif details:\r\n    print(details)\r\n\r\n# Fetch image\r\nimage = fetch_vehicle_image(license_plate)\r\nif image:\r\n    image.show()\r\n```\r\n\r\n### Via command line:\r\n\r\nTo fetch vehicle details:\r\n```\r\npyrto -lp MH46CE6708\r\n```\r\n\r\nTo fetch and display the vehicle image:\r\n```\r\npyrto -img MH46CE6708\r\n```\r\n\r\n## License\r\n\r\nThis project is licensed under the MIT License.\r\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "A package to fetch vehicle details and images based on license plate numbers",
    "version": "0.1.0",
    "project_urls": {
        "Homepage": "https://github.com/shubhamshnd/pyrto"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "02aa7808b828604a850b789790dc01048889e435704057dfc49ed980f97c36a3",
                "md5": "cc7c5668cd16373b9e997bd6b646491b",
                "sha256": "c1acf952818c3edf632bfa312ecdb07c81db0e47efa4eb7e1e343e64ca132ded"
            },
            "downloads": -1,
            "filename": "pyrto-0.1.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "cc7c5668cd16373b9e997bd6b646491b",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.6",
            "size": 3782,
            "upload_time": "2024-08-23T04:55:57",
            "upload_time_iso_8601": "2024-08-23T04:55:57.900967Z",
            "url": "https://files.pythonhosted.org/packages/02/aa/7808b828604a850b789790dc01048889e435704057dfc49ed980f97c36a3/pyrto-0.1.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8e1a4119643743c3313c1b59f22aac51029783317cc28e4bf01e21c7792e1dc2",
                "md5": "a162162b18abca05bb8630e9c5f1da22",
                "sha256": "5a0c9bea0763a5abf8e07760331308f24e5cb469432458bc02bbe1b5a8b8c518"
            },
            "downloads": -1,
            "filename": "pyrto-0.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "a162162b18abca05bb8630e9c5f1da22",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 3176,
            "upload_time": "2024-08-23T04:55:59",
            "upload_time_iso_8601": "2024-08-23T04:55:59.513286Z",
            "url": "https://files.pythonhosted.org/packages/8e/1a/4119643743c3313c1b59f22aac51029783317cc28e4bf01e21c7792e1dc2/pyrto-0.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-08-23 04:55:59",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "shubhamshnd",
    "github_project": "pyrto",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "pyrto"
}
        
Elapsed time: 0.32251s