---
title: Python
kind: note
description: Link Excerpt Python is a programming language that lets you work quickly and integrate systems more effectively. Resources Python Social Auth Python Social Auth is an easy to setup social…
words: 113
readingMinutes: 1
created: '2024-06-12T19:16:18+02:00'
updated: '2025-05-10T17:21:54+02:00'
website: https://www.python.org/
---
## Link

<https://www.python.org/>

## Excerpt
> Python is a programming language that lets you work quickly and integrate systems more effectively.
## Resources
- [Python Social Auth](https://github.com/python-social-auth)
  > Python Social Auth is an easy to setup social authentication/registration mechanism with support for several frameworks and auth providers.
- [awesome-python](https://github.com/vinta/awesome-python)
  > A curated list of awesome Python frameworks, libraries, software and resources
- [The Python Tutorial](https://docs.python.org/3/tutorial/index.html)
- [strftime reference cheatsheet](https://strftime.org/) - formatting codes for rendering datetimes as strings
- [Using % and .format() for great good!](https://pyformat.info/)
- [strftime reference and sandbox](https://www.strfti.me/)
- <span class="dead-link">Jupyter Notebook</span>s are documents that, similar to the interactive shell, enable incremential experimentation using the power of Python.
## FAQ
### Use aiohttp and asyncio to run I/O coroutines concurrently
Example:
```python
import aiohttp
import asyncio

async def get_9():
    async with aiohttp.ClientSession() as session:
        async with session.get('https://httpbin.org/delay/9') as response:
            await response.text()
            print("9 finished")

async def get_3():
    async with aiohttp.ClientSession() as session:
        async with session.get('https://httpbin.org/delay/3') as response:
            await response.text()
            print("3 finished")

async def main():
    await asyncio.gather(get_9(), get_3())

asyncio.run(main())
```
### What is the "Zen of Python"?
![Pasted image 20250408170748.png](/assets/notes/Pasted%20image%2020250408170748.png)
