Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 | |
import matplotlib.pyplot as plt | |
import numpy as np | |
import streamlit.components.v1 as components | |
from celluloid import Camera | |
# Based on this recipe: | |
# https://discuss.streamlit.io/t/matplotlib-animation-in-streamlit-through-html-js/5587 | |
with st.echo(code_location='below'): |
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 scrapy | |
# запускать из командной строки с помощью команды | |
# scrapy runspider scrapper.py -O results.csv | |
class WikipediaSpider(scrapy.Spider): | |
name = 'wikispider' | |
start_urls = ['https://ru.wikipedia.org/wiki/Премия_Кнута'] | |
def parse(self, response, depth=0): |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
# Work by Ivan Pozdniakov | |
# See details: http://math-info.hse.ru/s20/g | |
2 < 3 | |
2 > 3 | |
2 == 3 | |
some_comparison <- 2 != 3 | |
1:10 > 5 | |
1:10 >= 5 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.