gitextract_sauf215x/ ├── .github/ │ └── workflows/ │ └── ci.yml ├── .gitignore ├── .prettierignore ├── CHANGELOG.md ├── Dockerfile ├── README.md ├── docs/ │ ├── assets/ │ │ ├── css/ │ │ │ └── custom.css │ │ └── js/ │ │ ├── clipboard.js │ │ └── mathjax.js │ ├── core/ │ │ ├── controlflow/ │ │ │ ├── conditionals.md │ │ │ ├── index.md │ │ │ └── loops.md │ │ ├── datastructures/ │ │ │ ├── dicts.md │ │ │ ├── files.md │ │ │ ├── index.md │ │ │ ├── lists.md │ │ │ ├── sets.md │ │ │ └── tuples.md │ │ ├── datatypes/ │ │ │ ├── data.md │ │ │ ├── index.md │ │ │ ├── numbers.md │ │ │ └── strings.md │ │ ├── devenv/ │ │ │ ├── index.md │ │ │ ├── real-context.md │ │ │ ├── thonny.md │ │ │ └── vscode.md │ │ ├── index.md │ │ ├── introduction/ │ │ │ ├── history.md │ │ │ ├── index.md │ │ │ ├── machine.md │ │ │ └── python.md │ │ └── modularity/ │ │ ├── exceptions.md │ │ ├── functions.md │ │ ├── index.md │ │ ├── modules.md │ │ └── oop.md │ ├── index.md │ ├── stdlib/ │ │ ├── data-access/ │ │ │ ├── index.md │ │ │ └── sqlite.md │ │ ├── index.md │ │ └── text-processing/ │ │ ├── index.md │ │ ├── re.md │ │ └── string.md │ └── third-party/ │ ├── config/ │ │ ├── index.md │ │ └── prettyconf.md │ ├── data-science/ │ │ ├── files/ │ │ │ ├── jupyter/ │ │ │ │ ├── equations.tex │ │ │ │ └── timeit.py │ │ │ ├── matplotlib/ │ │ │ │ ├── avengers.csv │ │ │ │ ├── bmw-clean.csv │ │ │ │ ├── bmw_plot.py │ │ │ │ ├── eth-usd.csv │ │ │ │ ├── euro-dollar-clean.csv │ │ │ │ ├── euro_dollar.py │ │ │ │ ├── global-temperatures.csv │ │ │ │ ├── imdb-top-1000.csv │ │ │ │ ├── medals.xlsx │ │ │ │ ├── mwh-spain-2021-clean.csv │ │ │ │ ├── mwh_spain.py │ │ │ │ ├── nba-data.csv │ │ │ │ ├── pokemon.csv │ │ │ │ ├── pokemon_speed.py │ │ │ │ ├── soften_wave.py │ │ │ │ ├── tiobe-2020-clean.csv │ │ │ │ └── tiobe_2020.py │ │ │ ├── numpy/ │ │ │ │ ├── diag.py │ │ │ │ ├── diag_transform.py │ │ │ │ ├── euler_product.py │ │ │ │ ├── flip_powers.py │ │ │ │ ├── identity_equation.py │ │ │ │ ├── lineq.py │ │ │ │ ├── np_matrix.py │ │ │ │ ├── np_odds.py │ │ │ │ ├── np_random.py │ │ │ │ ├── np_transform.py │ │ │ │ ├── transpose.py │ │ │ │ └── vectorize.py │ │ │ └── pandas/ │ │ │ ├── above_mean.py │ │ │ ├── comunidades.py │ │ │ ├── create_dataframe.py │ │ │ ├── create_series.py │ │ │ ├── democan.csv │ │ │ ├── df_access.py │ │ │ ├── df_oasis.py │ │ │ ├── grants.py │ │ │ ├── index_dataframe.py │ │ │ ├── load_dataframe.py │ │ │ ├── oasis.csv │ │ │ ├── pop_density.py │ │ │ ├── pop_percentage.py │ │ │ ├── recoding.py │ │ │ ├── smallest_density.py │ │ │ └── tech.csv │ │ ├── index.md │ │ ├── jupyter.md │ │ ├── matplotlib.md │ │ ├── numpy.md │ │ └── pandas/ │ │ ├── dataframes.md │ │ ├── index.md │ │ └── series.md │ ├── index.md │ ├── learning/ │ │ ├── index.md │ │ └── pypas.md │ ├── networking/ │ │ ├── files/ │ │ │ └── requests/ │ │ │ └── req.py │ │ ├── index.md │ │ └── requests.md │ ├── pdf/ │ │ ├── index.md │ │ └── weasyprint.md │ ├── scraping/ │ │ ├── beautifulsoup.md │ │ ├── files/ │ │ │ ├── beautifulsoup/ │ │ │ │ └── pypi-trend.py │ │ │ └── selenium/ │ │ │ ├── mercadona.py │ │ │ ├── wordle_play.py │ │ │ └── wordle_try.py │ │ ├── index.md │ │ └── selenium.md │ └── webdev/ │ ├── django/ │ │ ├── admin.md │ │ ├── api.md │ │ ├── apps.md │ │ ├── auth.md │ │ ├── extras.md │ │ ├── files/ │ │ │ └── api/ │ │ │ ├── categories.json │ │ │ ├── posts.json │ │ │ └── users.json │ │ ├── forms.md │ │ ├── i18n.md │ │ ├── index.md │ │ ├── justfile.md │ │ ├── middleware.md │ │ ├── models.md │ │ ├── production.md │ │ ├── setup.md │ │ ├── static.md │ │ ├── templates.md │ │ ├── urls.md │ │ ├── views.md │ │ └── webdev.md │ └── index.md ├── includes/ │ └── abbreviations.md ├── justfile ├── pyproject.toml └── zensical.toml