Skip to content

Instantly share code, notes, and snippets.

@taleinat
taleinat / scrollable_text.py
Last active July 28, 2019 06:17
Python Tkinter Scrollable Text
# Copyright 2019 Tal Einat
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# 1. Redistributions of source code must retain the above copyright notice,
# this list of conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
@taleinat
taleinat / useful-python-shell-commands.md
Last active October 7, 2022 08:38
Useful Python Shell Commands

Useful Python Shell Commands.

I find these especially useful in containers with Python but not much else.

File Download

python -c 'from urllib.request import urlretrieve; urlretrieve("https://bootstrap.pypa.io/get-pip.py", filename="target/path/get-pip.py")'

Format JSON