An open API service indexing awesome lists of open source software.

https://github.com/abhinavkorpal/python

Python is a widely used high-level programming language for general-purpose programming.
https://github.com/abhinavkorpal/python

aws aws-sdk cloud cloud-management python python-script python2 python3

Last synced: 7 months ago
JSON representation

Python is a widely used high-level programming language for general-purpose programming.

Awesome Lists containing this project

README

          

## Python

Python is a widely used high-level programming language for general-purpose programming, created by Guido van Rossum and first released in 1991. An interpreted language, Python has a design philosophy which emphasizes code readability (notably using whitespace indentation to delimit code blocks rather than curly brackets or keywords), and a syntax which allows programmers to express concepts in fewer lines of code than might be used in languages such as C++ or Java.The language provides constructs intended to enable writing clear programs on both a small and large scale.

Python features a dynamic type system and automatic memory management and supports multiple programming paradigms, including object-oriented, imperative, functional programming, and procedural styles. It has a large and comprehensive standard library.

Python interpreters are available for many operating systems, allowing Python code to run on a wide variety of systems. CPython, the reference implementation of Python, is open source software and has a community-based development model, as do nearly all of its variant implementations. CPython is managed by the non-profit Python Software Foundation.

## [pdb — The Python Debugger](https://docs.python.org/3/library/pdb.html)

```python
import pdb
pdb.set_trace()
```

## [AWS Named Profiles](https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-profiles.html)

##### `~/.aws/credentials (Linux & Mac) or %USERPROFILE%\.aws\credentials (Windows)`
```shell
[default]
aws_access_key_id=AKIAIOSFODNN7EXAMPLE
aws_secret_access_key=wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY

[user1]
aws_access_key_id=AKIAI44QH8DHBEXAMPLE
aws_secret_access_key=je7MtGbClwBF/2Zp9Utk/h3yCo8nvbEXAMPLEKEY
```
##### `~/.aws/config (Linux & Mac) or %USERPROFILE%\.aws\config (Windows)`
```shell
[default]
region=us-west-2
output=json

[profile user1]
region=us-east-1
output=text
```

# Python Request

### Python3 Status Codes Response

### Python3 Content & Headers Response

### Python3 HTTP Methods