![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
AmiLATEST is a dependency checker for your python project. It is a tool to help you find outdated dependencies, and generate a report that suggests upgrade possibilities at major, minor, and patch levels.
AmiLATEST can be used as CLI or as a library.
Use the package manager pip to install amilatest.
pip install amilatest
The CLI is a simple command line interface to AmiLATEST.
For basic usage, simply run amilatest
within your project directory (where your requirements.txt
is located). It will then check all those dependencies and generate a report.
amilatest
By default the report is displayed on the terminal as a table. If you want to see the report in a processable format, you can use the --json
flag.
amilatest --json
AmiLATEST can also be integrated into your project as a library. To do so, you need to import Analyzer
class from the amilatest
module.
from amilatest import Analyzer
a = Analyzer('./requirements.txt')
json_output = a.analyze()
pip index
command, which comes with pip version 22 or higher.--editable
flag. When using pip freeze
, you must
use the --exclude-editable
flag to get rid of the editable requirements.Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
FAQs
A dependency-analyzer for requirements.txt files
We found that amilatest 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
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.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.