<a href="https://opensource.newrelic.com/oss-category/#community-project"><picture>
<source media="(prefers-color-scheme: dark)" srcset="https://github.com/newrelic/opensource-website/raw/main/src/images/categories/dark/Community_Plus.png">
<source media="(prefers-color-scheme: light)" srcset="https://github.com/newrelic/opensource-website/raw/main/src/images/categories/Community_Plus.png">
<img alt="New Relic Open Source community project banner." src="https://github.com/newrelic/opensource-website/raw/main/src/images/categories/Community_Plus.png">
</picture></a>
# New Relic Python Agent
[](https://github.com/newrelic/newrelic-python-agent/releases)
[](https://pypi.python.org/pypi/newrelic)
[](https://pypi.python.org/pypi/newrelic)
[](https://github.com/newrelic/newrelic-python-agent/actions/workflows/tests.yml)
[](https://github.com/astral-sh/ruff)
[](https://github.com/newrelic/newrelic-python-agent/actions/workflows/mega-linter.yml)
[](https://codecov.io/gh/newrelic/newrelic-python-agent)
[](https://github.com/aquasecurity/trivy)
The `newrelic` package instruments your application for performance
monitoring and advanced performance analytics with [New
Relic](http://newrelic.com).
Pinpoint and solve Python application performance issues down to the
line of code. [New Relic
APM](http://newrelic.com/application-monitoring) is the only tool
you\'ll need to see everything in your Python application, from the end
user experience to server monitoring. Trace problems down to slow
database queries, slow 3rd party APIs and web services, caching layers,
and more. Monitor your app in a production environment and make sure
your app can stand a big spike in traffic by running scalability
reports.
Visit [Python Application Performance Monitoring with New
Relic](http://newrelic.com/python) to learn more.
## Usage
This package can be installed via pip:
```bash
pip install newrelic
```
(These instructions can also be found online: [Python Agent Installation Guide](https://docs.newrelic.com/install/python/).)
1. Generate the agent configuration file with your [license
key](https://docs.newrelic.com/docs/apis/intro-apis/new-relic-api-keys/).
```bash
newrelic-admin generate-config $YOUR_LICENSE_KEY newrelic.ini
```
2. Validate the agent configuration and test the connection to our data
collector service.
```bash
newrelic-admin validate-config newrelic.ini
```
3. Integrate the agent with your web application.
If you control how your web application or WSGI server is started,
the recommended way to integrate the agent is to use the
`newrelic-admin` [wrapper
script](https://docs.newrelic.com/docs/agents/python-agent/installation-configuration/python-agent-integration#wrapper-script).
Modify the existing startup script, prefixing the existing startup
command and options with `newrelic-admin run-program`.
Also, set the **NEW_RELIC_CONFIG_FILE** environment
variable to the name of the configuration file you created above:
```bash
NEW_RELIC_CONFIG_FILE=newrelic.ini newrelic-admin run-program $YOUR_COMMAND_OPTIONS
```
Examples:
```bash
NEW_RELIC_CONFIG_FILE=newrelic.ini newrelic-admin run-program gunicorn -c config.py test_site.wsgi
$ NEW_RELIC_CONFIG_FILE=newrelic.ini newrelic-admin run-program uwsgi uwsgi_config.ini
```
Alternatively, you can also [manually integrate the
agent](https://docs.newrelic.com/docs/agents/python-agent/installation-configuration/python-agent-integration#manual-integration)
by adding the following lines at the very top of your python WSGI
script file. (This is useful if you\'re using `mod_wsgi`.)
``` python
import newrelic.agent
newrelic.agent.initialize('/path/to/newrelic.ini')
```
4. Start or restart your Python web application or WSGI server.
5. Done! Check your application in the [New Relic
UI](https://rpm.newrelic.com) to see the real time statistics
generated from your application.
Additional resources may be found here:
- [New Relic for Python
Documentation](https://docs.newrelic.com/docs/agents/python-agent)
- [New Relic for Python Release
Notes](https://docs.newrelic.com/docs/release-notes/agent-release-notes/python-release-notes)
## Support
Should you need assistance with New Relic products, you are in good
hands with several support diagnostic tools and support channels.
This [troubleshooting
framework](https://forum.newrelic.com/s/hubtopic/aAX8W0000008bSoWAI/troubleshooting-frameworks)
steps you through common troubleshooting questions.
New Relic offers NRDiag, [a client-side diagnostic
utility](https://docs.newrelic.com/docs/using-new-relic/cross-product-functions/troubleshooting/new-relic-diagnostics)
that automatically detects common problems with New Relic agents. If
NRDiag detects a problem, it suggests troubleshooting steps. NRDiag can
also automatically attach troubleshooting data to a New Relic Support
ticket.
If the issue has been confirmed as a bug or is a Feature request, please
file a Github issue.
### Support Channels
- [New Relic
Documentation](https://docs.newrelic.com/docs/agents/python-agent):
Comprehensive guidance for using our platform
- [New Relic
Community](https://discuss.newrelic.com/c/support-products-agents/python-agent):
The best place to engage in troubleshooting questions
- [New Relic Developer](https://developer.newrelic.com/): Resources
for building a custom observability applications
- [New Relic University](https://learn.newrelic.com/): <!-- markdown-link-check-disable-line -->
A range of online training for New Relic users of every level
- [New Relic Technical Support](https://support.newrelic.com/)
24/7/365 ticketed support. Read more about our [Technical Support
Offerings](https://docs.newrelic.com/docs/licenses/license-information/general-usage-licenses/support-plan).
## Privacy
At New Relic we take your privacy and the security of your information
seriously, and are committed to protecting your information. We must
emphasize the importance of not sharing personal data in public forums,
and ask all users to scrub logs and diagnostic information for sensitive
information, whether personal, proprietary, or otherwise.
We define "Personal Data" as any information relating to an identified
or identifiable individual, including, for example, your name, phone
number, post code or zip code, Device ID, IP address and email address.
Please review [New Relic's General Data Privacy
Notice](https://newrelic.com/termsandconditions/privacy) for more
information.
## Contribute
We encourage your contributions to improve the New Relic Python Agent! Keep in mind that when you submit your pull request, you'll need to sign the CLA via the click-through using CLA-Assistant. You only have to sign the CLA one time per project.
If you have any questions, or to execute our corporate CLA (which is required if your contribution is on behalf of a company), drop us an email at <opensource@newrelic.com>.
### A note about vulnerabilities
As noted in our [security policy](https://github.com/newrelic/newrelic-python-agent/security/policy), New Relic is committed to the privacy and security of our customers and their data. We believe that providing coordinated disclosure by security researchers and engaging with the security community are important means to achieve our security goals.
If you believe you have found a security vulnerability in this project or any of New Relic's products or websites, we welcome and greatly appreciate you reporting it to New Relic through [our bug bounty program](https://docs.newrelic.com/docs/security/security-privacy/information-security/report-security-vulnerabilities/).
If you would like to contribute to this project, review [these guidelines](./CONTRIBUTING.md).
To all contributors, we thank you! Without your contribution, this project would not be what it is today. We also host a community project page dedicated to the [New Relic Python Agent](https://opensource.newrelic.com/projects/newrelic/newrelic-python-agent).
## License
The New Relic Python Agent is licensed under the [Apache 2.0](http://apache.org/licenses/LICENSE-2.0.txt) License. The New Relic
Python Agent also uses source code from third-party libraries. You can
find full details on which libraries are used and the terms under which
they are licensed in the third-party notices document.
Raw data
{
"_id": null,
"home_page": "https://docs.newrelic.com/docs/apm/agents/python-agent/",
"name": "newrelic",
"maintainer": "New Relic",
"docs_url": null,
"requires_python": ">=3.7",
"maintainer_email": "support@newrelic.com",
"keywords": null,
"author": "New Relic",
"author_email": "support@newrelic.com",
"download_url": "https://files.pythonhosted.org/packages/d4/71/07c41fd5e8c94e95216b000d00c3cf735f769cb406c0f33c6ff83b7b7418/newrelic-10.16.0.tar.gz",
"platform": null,
"description": "<a href=\"https://opensource.newrelic.com/oss-category/#community-project\"><picture>\n<source media=\"(prefers-color-scheme: dark)\" srcset=\"https://github.com/newrelic/opensource-website/raw/main/src/images/categories/dark/Community_Plus.png\">\n<source media=\"(prefers-color-scheme: light)\" srcset=\"https://github.com/newrelic/opensource-website/raw/main/src/images/categories/Community_Plus.png\">\n<img alt=\"New Relic Open Source community project banner.\" src=\"https://github.com/newrelic/opensource-website/raw/main/src/images/categories/Community_Plus.png\">\n</picture></a>\n\n# New Relic Python Agent\n\n[](https://github.com/newrelic/newrelic-python-agent/releases)\n[](https://pypi.python.org/pypi/newrelic)\n[](https://pypi.python.org/pypi/newrelic)\n[](https://github.com/newrelic/newrelic-python-agent/actions/workflows/tests.yml)\n[](https://github.com/astral-sh/ruff)\n[](https://github.com/newrelic/newrelic-python-agent/actions/workflows/mega-linter.yml)\n[](https://codecov.io/gh/newrelic/newrelic-python-agent)\n[](https://github.com/aquasecurity/trivy)\n\nThe `newrelic` package instruments your application for performance\nmonitoring and advanced performance analytics with [New\nRelic](http://newrelic.com).\n\nPinpoint and solve Python application performance issues down to the\nline of code. [New Relic\nAPM](http://newrelic.com/application-monitoring) is the only tool\nyou\\'ll need to see everything in your Python application, from the end\nuser experience to server monitoring. Trace problems down to slow\ndatabase queries, slow 3rd party APIs and web services, caching layers,\nand more. Monitor your app in a production environment and make sure\nyour app can stand a big spike in traffic by running scalability\nreports.\n\nVisit [Python Application Performance Monitoring with New\nRelic](http://newrelic.com/python) to learn more.\n\n## Usage\n\nThis package can be installed via pip:\n\n```bash\npip install newrelic\n```\n\n(These instructions can also be found online: [Python Agent Installation Guide](https://docs.newrelic.com/install/python/).)\n\n1. Generate the agent configuration file with your [license\n key](https://docs.newrelic.com/docs/apis/intro-apis/new-relic-api-keys/).\n\n ```bash\n newrelic-admin generate-config $YOUR_LICENSE_KEY newrelic.ini\n ```\n\n2. Validate the agent configuration and test the connection to our data\n collector service.\n\n ```bash\n newrelic-admin validate-config newrelic.ini\n ```\n\n3. Integrate the agent with your web application.\n\n If you control how your web application or WSGI server is started,\n the recommended way to integrate the agent is to use the\n `newrelic-admin` [wrapper\n script](https://docs.newrelic.com/docs/agents/python-agent/installation-configuration/python-agent-integration#wrapper-script).\n Modify the existing startup script, prefixing the existing startup\n command and options with `newrelic-admin run-program`.\n\n Also, set the **NEW_RELIC_CONFIG_FILE** environment\n variable to the name of the configuration file you created above:\n\n ```bash\n NEW_RELIC_CONFIG_FILE=newrelic.ini newrelic-admin run-program $YOUR_COMMAND_OPTIONS\n ```\n\n Examples:\n\n ```bash\n NEW_RELIC_CONFIG_FILE=newrelic.ini newrelic-admin run-program gunicorn -c config.py test_site.wsgi\n\n $ NEW_RELIC_CONFIG_FILE=newrelic.ini newrelic-admin run-program uwsgi uwsgi_config.ini\n ```\n\n Alternatively, you can also [manually integrate the\n agent](https://docs.newrelic.com/docs/agents/python-agent/installation-configuration/python-agent-integration#manual-integration)\n by adding the following lines at the very top of your python WSGI\n script file. (This is useful if you\\'re using `mod_wsgi`.)\n\n ``` python\n import newrelic.agent\n newrelic.agent.initialize('/path/to/newrelic.ini')\n ```\n\n4. Start or restart your Python web application or WSGI server.\n\n5. Done! Check your application in the [New Relic\n UI](https://rpm.newrelic.com) to see the real time statistics\n generated from your application.\n\nAdditional resources may be found here:\n\n- [New Relic for Python\n Documentation](https://docs.newrelic.com/docs/agents/python-agent)\n- [New Relic for Python Release\n Notes](https://docs.newrelic.com/docs/release-notes/agent-release-notes/python-release-notes)\n\n## Support\n\nShould you need assistance with New Relic products, you are in good\nhands with several support diagnostic tools and support channels.\n\nThis [troubleshooting\nframework](https://forum.newrelic.com/s/hubtopic/aAX8W0000008bSoWAI/troubleshooting-frameworks)\nsteps you through common troubleshooting questions.\n\nNew Relic offers NRDiag, [a client-side diagnostic\nutility](https://docs.newrelic.com/docs/using-new-relic/cross-product-functions/troubleshooting/new-relic-diagnostics)\nthat automatically detects common problems with New Relic agents. If\nNRDiag detects a problem, it suggests troubleshooting steps. NRDiag can\nalso automatically attach troubleshooting data to a New Relic Support\nticket.\n\nIf the issue has been confirmed as a bug or is a Feature request, please\nfile a Github issue.\n\n### Support Channels\n\n- [New Relic\n Documentation](https://docs.newrelic.com/docs/agents/python-agent):\n Comprehensive guidance for using our platform\n- [New Relic\n Community](https://discuss.newrelic.com/c/support-products-agents/python-agent):\n The best place to engage in troubleshooting questions\n- [New Relic Developer](https://developer.newrelic.com/): Resources\n for building a custom observability applications\n- [New Relic University](https://learn.newrelic.com/): <!-- markdown-link-check-disable-line -->\n A range of online training for New Relic users of every level\n- [New Relic Technical Support](https://support.newrelic.com/)\n 24/7/365 ticketed support. Read more about our [Technical Support\n Offerings](https://docs.newrelic.com/docs/licenses/license-information/general-usage-licenses/support-plan).\n\n## Privacy\n\nAt New Relic we take your privacy and the security of your information\nseriously, and are committed to protecting your information. We must\nemphasize the importance of not sharing personal data in public forums,\nand ask all users to scrub logs and diagnostic information for sensitive\ninformation, whether personal, proprietary, or otherwise.\n\nWe define \"Personal Data\" as any information relating to an identified\nor identifiable individual, including, for example, your name, phone\nnumber, post code or zip code, Device ID, IP address and email address.\n\nPlease review [New Relic's General Data Privacy\nNotice](https://newrelic.com/termsandconditions/privacy) for more\ninformation.\n\n## Contribute\n\nWe encourage your contributions to improve the New Relic Python Agent! Keep in mind that when you submit your pull request, you'll need to sign the CLA via the click-through using CLA-Assistant. You only have to sign the CLA one time per project.\n\nIf you have any questions, or to execute our corporate CLA (which is required if your contribution is on behalf of a company), drop us an email at <opensource@newrelic.com>.\n\n### A note about vulnerabilities\n\nAs noted in our [security policy](https://github.com/newrelic/newrelic-python-agent/security/policy), New Relic is committed to the privacy and security of our customers and their data. We believe that providing coordinated disclosure by security researchers and engaging with the security community are important means to achieve our security goals.\n\nIf you believe you have found a security vulnerability in this project or any of New Relic's products or websites, we welcome and greatly appreciate you reporting it to New Relic through [our bug bounty program](https://docs.newrelic.com/docs/security/security-privacy/information-security/report-security-vulnerabilities/).\n\nIf you would like to contribute to this project, review [these guidelines](./CONTRIBUTING.md).\n\nTo all contributors, we thank you! Without your contribution, this project would not be what it is today. We also host a community project page dedicated to the [New Relic Python Agent](https://opensource.newrelic.com/projects/newrelic/newrelic-python-agent).\n\n## License\nThe New Relic Python Agent is licensed under the [Apache 2.0](http://apache.org/licenses/LICENSE-2.0.txt) License. The New Relic\nPython Agent also uses source code from third-party libraries. You can\nfind full details on which libraries are used and the terms under which\nthey are licensed in the third-party notices document.\n",
"bugtrack_url": null,
"license": "Apache-2.0",
"summary": "New Relic Python Agent",
"version": "10.16.0",
"project_urls": {
"Homepage": "https://docs.newrelic.com/docs/apm/agents/python-agent/",
"Source": "https://github.com/newrelic/newrelic-python-agent"
},
"split_keywords": [],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "5e73cd9658baa52c9a7b3cc4ee58502efe7c6291c0de067e49da09624e9abd21",
"md5": "ecd86c575a41d6dc6b3b3c0cc13d71f4",
"sha256": "833992875fda7aa3f1db9e9b8782a29d71094b7e6c0e7bcd7113534a652ba74d"
},
"downloads": -1,
"filename": "newrelic-10.16.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "ecd86c575a41d6dc6b3b3c0cc13d71f4",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 852005,
"upload_time": "2025-08-14T22:23:06",
"upload_time_iso_8601": "2025-08-14T22:23:06.869790Z",
"url": "https://files.pythonhosted.org/packages/5e/73/cd9658baa52c9a7b3cc4ee58502efe7c6291c0de067e49da09624e9abd21/newrelic-10.16.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "142b39b319f5a790e7a9523127d3c3fbeb8b5045797becf5b42cb1f04fc98e81",
"md5": "a3a520e12cb675ea9c5c4a0b50d48233",
"sha256": "287e8fbab1c10e5fe2e20c81aec3fece01bf613ebf4985b6e36360fce2f5cd80"
},
"downloads": -1,
"filename": "newrelic-10.16.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "a3a520e12cb675ea9c5c4a0b50d48233",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 850515,
"upload_time": "2025-08-14T22:23:09",
"upload_time_iso_8601": "2025-08-14T22:23:09.074733Z",
"url": "https://files.pythonhosted.org/packages/14/2b/39b319f5a790e7a9523127d3c3fbeb8b5045797becf5b42cb1f04fc98e81/newrelic-10.16.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c23296b58bfd0e358d0c18e1d1c4262950aef22eb004be533ec9fca3cae74b7f",
"md5": "346f8fdf7563d113e1f8589e46d65610",
"sha256": "e4b761b2a45bb5a76f22fa8d780e089a0dc6c61315441456d487f752b84da7d3"
},
"downloads": -1,
"filename": "newrelic-10.16.0-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "346f8fdf7563d113e1f8589e46d65610",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 850250,
"upload_time": "2025-08-14T22:23:10",
"upload_time_iso_8601": "2025-08-14T22:23:10.435919Z",
"url": "https://files.pythonhosted.org/packages/c2/32/96b58bfd0e358d0c18e1d1c4262950aef22eb004be533ec9fca3cae74b7f/newrelic-10.16.0-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6bb6dbb5a632dee1473f7682aaa77caa02e40cb1d6952d373d7555242ec31463",
"md5": "8d8374783da7ff6de59dff3f899a60e0",
"sha256": "5176be5123f987d6f9c12ebd189dabd739bba809225feac8c4ee5f9176580a0a"
},
"downloads": -1,
"filename": "newrelic-10.16.0-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "8d8374783da7ff6de59dff3f899a60e0",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 848753,
"upload_time": "2025-08-14T22:23:11",
"upload_time_iso_8601": "2025-08-14T22:23:11.747396Z",
"url": "https://files.pythonhosted.org/packages/6b/b6/dbb5a632dee1473f7682aaa77caa02e40cb1d6952d373d7555242ec31463/newrelic-10.16.0-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "36da7dd1c57624dfca970586de49dd71800ff0e78592cdeeaf7e7ef38f2d926c",
"md5": "c413f76789fcfd483cc54f55b2917576",
"sha256": "9ddbf08714dc5d102dd5b4db87da08981c6390cb838f972387839f6031aad11c"
},
"downloads": -1,
"filename": "newrelic-10.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "c413f76789fcfd483cc54f55b2917576",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 852518,
"upload_time": "2025-08-14T22:23:13",
"upload_time_iso_8601": "2025-08-14T22:23:13.084369Z",
"url": "https://files.pythonhosted.org/packages/36/da/7dd1c57624dfca970586de49dd71800ff0e78592cdeeaf7e7ef38f2d926c/newrelic-10.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f5ea0ff30ef9d88c8ced4b5fca77b5ed373ad723cbac303f70383961857b07ce",
"md5": "af121ac7cd0365d36479f3896150a130",
"sha256": "952cc8f94bbb43a07f0f2982a251e6c973a2bb5db0febc5534586171a09a5619"
},
"downloads": -1,
"filename": "newrelic-10.16.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "af121ac7cd0365d36479f3896150a130",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 851025,
"upload_time": "2025-08-14T22:23:14",
"upload_time_iso_8601": "2025-08-14T22:23:14.450209Z",
"url": "https://files.pythonhosted.org/packages/f5/ea/0ff30ef9d88c8ced4b5fca77b5ed373ad723cbac303f70383961857b07ce/newrelic-10.16.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0459072e1648ffcc01ab82aef39c4d45851adafad529bd9547bfa926dd633fee",
"md5": "3a569f1cfb52a168b3d30ad25dbf5248",
"sha256": "4beec39a1e290f808e35041b7728d61105737cddec9525d4e7dc2cf107c8904e"
},
"downloads": -1,
"filename": "newrelic-10.16.0-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "3a569f1cfb52a168b3d30ad25dbf5248",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 850828,
"upload_time": "2025-08-14T22:23:16",
"upload_time_iso_8601": "2025-08-14T22:23:16.049185Z",
"url": "https://files.pythonhosted.org/packages/04/59/072e1648ffcc01ab82aef39c4d45851adafad529bd9547bfa926dd633fee/newrelic-10.16.0-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0fbacd53b9dc148813cb6d696f0496bae8f45ed1b904245f687092942a2bdebd",
"md5": "d93eaa245687aa453ebff34b5bc69205",
"sha256": "020e384fbb8543e5c54e0cc900b170876faa03fe27d00ba49b7a6ba6a2b0d5b4"
},
"downloads": -1,
"filename": "newrelic-10.16.0-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "d93eaa245687aa453ebff34b5bc69205",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 849321,
"upload_time": "2025-08-14T22:23:17",
"upload_time_iso_8601": "2025-08-14T22:23:17.536901Z",
"url": "https://files.pythonhosted.org/packages/0f/ba/cd53b9dc148813cb6d696f0496bae8f45ed1b904245f687092942a2bdebd/newrelic-10.16.0-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "be4bba14854270412686fdc331b1503b90554968e58d504297572bfc9cdaf3ad",
"md5": "5fdc77ed0789f49a8935d0ca55b81b92",
"sha256": "2f74301ed32ce625fb84c8bd0c079498dca603ff111d5baa2f59b6480ef7355b"
},
"downloads": -1,
"filename": "newrelic-10.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "5fdc77ed0789f49a8935d0ca55b81b92",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 858772,
"upload_time": "2025-08-14T22:23:19",
"upload_time_iso_8601": "2025-08-14T22:23:19.058398Z",
"url": "https://files.pythonhosted.org/packages/be/4b/ba14854270412686fdc331b1503b90554968e58d504297572bfc9cdaf3ad/newrelic-10.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9741de8f0be9e285371cee22a8399840141ffb34ffa5462d31c80c5d7a951ed5",
"md5": "a34a93d0e3e2fba33c9a5b16eea56c3a",
"sha256": "3efef3b10f02a086d9009a80b020db8f0b1db5072075779c9facd5d2fe3bb916"
},
"downloads": -1,
"filename": "newrelic-10.16.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "a34a93d0e3e2fba33c9a5b16eea56c3a",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 858430,
"upload_time": "2025-08-14T22:23:20",
"upload_time_iso_8601": "2025-08-14T22:23:20.658522Z",
"url": "https://files.pythonhosted.org/packages/97/41/de8f0be9e285371cee22a8399840141ffb34ffa5462d31c80c5d7a951ed5/newrelic-10.16.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "52742fc1e2d96029b57397eb3e2fae9f5e5840af3b98e896834b7a584f614b98",
"md5": "6737f673f309ca1f345f2e75ce67fe7a",
"sha256": "8328f621f3683b28156cfa8e1648a56b894480bf4c4953cde7e659b1480ae1e9"
},
"downloads": -1,
"filename": "newrelic-10.16.0-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "6737f673f309ca1f345f2e75ce67fe7a",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 856401,
"upload_time": "2025-08-14T22:23:21",
"upload_time_iso_8601": "2025-08-14T22:23:21.981299Z",
"url": "https://files.pythonhosted.org/packages/52/74/2fc1e2d96029b57397eb3e2fae9f5e5840af3b98e896834b7a584f614b98/newrelic-10.16.0-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2a42fb73714fbf105b0c96faea68d17149dfecaa0209a6354b6a6d67c77ef65f",
"md5": "dc32dc227af7d6e1cf919c8df6ea762e",
"sha256": "07f65faed0a9aa40695e6e6ce4c943ca9c9643fc848c2344bb26665a65893a80"
},
"downloads": -1,
"filename": "newrelic-10.16.0-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "dc32dc227af7d6e1cf919c8df6ea762e",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 856270,
"upload_time": "2025-08-14T22:23:23",
"upload_time_iso_8601": "2025-08-14T22:23:23.407390Z",
"url": "https://files.pythonhosted.org/packages/2a/42/fb73714fbf105b0c96faea68d17149dfecaa0209a6354b6a6d67c77ef65f/newrelic-10.16.0-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "766d47389d4a9390af2834f552d3bb7ed9b7c9ded30054409621e941ddbe1083",
"md5": "1d07d6e7c7b19d32b2dae3ca9f038959",
"sha256": "053e73518cf0b2af412490723d3fa8338dab6ed48b748c0b7a0288160d1c33e2"
},
"downloads": -1,
"filename": "newrelic-10.16.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "1d07d6e7c7b19d32b2dae3ca9f038959",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.7",
"size": 858759,
"upload_time": "2025-08-14T22:23:24",
"upload_time_iso_8601": "2025-08-14T22:23:24.957492Z",
"url": "https://files.pythonhosted.org/packages/76/6d/47389d4a9390af2834f552d3bb7ed9b7c9ded30054409621e941ddbe1083/newrelic-10.16.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b43e9e44b713450c89d9d9b0a2626059014ad6e6699992fd687aec4cacb54b35",
"md5": "667c0b699fea9ade70b2496a5a924b24",
"sha256": "8263ae16eb4745def12bace2e3e38e013e76d4e765333a77342b270702e3eaa9"
},
"downloads": -1,
"filename": "newrelic-10.16.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "667c0b699fea9ade70b2496a5a924b24",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.7",
"size": 858435,
"upload_time": "2025-08-14T22:23:26",
"upload_time_iso_8601": "2025-08-14T22:23:26.536884Z",
"url": "https://files.pythonhosted.org/packages/b4/3e/9e44b713450c89d9d9b0a2626059014ad6e6699992fd687aec4cacb54b35/newrelic-10.16.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "61a6660dfd715011e2fef4d8e5f91c8c040f4ac125bc3bdc644ae0e514cbe87c",
"md5": "1be44d9a929367183d710433501fe93e",
"sha256": "6e83e1341a72ac92118d1af40c2c3ba56069c589acceb1e89d236beab8d7891a"
},
"downloads": -1,
"filename": "newrelic-10.16.0-cp313-cp313-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "1be44d9a929367183d710433501fe93e",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.7",
"size": 856574,
"upload_time": "2025-08-14T22:23:28",
"upload_time_iso_8601": "2025-08-14T22:23:28.041961Z",
"url": "https://files.pythonhosted.org/packages/61/a6/660dfd715011e2fef4d8e5f91c8c040f4ac125bc3bdc644ae0e514cbe87c/newrelic-10.16.0-cp313-cp313-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "599a25935a1b999cef132a1597ca3686c028f5472e58d26bfe33876e8af38f4f",
"md5": "60e7d503f7c2741eb7fd83309675d3e1",
"sha256": "71950c5e1f26bf1ed563d3641da97f6bb209f80697675888ee12808d8ac69452"
},
"downloads": -1,
"filename": "newrelic-10.16.0-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "60e7d503f7c2741eb7fd83309675d3e1",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.7",
"size": 856448,
"upload_time": "2025-08-14T22:23:29",
"upload_time_iso_8601": "2025-08-14T22:23:29.483372Z",
"url": "https://files.pythonhosted.org/packages/59/9a/25935a1b999cef132a1597ca3686c028f5472e58d26bfe33876e8af38f4f/newrelic-10.16.0-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "34565eeea01023d5fdc405bad636eba0bbc13b6fde37a7fc924696c031222156",
"md5": "d2c03cfc7b439c8389160c61493d20c1",
"sha256": "6361b21416b529415208b551f9903a33c172489142df35c93fdad337c0309050"
},
"downloads": -1,
"filename": "newrelic-10.16.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "d2c03cfc7b439c8389160c61493d20c1",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 849570,
"upload_time": "2025-08-14T22:23:30",
"upload_time_iso_8601": "2025-08-14T22:23:30.788037Z",
"url": "https://files.pythonhosted.org/packages/34/56/5eeea01023d5fdc405bad636eba0bbc13b6fde37a7fc924696c031222156/newrelic-10.16.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bda03bc8030e6cbd406cf26197b32b80bd881722bfe368deec9befc0fc5169da",
"md5": "061e217f2a9634d9398ede3af890ea39",
"sha256": "a7555b252e06848b98c0a0616d5c3487ad58903a1f21114f947ab91c4fac772a"
},
"downloads": -1,
"filename": "newrelic-10.16.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "061e217f2a9634d9398ede3af890ea39",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 848251,
"upload_time": "2025-08-14T22:23:32",
"upload_time_iso_8601": "2025-08-14T22:23:32.074519Z",
"url": "https://files.pythonhosted.org/packages/bd/a0/3bc8030e6cbd406cf26197b32b80bd881722bfe368deec9befc0fc5169da/newrelic-10.16.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7f76c9230b129d369396096c1e4b80364f3f3418bfa45e2d511f3d6ab86a0ef7",
"md5": "f34f78d783265c13c07c5e62b860fcc3",
"sha256": "072e54f72d57ab9b7891209ab85b3839a494fa6f89b1674da5ca7848a4b5b1ad"
},
"downloads": -1,
"filename": "newrelic-10.16.0-cp37-cp37m-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "f34f78d783265c13c07c5e62b860fcc3",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 863970,
"upload_time": "2025-08-14T22:23:33",
"upload_time_iso_8601": "2025-08-14T22:23:33.342125Z",
"url": "https://files.pythonhosted.org/packages/7f/76/c9230b129d369396096c1e4b80364f3f3418bfa45e2d511f3d6ab86a0ef7/newrelic-10.16.0-cp37-cp37m-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "811a3fd6281f54199a5424a3db7bca1d4d9c97618e4caa59555ef9335d3ad3e4",
"md5": "1d2b363608d1542be972fd761fe06844",
"sha256": "a6dbd306b72b0b3c6477b4ccfdc6fc7d7e62b793631f7856684733aad405ef50"
},
"downloads": -1,
"filename": "newrelic-10.16.0-cp37-cp37m-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "1d2b363608d1542be972fd761fe06844",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 864193,
"upload_time": "2025-08-14T22:23:35",
"upload_time_iso_8601": "2025-08-14T22:23:35.034052Z",
"url": "https://files.pythonhosted.org/packages/81/1a/3fd6281f54199a5424a3db7bca1d4d9c97618e4caa59555ef9335d3ad3e4/newrelic-10.16.0-cp37-cp37m-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "621d0b1396d935cb11eac12a93473bb2196f883b34bda1b76753c2eaa780c5d8",
"md5": "6ee18e781fd73a4a951cfd2b7ce9b5ba",
"sha256": "a0ee00809ca2b85ae049f2f7d93248f6e30bc005a3a41931a26bdfdf5d4e752c"
},
"downloads": -1,
"filename": "newrelic-10.16.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "6ee18e781fd73a4a951cfd2b7ce9b5ba",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 855998,
"upload_time": "2025-08-14T22:23:36",
"upload_time_iso_8601": "2025-08-14T22:23:36.277058Z",
"url": "https://files.pythonhosted.org/packages/62/1d/0b1396d935cb11eac12a93473bb2196f883b34bda1b76753c2eaa780c5d8/newrelic-10.16.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f0bc8400a1f1087ec3269f91f9a96a5bb099e2fbe70ef3dc8dcaaf70ed9dbad8",
"md5": "340fa0257ffde4ad7cf04f651ced0509",
"sha256": "5fe5c2f72f56f9670fabe2889b70d3d239aae715bb97c2460929605ffa8742fb"
},
"downloads": -1,
"filename": "newrelic-10.16.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "340fa0257ffde4ad7cf04f651ced0509",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 854417,
"upload_time": "2025-08-14T22:23:37",
"upload_time_iso_8601": "2025-08-14T22:23:37.642450Z",
"url": "https://files.pythonhosted.org/packages/f0/bc/8400a1f1087ec3269f91f9a96a5bb099e2fbe70ef3dc8dcaaf70ed9dbad8/newrelic-10.16.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2ab102683560c48158cae6f3bb9bcaffb89f9b1dd3a829967b636a764b77f164",
"md5": "07d56ff169953d47cd4f7cb64d7b71a8",
"sha256": "a71c1034b47494179567341178f436804c6d33538fa25430580955725c847ef2"
},
"downloads": -1,
"filename": "newrelic-10.16.0-cp38-cp38-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "07d56ff169953d47cd4f7cb64d7b71a8",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 852625,
"upload_time": "2025-08-14T22:23:39",
"upload_time_iso_8601": "2025-08-14T22:23:39.094759Z",
"url": "https://files.pythonhosted.org/packages/2a/b1/02683560c48158cae6f3bb9bcaffb89f9b1dd3a829967b636a764b77f164/newrelic-10.16.0-cp38-cp38-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1b03eccb88b1cefb05ebc2fcab73e447c58a3b0a1f081fe83b6349b46fbbb5e6",
"md5": "61d7ad3466f39806e2b2345cb67da9d0",
"sha256": "caa7b9d026ec221bcfed35a6c3be65b7e9e0b50e68a1278ad5e38dab6d12d45f"
},
"downloads": -1,
"filename": "newrelic-10.16.0-cp38-cp38-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "61d7ad3466f39806e2b2345cb67da9d0",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 851310,
"upload_time": "2025-08-14T22:23:40",
"upload_time_iso_8601": "2025-08-14T22:23:40.759246Z",
"url": "https://files.pythonhosted.org/packages/1b/03/eccb88b1cefb05ebc2fcab73e447c58a3b0a1f081fe83b6349b46fbbb5e6/newrelic-10.16.0-cp38-cp38-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3efa19bbf69315270c4bf1267fda6650f17b9a8e66501a13782950c6e3973e3b",
"md5": "c0f00e2ae713a9eaaaecb59e378c89e7",
"sha256": "49a5f734847269ccba31962132fa570b49bcf04378d554aa6a871eda1a4abcf1"
},
"downloads": -1,
"filename": "newrelic-10.16.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "c0f00e2ae713a9eaaaecb59e378c89e7",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 851519,
"upload_time": "2025-08-14T22:23:42",
"upload_time_iso_8601": "2025-08-14T22:23:42.216835Z",
"url": "https://files.pythonhosted.org/packages/3e/fa/19bbf69315270c4bf1267fda6650f17b9a8e66501a13782950c6e3973e3b/newrelic-10.16.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6b05b6131467cdacad88f3fceea07121882c24c0a04cbcc4dd17c08714e37bd5",
"md5": "a31c96cd2c5bedfacfdaa0e503926aa3",
"sha256": "901212e07779fd437229b99fdc1f3d82509bf2d27afe77f80224409eeda51355"
},
"downloads": -1,
"filename": "newrelic-10.16.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "a31c96cd2c5bedfacfdaa0e503926aa3",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 850035,
"upload_time": "2025-08-14T22:23:43",
"upload_time_iso_8601": "2025-08-14T22:23:43.568307Z",
"url": "https://files.pythonhosted.org/packages/6b/05/b6131467cdacad88f3fceea07121882c24c0a04cbcc4dd17c08714e37bd5/newrelic-10.16.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2ba70524ca9ca167ac7ee7fb2000387ca505c937ee78c31a3569839acbef7b49",
"md5": "f1593df8a33aed06b0c4d61c8d670579",
"sha256": "90478ee70f1e6520cf70271dbb41e7c0d88e3a968b8361e0d2d82872c70de6b7"
},
"downloads": -1,
"filename": "newrelic-10.16.0-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "f1593df8a33aed06b0c4d61c8d670579",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 849773,
"upload_time": "2025-08-14T22:23:44",
"upload_time_iso_8601": "2025-08-14T22:23:44.935397Z",
"url": "https://files.pythonhosted.org/packages/2b/a7/0524ca9ca167ac7ee7fb2000387ca505c937ee78c31a3569839acbef7b49/newrelic-10.16.0-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1a82499aea595912ab0c02710feaa45d358ad737d01fef8b4983d4fcea73a92b",
"md5": "41c60fca972fc19684abfa21a1e471f1",
"sha256": "bfc9621afef69b089ee1ec6ab729220c2f5540b81e5666a3414797f48f5df3e6"
},
"downloads": -1,
"filename": "newrelic-10.16.0-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "41c60fca972fc19684abfa21a1e471f1",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 848292,
"upload_time": "2025-08-14T22:23:46",
"upload_time_iso_8601": "2025-08-14T22:23:46.258452Z",
"url": "https://files.pythonhosted.org/packages/1a/82/499aea595912ab0c02710feaa45d358ad737d01fef8b4983d4fcea73a92b/newrelic-10.16.0-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d47107c41fd5e8c94e95216b000d00c3cf735f769cb406c0f33c6ff83b7b7418",
"md5": "fab3c8b08df0c6a421e3b63890886cb5",
"sha256": "d20eb934380a88d787f93e037d2ccfd5a7c80e657db5bb2e645216eaafe32e26"
},
"downloads": -1,
"filename": "newrelic-10.16.0.tar.gz",
"has_sig": false,
"md5_digest": "fab3c8b08df0c6a421e3b63890886cb5",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.7",
"size": 1267210,
"upload_time": "2025-08-14T22:23:47",
"upload_time_iso_8601": "2025-08-14T22:23:47.619339Z",
"url": "https://files.pythonhosted.org/packages/d4/71/07c41fd5e8c94e95216b000d00c3cf735f769cb406c0f33c6ff83b7b7418/newrelic-10.16.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-08-14 22:23:47",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "newrelic",
"github_project": "newrelic-python-agent",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"tox": true,
"lcname": "newrelic"
}