Python/ django
58.9K subscribers
2.07K photos
61 videos
47 files
2.79K links
по всем вопросам @haarrp

@itchannels_telegram - 🔥 все ит-каналы

@ai_machinelearning_big_data -ML

@ArtificialIntelligencedl -AI

@datascienceiot - 📚

@pythonlbooks

РКН: clck.ru/3FmxmM
加入频道
🔥 Python 3.11.0b1 is now available

PEP 657 – Include Fine-Grained Error Locations in Tracebacks
PEP 654 – Exception Groups and except*
PEP 673 – Self Type
PEP 646 – Variadic Generics
PEP 680– tomllib: Support for Parsing TOML in the Standard Library
PEP 675– Arbitrary Literal String Type
PEP 655– Marking individual TypedDict items as required or potentially-missing
bpo-46752– Introduce task groups to asyncio
The Faster Cpython Project is already yielding some exciting results. Python 3.11 is up to 10-60% faster than Python 3.10. On average, we measured a 1.22x speedup on the standard benchmark suite. See Faster CPython for details.

https://pythoninsider.blogspot.com/2022/05/python-3110b1-is-now-available.html

@pythonl
Answer: 1

@pythonl
This media is not supported in your browser
VIEW IN TELEGRAM
🔥Hitomi-Downloader

multifunctional video downloader on Python. Supports downloading videos from Instagram, YouTube, Twitter, Pinterest, Soundcloud, Pornhub 💪 and dozens of other resources.

Code: https://github.com/KurtBestor/Hitomi-Downloader

Scripts: https://github.com/KurtBestor/Hitomi-Downloader/wiki/Scripts

@pythonl
Python: создание игры го с нуля в PyGame

Читать

Полный код

@pythonl
Result of code?

Answer: 6

@pythonl
Python math functions (Simple Examples)

https://likegeeks.com/python-math-functions/

@pythonl
Forwarded from Python tests
Result of code?

Answer: -2,-3,-4

@python_testit
Bisect: поиск Python

Статья

@pythonl
✖️ Django filter - filter(A).filter(B) vs filter(A, B)

https://www.hacksoft.io/blog/django-filter-chaining

@pythonl
🚀 Comprehensive Python Cheatsheet

https://github.com/gto76/python-cheatsheet

@pythonl
Result of code?

Answer: TypeError

@pythonl
📌 Python готовые мини-проекты c кодом

Список

@pro_python_code
🧠 Python-scripts-collection

This is a collection of short Python scripts to solve and automate tasks and simplify any work.

https://github.com/fnplus/Python-scripts-collection

@pythonl
Result of code?

Answer: KeyError: 'age'

@pythonl
This media is not supported in your browser
VIEW IN TELEGRAM
📊 Alive-progress on Python

letters = [chr(ord('A') + x) for x in range(26)]
with alive_bar(26, dual_line=True, title='Alphabet') as bar:
for c in letters:
bar.text = f'-> Teaching the letter: {c}, please wait...'
if c in 'HKWZ':
print(f'fail "{c}", retry later')
time.sleep(0.3)
bar()


Alphabet |
███████████████████████████▊ | ▃▅▇ 18/26 [69%] in 6s (3.2/s, eta: 3s)
-> Teaching the letter: S, please wait...


Git: https://github.com/rsalmei/alive-progress

@pythonl