Package Details: python3-aur 2021.11.20.1-14

Git Clone URL: https://aur.archlinux.org/python3-aur.git (read-only, click to copy)
Package Base: python3-aur
Description: AUR-related modules and helper utilities (aurploader, aurquery, aurtomatic).
Upstream URL: https://xyne.dev/projects/python3-aur
Keywords: arch_linux aur python
Licenses: GPL
Conflicts: aurploader
Provides: aurploader
Replaces: aurploader
Submitter: Xyne
Maintainer: Xyne
Last Packager: Xyne
Votes: 219
Popularity: 0.60
First Submitted: 2011-07-04 03:22 (UTC)
Last Updated: 2023-06-27 09:34 (UTC)

Latest Comments

« First ‹ Previous 1 .. 4 5 6 7 8 9 10 11 Next › Last »

Xyne commented on 2012-11-05 09:35 (UTC)

The backend module and wrapper script have been included in the python3-aur package, which now provides and conflicts with aurploader. I will likely merge this package with python3-aur in the near future. The inclusion in python3-aur makes sense as the different modules provide complementary AUR interaction and should be kept together. I could maintain a separate package for Aurploader and let it depend on python3-aur, but the script itself is a 3-line wrapper around the module's main function, which doesn't really deserve its own package. In addition to the inclusion, most functions in the Aurploader module have been regrouped in a class named Aurploader in AUR.Aurploader in python3-aur. This provides better encapsulation of the user session and various actions. Please migrate your code if you use the current module in this package.

Xyne commented on 2012-11-05 09:23 (UTC)

The single module has been converted to a Python package. The original AUR module is now AUR.RPC. The following still works for backwards compatibility: from AUR import AUR It should however be updated to from AUR.RPC import AUR The package now includes AUR.Aurploader for login in, uploading packages, submitting comments, etc.

<deleted-account> commented on 2012-10-23 13:21 (UTC)

The .sig file isn't available at that URL. It doesn't seem to be used though; removing it from the PKGBUILD leaves the package buildable again.

Xyne commented on 2012-07-26 21:17 (UTC)

Thanks for the comments. I really do appreciate the positive feedback.

luolimao commented on 2012-07-24 21:05 (UTC)

Agreed. It's really nice to have such a fast response/fix, and the Python rewrite is a godsend for those of us who want to use Unicode or characters that the shell script would consider "special" in passwords and such. Thanks so much, Xyne.

graysky commented on 2012-07-24 11:15 (UTC)

Nice, Xyne. Works perfectly. Thank you for all you do for the Arch community!

Xyne commented on 2012-07-24 11:01 (UTC)

Thanks for the feedback. The login file and non-automatic prompt should work now. It is not an error if there is no input. Sometimes you may want to create or remove the cookie jar without uploading any packages. Changes: It now accepts directories as arguments and will search for source archives in them (but not recursively). As explained by luolimao, if no arguments are given then it checks the current directory for packages. I have updated the help message to clarify this.