Find AWS User using Access Key This can be unlikely, but you might need to find a user to which a certain AWS access key is related to. It can happen when working on a fairly large Amazon Web Services (AWS) infrastructure that you come across a random AWS...
Articles with the Tag Python
Python Add Progress Bar
Python Add Progress Bar You can have a Progress Bar inside of your Python code execution or the loops for Python. Having a progress bar during execution of long loops can help you understand the current progress of the script or loop inside the script. You can achieve this...
Python Remove Leading and Trailing Zeros
Python Remove Leading and Trailing Zeros Quiet a few times while working on certain things you can find the need to remove leading and trailing zeros or any other characters. Python provides built-in type which can be used to remove leading and trailing zeroes or characters. The Python built-in...
Python Boto Ignore AWS Region
Python Boto Ignore AWS Region By default the Python Boto has all the regions for Amazon Web Services (AWS) to it. This may also include the regions which you don’t have access to. This does not affect much unless you tend to use the prebuilt functions for Boto, which...
Python Checkout Subversion repo via PySVN
Python Checkout Subversion repo via PySVN Working with Subversion (SVN) on Python can be easy with the use of PySVN. PySVN is an extension for Python which can be installed as a module/extension. Install PySVN PySVN is a neat extension which makes the interaction of Python with Subversion (SVN)...