Pythonista
543 subscribers
25 photos
117 links
about Python programming. Interesting projects every day!
Download Telegram
Channel created
Python is a widely used high-level, general-purpose, interpreted, dynamic programming language.
Channel name was changed to «pythonista»
Beautiful is better than ugly
Explicit is better than implicit
Simple is better than complex
Complex is better than complicated
Readability counts
meza is a Python library for reading and processing tabular data. It has a functional programming style API, excels at reading/writing large files, and can process 10+ file types.

With meza, you can:
Read csv/xls/xlsx/mdb/dbf files, and more!
Type cast records (date, float, text...)
Process Uñicôdë text
Lazily stream files by default
and much more...

https://github.com/reubano/meza
Best site for share and find telegram channels
http://channelist.ir

and official channel :
@channelist
Python file extensions:
.py - Regular scripts
.py3 - (rarely used) Python3 script. Python3 scripts usually end with ".py" not ".py3", but I have seen that a few times
.pyc - compiled script (Bytecode)
.pyo - optimized pyc file
.pyw - Python script for Windows. It is executed with pythonw.exe
.pyx - Cython src to be converted to C/C++
.pyd - Python script made as a Windows DLL
.pxd - Cython script which is equivalent to a C/C++ header
.py[cod] - wildcard notation in ".gitignore" that means the file may be ".pyc", ".pyo", or ".pyd".
New version PyPy 5.0 released!
release notes: http://doc.pypy.org/en/latest/release-5.0.0.html