autoimport 1.6.0-1 source package in Ubuntu

Changelog

autoimport (1.6.0-1) unstable; urgency=medium

  * New upstream release.

 -- Edward Betts <edward@4angle.com>  Tue, 16 Jul 2024 16:01:01 +0900

Upload details

Uploaded by:
Debian Python Team
Uploaded to:
Sid
Original maintainer:
Debian Python Team
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc

Builds

Oracular: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
autoimport_1.6.0-1.dsc 2.0 KiB ce81b5078755d8ed069649afa25287f2d7636e7cd6cc45916dd7f1c7740b567b
autoimport_1.6.0.orig.tar.gz 169.2 KiB e02f9bb72d861a52a4cacaa35cff76070911ac7b3d7999e849d1d68e4b6968b8
autoimport_1.6.0-1.debian.tar.xz 2.8 KiB c1e08d52b56d266d98fb14ec67fb14c3b9cd8e6f0165ef662938ab13dc27975d

Available diffs

No changes file available.

Binary packages built by this source

autoimport: Automatically import missing Python libraries

 Throughout the development of a Python program you continuously need to manage
 the Python import statements either because you need one new object or because
 you no longer need it. This means that you need to stop writing whatever you
 were writing, go to the top of the file, create or remove the import statement
 and then resume coding.
 .
 This workflow break is annoying and almost always unnecessary. 'autoimport'
 solves this problem if you execute it whenever you have an import error, for
 example by configuring your editor to run it when saving the file.