py
Anaconda
https://docs.anaconda.com/anaconda/packages/oldpkglists/
EOL
https://endoflife.date/python
Relative imports in Python 3
https://stackoverflow.com/a/49375740/4769874
from module1
intead of from .module1
Distribution Default
pip
Installing from local
Proxy
CN Mirror
mkdir -p ~/.pip && echo '[global]' > ~/.pip/pip.conf && echo 'index-url = https://mirrors.aliyun.com/pypi/simple/' >> ~/.pip/pip.conf && pip install -r requirements.txt
pypi
https://packaging.python.org/tutorials/distributing-packages/
Google Fire
https://github.com/google/python-fire/blob/master/docs/guide.md#accessing-properties
pendulum
https://github.com/sdispater/pendulum#pendulum
Web automation
requestium
https://github.com/tryolabs/requestium merges the power of Requests, Selenium, and Parsel into a single integrated tool
VSCode
Remote debugging
VS: https://youtu.be/y1Qq7BrV6Cc?t=228 VSCode: https://code.visualstudio.com/docs/python/debugging#_remote-debugging
Pythonista on IOS
https://github.com/Pythonista-Tools/Pythonista-Tools/blob/master/Utilities.md
MongoDB ORM
http://ming.readthedocs.io/en/latest/
http://turbogears.readthedocs.io/en/latest/turbogears/mongodb.html
ASGI
uvicorn, daphne, or hypercorn
Web Frameworks
https://github.com/topics/web-framework?l=python https://wiki.python.org/moin/WebFrameworks
starlette
https://github.com/encode/starlette
aiohttp
https://github.com/aio-libs/aiohttp https://aiohttp.readthedocs.io/en/stable/ Supports both client and server Web-Sockets Web-server has middlewares and pluggable routing.
Sanic
https://github.com/channelcat/sanic
API Server
https://github.com/tiangolo/fastapi http://www.hug.rest/
WSDL
http://www.soapclient.com/xml/soapresponder.wsdl http://download.oracle.com/otn_hosted_doc/jdeveloper/1012/web_services/ws_wsdlstructure.html
Last updated