Skip to main content

Useful tools for Python developers

Project description

Useful tools for Python developers.

This is mostly an example to show how autopip can be used to install a group of apps with various version specifications, but the author does install it as it conveniently provides all the tools useful for doing Python software development.

To install:

autopip install developer-tools

Which should output something like the following – line 3 is the interesting part:

Installing developer-tools to /home/mzheng/.apps/developer-tools/0.0.3
Hourly auto-update enabled via cron service
This app has defined "autopip" entry points to install: ansible==2.5.4 ansible-hostmanager twine==1.* workspace-tools
Installing ansible to /home/mzheng/.apps/ansible/2.5.4
Updating script symlinks in /home/mzheng/.apps/bin
+ ansible
...
...
Installing workspace-tools to /home/mzheng/.apps/workspace-tools/3.2.4
Hourly auto-update enabled via cron service
Updating script symlinks in /home/mzheng/.apps/bin
+ wst

How does it work? You can tell autopip to install other apps by setting an autopip entry point group in setup.py with the list of apps and versions. Versions can be pinned to major or a specific version, or use latest to install the latest version. Update frequency can also be specified per app. Seeing is believing, so take a look at the autopip entry point group in developer-tools’ setup.py:

entry_points={
    'autopip': [
        'ansible = 2.5.4',                 # Pin to specific version without auto-update (recommended for 3rd party)
        'ansible-hostmanager = latest',    # Install latest and update hourly (for apps that you own)
        'autopip = latest',                # So autopip updates itself
        'awscli = 1.15 [monthly]',         # Pin to minor and update monthly
        'flake8 = 3 [weekly]',             # Pin to major and update weekly
        'twine = 1 [weekly]',
        'rstcheck = 3.0.1',
        'workspace-tools = latest',
    ],
},

For better security and user experience, it is recommended to pin to a specific version – at least minor – for 3rd party apps. For apps that you own where you have good versioning in the app, then latest works better to let the app control its own release.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

developer-tools-1.0.2.tar.gz (4.9 kB view details)

Uploaded Source

File details

Details for the file developer-tools-1.0.2.tar.gz.

File metadata

File hashes

Hashes for developer-tools-1.0.2.tar.gz
Algorithm Hash digest
SHA256 a3ea23412c65c3c62c2e8523bbd516634d659c67789541055352c9291d566e48
MD5 e317eeb2d8d22494487351eaac945acc
BLAKE2b-256 3c3abafb49a2d71351dcf4edfd9fd4886ac28001e9103d47e5f69b442a5ed81e

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page