This file contains 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
using System; | |
using System.Collections.Generic; | |
using System.ComponentModel; | |
using System.Linq; | |
using System.Net; | |
using System.Net.Http; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace ConsoleApplication1 |
This file has been truncated, but you can view the full file.
This file contains 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
[[Toml]] | |
ID = "5888fed8b0546a1eb0cfe5d4" | |
Index = 0 | |
GUID = "d718f1a0-4446-484d-b399-4a0b7e6c6f7b" | |
IsActive = false | |
Balance = "$1,945.41" | |
Picture = "http://placehold.it/32x32" | |
Age = 27 | |
EyeColor = "green" | |
Company = "BIZMATIC" |
This file contains 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 smtplib | |
import requests | |
import argparse | |
from bs4 import BeautifulSoup | |
from email.message import EmailMessage | |
def main(): | |
parser = argparse.ArgumentParser(description='Send email with new book title to email') | |
parser.add_argument('-smtp_host', help='SMTP Host address') |
This file contains 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
""" | |
Usage: python remove_output.py notebook.ipynb [ > without_output.ipynb ] | |
Modified from remove_output by Minrk | |
""" | |
import sys | |
import io | |
import os | |
from IPython.nbformat.current import read, write |
This file contains 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 typing as t | |
from collections import defaultdict | |
import sqlite3 | |
import logging | |
from telegram import Update | |
from telegram.ext._utils.types import UD, CD | |
from telegram.ext import ( | |
Application, | |
CommandHandler, | |
ContextTypes, |
This file contains 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 argparse | |
import requests | |
from __future__ import print_function | |
import json | |
import sys | |
import inspect | |
class Wox(object): | |
""" |