This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class BaseClass(object): pass | |
class Hello(BaseClass): | |
"""Example naive class""" | |
def __init__(self, arg1): | |
self.arg1 = arg1 | |
def __repr__(self): | |
return "arg1 {}".format(self.arg1) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
PORT=${1:-8000} | |
SERVING_DELAY_SECS=${2:-10} | |
command -v pv >/dev/null 2>&1 || { echo >&2 "pv requied but not installed. Exiting..."; exit 1; } | |
cat <<EOF > /tmp/index.html | |
<!doctype html> | |
<html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import streamlit as st | |
class PagedDataframe: | |
def __init__(self, key, df, page_entries=10): | |
self.key = f"{key}_page" | |
self.df = df | |
self.page_entries = page_entries | |
self.last_page = len(df) // page_entries | |
if self.key not in st.session_state: |
OlderNewer