{"id":16008506,"url":"https://github.com/jimbobbennett/circuitpython_parse","last_synced_at":"2025-08-18T12:32:11.183Z","repository":{"id":55913911,"uuid":"252354453","full_name":"jimbobbennett/CircuitPython_Parse","owner":"jimbobbennett","description":"UrlParse library for CircuitPython","archived":false,"fork":false,"pushed_at":"2020-12-07T17:25:02.000Z","size":132,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-12-13T14:40:17.225Z","etag":null,"topics":["circuitpython"],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jimbobbennett.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-04-02T04:23:15.000Z","updated_at":"2024-12-06T13:38:47.000Z","dependencies_parsed_at":"2022-08-15T09:20:26.272Z","dependency_job_id":null,"html_url":"https://github.com/jimbobbennett/CircuitPython_Parse","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jimbobbennett%2FCircuitPython_Parse","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jimbobbennett%2FCircuitPython_Parse/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jimbobbennett%2FCircuitPython_Parse/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jimbobbennett%2FCircuitPython_Parse/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jimbobbennett","download_url":"https://codeload.github.com/jimbobbennett/CircuitPython_Parse/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":230231531,"owners_count":18193951,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["circuitpython"],"created_at":"2024-10-08T12:42:58.379Z","updated_at":"2024-12-18T07:21:27.330Z","avatar_url":"https://github.com/jimbobbennett.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"Introduction\n============\n\n.. image:: https://readthedocs.org/projects/circuitpython-circuitpython-parse/badge/?version=latest\n    :target: https://circuitpython.readthedocs.io/projects/parse/en/latest/\n    :alt: Documentation Status\n\n.. image:: https://img.shields.io/discord/327254708534116352.svg\n    :target: https://adafru.it/discord\n    :alt: Discord\n\n.. image:: https://github.com/jimbobbennett/CircuitPython_Parse/workflows/Build%20CI/badge.svg\n    :target: https://github.com/jimbobbennett/Circuitpython_CircuitPython_Parse/actions\n    :alt: Build Status\n\n.. image:: https://img.shields.io/badge/code%20style-black-000000.svg\n    :target: https://github.com/psf/black\n    :alt: Code Style: Black\n\nParse (absolute and relative) URLs.\n\nThis code is taken from the `CPython Parse library \u003chttps://github.com/python/cpython/blob/master/Lib/urllib/parse.py\u003e`_, and tweaked to work under CircuitPython.\n\nDependencies\n=============\nThis driver depends on:\n\n* `Adafruit CircuitPython \u003chttps://github.com/adafruit/circuitpython\u003e`_\n\nPlease ensure all dependencies are available on the CircuitPython filesystem.\nThis is easily achieved by downloading\n`the Adafruit library and driver bundle \u003chttps://circuitpython.org/libraries\u003e`_.\n\nInstalling from PyPI\n=====================\n.. note:: This library is not available on PyPI yet. Install documentation is included\n   as a standard element. Stay tuned for PyPI availability!\n\nOn supported GNU/Linux systems like the Raspberry Pi, you can install the driver locally `from\nPyPI \u003chttps://pypi.org/project/adafruit-circuitpython-parse/\u003e`_. To install for current user:\n\n.. code-block:: shell\n\n    pip3 install circuitpython-parse\n\nTo install system-wide (this may be required in some cases):\n\n.. code-block:: shell\n\n    sudo pip3 install circuitpython-parse\n\nTo install in a virtual environment in your current project:\n\n.. code-block:: shell\n\n    mkdir project-name \u0026\u0026 cd project-name\n    python3 -m venv .env\n    source .env/bin/activate\n    pip3 install circuitpython-parse\n\nUsage Example\n=============\n\nParse a URL.\n\n.. code-block:: python\n\n    url = \"https://docs.microsoft.com/Learn?WT.mc_id=academic-0000-jabenn\"\n\n    scheme, netloc, path, params, query, fragment = parse.urlparse(url)\n\n    print(\"Scheme\", scheme)\n    print(\"Netloc\", netloc)\n    print(\"Path\", path)\n    print(\"Params\", params)\n    print(\"Query\", query)\n    print(\"Fragment\", fragment)\n\nContributing\n============\n\nContributions are welcome! Please read our `Code of Conduct\n\u003chttps://github.com/jimbobbennett/CircuitPython_Parse/blob/master/CODE_OF_CONDUCT.md\u003e`_\nbefore contributing to help this project stay welcoming.\n\nDocumentation\n=============\n\nFor information on building library documentation, please check out `this guide \u003chttps://learn.adafruit.com/creating-and-sharing-a-circuitpython-library/sharing-our-docs-on-readthedocs#sphinx-5-1\u003e`_.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjimbobbennett%2Fcircuitpython_parse","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjimbobbennett%2Fcircuitpython_parse","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjimbobbennett%2Fcircuitpython_parse/lists"}