
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
django-package-monitor
Advanced tools
.. image:: https://travis-ci.org/yunojuno/django-package-monitor.svg?branch=master :target: https://travis-ci.org/yunojuno/django-package-monitor
.. image:: https://badge.fury.io/py/django-package-monitor.svg :target: https://badge.fury.io/py/django-package-monitor
This package is now Python3 and Django 1.11 and above. For previous versions please refer to the Python2 branch.
A Django app for keeping track of dependency updates.
At YunoJuno we have a Django project that includes almost 100 external packages. In order to manage updates to these we have a rolling development task that comes around in the first week of each month, and includes the following:
pip list --outdated
list out all available updatessemver <http://semver.org/>
_) into Major, Minor, Patch, OtherThis task is a PITA, and so we decided to make it simpler.
This project contains a Django app that can be used to monitor your packages.
It consists of a single model, PackageVersion
, an admin list view that you
can use to view current package versions, and load latest versions from PyPI,
and a single management command that can be used to load local requirements and
update remote versions from the shell - which you could run overnight if you
felt the need.
It is important to note that this app does not update your requirements for you - it simply displays the requirements that you have, and the latest that is available on PyPI.
In order to illustrate how it works, the app itself contains a Django project that can be used to demonstrate the feature.
Download / install the app using pip:
.. code:: shell
pip install django-package-monitor
Add the app package_monitor
to your INSTALLED_APPS
Django setting:
.. code:: python
# settings.py
INSTALLED_APPS = (
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'package_monitor',
...
)
Set the PACKAGE_MONITOR_REQUIREMENTS_FILE
setting to point to your project
requirements file:
.. code:: python
PACKAGE_MONITOR_REQUIREMENTS_FILE = path.join(PROJECT_ROOT, 'requirements.txt')
Add the app URLs to your project - NB it must have the namespace set:
.. code:: python
# urls.py
urlpatterns = patterns(
'',
url(r'^admin/', include(admin.site.urls)),
url(r'^package_monitor/', include('package_monitor.urls', namespace='package_monitor')),
)
At this point you should have a working implementation. You can test this by running the management command to load your local requirements:
.. code:: shell
# load up the local requirements file
$ python manage.py refresh_packages --local
This will load all of the requirements it finds in the requirements file specified into the
database. If you then want to check PyPI for updated version, run the command with the --remote
option. You can run both of these command together:
.. code:: python
# load up the local requirements file, and check PyPI
$ python manage.py refresh_packages --local --remote
If you want to clean out the existing PackageVersion
table before loading the local file, use the --clean
option:
.. code:: shell
# clear out database, load up the local requirements file, and check PyPI
$ python manage.py refresh_packages --clean --local --remote
There is a test suite that can be run using tox:
.. code:: shell
$ pip install -r requirements
$ tox
In addition to the unit tests, the source distribution also includes a fully-functioning Django project, that can be run from the repo root, and used to demonstrate how it works:
.. code:: shell
$ git clone git@github.com:yunojuno/django-package-monitor.git
$ cd django-package-monitor
$ pip install -r requirements.txt
# you will need to create a superuser in order to access the admin site
$ python manage.py createsuperuser
$ python manage.py runserver
If you then log in to the app (http://localhost:8000/admin by default), you can then see the admin list page:
.. image:: https://github.com/yunojuno/django-package-monitor/blob/master/screenshots/no_packages.png :alt: Screenshot of admin list view (empty)
If you click on the "Reload local requirements" button in the top-right, it will load up the contents of the requirements file that you used earlier:
.. image:: https://github.com/yunojuno/django-package-monitor/blob/master/screenshots/local_only.png :alt: Screenshot of admin list view populated with local requirements
NB If any requirements cannot be parsed by the semantic_version.Version.coerce
method, then the
is_parseable
property is set to False
, and the package is in effect unmanaged.
At this point it has parsed the requirements file, and stored the current working version of
each package (as current_version
). In order to see what the latest versions are, select all the packages,
and choose "Update selected packages from PyPI" form the actions list:
.. image:: https://github.com/yunojuno/django-package-monitor/blob/master/screenshots/select_all.png :alt: Screenshot of admin list view with all requirements selected
This may take some time, as it will call the PyPI API for each package (excluding those that are
marked as editable), and download the latest version info for each. At the end of this, you should
see the page updated with the new version information (as latest_version
) - as well as the licence
information that is stored in the PyPI metadata:
.. image:: https://github.com/yunojuno/django-package-monitor/blob/master/screenshots/remote.png :alt: Screenshot of admin list view with requirement info updated from PyPI
If you drill down to the detail on an individual package, you can see all of the available versions:
.. image:: https://github.com/yunojuno/django-package-monitor/blob/master/screenshots/package_details.png :alt: Screenshot of Django package details
This is by no means complete - it can't cope with requirements that are anything other than '==', and it doesn't (yet) help with updating the requirements file itself. However, it's good enough to be of value, hence releasing it. If you would like to contribute to the project, usual Github rules apply:
This project is MIT licensed - see the LICENCE file for details.
FAQs
Requirements package monitor for Django projects.
We found that django-package-monitor demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers 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
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.