![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Python (>= 3.6) library for parsing RFC 8288 <https://tools.ietf.org/html/rfc8288>
__ HTTP Link headers.
Python 2 is not supported <https://github.com/joernheissler/httplink/pull/2>
__.
.. code-block:: python3
from httplink import parse_link_header
result = parse_link_header('''
<https://example.com/foo/index.html>; rel=index;
foo*=UTF-8'en'b%c3%a5r, </path#frag>;rel="what ever"
''')
## Target URL:
print(result['index'].target)
# https://example.com/foo/index.html
## Set of link relations:
print(result['index'].rel)
# {'index'}
## Decoded attribute value:
print(result['index']['foo'])
# bår
## Raw undecoded attributes:
print(result['index'].attributes)
# [('rel', 'index'), ('foo*', "UTF-8'en'b%c3%a5r")]
## Iterate over all links:
for link in result.links:
print(link.rel, link.target)
# {'index'} https://example.com/foo/index.html
# {'ever', 'what'} /path#frag
Multiple Link headers can be parsed at the same time if you concatenate them with ,
.
Redundant white space and comma delimiters are ignored.
["key"]
-access is always case-insensitive.
FAQs
Library for parsing RFC 8288 "Link" HTTP headers
We found that httplink demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.