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 datetime | |
| import os | |
| import click | |
| import scrapy | |
| from scrapy.crawler import CrawlerProcess | |
| class DesktopographySpider(scrapy.Spider): | |
| name = "desktopography" |
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
| """ | |
| Copy markdown files (.md|.txt) from a Dropbox folder to a Dropbox Paper folder. | |
| """ | |
| from pathlib import PurePosixPath | |
| import logging | |
| import logging.handlers | |
| import re | |
| import sys | |
| import click |
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 functools | |
| import inspect | |
| import itertools | |
| from abc import ABCMeta | |
| from dataclasses import dataclass | |
| from typing import Any, Callable, Dict, Tuple, Type, TypeVar, Union | |
| import numpy as np | |
| import pandas as pd |