├── .github └── workflows │ └── main.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── _build ├── .doctrees │ ├── CONTRIBUTING.doctree │ ├── README.doctree │ ├── bibliography.doctree │ ├── environment.pickle │ ├── glue_cache.json │ └── notebooks │ │ ├── introduction-python │ │ ├── booleans.doctree │ │ ├── classes.doctree │ │ ├── control-flow.doctree │ │ ├── exercises.doctree │ │ ├── functions.doctree │ │ ├── introduction-python.doctree │ │ ├── lists.doctree │ │ ├── numeric-types.doctree │ │ ├── other-data-structures.doctree │ │ ├── python-basics.doctree │ │ └── strings.doctree │ │ ├── matplotlib │ │ └── introduction-matplotlib.doctree │ │ ├── numpy │ │ ├── basic-operations.doctree │ │ ├── exercises.doctree │ │ ├── index-slicing.doctree │ │ └── introduction-numpy.doctree │ │ ├── pandas │ │ ├── groupby-merge.doctree │ │ └── introduction-pandas.doctree │ │ ├── practicas │ │ ├── classification-models.doctree │ │ ├── eda.doctree │ │ ├── gradient-descent.doctree │ │ ├── linear-programming.doctree │ │ ├── portfolio-optimization.doctree │ │ └── regression-model.doctree │ │ └── proyecto-ejemplo │ │ ├── dash.doctree │ │ └── project-management.doctree ├── html │ ├── .buildinfo │ ├── CONTRIBUTING.html │ ├── README.html │ ├── _images │ │ ├── classification-models_30_1.png │ │ ├── classification-models_34_2.png │ │ ├── classification-models_35_2.png │ │ ├── classification-models_36_2.png │ │ ├── classification-models_46_1.png │ │ ├── eda_26_0.png │ │ ├── eda_31_0.png │ │ ├── eda_39_0.png │ │ ├── eda_42_0.png │ │ ├── eda_49_0.png │ │ ├── eda_57_0.png │ │ ├── eda_64_0.png │ │ ├── eda_74_0.png │ │ ├── eda_85_0.png │ │ ├── exercises_19_1.png │ │ ├── gradient-descent_11_0.png │ │ ├── gradient-descent_14_0.png │ │ ├── gradient-descent_17_0.png │ │ ├── gradient-descent_21_0.png │ │ ├── introduction-matplotlib_14_0.png │ │ ├── introduction-matplotlib_19_0.png │ │ ├── introduction-matplotlib_23_0.png │ │ ├── introduction-matplotlib_26_0.png │ │ ├── introduction-matplotlib_28_0.png │ │ ├── introduction-matplotlib_30_0.png │ │ ├── introduction-matplotlib_32_0.png │ │ ├── introduction-matplotlib_34_0.png │ │ ├── introduction-matplotlib_36_0.png │ │ ├── introduction-matplotlib_38_0.png │ │ ├── introduction-matplotlib_40_0.png │ │ ├── introduction-matplotlib_42_0.png │ │ ├── introduction-matplotlib_44_0.png │ │ ├── introduction-matplotlib_46_0.png │ │ ├── introduction-matplotlib_47_0.png │ │ ├── introduction-matplotlib_48_0.png │ │ ├── introduction-matplotlib_50_0.png │ │ ├── introduction-matplotlib_54_0.png │ │ ├── introduction-matplotlib_56_0.png │ │ ├── introduction-matplotlib_61_0.png │ │ ├── introduction-matplotlib_65_0.png │ │ ├── introduction-matplotlib_67_0.png │ │ ├── introduction-matplotlib_69_0.png │ │ ├── introduction-matplotlib_9_0.png │ │ ├── introduction-numpy_16_0.png │ │ ├── linear-programming_6_0.png │ │ ├── linear-programming_7_0.png │ │ ├── other-data-structures_100_0.png │ │ ├── other-data-structures_97_0.png │ │ ├── other-data-structures_99_0.png │ │ ├── portfolio-optimization_11_1.png │ │ ├── portfolio-optimization_12_1.png │ │ ├── portfolio-optimization_14_2.png │ │ ├── portfolio-optimization_17_2.png │ │ ├── portfolio-optimization_21_1.png │ │ ├── portfolio-optimization_8_1.png │ │ ├── portfolio-optimization_9_1.png │ │ ├── regression-model_10_0.png │ │ ├── regression-model_21_0.png │ │ ├── regression-model_33_0.png │ │ ├── regression-model_35_0.png │ │ ├── regression-model_37_0.png │ │ ├── regression-model_40_0.png │ │ ├── regression-model_48_0.png │ │ ├── regression-model_50_0.png │ │ ├── regression-model_52_0.png │ │ └── square.png │ ├── _sources │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── bibliography.md │ │ └── notebooks │ │ │ ├── introduction-python │ │ │ ├── booleans.ipynb │ │ │ ├── classes.ipynb │ │ │ ├── control-flow.ipynb │ │ │ ├── exercises.ipynb │ │ │ ├── functions.ipynb │ │ │ ├── introduction-python.ipynb │ │ │ ├── lists.ipynb │ │ │ ├── numeric-types.ipynb │ │ │ ├── other-data-structures.ipynb │ │ │ ├── python-basics.ipynb │ │ │ └── strings.ipynb │ │ │ ├── matplotlib │ │ │ └── introduction-matplotlib.ipynb │ │ │ ├── numpy │ │ │ ├── basic-operations.ipynb │ │ │ ├── exercises.ipynb │ │ │ ├── index-slicing.ipynb │ │ │ └── introduction-numpy.ipynb │ │ │ ├── pandas │ │ │ ├── groupby-merge.ipynb │ │ │ └── introduction-pandas.ipynb │ │ │ ├── practicas │ │ │ ├── classification-models.ipynb │ │ │ ├── eda.ipynb │ │ │ ├── gradient-descent.ipynb │ │ │ ├── linear-programming.ipynb │ │ │ ├── portfolio-optimization.ipynb │ │ │ └── regression-model.ipynb │ │ │ └── proyecto-ejemplo │ │ │ ├── dash.ipynb │ │ │ └── project-management.ipynb │ ├── _sphinx_design_static │ │ ├── design-style.b7bb847fb20b106c3d81b95245e65545.min.css │ │ └── design-tabs.js │ ├── _static │ │ ├── base-stemmer.js │ │ ├── basic.css │ │ ├── check-solid.svg │ │ ├── clipboard.min.js │ │ ├── copy-button.svg │ │ ├── copybutton.css │ │ ├── copybutton.js │ │ ├── copybutton_funcs.js │ │ ├── custom.css │ │ ├── custom.js │ │ ├── design-style.b7bb847fb20b106c3d81b95245e65545.min.css │ │ ├── design-tabs.js │ │ ├── doctools.js │ │ ├── documentation_options.js │ │ ├── exercise.css │ │ ├── file.png │ │ ├── images │ │ │ ├── logo_binder.svg │ │ │ ├── logo_colab.png │ │ │ ├── logo_deepnote.svg │ │ │ └── logo_jupyterhub.svg │ │ ├── jquery-3.5.1.js │ │ ├── jquery.js │ │ ├── language_data.js │ │ ├── locales │ │ │ ├── ar │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── booktheme.po │ │ │ ├── bg │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── booktheme.po │ │ │ ├── bn │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── booktheme.po │ │ │ ├── ca │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── booktheme.po │ │ │ ├── cs │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── booktheme.po │ │ │ ├── da │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── booktheme.po │ │ │ ├── de │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── booktheme.po │ │ │ ├── el │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── booktheme.po │ │ │ ├── eo │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── booktheme.po │ │ │ ├── es │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── booktheme.po │ │ │ ├── et │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── booktheme.po │ │ │ ├── fi │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── booktheme.po │ │ │ ├── fr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── booktheme.po │ │ │ ├── hr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── booktheme.po │ │ │ ├── id │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── booktheme.po │ │ │ ├── it │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── booktheme.po │ │ │ ├── iw │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── booktheme.po │ │ │ ├── ja │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── booktheme.po │ │ │ ├── ko │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── booktheme.po │ │ │ ├── lt │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── booktheme.po │ │ │ ├── lv │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── booktheme.po │ │ │ ├── ml │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── booktheme.po │ │ │ ├── mr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── booktheme.po │ │ │ ├── ms │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── booktheme.po │ │ │ ├── nl │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── booktheme.po │ │ │ ├── no │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── booktheme.po │ │ │ ├── pl │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── booktheme.po │ │ │ ├── pt │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── booktheme.po │ │ │ ├── ro │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── booktheme.po │ │ │ ├── ru │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── booktheme.po │ │ │ ├── sk │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── booktheme.po │ │ │ ├── sl │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── booktheme.po │ │ │ ├── sr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── booktheme.po │ │ │ ├── sv │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── booktheme.po │ │ │ ├── ta │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── booktheme.po │ │ │ ├── te │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── booktheme.po │ │ │ ├── tg │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── booktheme.po │ │ │ ├── th │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── booktheme.po │ │ │ ├── tl │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── booktheme.po │ │ │ ├── tr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── booktheme.po │ │ │ ├── uk │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── booktheme.po │ │ │ ├── ur │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── booktheme.po │ │ │ ├── vi │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── booktheme.po │ │ │ ├── zh_CN │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── booktheme.po │ │ │ └── zh_TW │ │ │ │ └── LC_MESSAGES │ │ │ │ └── booktheme.po │ │ ├── logo-us.png │ │ ├── minus.png │ │ ├── mystnb.css │ │ ├── plus.png │ │ ├── pygments.css │ │ ├── sbt-webpack-macros.html │ │ ├── scripts │ │ │ ├── pydata-sphinx-theme.js │ │ │ ├── sphinx-book-theme.js │ │ │ └── sphinx-book-theme.js.map │ │ ├── searchtools.js │ │ ├── spanish-stemmer.js │ │ ├── sphinx-thebe.css │ │ ├── sphinx-thebe.js │ │ ├── styles │ │ │ ├── pydata-sphinx-theme.css │ │ │ ├── sphinx-book-theme.css │ │ │ └── theme.css │ │ ├── togglebutton.css │ │ ├── togglebutton.js │ │ ├── translations.js │ │ ├── underscore-1.13.1.js │ │ ├── underscore.js │ │ ├── vendor │ │ │ └── fontawesome │ │ │ │ └── 5.13.0 │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── css │ │ │ │ └── all.min.css │ │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.eot │ │ │ │ ├── fa-brands-400.svg │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.eot │ │ │ │ ├── fa-regular-400.svg │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.eot │ │ │ │ ├── fa-solid-900.svg │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff │ │ │ │ └── fa-solid-900.woff2 │ │ └── webpack-macros.html │ ├── bibliography.html │ ├── chapter1 │ │ ├── interpreted_vs_compiled.jpg │ │ └── most_popular_programming_languages_stackoverflow_2022.png │ ├── genindex.html │ ├── index.html │ ├── logo-us.png │ ├── matplotlib.png │ ├── notebooks │ │ ├── introduction-python │ │ │ ├── booleans.html │ │ │ ├── classes.html │ │ │ ├── control-flow.html │ │ │ ├── exercises.html │ │ │ ├── functions.html │ │ │ ├── introduction-python.html │ │ │ ├── lists.html │ │ │ ├── numeric-types.html │ │ │ ├── other-data-structures.html │ │ │ ├── python-basics.html │ │ │ └── strings.html │ │ ├── matplotlib │ │ │ └── introduction-matplotlib.html │ │ ├── numpy │ │ │ ├── basic-operations.html │ │ │ ├── exercises.html │ │ │ ├── index-slicing.html │ │ │ └── introduction-numpy.html │ │ ├── pandas │ │ │ ├── groupby-merge.html │ │ │ └── introduction-pandas.html │ │ ├── practicas │ │ │ ├── classification-models.html │ │ │ ├── eda.html │ │ │ ├── gradient-descent.html │ │ │ ├── linear-programming.html │ │ │ ├── portfolio-optimization.html │ │ │ └── regression-model.html │ │ └── proyecto-ejemplo │ │ │ ├── dash.html │ │ │ └── project-management.html │ ├── numpy.png │ ├── objects.inv │ ├── pandas.png │ ├── python-logo-1.png │ ├── screen.png │ ├── search.html │ ├── searchindex.js │ └── square.png └── jupyter_execute │ └── notebooks │ ├── introduction-python │ ├── booleans.ipynb │ ├── booleans.txt │ ├── classes.ipynb │ ├── classes.txt │ ├── control-flow.ipynb │ ├── control-flow.txt │ ├── exercises.ipynb │ ├── exercises.txt │ ├── functions.ipynb │ ├── functions.txt │ ├── introduction-python.ipynb │ ├── introduction-python.py │ ├── lists.ipynb │ ├── lists.txt │ ├── numeric-types.ipynb │ ├── numeric-types.txt │ ├── other-data-structures.ipynb │ ├── other-data-structures.py │ ├── other-data-structures_100_0.png │ ├── other-data-structures_97_0.png │ ├── other-data-structures_99_0.png │ ├── python-basics.ipynb │ ├── python-basics.py │ ├── strings.ipynb │ └── strings.txt │ ├── matplotlib │ ├── introduction-matplotlib.ipynb │ ├── introduction-matplotlib.py │ ├── introduction-matplotlib_14_0.png │ ├── introduction-matplotlib_19_0.png │ ├── introduction-matplotlib_23_0.png │ ├── introduction-matplotlib_26_0.png │ ├── introduction-matplotlib_28_0.png │ ├── introduction-matplotlib_30_0.png │ ├── introduction-matplotlib_32_0.png │ ├── introduction-matplotlib_34_0.png │ ├── introduction-matplotlib_36_0.png │ ├── introduction-matplotlib_38_0.png │ ├── introduction-matplotlib_40_0.png │ ├── introduction-matplotlib_42_0.png │ ├── introduction-matplotlib_44_0.png │ ├── introduction-matplotlib_46_0.png │ ├── introduction-matplotlib_47_0.png │ ├── introduction-matplotlib_48_0.png │ ├── introduction-matplotlib_50_0.png │ ├── introduction-matplotlib_54_0.png │ ├── introduction-matplotlib_56_0.png │ ├── introduction-matplotlib_61_0.png │ ├── introduction-matplotlib_65_0.png │ ├── introduction-matplotlib_67_0.png │ ├── introduction-matplotlib_69_0.png │ └── introduction-matplotlib_9_0.png │ ├── numpy │ ├── basic-operations.ipynb │ ├── basic-operations.py │ ├── exercises.ipynb │ ├── exercises.py │ ├── exercises_19_1.png │ ├── index-slicing.ipynb │ ├── index-slicing.py │ ├── introduction-numpy.ipynb │ ├── introduction-numpy.py │ └── introduction-numpy_16_0.png │ ├── pandas │ ├── groupby-merge.ipynb │ ├── groupby-merge.txt │ ├── introduction-pandas.ipynb │ └── introduction-pandas.py │ ├── practicas │ ├── classification-models.ipynb │ ├── classification-models.py │ ├── classification-models_30_1.png │ ├── classification-models_34_2.png │ ├── classification-models_35_2.png │ ├── classification-models_36_2.png │ ├── classification-models_46_1.png │ ├── eda.ipynb │ ├── eda.py │ ├── eda_26_0.png │ ├── eda_31_0.png │ ├── eda_39_0.png │ ├── eda_42_0.png │ ├── eda_49_0.png │ ├── eda_57_0.png │ ├── eda_64_0.png │ ├── eda_74_0.png │ ├── eda_85_0.png │ ├── gradient-descent.ipynb │ ├── gradient-descent.py │ ├── gradient-descent_11_0.png │ ├── gradient-descent_14_0.png │ ├── gradient-descent_17_0.png │ ├── gradient-descent_21_0.png │ ├── linear-programming.ipynb │ ├── linear-programming.txt │ ├── linear-programming_6_0.png │ ├── linear-programming_7_0.png │ ├── portfolio-optimization.ipynb │ ├── portfolio-optimization.py │ ├── portfolio-optimization_11_1.png │ ├── portfolio-optimization_12_1.png │ ├── portfolio-optimization_14_2.png │ ├── portfolio-optimization_17_2.png │ ├── portfolio-optimization_21_1.png │ ├── portfolio-optimization_8_1.png │ ├── portfolio-optimization_9_1.png │ ├── regression-model.ipynb │ ├── regression-model.py │ ├── regression-model_10_0.png │ ├── regression-model_21_0.png │ ├── regression-model_33_0.png │ ├── regression-model_35_0.png │ ├── regression-model_37_0.png │ ├── regression-model_40_0.png │ ├── regression-model_48_0.png │ ├── regression-model_50_0.png │ └── regression-model_52_0.png │ └── proyecto-ejemplo │ ├── dash.ipynb │ ├── dash.txt │ ├── project-management.ipynb │ └── project-management.py ├── _config.yml ├── _static ├── custom.css └── custom.js ├── _toc.yml ├── bibliography.md ├── images ├── .DS_Store ├── buble_sort.gif ├── chapter1 │ ├── interpreted_vs_compiled.jpg │ └── most_popular_programming_languages_stackoverflow_2022.png ├── logo-us.png ├── matplotlib.png ├── merge_sort.gif ├── numpy.png ├── pandas.png ├── portada-curso.jpg ├── python-logo-1.png └── screen.png ├── jb_block_examples.txt ├── notebooks ├── ejercicio2023 │ └── algoritmos.ipynb ├── introduction-python │ ├── .ipynb_checkpoints │ │ └── functions-checkpoint.ipynb │ ├── booleans.ipynb │ ├── classes.ipynb │ ├── control-flow.ipynb │ ├── exercises.ipynb │ ├── functions.ipynb │ ├── introduction-python.ipynb │ ├── lists.ipynb │ ├── numeric-types.ipynb │ ├── other-data-structures.ipynb │ ├── python-basics.ipynb │ └── strings.ipynb ├── matplotlib │ └── introduction-matplotlib.ipynb ├── numpy │ ├── basic-operations.ipynb │ ├── exercises.ipynb │ ├── index-slicing.ipynb │ └── introduction-numpy.ipynb ├── pandas │ ├── groupby-merge.ipynb │ └── introduction-pandas.ipynb ├── practicas │ ├── classification-models.ipynb │ ├── eda.ipynb │ ├── gradient-descent.ipynb │ ├── linear-programming.ipynb │ ├── portfolio-optimization.ipynb │ └── regression-model.ipynb └── proyecto-ejemplo │ ├── dash.ipynb │ └── project-management.ipynb ├── references.bib └── requirements.txt /.github/workflows/main.yml: -------------------------------------------------------------------------------- 1 | name: deploy-book 2 | 3 | # Only run this when the master branch changes 4 | on: 5 | push: 6 | branches: 7 | - main 8 | 9 | # This job installs dependencies, builds the book, and pushes it to `gh-pages` 10 | jobs: 11 | deploy-book: 12 | runs-on: ubuntu-latest 13 | steps: 14 | - uses: actions/checkout@v2 15 | 16 | # Install dependencies 17 | - name: Set up Python 3.7 18 | uses: actions/setup-python@v2 19 | with: 20 | python-version: 3.7 21 | 22 | - name: Install dependencies 23 | run: | 24 | pip install -r requirements.txt 25 | 26 | # Build the book 27 | - name: Build the book 28 | run: | 29 | jupyter-book build . 30 | 31 | # Push the book's HTML to github-pages 32 | - name: GitHub Pages action 33 | uses: peaceiris/actions-gh-pages@v3.6.1 34 | with: 35 | github_token: ${{ secrets.GITHUB_TOKEN }} 36 | publish_dir: ./_build/html 37 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | env/ 2 | help_commands.txt 3 | .ipynb_checkpoints/ 4 | notebooks/exploratorios/data 5 | my-python-project/ 6 | .idea/ 7 | .vscode 8 | .python-version 9 | solutions/ 10 | .DS_Store 11 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contribuye 💻 2 | 3 | Para contribuir con el curso, ya sea para proponer la solución de algún ejercicio o nuevos ejercicios, corregir erratas, mejorar el contenido del curso, o cualquier cosa que se te ocurra, puedes seguir los siguientes pasos 4 | - crea una **bifurcación** del repositorio en tu cuenta de [github](https://github.com/), pulsando el botón `fork` que aparece arriba a la derecha. 5 | - modifica los notebooks a tu antojo, y crea una [**pull request**](https://docs.github.com/es/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests) contra la rama `main` del repositorio principal 6 | - tras revisar la propuesta y si los cambios son oportunos, aceptaré la PR y los cambios se desplegarán automáticamente en la página del curso. 7 | 8 | No existe ninguna política para contribuir, pero intenta dar contexto a tu propuesta y que los archivos modificados estén dentro del directorio `notebooks/`. Ten en cuanta que **las etiquetas de los ejercicios son únicas** y que **justo al empezar una solución hay que referenciar el ejercicio correspondiente**. -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 Javier Linares Torres 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Curso de Python US 2 | 3 |  4 | 5 | El material de esta página guiará el curso de introducción a Python. A lo largo del mismo veremos los siguientes capítulos 📄 6 | 7 | ```{tableofcontents} 8 | ``` 9 | 10 | ## Cuadernos de trabajo 📘 11 | 12 | El contenido del curso estará estructurado en una serie de cuadernos o notebooks divididos por secciones, que se pueden abrir desde [Google Colab](https://colab.research.google.com/?hl=es), o directamente descargar para trabajar con ellos en local. 13 | 14 | ### Ejercicios 15 | En cada cuaderno encontraremos celdillas de tipo *ejecutable* y de tipo *markdown*. Dentro de estas últimas, algunos bloque de texto estarán contenidos en bloques del tipo *ejercicio* 16 | 17 | ``` 18 | :::{exercise} 19 | :label: my-exercise 20 | 21 | # your code for the exercise 22 | 23 | ::: 24 | ``` 25 | 26 | y también su correspondiente solución 27 | 28 | ``` 29 | :::{solution} my-exercise 30 | :class: dropdown 31 | 32 | # your code for the solution 33 | 34 | ::: 35 | 36 | ``` 37 | 38 | que sirven para renderizar los ejercicios y sus soluciones con un formato más visual, todo ello está alojado en [el directorio `notebooks` del repositorio principal](https://github.com/javlintor/curso-python-us/tree/main/notebooks). 39 | 40 | ## Contribuye 💻 41 | 42 | Para contribuir con el curso, ya sea para proponer la solución de algún ejercicio o nuevos ejercicios, corregir erratas, mejorar el contenido del curso, o cualquier cosa que se te ocurra, puedes seguir los siguientes pasos 43 | - crea una **bifurcación** del repositorio en tu cuenta de [github](https://github.com/), pulsando el botón `fork` que aparece arriba a la derecha. 44 | - modifica los notebooks a tu antojo, y crea una [**pull request**](https://docs.github.com/es/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests) contra la rama `main` del repositorio principal 45 | - tras revisar la propuesta y si los cambios son oportunos, aceptaré la PR y los cambios se desplegarán automáticamente en la página del curso. 46 | 47 | No existe ninguna política para contribuir, pero intenta dar contexto a tu propuesta y que los archivos modificados estén dentro del directorio `notebooks/`. Ten en cuanta que **las etiquetas de los ejercicios son únicas** y que **justo al empezar una solución hay que referenciar el ejercicio correspondiente**. 48 | 49 | Cualquier incidencia o propuesta de mejora, no dudes en escribir en el [apartado de issues](https://github.com/javlintor/curso-python-us/issues) del repositorio. 50 | 51 | ## Se agradece 52 | 53 | Si te gusta el contenido del curso o crees que te ha resultado útil, no olvides premiar con una estrella ⭐️ a este [repositorio](https://github.com/javlintor/curso-python-us). 54 | 55 | ## Discord 56 | Existe un [servidor de Discord](https://discord.gg/4Ene8brMJV) para seguir toda la información del curso. 57 | 58 | También puedes contactarme por correo electrónico En esta dirección 59 | 60 | ## Referencias 61 | El material en el que se han basado los capítulos es el siguiente: 62 | 1. [Introducción a Python](introduction-python): 63 | - {cite}`beazley2021python` 64 | - {cite}`Soklaski2021` 65 | - {cite}`Pythonorg` 66 | 67 | 2. [Numpy](numpy): 68 | - {cite}`mckinney2012python` 69 | - {cite}`harrison2021effective` 70 | 71 | 4. [Matplotlib](matplotlib): 72 | - {cite}`mckinney2012python` 73 | 74 | 3. [Pandas](pandas): 75 | - {cite}`harrison2021effective` 76 | 77 | 4. [Casos prácticos](practicas): 78 | - {cite}`géron2019hands` 79 | - {cite}`sargent2015quantitative` 80 | -------------------------------------------------------------------------------- /_build/.doctrees/CONTRIBUTING.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/.doctrees/CONTRIBUTING.doctree -------------------------------------------------------------------------------- /_build/.doctrees/README.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/.doctrees/README.doctree -------------------------------------------------------------------------------- /_build/.doctrees/bibliography.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/.doctrees/bibliography.doctree -------------------------------------------------------------------------------- /_build/.doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/.doctrees/environment.pickle -------------------------------------------------------------------------------- /_build/.doctrees/glue_cache.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /_build/.doctrees/notebooks/introduction-python/booleans.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/.doctrees/notebooks/introduction-python/booleans.doctree -------------------------------------------------------------------------------- /_build/.doctrees/notebooks/introduction-python/classes.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/.doctrees/notebooks/introduction-python/classes.doctree -------------------------------------------------------------------------------- /_build/.doctrees/notebooks/introduction-python/control-flow.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/.doctrees/notebooks/introduction-python/control-flow.doctree -------------------------------------------------------------------------------- /_build/.doctrees/notebooks/introduction-python/exercises.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/.doctrees/notebooks/introduction-python/exercises.doctree -------------------------------------------------------------------------------- /_build/.doctrees/notebooks/introduction-python/functions.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/.doctrees/notebooks/introduction-python/functions.doctree -------------------------------------------------------------------------------- /_build/.doctrees/notebooks/introduction-python/introduction-python.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/.doctrees/notebooks/introduction-python/introduction-python.doctree -------------------------------------------------------------------------------- /_build/.doctrees/notebooks/introduction-python/lists.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/.doctrees/notebooks/introduction-python/lists.doctree -------------------------------------------------------------------------------- /_build/.doctrees/notebooks/introduction-python/numeric-types.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/.doctrees/notebooks/introduction-python/numeric-types.doctree -------------------------------------------------------------------------------- /_build/.doctrees/notebooks/introduction-python/other-data-structures.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/.doctrees/notebooks/introduction-python/other-data-structures.doctree -------------------------------------------------------------------------------- /_build/.doctrees/notebooks/introduction-python/python-basics.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/.doctrees/notebooks/introduction-python/python-basics.doctree -------------------------------------------------------------------------------- /_build/.doctrees/notebooks/introduction-python/strings.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/.doctrees/notebooks/introduction-python/strings.doctree -------------------------------------------------------------------------------- /_build/.doctrees/notebooks/matplotlib/introduction-matplotlib.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/.doctrees/notebooks/matplotlib/introduction-matplotlib.doctree -------------------------------------------------------------------------------- /_build/.doctrees/notebooks/numpy/basic-operations.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/.doctrees/notebooks/numpy/basic-operations.doctree -------------------------------------------------------------------------------- /_build/.doctrees/notebooks/numpy/exercises.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/.doctrees/notebooks/numpy/exercises.doctree -------------------------------------------------------------------------------- /_build/.doctrees/notebooks/numpy/index-slicing.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/.doctrees/notebooks/numpy/index-slicing.doctree -------------------------------------------------------------------------------- /_build/.doctrees/notebooks/numpy/introduction-numpy.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/.doctrees/notebooks/numpy/introduction-numpy.doctree -------------------------------------------------------------------------------- /_build/.doctrees/notebooks/pandas/groupby-merge.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/.doctrees/notebooks/pandas/groupby-merge.doctree -------------------------------------------------------------------------------- /_build/.doctrees/notebooks/pandas/introduction-pandas.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/.doctrees/notebooks/pandas/introduction-pandas.doctree -------------------------------------------------------------------------------- /_build/.doctrees/notebooks/practicas/classification-models.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/.doctrees/notebooks/practicas/classification-models.doctree -------------------------------------------------------------------------------- /_build/.doctrees/notebooks/practicas/eda.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/.doctrees/notebooks/practicas/eda.doctree -------------------------------------------------------------------------------- /_build/.doctrees/notebooks/practicas/gradient-descent.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/.doctrees/notebooks/practicas/gradient-descent.doctree -------------------------------------------------------------------------------- /_build/.doctrees/notebooks/practicas/linear-programming.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/.doctrees/notebooks/practicas/linear-programming.doctree -------------------------------------------------------------------------------- /_build/.doctrees/notebooks/practicas/portfolio-optimization.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/.doctrees/notebooks/practicas/portfolio-optimization.doctree -------------------------------------------------------------------------------- /_build/.doctrees/notebooks/practicas/regression-model.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/.doctrees/notebooks/practicas/regression-model.doctree -------------------------------------------------------------------------------- /_build/.doctrees/notebooks/proyecto-ejemplo/dash.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/.doctrees/notebooks/proyecto-ejemplo/dash.doctree -------------------------------------------------------------------------------- /_build/.doctrees/notebooks/proyecto-ejemplo/project-management.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/.doctrees/notebooks/proyecto-ejemplo/project-management.doctree -------------------------------------------------------------------------------- /_build/html/.buildinfo: -------------------------------------------------------------------------------- 1 | # Sphinx build info version 1 2 | # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. 3 | config: 02558a6c6685568e0ddc7a58020d32d5 4 | tags: 645f666f9bcd5a90fca523b33c5a78b7 5 | -------------------------------------------------------------------------------- /_build/html/_images/classification-models_30_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/classification-models_30_1.png -------------------------------------------------------------------------------- /_build/html/_images/classification-models_34_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/classification-models_34_2.png -------------------------------------------------------------------------------- /_build/html/_images/classification-models_35_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/classification-models_35_2.png -------------------------------------------------------------------------------- /_build/html/_images/classification-models_36_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/classification-models_36_2.png -------------------------------------------------------------------------------- /_build/html/_images/classification-models_46_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/classification-models_46_1.png -------------------------------------------------------------------------------- /_build/html/_images/eda_26_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/eda_26_0.png -------------------------------------------------------------------------------- /_build/html/_images/eda_31_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/eda_31_0.png -------------------------------------------------------------------------------- /_build/html/_images/eda_39_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/eda_39_0.png -------------------------------------------------------------------------------- /_build/html/_images/eda_42_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/eda_42_0.png -------------------------------------------------------------------------------- /_build/html/_images/eda_49_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/eda_49_0.png -------------------------------------------------------------------------------- /_build/html/_images/eda_57_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/eda_57_0.png -------------------------------------------------------------------------------- /_build/html/_images/eda_64_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/eda_64_0.png -------------------------------------------------------------------------------- /_build/html/_images/eda_74_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/eda_74_0.png -------------------------------------------------------------------------------- /_build/html/_images/eda_85_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/eda_85_0.png -------------------------------------------------------------------------------- /_build/html/_images/exercises_19_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/exercises_19_1.png -------------------------------------------------------------------------------- /_build/html/_images/gradient-descent_11_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/gradient-descent_11_0.png -------------------------------------------------------------------------------- /_build/html/_images/gradient-descent_14_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/gradient-descent_14_0.png -------------------------------------------------------------------------------- /_build/html/_images/gradient-descent_17_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/gradient-descent_17_0.png -------------------------------------------------------------------------------- /_build/html/_images/gradient-descent_21_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/gradient-descent_21_0.png -------------------------------------------------------------------------------- /_build/html/_images/introduction-matplotlib_14_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/introduction-matplotlib_14_0.png -------------------------------------------------------------------------------- /_build/html/_images/introduction-matplotlib_19_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/introduction-matplotlib_19_0.png -------------------------------------------------------------------------------- /_build/html/_images/introduction-matplotlib_23_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/introduction-matplotlib_23_0.png -------------------------------------------------------------------------------- /_build/html/_images/introduction-matplotlib_26_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/introduction-matplotlib_26_0.png -------------------------------------------------------------------------------- /_build/html/_images/introduction-matplotlib_28_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/introduction-matplotlib_28_0.png -------------------------------------------------------------------------------- /_build/html/_images/introduction-matplotlib_30_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/introduction-matplotlib_30_0.png -------------------------------------------------------------------------------- /_build/html/_images/introduction-matplotlib_32_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/introduction-matplotlib_32_0.png -------------------------------------------------------------------------------- /_build/html/_images/introduction-matplotlib_34_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/introduction-matplotlib_34_0.png -------------------------------------------------------------------------------- /_build/html/_images/introduction-matplotlib_36_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/introduction-matplotlib_36_0.png -------------------------------------------------------------------------------- /_build/html/_images/introduction-matplotlib_38_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/introduction-matplotlib_38_0.png -------------------------------------------------------------------------------- /_build/html/_images/introduction-matplotlib_40_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/introduction-matplotlib_40_0.png -------------------------------------------------------------------------------- /_build/html/_images/introduction-matplotlib_42_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/introduction-matplotlib_42_0.png -------------------------------------------------------------------------------- /_build/html/_images/introduction-matplotlib_44_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/introduction-matplotlib_44_0.png -------------------------------------------------------------------------------- /_build/html/_images/introduction-matplotlib_46_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/introduction-matplotlib_46_0.png -------------------------------------------------------------------------------- /_build/html/_images/introduction-matplotlib_47_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/introduction-matplotlib_47_0.png -------------------------------------------------------------------------------- /_build/html/_images/introduction-matplotlib_48_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/introduction-matplotlib_48_0.png -------------------------------------------------------------------------------- /_build/html/_images/introduction-matplotlib_50_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/introduction-matplotlib_50_0.png -------------------------------------------------------------------------------- /_build/html/_images/introduction-matplotlib_54_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/introduction-matplotlib_54_0.png -------------------------------------------------------------------------------- /_build/html/_images/introduction-matplotlib_56_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/introduction-matplotlib_56_0.png -------------------------------------------------------------------------------- /_build/html/_images/introduction-matplotlib_61_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/introduction-matplotlib_61_0.png -------------------------------------------------------------------------------- /_build/html/_images/introduction-matplotlib_65_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/introduction-matplotlib_65_0.png -------------------------------------------------------------------------------- /_build/html/_images/introduction-matplotlib_67_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/introduction-matplotlib_67_0.png -------------------------------------------------------------------------------- /_build/html/_images/introduction-matplotlib_69_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/introduction-matplotlib_69_0.png -------------------------------------------------------------------------------- /_build/html/_images/introduction-matplotlib_9_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/introduction-matplotlib_9_0.png -------------------------------------------------------------------------------- /_build/html/_images/introduction-numpy_16_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/introduction-numpy_16_0.png -------------------------------------------------------------------------------- /_build/html/_images/linear-programming_6_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/linear-programming_6_0.png -------------------------------------------------------------------------------- /_build/html/_images/linear-programming_7_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/linear-programming_7_0.png -------------------------------------------------------------------------------- /_build/html/_images/other-data-structures_100_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/other-data-structures_100_0.png -------------------------------------------------------------------------------- /_build/html/_images/other-data-structures_97_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/other-data-structures_97_0.png -------------------------------------------------------------------------------- /_build/html/_images/other-data-structures_99_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/other-data-structures_99_0.png -------------------------------------------------------------------------------- /_build/html/_images/portfolio-optimization_11_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/portfolio-optimization_11_1.png -------------------------------------------------------------------------------- /_build/html/_images/portfolio-optimization_12_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/portfolio-optimization_12_1.png -------------------------------------------------------------------------------- /_build/html/_images/portfolio-optimization_14_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/portfolio-optimization_14_2.png -------------------------------------------------------------------------------- /_build/html/_images/portfolio-optimization_17_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/portfolio-optimization_17_2.png -------------------------------------------------------------------------------- /_build/html/_images/portfolio-optimization_21_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/portfolio-optimization_21_1.png -------------------------------------------------------------------------------- /_build/html/_images/portfolio-optimization_8_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/portfolio-optimization_8_1.png -------------------------------------------------------------------------------- /_build/html/_images/portfolio-optimization_9_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/portfolio-optimization_9_1.png -------------------------------------------------------------------------------- /_build/html/_images/regression-model_10_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/regression-model_10_0.png -------------------------------------------------------------------------------- /_build/html/_images/regression-model_21_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/regression-model_21_0.png -------------------------------------------------------------------------------- /_build/html/_images/regression-model_33_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/regression-model_33_0.png -------------------------------------------------------------------------------- /_build/html/_images/regression-model_35_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/regression-model_35_0.png -------------------------------------------------------------------------------- /_build/html/_images/regression-model_37_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/regression-model_37_0.png -------------------------------------------------------------------------------- /_build/html/_images/regression-model_40_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/regression-model_40_0.png -------------------------------------------------------------------------------- /_build/html/_images/regression-model_48_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/regression-model_48_0.png -------------------------------------------------------------------------------- /_build/html/_images/regression-model_50_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/regression-model_50_0.png -------------------------------------------------------------------------------- /_build/html/_images/regression-model_52_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/regression-model_52_0.png -------------------------------------------------------------------------------- /_build/html/_images/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_images/square.png -------------------------------------------------------------------------------- /_build/html/_sources/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contribuye 💻 2 | 3 | Para contribuir con el curso, ya sea para proponer la solución de algún ejercicio o nuevos ejercicios, corregir erratas, mejorar el contenido del curso, o cualquier cosa que se te ocurra, puedes seguir los siguientes pasos 4 | - crea una **bifurcación** del repositorio en tu cuenta de [github](https://github.com/), pulsando el botón `fork` que aparece arriba a la derecha. 5 | - modifica los notebooks a tu antojo, y crea una [**pull request**](https://docs.github.com/es/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests) contra la rama `main` del repositorio principal 6 | - tras revisar la propuesta y si los cambios son oportunos, aceptaré la PR y los cambios se desplegarán automáticamente en la página del curso. 7 | 8 | No existe ninguna política para contribuir, pero intenta dar contexto a tu propuesta y que los archivos modificados estén dentro del directorio `notebooks/`. Ten en cuanta que **las etiquetas de los ejercicios son únicas** y que **justo al empezar una solución hay que referenciar el ejercicio correspondiente**. -------------------------------------------------------------------------------- /_build/html/_sources/README.md: -------------------------------------------------------------------------------- 1 | # Curso de Python US 2 | 3 |  4 | 5 | El material de esta página guiará el curso de introducción a Python. A lo largo del mismo veremos los siguientes capítulos 📄 6 | 7 | ```{tableofcontents} 8 | ``` 9 | 10 | ## Cuadernos de trabajo 📘 11 | 12 | El contenido del curso estará estructurado en una serie de cuadernos o notebooks divididos por secciones, que se pueden abrir desde [Google Colab](https://colab.research.google.com/?hl=es), [Binder](https://mybinder.org/) o directamente descargar para trabajar con ellos en local. 13 | 14 | ### Ejercicios 15 | En cada cuaderno encontraremos celdillas de tipo *ejecutable* y de tipo *markdown*. Dentro de estas últimas, algunos bloque de texto estarán contenidos en bloques del tipo *ejercicio* 16 | 17 | ``` 18 | :::{exercise} 19 | :label: my-exercise 20 | 21 | # your code for the exercise 22 | 23 | ::: 24 | ``` 25 | 26 | y también su correspondiente solución 27 | 28 | ``` 29 | :::{solution} my-exercise 30 | :class: dropdown 31 | 32 | # your code for the solution 33 | 34 | ::: 35 | 36 | ``` 37 | 38 | que sirven para renderizar los ejercicios y sus soluciones con un formato más visual, todo ello está alojado en [el directorio `notebooks` del repositorio principal](https://github.com/javlintor/curso-python-us/tree/main/notebooks). 39 | 40 | ## Contribuye 💻 41 | 42 | Para contribuir con el curso, ya sea para proponer la solución de algún ejercicio o nuevos ejercicios, corregir erratas, mejorar el contenido del curso, o cualquier cosa que se te ocurra, puedes seguir los siguientes pasos 43 | - crea una **bifurcación** del repositorio en tu cuenta de [github](https://github.com/), pulsando el botón `fork` que aparece arriba a la derecha. 44 | - modifica los notebooks a tu antojo, y crea una [**pull request**](https://docs.github.com/es/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests) contra la rama `main` del repositorio principal 45 | - tras revisar la propuesta y si los cambios son oportunos, aceptaré la PR y los cambios se desplegarán automáticamente en la página del curso. 46 | 47 | No existe ninguna política para contribuir, pero intenta dar contexto a tu propuesta y que los archivos modificados estén dentro del directorio `notebooks/`. Ten en cuanta que **las etiquetas de los ejercicios son únicas** y que **justo al empezar una solución hay que referenciar el ejercicio correspondiente**. 48 | 49 | Cualquier incidencia o propuesta de mejora, no dudes en escribir en el [apartado de issues](https://github.com/javlintor/curso-python-us/issues) del repositorio. 50 | 51 | ## Se agradece 52 | 53 | Si te gusta el contenido del curso o crees que te ha resultado útil, no olvides premiar con una estrella ⭐️ a este [repositorio](https://github.com/javlintor/curso-python-us). 54 | 55 | ## Discord 56 | Existe un [servidor de Discord](https://discord.gg/Aqx7AkAA) para seguir las clases del curso. 57 | 58 | ## Referencias 59 | El material en el que se han basado los capítulos es el siguiente: 60 | 1. [Introducción a Python](introduction-python): 61 | - {cite}`beazley2021python` 62 | - {cite}`Soklaski2021` 63 | - {cite}`Pythonorg` 64 | 65 | 2. [Numpy](numpy): 66 | - {cite}`mckinney2012python` 67 | - {cite}`harrison2021effective` 68 | 69 | 4. [Matplotlib](matplotlib): 70 | - {cite}`mckinney2012python` 71 | 72 | 3. [Pandas](pandas): 73 | - {cite}`harrison2021effective` 74 | 75 | 4. [Casos prácticos](practicas): 76 | - {cite}`géron2019hands` 77 | - {cite}`sargent2015quantitative` 78 | -------------------------------------------------------------------------------- /_build/html/_sources/bibliography.md: -------------------------------------------------------------------------------- 1 | # Bibliografía 2 | 3 | ```{bibliography} 4 | ``` -------------------------------------------------------------------------------- /_build/html/_sphinx_design_static/design-tabs.js: -------------------------------------------------------------------------------- 1 | var sd_labels_by_text = {}; 2 | 3 | function ready() { 4 | const li = document.getElementsByClassName("sd-tab-label"); 5 | for (const label of li) { 6 | syncId = label.getAttribute("data-sync-id"); 7 | if (syncId) { 8 | label.onclick = onLabelClick; 9 | if (!sd_labels_by_text[syncId]) { 10 | sd_labels_by_text[syncId] = []; 11 | } 12 | sd_labels_by_text[syncId].push(label); 13 | } 14 | } 15 | } 16 | 17 | function onLabelClick() { 18 | // Activate other inputs with the same sync id. 19 | syncId = this.getAttribute("data-sync-id"); 20 | for (label of sd_labels_by_text[syncId]) { 21 | if (label === this) continue; 22 | label.previousElementSibling.checked = true; 23 | } 24 | window.localStorage.setItem("sphinx-design-last-tab", syncId); 25 | } 26 | 27 | document.addEventListener("DOMContentLoaded", ready, false); 28 | -------------------------------------------------------------------------------- /_build/html/_static/check-solid.svg: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /_build/html/_static/copy-button.svg: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /_build/html/_static/copybutton.css: -------------------------------------------------------------------------------- 1 | /* Copy buttons */ 2 | button.copybtn { 3 | position: absolute; 4 | display: flex; 5 | top: .3em; 6 | right: .3em; 7 | width: 1.7em; 8 | height: 1.7em; 9 | opacity: 0; 10 | transition: opacity 0.3s, border .3s, background-color .3s; 11 | user-select: none; 12 | padding: 0; 13 | border: none; 14 | outline: none; 15 | border-radius: 0.4em; 16 | /* The colors that GitHub uses */ 17 | border: #1b1f2426 1px solid; 18 | background-color: #f6f8fa; 19 | color: #57606a; 20 | } 21 | 22 | button.copybtn.success { 23 | border-color: #22863a; 24 | color: #22863a; 25 | } 26 | 27 | button.copybtn svg { 28 | stroke: currentColor; 29 | width: 1.5em; 30 | height: 1.5em; 31 | padding: 0.1em; 32 | } 33 | 34 | div.highlight { 35 | position: relative; 36 | } 37 | 38 | .highlight:hover button.copybtn { 39 | opacity: 1; 40 | } 41 | 42 | .highlight button.copybtn:hover { 43 | background-color: rgb(235, 235, 235); 44 | } 45 | 46 | .highlight button.copybtn:active { 47 | background-color: rgb(187, 187, 187); 48 | } 49 | 50 | /** 51 | * A minimal CSS-only tooltip copied from: 52 | * https://codepen.io/mildrenben/pen/rVBrpK 53 | * 54 | * To use, write HTML like the following: 55 | * 56 | *
Short
57 | */ 58 | .o-tooltip--left { 59 | position: relative; 60 | } 61 | 62 | .o-tooltip--left:after { 63 | opacity: 0; 64 | visibility: hidden; 65 | position: absolute; 66 | content: attr(data-tooltip); 67 | padding: .2em; 68 | font-size: .8em; 69 | left: -.2em; 70 | background: grey; 71 | color: white; 72 | white-space: nowrap; 73 | z-index: 2; 74 | border-radius: 2px; 75 | transform: translateX(-102%) translateY(0); 76 | transition: opacity 0.2s cubic-bezier(0.64, 0.09, 0.08, 1), transform 0.2s cubic-bezier(0.64, 0.09, 0.08, 1); 77 | } 78 | 79 | .o-tooltip--left:hover:after { 80 | display: block; 81 | opacity: 1; 82 | visibility: visible; 83 | transform: translateX(-100%) translateY(0); 84 | transition: opacity 0.2s cubic-bezier(0.64, 0.09, 0.08, 1), transform 0.2s cubic-bezier(0.64, 0.09, 0.08, 1); 85 | transition-delay: .5s; 86 | } 87 | 88 | /* By default the copy button shouldn't show up when printing a page */ 89 | @media print { 90 | button.copybtn { 91 | display: none; 92 | } 93 | } 94 | -------------------------------------------------------------------------------- /_build/html/_static/copybutton_funcs.js: -------------------------------------------------------------------------------- 1 | function escapeRegExp(string) { 2 | return string.replace(/[.*+?^${}()|[\]\\]/g, '\\$&'); // $& means the whole matched string 3 | } 4 | 5 | // Callback when a copy button is clicked. Will be passed the node that was clicked 6 | // should then grab the text and replace pieces of text that shouldn't be used in output 7 | export function formatCopyText(textContent, copybuttonPromptText, isRegexp = false, onlyCopyPromptLines = true, removePrompts = true, copyEmptyLines = true, lineContinuationChar = "", hereDocDelim = "") { 8 | 9 | var regexp; 10 | var match; 11 | 12 | // Do we check for line continuation characters and "HERE-documents"? 13 | var useLineCont = !!lineContinuationChar 14 | var useHereDoc = !!hereDocDelim 15 | 16 | // create regexp to capture prompt and remaining line 17 | if (isRegexp) { 18 | regexp = new RegExp('^(' + copybuttonPromptText + ')(.*)') 19 | } else { 20 | regexp = new RegExp('^(' + escapeRegExp(copybuttonPromptText) + ')(.*)') 21 | } 22 | 23 | const outputLines = []; 24 | var promptFound = false; 25 | var gotLineCont = false; 26 | var gotHereDoc = false; 27 | const lineGotPrompt = []; 28 | for (const line of textContent.split('\n')) { 29 | match = line.match(regexp) 30 | if (match || gotLineCont || gotHereDoc) { 31 | promptFound = regexp.test(line) 32 | lineGotPrompt.push(promptFound) 33 | if (removePrompts && promptFound) { 34 | outputLines.push(match[2]) 35 | } else { 36 | outputLines.push(line) 37 | } 38 | gotLineCont = line.endsWith(lineContinuationChar) & useLineCont 39 | if (line.includes(hereDocDelim) & useHereDoc) 40 | gotHereDoc = !gotHereDoc 41 | } else if (!onlyCopyPromptLines) { 42 | outputLines.push(line) 43 | } else if (copyEmptyLines && line.trim() === '') { 44 | outputLines.push(line) 45 | } 46 | } 47 | 48 | // If no lines with the prompt were found then just use original lines 49 | if (lineGotPrompt.some(v => v === true)) { 50 | textContent = outputLines.join('\n'); 51 | } 52 | 53 | // Remove a trailing newline to avoid auto-running when pasting 54 | if (textContent.endsWith("\n")) { 55 | textContent = textContent.slice(0, -1) 56 | } 57 | return textContent 58 | } 59 | -------------------------------------------------------------------------------- /_build/html/_static/custom.css: -------------------------------------------------------------------------------- 1 | .sticky-top { 2 | position: static; 3 | } 4 | .sticky-top:hover { 5 | position: sticky; 6 | } -------------------------------------------------------------------------------- /_build/html/_static/custom.js: -------------------------------------------------------------------------------- 1 | document.addEventListener('DOMContentLoaded', (event) => { 2 | var links = document.getElementsByClassName('headerbtn'); 3 | for (var i = 0; i < links.length; ++i) { 4 | links[i].setAttribute('target', '_blank'); 5 | } 6 | }) -------------------------------------------------------------------------------- /_build/html/_static/design-tabs.js: -------------------------------------------------------------------------------- 1 | var sd_labels_by_text = {}; 2 | 3 | function ready() { 4 | const li = document.getElementsByClassName("sd-tab-label"); 5 | for (const label of li) { 6 | syncId = label.getAttribute("data-sync-id"); 7 | if (syncId) { 8 | label.onclick = onLabelClick; 9 | if (!sd_labels_by_text[syncId]) { 10 | sd_labels_by_text[syncId] = []; 11 | } 12 | sd_labels_by_text[syncId].push(label); 13 | } 14 | } 15 | } 16 | 17 | function onLabelClick() { 18 | // Activate other inputs with the same sync id. 19 | syncId = this.getAttribute("data-sync-id"); 20 | for (label of sd_labels_by_text[syncId]) { 21 | if (label === this) continue; 22 | label.previousElementSibling.checked = true; 23 | } 24 | window.localStorage.setItem("sphinx-design-last-tab", syncId); 25 | } 26 | 27 | document.addEventListener("DOMContentLoaded", ready, false); 28 | -------------------------------------------------------------------------------- /_build/html/_static/documentation_options.js: -------------------------------------------------------------------------------- 1 | var DOCUMENTATION_OPTIONS = { 2 | URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'), 3 | VERSION: '', 4 | LANGUAGE: 'es', 5 | COLLAPSE_INDEX: false, 6 | BUILDER: 'html', 7 | FILE_SUFFIX: '.html', 8 | LINK_SUFFIX: '.html', 9 | HAS_SOURCE: true, 10 | SOURCELINK_SUFFIX: '', 11 | NAVIGATION_WITH_KEYS: true, 12 | SHOW_SEARCH_SUMMARY: true, 13 | ENABLE_SEARCH_SHORTCUTS: true, 14 | }; -------------------------------------------------------------------------------- /_build/html/_static/exercise.css: -------------------------------------------------------------------------------- 1 | /********************************************* 2 | * Variables * 3 | *********************************************/ 4 | :root { 5 | --note-title-color: rgba(68,138,255,.1); 6 | --note-border-color: #007bff; 7 | --grey-border-color: #ccc; 8 | } 9 | 10 | /********************************************* 11 | * Exercise * 12 | *********************************************/ 13 | div.exercise { 14 | border-color: var(--note-border-color); 15 | background-color: var(--note-title-color); 16 | } 17 | 18 | div.exercise p.admonition-title { 19 | background-color: var(--note-title-color); 20 | } 21 | 22 | /* Remove content box */ 23 | div.exercise p.admonition-title::before { 24 | content: "\f303"; 25 | } 26 | 27 | /********************************************* 28 | * Solution * 29 | *********************************************/ 30 | div.solution{ 31 | border-color: var(--grey-border-color); 32 | background-color: none; 33 | } 34 | 35 | div.solution p.admonition-title { 36 | background-color: transparent; 37 | text-decoration: none; 38 | } 39 | 40 | /* Remove content box */ 41 | div.solution p.admonition-title::before { 42 | content: none; 43 | } 44 | -------------------------------------------------------------------------------- /_build/html/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_static/file.png -------------------------------------------------------------------------------- /_build/html/_static/images/logo_binder.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 20 | -------------------------------------------------------------------------------- /_build/html/_static/images/logo_colab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_static/images/logo_colab.png -------------------------------------------------------------------------------- /_build/html/_static/images/logo_deepnote.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /_build/html/_static/images/logo_jupyterhub.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /_build/html/_static/locales/ar/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: ar\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "repository" 12 | msgstr "مخزن" 13 | 14 | msgid "open issue" 15 | msgstr "قضية مفتوحة" 16 | 17 | msgid "Contents" 18 | msgstr "محتويات" 19 | 20 | msgid "Fullscreen mode" 21 | msgstr "وضع ملء الشاشة" 22 | 23 | msgid "Download this page" 24 | msgstr "قم بتنزيل هذه الصفحة" 25 | 26 | msgid "Download source file" 27 | msgstr "تنزيل ملف المصدر" 28 | 29 | msgid "Launch" 30 | msgstr "إطلاق" 31 | 32 | msgid "Edit this page" 33 | msgstr "قم بتحرير هذه الصفحة" 34 | 35 | msgid "Toggle navigation" 36 | msgstr "تبديل التنقل" 37 | 38 | msgid "Theme by the" 39 | msgstr "موضوع بواسطة" 40 | 41 | msgid "Source repository" 42 | msgstr "مستودع المصدر" 43 | 44 | msgid "Last updated on" 45 | msgstr "آخر تحديث في" 46 | 47 | msgid "By the" 48 | msgstr "بواسطة" 49 | 50 | msgid "Sphinx Book Theme" 51 | msgstr "موضوع كتاب أبو الهول" 52 | 53 | msgid "Open an issue" 54 | msgstr "افتح قضية" 55 | 56 | msgid "next page" 57 | msgstr "الصفحة التالية" 58 | 59 | msgid "Copyright" 60 | msgstr "حقوق النشر" 61 | 62 | msgid "Search this book..." 63 | msgstr "بحث في هذا الكتاب ..." 64 | 65 | msgid "Print to PDF" 66 | msgstr "طباعة إلى PDF" 67 | 68 | msgid "By" 69 | msgstr "بواسطة" 70 | 71 | msgid "previous page" 72 | msgstr "الصفحة السابقة" 73 | 74 | msgid "Search the docs ..." 75 | msgstr "ابحث في المستندات ..." 76 | 77 | msgid "Download notebook file" 78 | msgstr "تنزيل ملف دفتر الملاحظات" 79 | 80 | msgid "suggest edit" 81 | msgstr "أقترح تحرير" 82 | -------------------------------------------------------------------------------- /_build/html/_static/locales/bg/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: bg\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "repository" 12 | msgstr "хранилище" 13 | 14 | msgid "open issue" 15 | msgstr "отворен брой" 16 | 17 | msgid "Contents" 18 | msgstr "Съдържание" 19 | 20 | msgid "Fullscreen mode" 21 | msgstr "Режим на цял екран" 22 | 23 | msgid "Download this page" 24 | msgstr "Изтеглете тази страница" 25 | 26 | msgid "Download source file" 27 | msgstr "Изтеглете изходния файл" 28 | 29 | msgid "Launch" 30 | msgstr "Стартиране" 31 | 32 | msgid "Edit this page" 33 | msgstr "Редактирайте тази страница" 34 | 35 | msgid "Toggle navigation" 36 | msgstr "Превключване на навигацията" 37 | 38 | msgid "Theme by the" 39 | msgstr "Тема от" 40 | 41 | msgid "Source repository" 42 | msgstr "Хранилище на източника" 43 | 44 | msgid "Last updated on" 45 | msgstr "Последна актуализация на" 46 | 47 | msgid "By the" 48 | msgstr "По" 49 | 50 | msgid "Sphinx Book Theme" 51 | msgstr "Тема на книгата Sphinx" 52 | 53 | msgid "Open an issue" 54 | msgstr "Отворете проблем" 55 | 56 | msgid "next page" 57 | msgstr "Следваща страница" 58 | 59 | msgid "Copyright" 60 | msgstr "Авторско право" 61 | 62 | msgid "Search this book..." 63 | msgstr "Търсене в тази книга ..." 64 | 65 | msgid "Print to PDF" 66 | msgstr "Печат в PDF" 67 | 68 | msgid "By" 69 | msgstr "От" 70 | 71 | msgid "previous page" 72 | msgstr "предишна страница" 73 | 74 | msgid "Search the docs ..." 75 | msgstr "Търсене в документите ..." 76 | 77 | msgid "Download notebook file" 78 | msgstr "Изтеглете файла на бележника" 79 | 80 | msgid "suggest edit" 81 | msgstr "предложи редактиране" 82 | -------------------------------------------------------------------------------- /_build/html/_static/locales/bn/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: bn\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "open issue" 12 | msgstr "খোলা সমস্যা" 13 | 14 | msgid "Download this page" 15 | msgstr "এই পৃষ্ঠাটি ডাউনলোড করুন" 16 | 17 | msgid "Download source file" 18 | msgstr "উত্স ফাইল ডাউনলোড করুন" 19 | 20 | msgid "Launch" 21 | msgstr "শুরু করা" 22 | 23 | msgid "Edit this page" 24 | msgstr "এই পৃষ্ঠাটি সম্পাদনা করুন" 25 | 26 | msgid "Toggle navigation" 27 | msgstr "নেভিগেশন টগল করুন" 28 | 29 | msgid "Theme by the" 30 | msgstr "থিম দ্বারা" 31 | 32 | msgid "Source repository" 33 | msgstr "উত্স সংগ্রহস্থল" 34 | 35 | msgid "Last updated on" 36 | msgstr "সর্বশেষ আপডেট" 37 | 38 | msgid "By the" 39 | msgstr "দ্বারা" 40 | 41 | msgid "Sphinx Book Theme" 42 | msgstr "স্পিনিক্স বুক থিম" 43 | 44 | msgid "Open an issue" 45 | msgstr "একটি সমস্যা খুলুন" 46 | 47 | msgid "next page" 48 | msgstr "পরবর্তী পৃষ্ঠা" 49 | 50 | msgid "Copyright" 51 | msgstr "কপিরাইট" 52 | 53 | msgid "Search this book..." 54 | msgstr "এই বইটি অনুসন্ধান করুন ..." 55 | 56 | msgid "Print to PDF" 57 | msgstr "পিডিএফ প্রিন্ট করুন" 58 | 59 | msgid "By" 60 | msgstr "দ্বারা" 61 | 62 | msgid "previous page" 63 | msgstr "আগের পৃষ্ঠা" 64 | 65 | msgid "Download notebook file" 66 | msgstr "নোটবুক ফাইল ডাউনলোড করুন" 67 | -------------------------------------------------------------------------------- /_build/html/_static/locales/ca/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: ca\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "open issue" 12 | msgstr "número obert" 13 | 14 | msgid "Download this page" 15 | msgstr "Descarregueu aquesta pàgina" 16 | 17 | msgid "Download source file" 18 | msgstr "Baixeu el fitxer font" 19 | 20 | msgid "Launch" 21 | msgstr "Llançament" 22 | 23 | msgid "Edit this page" 24 | msgstr "Editeu aquesta pàgina" 25 | 26 | msgid "Toggle navigation" 27 | msgstr "Commuta la navegació" 28 | 29 | msgid "Theme by the" 30 | msgstr "Tema del" 31 | 32 | msgid "Source repository" 33 | msgstr "Dipòsit de fonts" 34 | 35 | msgid "Last updated on" 36 | msgstr "Darrera actualització el" 37 | 38 | msgid "By the" 39 | msgstr "Per la" 40 | 41 | msgid "Sphinx Book Theme" 42 | msgstr "Tema del llibre Esfinx" 43 | 44 | msgid "Open an issue" 45 | msgstr "Obriu un número" 46 | 47 | msgid "next page" 48 | msgstr "pàgina següent" 49 | 50 | msgid "Copyright" 51 | msgstr "Copyright" 52 | 53 | msgid "Search this book..." 54 | msgstr "Cerca en aquest llibre ..." 55 | 56 | msgid "Print to PDF" 57 | msgstr "Imprimeix a PDF" 58 | 59 | msgid "By" 60 | msgstr "Per" 61 | 62 | msgid "previous page" 63 | msgstr "Pàgina anterior" 64 | 65 | msgid "Download notebook file" 66 | msgstr "Descarregar fitxer de quadern" 67 | 68 | msgid "suggest edit" 69 | msgstr "suggerir edició" 70 | -------------------------------------------------------------------------------- /_build/html/_static/locales/cs/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: cs\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "repository" 12 | msgstr "úložiště" 13 | 14 | msgid "open issue" 15 | msgstr "otevřené číslo" 16 | 17 | msgid "Contents" 18 | msgstr "Obsah" 19 | 20 | msgid "Fullscreen mode" 21 | msgstr "Režim celé obrazovky" 22 | 23 | msgid "Download this page" 24 | msgstr "Stáhněte si tuto stránku" 25 | 26 | msgid "Download source file" 27 | msgstr "Stáhněte si zdrojový soubor" 28 | 29 | msgid "Launch" 30 | msgstr "Zahájení" 31 | 32 | msgid "Edit this page" 33 | msgstr "Upravit tuto stránku" 34 | 35 | msgid "Toggle navigation" 36 | msgstr "Přepnout navigaci" 37 | 38 | msgid "Theme by the" 39 | msgstr "Téma od" 40 | 41 | msgid "Source repository" 42 | msgstr "Zdrojové úložiště" 43 | 44 | msgid "Last updated on" 45 | msgstr "Naposledy aktualizováno" 46 | 47 | msgid "By the" 48 | msgstr "Podle" 49 | 50 | msgid "Sphinx Book Theme" 51 | msgstr "Téma knihy Sfinga" 52 | 53 | msgid "Open an issue" 54 | msgstr "Otevřete problém" 55 | 56 | msgid "next page" 57 | msgstr "další strana" 58 | 59 | msgid "Copyright" 60 | msgstr "autorská práva" 61 | 62 | msgid "Search this book..." 63 | msgstr "Hledat v této knize ..." 64 | 65 | msgid "Print to PDF" 66 | msgstr "Tisk do PDF" 67 | 68 | msgid "By" 69 | msgstr "Podle" 70 | 71 | msgid "previous page" 72 | msgstr "předchozí stránka" 73 | 74 | msgid "Search the docs ..." 75 | msgstr "Hledat v dokumentech ..." 76 | 77 | msgid "Download notebook file" 78 | msgstr "Stáhnout soubor poznámkového bloku" 79 | 80 | msgid "suggest edit" 81 | msgstr "navrhnout úpravy" 82 | -------------------------------------------------------------------------------- /_build/html/_static/locales/da/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: da\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "repository" 12 | msgstr "lager" 13 | 14 | msgid "open issue" 15 | msgstr "åbent nummer" 16 | 17 | msgid "Contents" 18 | msgstr "Indhold" 19 | 20 | msgid "Fullscreen mode" 21 | msgstr "Fuldskærmstilstand" 22 | 23 | msgid "Download this page" 24 | msgstr "Download denne side" 25 | 26 | msgid "Download source file" 27 | msgstr "Download kildefil" 28 | 29 | msgid "Launch" 30 | msgstr "Start" 31 | 32 | msgid "Edit this page" 33 | msgstr "Rediger denne side" 34 | 35 | msgid "Toggle navigation" 36 | msgstr "Skift navigation" 37 | 38 | msgid "Theme by the" 39 | msgstr "Tema af" 40 | 41 | msgid "Source repository" 42 | msgstr "Kildelager" 43 | 44 | msgid "Last updated on" 45 | msgstr "Sidst opdateret den" 46 | 47 | msgid "By the" 48 | msgstr "Ved" 49 | 50 | msgid "Sphinx Book Theme" 51 | msgstr "Sphinx bogtema" 52 | 53 | msgid "Open an issue" 54 | msgstr "Åbn et problem" 55 | 56 | msgid "next page" 57 | msgstr "Næste side" 58 | 59 | msgid "Copyright" 60 | msgstr "ophavsret" 61 | 62 | msgid "Search this book..." 63 | msgstr "Søg i denne bog ..." 64 | 65 | msgid "Print to PDF" 66 | msgstr "Udskriv til PDF" 67 | 68 | msgid "By" 69 | msgstr "Ved" 70 | 71 | msgid "previous page" 72 | msgstr "forrige side" 73 | 74 | msgid "Search the docs ..." 75 | msgstr "Søg i dokumenterne ..." 76 | 77 | msgid "Download notebook file" 78 | msgstr "Download notesbog-fil" 79 | 80 | msgid "suggest edit" 81 | msgstr "foreslå redigering" 82 | -------------------------------------------------------------------------------- /_build/html/_static/locales/de/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: de\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "repository" 12 | msgstr "Repository" 13 | 14 | msgid "open issue" 15 | msgstr "offenes Thema" 16 | 17 | msgid "Contents" 18 | msgstr "Inhalt" 19 | 20 | msgid "Fullscreen mode" 21 | msgstr "Vollbildmodus" 22 | 23 | msgid "Download this page" 24 | msgstr "Laden Sie diese Seite herunter" 25 | 26 | msgid "Download source file" 27 | msgstr "Quelldatei herunterladen" 28 | 29 | msgid "Launch" 30 | msgstr "Starten" 31 | 32 | msgid "Edit this page" 33 | msgstr "Bearbeite diese Seite" 34 | 35 | msgid "Toggle navigation" 36 | msgstr "Navigation umschalten" 37 | 38 | msgid "Theme by the" 39 | msgstr "Thema von der" 40 | 41 | msgid "Source repository" 42 | msgstr "Quell-Repository" 43 | 44 | msgid "Last updated on" 45 | msgstr "Zuletzt aktualisiert am" 46 | 47 | msgid "By the" 48 | msgstr "Bis zum" 49 | 50 | msgid "Sphinx Book Theme" 51 | msgstr "Sphinx-Buch-Thema" 52 | 53 | msgid "Open an issue" 54 | msgstr "Öffnen Sie ein Problem" 55 | 56 | msgid "next page" 57 | msgstr "Nächste Seite" 58 | 59 | msgid "Copyright" 60 | msgstr "Urheberrechte ©" 61 | 62 | msgid "Search this book..." 63 | msgstr "Dieses Buch durchsuchen ..." 64 | 65 | msgid "Print to PDF" 66 | msgstr "In PDF drucken" 67 | 68 | msgid "By" 69 | msgstr "Durch" 70 | 71 | msgid "previous page" 72 | msgstr "vorherige Seite" 73 | 74 | msgid "Search the docs ..." 75 | msgstr "Durchsuchen Sie die Dokumente ..." 76 | 77 | msgid "Download notebook file" 78 | msgstr "Notebook-Datei herunterladen" 79 | 80 | msgid "suggest edit" 81 | msgstr "vorschlagen zu bearbeiten" 82 | -------------------------------------------------------------------------------- /_build/html/_static/locales/el/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: el\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "repository" 12 | msgstr "αποθήκη" 13 | 14 | msgid "open issue" 15 | msgstr "ανοιχτό ζήτημα" 16 | 17 | msgid "Contents" 18 | msgstr "Περιεχόμενα" 19 | 20 | msgid "Fullscreen mode" 21 | msgstr "ΛΕΙΤΟΥΡΓΙΑ ΠΛΗΡΟΥΣ ΟΘΟΝΗΣ" 22 | 23 | msgid "Download this page" 24 | msgstr "Λήψη αυτής της σελίδας" 25 | 26 | msgid "Download source file" 27 | msgstr "Λήψη αρχείου προέλευσης" 28 | 29 | msgid "Launch" 30 | msgstr "Εκτόξευση" 31 | 32 | msgid "Edit this page" 33 | msgstr "Επεξεργαστείτε αυτήν τη σελίδα" 34 | 35 | msgid "Toggle navigation" 36 | msgstr "Εναλλαγή πλοήγησης" 37 | 38 | msgid "Theme by the" 39 | msgstr "Θέμα από το" 40 | 41 | msgid "Source repository" 42 | msgstr "Αποθήκη πηγής" 43 | 44 | msgid "Last updated on" 45 | msgstr "Τελευταία ενημέρωση στις" 46 | 47 | msgid "By the" 48 | msgstr "Από το" 49 | 50 | msgid "Sphinx Book Theme" 51 | msgstr "Θέμα βιβλίου Sphinx" 52 | 53 | msgid "Open an issue" 54 | msgstr "Ανοίξτε ένα ζήτημα" 55 | 56 | msgid "next page" 57 | msgstr "επόμενη σελίδα" 58 | 59 | msgid "Copyright" 60 | msgstr "Πνευματική ιδιοκτησία" 61 | 62 | msgid "Search this book..." 63 | msgstr "Αναζήτηση σε αυτό το βιβλίο ..." 64 | 65 | msgid "Print to PDF" 66 | msgstr "Εκτύπωση σε PDF" 67 | 68 | msgid "By" 69 | msgstr "Με" 70 | 71 | msgid "previous page" 72 | msgstr "προηγούμενη σελίδα" 73 | 74 | msgid "Search the docs ..." 75 | msgstr "Αναζήτηση στα έγγραφα ..." 76 | 77 | msgid "Download notebook file" 78 | msgstr "Λήψη αρχείου σημειωματάριου" 79 | 80 | msgid "suggest edit" 81 | msgstr "προτείνω επεξεργασία" 82 | -------------------------------------------------------------------------------- /_build/html/_static/locales/eo/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: eo\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "repository" 12 | msgstr "deponejo" 13 | 14 | msgid "open issue" 15 | msgstr "malferma numero" 16 | 17 | msgid "Contents" 18 | msgstr "Enhavo" 19 | 20 | msgid "Fullscreen mode" 21 | msgstr "Plenekrana reĝimo" 22 | 23 | msgid "Download this page" 24 | msgstr "Elŝutu ĉi tiun paĝon" 25 | 26 | msgid "Download source file" 27 | msgstr "Elŝutu fontodosieron" 28 | 29 | msgid "Launch" 30 | msgstr "Lanĉo" 31 | 32 | msgid "Edit this page" 33 | msgstr "Redaktu ĉi tiun paĝon" 34 | 35 | msgid "Toggle navigation" 36 | msgstr "Ŝalti navigadon" 37 | 38 | msgid "Theme by the" 39 | msgstr "Temo de la" 40 | 41 | msgid "Source repository" 42 | msgstr "Fonto-deponejo" 43 | 44 | msgid "Last updated on" 45 | msgstr "Laste ĝisdatigita la" 46 | 47 | msgid "By the" 48 | msgstr "Per la" 49 | 50 | msgid "Sphinx Book Theme" 51 | msgstr "Sfinksa Libro-Temo" 52 | 53 | msgid "Open an issue" 54 | msgstr "Malfermu numeron" 55 | 56 | msgid "next page" 57 | msgstr "sekva paĝo" 58 | 59 | msgid "Copyright" 60 | msgstr "Kopirajto" 61 | 62 | msgid "Search this book..." 63 | msgstr "Serĉu ĉi tiun libron ..." 64 | 65 | msgid "Print to PDF" 66 | msgstr "Presi al PDF" 67 | 68 | msgid "By" 69 | msgstr "De" 70 | 71 | msgid "previous page" 72 | msgstr "antaŭa paĝo" 73 | 74 | msgid "Search the docs ..." 75 | msgstr "Serĉu la dokumentojn ..." 76 | 77 | msgid "Download notebook file" 78 | msgstr "Elŝutu kajeran dosieron" 79 | 80 | msgid "suggest edit" 81 | msgstr "sugesti redaktadon" 82 | -------------------------------------------------------------------------------- /_build/html/_static/locales/es/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: es\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "repository" 12 | msgstr "repositorio" 13 | 14 | msgid "open issue" 15 | msgstr "Tema abierto" 16 | 17 | msgid "Contents" 18 | msgstr "Contenido" 19 | 20 | msgid "Fullscreen mode" 21 | msgstr "Modo de pantalla completa" 22 | 23 | msgid "Download this page" 24 | msgstr "Descarga esta pagina" 25 | 26 | msgid "Download source file" 27 | msgstr "Descargar archivo fuente" 28 | 29 | msgid "Launch" 30 | msgstr "Lanzamiento" 31 | 32 | msgid "Edit this page" 33 | msgstr "Edita esta página" 34 | 35 | msgid "Toggle navigation" 36 | msgstr "Navegación de palanca" 37 | 38 | msgid "Theme by the" 39 | msgstr "Tema por el" 40 | 41 | msgid "Source repository" 42 | msgstr "Repositorio de origen" 43 | 44 | msgid "Last updated on" 45 | msgstr "Ultima actualización en" 46 | 47 | msgid "By the" 48 | msgstr "Por el" 49 | 50 | msgid "Sphinx Book Theme" 51 | msgstr "Tema del libro de la esfinge" 52 | 53 | msgid "Open an issue" 54 | msgstr "Abrir un problema" 55 | 56 | msgid "next page" 57 | msgstr "siguiente página" 58 | 59 | msgid "Copyright" 60 | msgstr "Derechos de autor" 61 | 62 | msgid "Search this book..." 63 | msgstr "Buscar este libro ..." 64 | 65 | msgid "Print to PDF" 66 | msgstr "Imprimir en PDF" 67 | 68 | msgid "By" 69 | msgstr "Por" 70 | 71 | msgid "previous page" 72 | msgstr "pagina anterior" 73 | 74 | msgid "Search the docs ..." 75 | msgstr "Buscar los documentos ..." 76 | 77 | msgid "Download notebook file" 78 | msgstr "Descargar archivo de cuaderno" 79 | 80 | msgid "suggest edit" 81 | msgstr "sugerir editar" 82 | -------------------------------------------------------------------------------- /_build/html/_static/locales/et/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: et\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "repository" 12 | msgstr "hoidla" 13 | 14 | msgid "open issue" 15 | msgstr "avatud küsimus" 16 | 17 | msgid "Contents" 18 | msgstr "Sisu" 19 | 20 | msgid "Fullscreen mode" 21 | msgstr "Täisekraanirežiim" 22 | 23 | msgid "Download this page" 24 | msgstr "Laadige see leht alla" 25 | 26 | msgid "Download source file" 27 | msgstr "Laadige alla lähtefail" 28 | 29 | msgid "Launch" 30 | msgstr "Käivitage" 31 | 32 | msgid "Edit this page" 33 | msgstr "Muutke seda lehte" 34 | 35 | msgid "Toggle navigation" 36 | msgstr "Lülita navigeerimine sisse" 37 | 38 | msgid "Theme by the" 39 | msgstr "Teema" 40 | 41 | msgid "Source repository" 42 | msgstr "Allikahoidla" 43 | 44 | msgid "Last updated on" 45 | msgstr "Viimati uuendatud" 46 | 47 | msgid "By the" 48 | msgstr "Autor" 49 | 50 | msgid "Sphinx Book Theme" 51 | msgstr "Sfinksiraamatu teema" 52 | 53 | msgid "Open an issue" 54 | msgstr "Avage probleem" 55 | 56 | msgid "next page" 57 | msgstr "järgmine leht" 58 | 59 | msgid "Copyright" 60 | msgstr "Autoriõigus" 61 | 62 | msgid "Search this book..." 63 | msgstr "Otsige sellest raamatust ..." 64 | 65 | msgid "Print to PDF" 66 | msgstr "Prindi PDF-i" 67 | 68 | msgid "By" 69 | msgstr "Kõrval" 70 | 71 | msgid "previous page" 72 | msgstr "eelmine leht" 73 | 74 | msgid "Search the docs ..." 75 | msgstr "Dokumentidest otsimine ..." 76 | 77 | msgid "Download notebook file" 78 | msgstr "Laadige sülearvuti fail alla" 79 | 80 | msgid "suggest edit" 81 | msgstr "soovita muuta" 82 | -------------------------------------------------------------------------------- /_build/html/_static/locales/fi/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: fi\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "repository" 12 | msgstr "arkisto" 13 | 14 | msgid "open issue" 15 | msgstr "avoin ongelma" 16 | 17 | msgid "Contents" 18 | msgstr "Sisällys" 19 | 20 | msgid "Fullscreen mode" 21 | msgstr "Koko näytön tila" 22 | 23 | msgid "Download this page" 24 | msgstr "Lataa tämä sivu" 25 | 26 | msgid "Download source file" 27 | msgstr "Lataa lähdetiedosto" 28 | 29 | msgid "Launch" 30 | msgstr "Tuoda markkinoille" 31 | 32 | msgid "Edit this page" 33 | msgstr "Muokkaa tätä sivua" 34 | 35 | msgid "Toggle navigation" 36 | msgstr "Vaihda navigointia" 37 | 38 | msgid "Theme by the" 39 | msgstr "Teeman tekijä" 40 | 41 | msgid "Source repository" 42 | msgstr "Lähteen arkisto" 43 | 44 | msgid "Last updated on" 45 | msgstr "Viimeksi päivitetty" 46 | 47 | msgid "By the" 48 | msgstr "Mukaan" 49 | 50 | msgid "Sphinx Book Theme" 51 | msgstr "Sphinx-kirjan teema" 52 | 53 | msgid "Open an issue" 54 | msgstr "Avaa ongelma" 55 | 56 | msgid "next page" 57 | msgstr "seuraava sivu" 58 | 59 | msgid "Copyright" 60 | msgstr "Tekijänoikeus" 61 | 62 | msgid "Search this book..." 63 | msgstr "Hae tästä kirjasta ..." 64 | 65 | msgid "Print to PDF" 66 | msgstr "Tulosta PDF-tiedostoon" 67 | 68 | msgid "By" 69 | msgstr "Tekijä" 70 | 71 | msgid "previous page" 72 | msgstr "Edellinen sivu" 73 | 74 | msgid "Search the docs ..." 75 | msgstr "Hae dokumenteista ..." 76 | 77 | msgid "Download notebook file" 78 | msgstr "Lataa muistikirjatiedosto" 79 | 80 | msgid "suggest edit" 81 | msgstr "ehdottaa muokkausta" 82 | -------------------------------------------------------------------------------- /_build/html/_static/locales/fr/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: fr\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "repository" 12 | msgstr "dépôt" 13 | 14 | msgid "open issue" 15 | msgstr "signaler un problème" 16 | 17 | msgid "Contents" 18 | msgstr "Contenu" 19 | 20 | msgid "Fullscreen mode" 21 | msgstr "Mode plein écran" 22 | 23 | msgid "Download this page" 24 | msgstr "Téléchargez cette page" 25 | 26 | msgid "Download source file" 27 | msgstr "Télécharger le fichier source" 28 | 29 | msgid "Launch" 30 | msgstr "lancement" 31 | 32 | msgid "Edit this page" 33 | msgstr "Modifier cette page" 34 | 35 | msgid "Toggle navigation" 36 | msgstr "Basculer la navigation" 37 | 38 | msgid "Theme by the" 39 | msgstr "Thème par le" 40 | 41 | msgid "Source repository" 42 | msgstr "Dépôt source" 43 | 44 | msgid "Last updated on" 45 | msgstr "Dernière mise à jour le" 46 | 47 | msgid "By the" 48 | msgstr "Par le" 49 | 50 | msgid "Sphinx Book Theme" 51 | msgstr "Thème du livre Sphinx" 52 | 53 | msgid "Open an issue" 54 | msgstr "Ouvrez un problème" 55 | 56 | msgid "next page" 57 | msgstr "page suivante" 58 | 59 | msgid "Copyright" 60 | msgstr "droits d'auteur" 61 | 62 | msgid "Search this book..." 63 | msgstr "Rechercher dans ce livre ..." 64 | 65 | msgid "Print to PDF" 66 | msgstr "Imprimer au format PDF" 67 | 68 | msgid "By" 69 | msgstr "Par" 70 | 71 | msgid "previous page" 72 | msgstr "page précédente" 73 | 74 | msgid "Search the docs ..." 75 | msgstr "Rechercher dans les documents ..." 76 | 77 | msgid "Download notebook file" 78 | msgstr "Télécharger le fichier notebook" 79 | 80 | msgid "suggest edit" 81 | msgstr "suggestion de modification" 82 | -------------------------------------------------------------------------------- /_build/html/_static/locales/hr/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: hr\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "repository" 12 | msgstr "spremište" 13 | 14 | msgid "open issue" 15 | msgstr "otvoreno izdanje" 16 | 17 | msgid "Contents" 18 | msgstr "Sadržaj" 19 | 20 | msgid "Fullscreen mode" 21 | msgstr "Način preko cijelog zaslona" 22 | 23 | msgid "Download this page" 24 | msgstr "Preuzmite ovu stranicu" 25 | 26 | msgid "Download source file" 27 | msgstr "Preuzmi izvornu datoteku" 28 | 29 | msgid "Launch" 30 | msgstr "Pokrenite" 31 | 32 | msgid "Edit this page" 33 | msgstr "Uredite ovu stranicu" 34 | 35 | msgid "Toggle navigation" 36 | msgstr "Uključi / isključi navigaciju" 37 | 38 | msgid "Theme by the" 39 | msgstr "Tema autora" 40 | 41 | msgid "Source repository" 42 | msgstr "Izvorno spremište" 43 | 44 | msgid "Last updated on" 45 | msgstr "Posljednje ažuriranje:" 46 | 47 | msgid "By the" 48 | msgstr "Od strane" 49 | 50 | msgid "Sphinx Book Theme" 51 | msgstr "Tema knjige Sphinx" 52 | 53 | msgid "Open an issue" 54 | msgstr "Otvorite izdanje" 55 | 56 | msgid "next page" 57 | msgstr "sljedeća stranica" 58 | 59 | msgid "Copyright" 60 | msgstr "Autorska prava" 61 | 62 | msgid "Search this book..." 63 | msgstr "Pretražite ovu knjigu ..." 64 | 65 | msgid "Print to PDF" 66 | msgstr "Ispis u PDF" 67 | 68 | msgid "By" 69 | msgstr "Po" 70 | 71 | msgid "previous page" 72 | msgstr "Prethodna stranica" 73 | 74 | msgid "Search the docs ..." 75 | msgstr "Pretražite dokumente ..." 76 | 77 | msgid "Download notebook file" 78 | msgstr "Preuzmi datoteku bilježnice" 79 | 80 | msgid "suggest edit" 81 | msgstr "predloži uređivanje" 82 | -------------------------------------------------------------------------------- /_build/html/_static/locales/id/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: id\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "repository" 12 | msgstr "gudang" 13 | 14 | msgid "open issue" 15 | msgstr "masalah terbuka" 16 | 17 | msgid "Contents" 18 | msgstr "Isi" 19 | 20 | msgid "Fullscreen mode" 21 | msgstr "Mode layar penuh" 22 | 23 | msgid "Download this page" 24 | msgstr "Unduh halaman ini" 25 | 26 | msgid "Download source file" 27 | msgstr "Unduh file sumber" 28 | 29 | msgid "Launch" 30 | msgstr "Meluncurkan" 31 | 32 | msgid "Edit this page" 33 | msgstr "Edit halaman ini" 34 | 35 | msgid "Toggle navigation" 36 | msgstr "Alihkan navigasi" 37 | 38 | msgid "Theme by the" 39 | msgstr "Tema oleh" 40 | 41 | msgid "Source repository" 42 | msgstr "Repositori sumber" 43 | 44 | msgid "Last updated on" 45 | msgstr "Terakhir diperbarui saat" 46 | 47 | msgid "By the" 48 | msgstr "Oleh" 49 | 50 | msgid "Sphinx Book Theme" 51 | msgstr "Tema Buku Sphinx" 52 | 53 | msgid "Open an issue" 54 | msgstr "Buka masalah" 55 | 56 | msgid "next page" 57 | msgstr "halaman selanjutnya" 58 | 59 | msgid "Copyright" 60 | msgstr "hak cipta" 61 | 62 | msgid "Search this book..." 63 | msgstr "Telusuri buku ini ..." 64 | 65 | msgid "Print to PDF" 66 | msgstr "Cetak ke PDF" 67 | 68 | msgid "By" 69 | msgstr "Oleh" 70 | 71 | msgid "previous page" 72 | msgstr "halaman sebelumnya" 73 | 74 | msgid "Search the docs ..." 75 | msgstr "Telusuri dokumen ..." 76 | 77 | msgid "Download notebook file" 78 | msgstr "Unduh file notebook" 79 | 80 | msgid "suggest edit" 81 | msgstr "menyarankan edit" 82 | -------------------------------------------------------------------------------- /_build/html/_static/locales/it/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: it\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "repository" 12 | msgstr "repository" 13 | 14 | msgid "open issue" 15 | msgstr "questione aperta" 16 | 17 | msgid "Contents" 18 | msgstr "Contenuti" 19 | 20 | msgid "Fullscreen mode" 21 | msgstr "Modalità schermo intero" 22 | 23 | msgid "Download this page" 24 | msgstr "Scarica questa pagina" 25 | 26 | msgid "Download source file" 27 | msgstr "Scarica il file sorgente" 28 | 29 | msgid "Launch" 30 | msgstr "Lanciare" 31 | 32 | msgid "Edit this page" 33 | msgstr "Modifica questa pagina" 34 | 35 | msgid "Toggle navigation" 36 | msgstr "Attiva / disattiva la navigazione" 37 | 38 | msgid "Theme by the" 39 | msgstr "Tema di" 40 | 41 | msgid "Source repository" 42 | msgstr "Repository di origine" 43 | 44 | msgid "Last updated on" 45 | msgstr "Ultimo aggiornamento il" 46 | 47 | msgid "By the" 48 | msgstr "Dal" 49 | 50 | msgid "Sphinx Book Theme" 51 | msgstr "Tema del libro della Sfinge" 52 | 53 | msgid "Open an issue" 54 | msgstr "Apri un problema" 55 | 56 | msgid "next page" 57 | msgstr "pagina successiva" 58 | 59 | msgid "Copyright" 60 | msgstr "Diritto d'autore" 61 | 62 | msgid "Search this book..." 63 | msgstr "Cerca in questo libro ..." 64 | 65 | msgid "Print to PDF" 66 | msgstr "Stampa in PDF" 67 | 68 | msgid "By" 69 | msgstr "Di" 70 | 71 | msgid "previous page" 72 | msgstr "pagina precedente" 73 | 74 | msgid "Search the docs ..." 75 | msgstr "Cerca nei documenti ..." 76 | 77 | msgid "Download notebook file" 78 | msgstr "Scarica il file del taccuino" 79 | 80 | msgid "suggest edit" 81 | msgstr "suggerisci modifica" 82 | -------------------------------------------------------------------------------- /_build/html/_static/locales/iw/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: iw\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "repository" 12 | msgstr "מאגר" 13 | 14 | msgid "open issue" 15 | msgstr "בעיה פתוחה" 16 | 17 | msgid "Contents" 18 | msgstr "תוכן" 19 | 20 | msgid "Fullscreen mode" 21 | msgstr "מצב מסך מלא" 22 | 23 | msgid "Download this page" 24 | msgstr "הורד דף זה" 25 | 26 | msgid "Download source file" 27 | msgstr "הורד את קובץ המקור" 28 | 29 | msgid "Launch" 30 | msgstr "לְהַשִׁיק" 31 | 32 | msgid "Edit this page" 33 | msgstr "ערוך דף זה" 34 | 35 | msgid "Toggle navigation" 36 | msgstr "החלף ניווט" 37 | 38 | msgid "Theme by the" 39 | msgstr "נושא מאת" 40 | 41 | msgid "Source repository" 42 | msgstr "מאגר המקורות" 43 | 44 | msgid "Last updated on" 45 | msgstr "עודכן לאחרונה ב" 46 | 47 | msgid "By the" 48 | msgstr "דרך" 49 | 50 | msgid "Sphinx Book Theme" 51 | msgstr "נושא ספר ספינקס" 52 | 53 | msgid "Open an issue" 54 | msgstr "פתח גיליון" 55 | 56 | msgid "next page" 57 | msgstr "עמוד הבא" 58 | 59 | msgid "Copyright" 60 | msgstr "זכויות יוצרים" 61 | 62 | msgid "Search this book..." 63 | msgstr "חפש בספר זה ..." 64 | 65 | msgid "Print to PDF" 66 | msgstr "הדפס לקובץ PDF" 67 | 68 | msgid "By" 69 | msgstr "על ידי" 70 | 71 | msgid "previous page" 72 | msgstr "עמוד קודם" 73 | 74 | msgid "Search the docs ..." 75 | msgstr "חפש במסמכים ..." 76 | 77 | msgid "Download notebook file" 78 | msgstr "הורד קובץ מחברת" 79 | 80 | msgid "suggest edit" 81 | msgstr "מציע לערוך" 82 | -------------------------------------------------------------------------------- /_build/html/_static/locales/ja/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: ja\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "repository" 12 | msgstr "リポジトリ" 13 | 14 | msgid "open issue" 15 | msgstr "未解決の問題" 16 | 17 | msgid "Contents" 18 | msgstr "目次" 19 | 20 | msgid "Fullscreen mode" 21 | msgstr "全画面モード" 22 | 23 | msgid "Download this page" 24 | msgstr "このページをダウンロード" 25 | 26 | msgid "Download source file" 27 | msgstr "ソースファイルをダウンロード" 28 | 29 | msgid "Launch" 30 | msgstr "起動" 31 | 32 | msgid "Edit this page" 33 | msgstr "このページを編集" 34 | 35 | msgid "Toggle navigation" 36 | msgstr "ナビゲーションを切り替え" 37 | 38 | msgid "Theme by the" 39 | msgstr "のテーマ" 40 | 41 | msgid "Source repository" 42 | msgstr "ソースリポジトリ" 43 | 44 | msgid "Last updated on" 45 | msgstr "最終更新日" 46 | 47 | msgid "By the" 48 | msgstr "によって" 49 | 50 | msgid "Sphinx Book Theme" 51 | msgstr "スフィンクスの本のテーマ" 52 | 53 | msgid "Open an issue" 54 | msgstr "問題を報告" 55 | 56 | msgid "next page" 57 | msgstr "次のページ" 58 | 59 | msgid "Copyright" 60 | msgstr "Copyright" 61 | 62 | msgid "Search this book..." 63 | msgstr "この本を検索..." 64 | 65 | msgid "Print to PDF" 66 | msgstr "PDFに印刷" 67 | 68 | msgid "By" 69 | msgstr "著者" 70 | 71 | msgid "previous page" 72 | msgstr "前のページ" 73 | 74 | msgid "Search the docs ..." 75 | msgstr "ドキュメントを検索..." 76 | 77 | msgid "Download notebook file" 78 | msgstr "ノートブックファイルをダウンロード" 79 | 80 | msgid "suggest edit" 81 | msgstr "編集を提案する" 82 | -------------------------------------------------------------------------------- /_build/html/_static/locales/ko/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: ko\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "repository" 12 | msgstr "저장소" 13 | 14 | msgid "open issue" 15 | msgstr "열린 문제" 16 | 17 | msgid "Contents" 18 | msgstr "내용" 19 | 20 | msgid "Fullscreen mode" 21 | msgstr "전체 화면으로보기" 22 | 23 | msgid "Download this page" 24 | msgstr "이 페이지 다운로드" 25 | 26 | msgid "Download source file" 27 | msgstr "소스 파일 다운로드" 28 | 29 | msgid "Launch" 30 | msgstr "시작하다" 31 | 32 | msgid "Edit this page" 33 | msgstr "이 페이지 편집" 34 | 35 | msgid "Toggle navigation" 36 | msgstr "탐색 전환" 37 | 38 | msgid "Theme by the" 39 | msgstr "테마별" 40 | 41 | msgid "Source repository" 42 | msgstr "소스 저장소" 43 | 44 | msgid "Last updated on" 45 | msgstr "마지막 업데이트" 46 | 47 | msgid "By the" 48 | msgstr "에 의해" 49 | 50 | msgid "Sphinx Book Theme" 51 | msgstr "스핑크스 도서 테마" 52 | 53 | msgid "Open an issue" 54 | msgstr "이슈 열기" 55 | 56 | msgid "next page" 57 | msgstr "다음 페이지" 58 | 59 | msgid "Copyright" 60 | msgstr "저작권" 61 | 62 | msgid "Search this book..." 63 | msgstr "이 책 검색 ..." 64 | 65 | msgid "Print to PDF" 66 | msgstr "PDF로 인쇄" 67 | 68 | msgid "By" 69 | msgstr "으로" 70 | 71 | msgid "previous page" 72 | msgstr "이전 페이지" 73 | 74 | msgid "Search the docs ..." 75 | msgstr "문서 검색 ..." 76 | 77 | msgid "Download notebook file" 78 | msgstr "노트북 파일 다운로드" 79 | 80 | msgid "suggest edit" 81 | msgstr "편집 제안" 82 | -------------------------------------------------------------------------------- /_build/html/_static/locales/lt/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: lt\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "repository" 12 | msgstr "saugykla" 13 | 14 | msgid "open issue" 15 | msgstr "atviras klausimas" 16 | 17 | msgid "Contents" 18 | msgstr "Turinys" 19 | 20 | msgid "Fullscreen mode" 21 | msgstr "Pilno ekrano režimas" 22 | 23 | msgid "Download this page" 24 | msgstr "Atsisiųskite šį puslapį" 25 | 26 | msgid "Download source file" 27 | msgstr "Atsisiųsti šaltinio failą" 28 | 29 | msgid "Launch" 30 | msgstr "Paleiskite" 31 | 32 | msgid "Edit this page" 33 | msgstr "Redaguoti šį puslapį" 34 | 35 | msgid "Toggle navigation" 36 | msgstr "Perjungti naršymą" 37 | 38 | msgid "Theme by the" 39 | msgstr "Tema" 40 | 41 | msgid "Source repository" 42 | msgstr "Šaltinio saugykla" 43 | 44 | msgid "Last updated on" 45 | msgstr "Paskutinį kartą atnaujinta" 46 | 47 | msgid "By the" 48 | msgstr "Prie" 49 | 50 | msgid "Sphinx Book Theme" 51 | msgstr "Sfinkso knygos tema" 52 | 53 | msgid "Open an issue" 54 | msgstr "Atidarykite problemą" 55 | 56 | msgid "next page" 57 | msgstr "Kitas puslapis" 58 | 59 | msgid "Copyright" 60 | msgstr "Autorių teisės" 61 | 62 | msgid "Search this book..." 63 | msgstr "Ieškoti šioje knygoje ..." 64 | 65 | msgid "Print to PDF" 66 | msgstr "Spausdinti į PDF" 67 | 68 | msgid "By" 69 | msgstr "Iki" 70 | 71 | msgid "previous page" 72 | msgstr "Ankstesnis puslapis" 73 | 74 | msgid "Search the docs ..." 75 | msgstr "Ieškoti dokumentuose ..." 76 | 77 | msgid "Download notebook file" 78 | msgstr "Atsisiųsti nešiojamojo kompiuterio failą" 79 | 80 | msgid "suggest edit" 81 | msgstr "pasiūlyti redaguoti" 82 | -------------------------------------------------------------------------------- /_build/html/_static/locales/lv/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: lv\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "repository" 12 | msgstr "krātuve" 13 | 14 | msgid "open issue" 15 | msgstr "atklāts jautājums" 16 | 17 | msgid "Contents" 18 | msgstr "Saturs" 19 | 20 | msgid "Fullscreen mode" 21 | msgstr "Pilnekrāna režīms" 22 | 23 | msgid "Download this page" 24 | msgstr "Lejupielādējiet šo lapu" 25 | 26 | msgid "Download source file" 27 | msgstr "Lejupielādēt avota failu" 28 | 29 | msgid "Launch" 30 | msgstr "Uzsākt" 31 | 32 | msgid "Edit this page" 33 | msgstr "Rediģēt šo lapu" 34 | 35 | msgid "Toggle navigation" 36 | msgstr "Pārslēgt navigāciju" 37 | 38 | msgid "Theme by the" 39 | msgstr "Autora tēma" 40 | 41 | msgid "Source repository" 42 | msgstr "Avota krātuve" 43 | 44 | msgid "Last updated on" 45 | msgstr "Pēdējoreiz atjaunināts" 46 | 47 | msgid "By the" 48 | msgstr "Ar" 49 | 50 | msgid "Sphinx Book Theme" 51 | msgstr "Sfinksa grāmatas tēma" 52 | 53 | msgid "Open an issue" 54 | msgstr "Atveriet problēmu" 55 | 56 | msgid "next page" 57 | msgstr "nākamā lapaspuse" 58 | 59 | msgid "Copyright" 60 | msgstr "Autortiesības" 61 | 62 | msgid "Search this book..." 63 | msgstr "Meklēt šajā grāmatā ..." 64 | 65 | msgid "Print to PDF" 66 | msgstr "Drukāt PDF formātā" 67 | 68 | msgid "By" 69 | msgstr "Autors" 70 | 71 | msgid "previous page" 72 | msgstr "iepriekšējā lapa" 73 | 74 | msgid "Search the docs ..." 75 | msgstr "Meklēt dokumentos ..." 76 | 77 | msgid "Download notebook file" 78 | msgstr "Lejupielādēt piezīmju grāmatiņu" 79 | 80 | msgid "suggest edit" 81 | msgstr "ieteikt rediģēt" 82 | -------------------------------------------------------------------------------- /_build/html/_static/locales/ml/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: ml\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "open issue" 12 | msgstr "തുറന്ന പ്രശ്നം" 13 | 14 | msgid "Download this page" 15 | msgstr "ഈ പേജ് ഡൗൺലോഡുചെയ്യുക" 16 | 17 | msgid "Download source file" 18 | msgstr "ഉറവിട ഫയൽ ഡൗൺലോഡുചെയ്യുക" 19 | 20 | msgid "Launch" 21 | msgstr "സമാരംഭിക്കുക" 22 | 23 | msgid "Edit this page" 24 | msgstr "ഈ പേജ് എഡിറ്റുചെയ്യുക" 25 | 26 | msgid "Toggle navigation" 27 | msgstr "നാവിഗേഷൻ ടോഗിൾ ചെയ്യുക" 28 | 29 | msgid "Theme by the" 30 | msgstr "പ്രമേയം" 31 | 32 | msgid "Source repository" 33 | msgstr "ഉറവിട ശേഖരം" 34 | 35 | msgid "Last updated on" 36 | msgstr "അവസാനം അപ്ഡേറ്റുചെയ്തത്" 37 | 38 | msgid "By the" 39 | msgstr "എഴുതിയത്" 40 | 41 | msgid "Sphinx Book Theme" 42 | msgstr "സ്ഫിങ്ക്സ് പുസ്തക തീം" 43 | 44 | msgid "Open an issue" 45 | msgstr "ഒരു പ്രശ്നം തുറക്കുക" 46 | 47 | msgid "next page" 48 | msgstr "അടുത്ത പേജ്" 49 | 50 | msgid "Copyright" 51 | msgstr "പകർപ്പവകാശം" 52 | 53 | msgid "Search this book..." 54 | msgstr "ഈ പുസ്തകം തിരയുക ..." 55 | 56 | msgid "Print to PDF" 57 | msgstr "PDF- ലേക്ക് പ്രിന്റുചെയ്യുക" 58 | 59 | msgid "By" 60 | msgstr "എഴുതിയത്" 61 | 62 | msgid "previous page" 63 | msgstr "മുൻപത്തെ താൾ" 64 | 65 | msgid "Download notebook file" 66 | msgstr "നോട്ട്ബുക്ക് ഫയൽ ഡൺലോഡ് ചെയ്യുക" 67 | 68 | msgid "suggest edit" 69 | msgstr "എഡിറ്റുചെയ്യാൻ നിർദ്ദേശിക്കുക" 70 | -------------------------------------------------------------------------------- /_build/html/_static/locales/mr/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: mr\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "open issue" 12 | msgstr "खुला मुद्दा" 13 | 14 | msgid "Download this page" 15 | msgstr "हे पृष्ठ डाउनलोड करा" 16 | 17 | msgid "Download source file" 18 | msgstr "स्त्रोत फाइल डाउनलोड करा" 19 | 20 | msgid "Launch" 21 | msgstr "लाँच करा" 22 | 23 | msgid "Edit this page" 24 | msgstr "हे पृष्ठ संपादित करा" 25 | 26 | msgid "Toggle navigation" 27 | msgstr "नेव्हिगेशन टॉगल करा" 28 | 29 | msgid "Theme by the" 30 | msgstr "द्वारा थीम" 31 | 32 | msgid "Source repository" 33 | msgstr "स्त्रोत भांडार" 34 | 35 | msgid "Last updated on" 36 | msgstr "अखेरचे अद्यतनित" 37 | 38 | msgid "By the" 39 | msgstr "द्वारा" 40 | 41 | msgid "Sphinx Book Theme" 42 | msgstr "स्फिंक्स बुक थीम" 43 | 44 | msgid "Open an issue" 45 | msgstr "एक मुद्दा उघडा" 46 | 47 | msgid "next page" 48 | msgstr "पुढील पृष्ठ" 49 | 50 | msgid "Copyright" 51 | msgstr "कॉपीराइट" 52 | 53 | msgid "Search this book..." 54 | msgstr "हे पुस्तक शोधा ..." 55 | 56 | msgid "Print to PDF" 57 | msgstr "पीडीएफवर मुद्रित करा" 58 | 59 | msgid "By" 60 | msgstr "द्वारा" 61 | 62 | msgid "previous page" 63 | msgstr "मागील पान" 64 | 65 | msgid "Download notebook file" 66 | msgstr "नोटबुक फाईल डाउनलोड करा" 67 | 68 | msgid "suggest edit" 69 | msgstr "संपादन सुचवा" 70 | -------------------------------------------------------------------------------- /_build/html/_static/locales/ms/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: ms\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "open issue" 12 | msgstr "isu terbuka" 13 | 14 | msgid "Download this page" 15 | msgstr "Muat turun halaman ini" 16 | 17 | msgid "Download source file" 18 | msgstr "Muat turun fail sumber" 19 | 20 | msgid "Launch" 21 | msgstr "Lancarkan" 22 | 23 | msgid "Edit this page" 24 | msgstr "Edit halaman ini" 25 | 26 | msgid "Toggle navigation" 27 | msgstr "Togol navigasi" 28 | 29 | msgid "Theme by the" 30 | msgstr "Tema oleh" 31 | 32 | msgid "Source repository" 33 | msgstr "Repositori sumber" 34 | 35 | msgid "Last updated on" 36 | msgstr "Terakhir dikemas kini pada" 37 | 38 | msgid "By the" 39 | msgstr "Oleh" 40 | 41 | msgid "Sphinx Book Theme" 42 | msgstr "Tema Buku Sphinx" 43 | 44 | msgid "Open an issue" 45 | msgstr "Buka masalah" 46 | 47 | msgid "next page" 48 | msgstr "muka surat seterusnya" 49 | 50 | msgid "Copyright" 51 | msgstr "hak cipta" 52 | 53 | msgid "Search this book..." 54 | msgstr "Cari buku ini ..." 55 | 56 | msgid "Print to PDF" 57 | msgstr "Cetak ke PDF" 58 | 59 | msgid "By" 60 | msgstr "Oleh" 61 | 62 | msgid "previous page" 63 | msgstr "halaman sebelumnya" 64 | 65 | msgid "Download notebook file" 66 | msgstr "Muat turun fail buku nota" 67 | 68 | msgid "suggest edit" 69 | msgstr "cadangkan edit" 70 | -------------------------------------------------------------------------------- /_build/html/_static/locales/nl/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: nl\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "repository" 12 | msgstr "repository" 13 | 14 | msgid "open issue" 15 | msgstr "open probleem" 16 | 17 | msgid "Contents" 18 | msgstr "Inhoud" 19 | 20 | msgid "Fullscreen mode" 21 | msgstr "Volledig scherm" 22 | 23 | msgid "Download this page" 24 | msgstr "Download deze pagina" 25 | 26 | msgid "Download source file" 27 | msgstr "Download het bronbestand" 28 | 29 | msgid "Launch" 30 | msgstr "Lancering" 31 | 32 | msgid "Edit this page" 33 | msgstr "bewerk deze pagina" 34 | 35 | msgid "Toggle navigation" 36 | msgstr "Schakel navigatie" 37 | 38 | msgid "Theme by the" 39 | msgstr "Thema door de" 40 | 41 | msgid "Source repository" 42 | msgstr "Bronopslagplaats" 43 | 44 | msgid "Last updated on" 45 | msgstr "Laatst geupdate op" 46 | 47 | msgid "By the" 48 | msgstr "Door de" 49 | 50 | msgid "Sphinx Book Theme" 51 | msgstr "Sphinx-boekthema" 52 | 53 | msgid "Open an issue" 54 | msgstr "Open een probleem" 55 | 56 | msgid "next page" 57 | msgstr "volgende bladzijde" 58 | 59 | msgid "Copyright" 60 | msgstr "auteursrechten" 61 | 62 | msgid "Search this book..." 63 | msgstr "Zoek in dit boek ..." 64 | 65 | msgid "Print to PDF" 66 | msgstr "Afdrukken naar pdf" 67 | 68 | msgid "By" 69 | msgstr "Door" 70 | 71 | msgid "previous page" 72 | msgstr "vorige pagina" 73 | 74 | msgid "Search the docs ..." 75 | msgstr "Doorzoek de documenten ..." 76 | 77 | msgid "Download notebook file" 78 | msgstr "Download notebookbestand" 79 | 80 | msgid "suggest edit" 81 | msgstr "suggereren bewerken" 82 | -------------------------------------------------------------------------------- /_build/html/_static/locales/no/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: no\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "repository" 12 | msgstr "oppbevaringssted" 13 | 14 | msgid "open issue" 15 | msgstr "åpent nummer" 16 | 17 | msgid "Contents" 18 | msgstr "Innhold" 19 | 20 | msgid "Fullscreen mode" 21 | msgstr "Fullskjerm-modus" 22 | 23 | msgid "Download this page" 24 | msgstr "Last ned denne siden" 25 | 26 | msgid "Download source file" 27 | msgstr "Last ned kildefilen" 28 | 29 | msgid "Launch" 30 | msgstr "Start" 31 | 32 | msgid "Edit this page" 33 | msgstr "Rediger denne siden" 34 | 35 | msgid "Toggle navigation" 36 | msgstr "Bytt navigasjon" 37 | 38 | msgid "Theme by the" 39 | msgstr "Tema av" 40 | 41 | msgid "Source repository" 42 | msgstr "Kildedepot" 43 | 44 | msgid "Last updated on" 45 | msgstr "Sist oppdatert den" 46 | 47 | msgid "By the" 48 | msgstr "Ved" 49 | 50 | msgid "Sphinx Book Theme" 51 | msgstr "Sphinx boktema" 52 | 53 | msgid "Open an issue" 54 | msgstr "Åpne et problem" 55 | 56 | msgid "next page" 57 | msgstr "neste side" 58 | 59 | msgid "Copyright" 60 | msgstr "opphavsrett" 61 | 62 | msgid "Search this book..." 63 | msgstr "Søk i denne boken ..." 64 | 65 | msgid "Print to PDF" 66 | msgstr "Skriv ut til PDF" 67 | 68 | msgid "By" 69 | msgstr "Av" 70 | 71 | msgid "previous page" 72 | msgstr "forrige side" 73 | 74 | msgid "Search the docs ..." 75 | msgstr "Søk i dokumentene ..." 76 | 77 | msgid "Download notebook file" 78 | msgstr "Last ned notatbokfilen" 79 | 80 | msgid "suggest edit" 81 | msgstr "foreslå redigering" 82 | -------------------------------------------------------------------------------- /_build/html/_static/locales/pl/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: pl\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "repository" 12 | msgstr "magazyn" 13 | 14 | msgid "open issue" 15 | msgstr "otwarty problem" 16 | 17 | msgid "Contents" 18 | msgstr "Zawartość" 19 | 20 | msgid "Fullscreen mode" 21 | msgstr "Pełny ekran" 22 | 23 | msgid "Download this page" 24 | msgstr "Pobierz tę stronę" 25 | 26 | msgid "Download source file" 27 | msgstr "Pobierz plik źródłowy" 28 | 29 | msgid "Launch" 30 | msgstr "Uruchomić" 31 | 32 | msgid "Edit this page" 33 | msgstr "Edytuj tę strone" 34 | 35 | msgid "Toggle navigation" 36 | msgstr "Przełącz nawigację" 37 | 38 | msgid "Theme by the" 39 | msgstr "Motyw autorstwa" 40 | 41 | msgid "Source repository" 42 | msgstr "Repozytorium źródłowe" 43 | 44 | msgid "Last updated on" 45 | msgstr "Ostatnia aktualizacja" 46 | 47 | msgid "By the" 48 | msgstr "Przez" 49 | 50 | msgid "Sphinx Book Theme" 51 | msgstr "Motyw książki Sphinx" 52 | 53 | msgid "Open an issue" 54 | msgstr "Otwórz problem" 55 | 56 | msgid "next page" 57 | msgstr "Następna strona" 58 | 59 | msgid "Copyright" 60 | msgstr "prawa autorskie" 61 | 62 | msgid "Search this book..." 63 | msgstr "Przeszukaj tę książkę ..." 64 | 65 | msgid "Print to PDF" 66 | msgstr "Drukuj do PDF" 67 | 68 | msgid "By" 69 | msgstr "Przez" 70 | 71 | msgid "previous page" 72 | msgstr "Poprzednia strona" 73 | 74 | msgid "Search the docs ..." 75 | msgstr "Przeszukaj dokumenty ..." 76 | 77 | msgid "Download notebook file" 78 | msgstr "Pobierz plik notatnika" 79 | 80 | msgid "suggest edit" 81 | msgstr "zaproponuj edycję" 82 | -------------------------------------------------------------------------------- /_build/html/_static/locales/pt/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: pt\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "repository" 12 | msgstr "repositório" 13 | 14 | msgid "open issue" 15 | msgstr "questão aberta" 16 | 17 | msgid "Contents" 18 | msgstr "Conteúdo" 19 | 20 | msgid "Fullscreen mode" 21 | msgstr "Modo tela cheia" 22 | 23 | msgid "Download this page" 24 | msgstr "Baixe esta página" 25 | 26 | msgid "Download source file" 27 | msgstr "Baixar arquivo fonte" 28 | 29 | msgid "Launch" 30 | msgstr "Lançamento" 31 | 32 | msgid "Edit this page" 33 | msgstr "Edite essa página" 34 | 35 | msgid "Toggle navigation" 36 | msgstr "Alternar de navegação" 37 | 38 | msgid "Theme by the" 39 | msgstr "Tema por" 40 | 41 | msgid "Source repository" 42 | msgstr "Repositório fonte" 43 | 44 | msgid "Last updated on" 45 | msgstr "Última atualização em" 46 | 47 | msgid "By the" 48 | msgstr "Pelo" 49 | 50 | msgid "Sphinx Book Theme" 51 | msgstr "Tema do livro Sphinx" 52 | 53 | msgid "Open an issue" 54 | msgstr "Abra um problema" 55 | 56 | msgid "next page" 57 | msgstr "próxima página" 58 | 59 | msgid "Copyright" 60 | msgstr "direito autoral" 61 | 62 | msgid "Search this book..." 63 | msgstr "Pesquise este livro ..." 64 | 65 | msgid "Print to PDF" 66 | msgstr "Imprimir em PDF" 67 | 68 | msgid "By" 69 | msgstr "De" 70 | 71 | msgid "previous page" 72 | msgstr "página anterior" 73 | 74 | msgid "Search the docs ..." 75 | msgstr "Pesquise os documentos ..." 76 | 77 | msgid "Download notebook file" 78 | msgstr "Baixar arquivo de notebook" 79 | 80 | msgid "suggest edit" 81 | msgstr "sugerir edição" 82 | -------------------------------------------------------------------------------- /_build/html/_static/locales/ro/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: ro\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "repository" 12 | msgstr "repertoriu" 13 | 14 | msgid "open issue" 15 | msgstr "problema deschisă" 16 | 17 | msgid "Contents" 18 | msgstr "Cuprins" 19 | 20 | msgid "Fullscreen mode" 21 | msgstr "Modul ecran întreg" 22 | 23 | msgid "Download this page" 24 | msgstr "Descarcă această pagină" 25 | 26 | msgid "Download source file" 27 | msgstr "Descărcați fișierul sursă" 28 | 29 | msgid "Launch" 30 | msgstr "Lansa" 31 | 32 | msgid "Edit this page" 33 | msgstr "Editați această pagină" 34 | 35 | msgid "Toggle navigation" 36 | msgstr "Comutare navigare" 37 | 38 | msgid "Theme by the" 39 | msgstr "Tema de" 40 | 41 | msgid "Source repository" 42 | msgstr "Depozit sursă" 43 | 44 | msgid "Last updated on" 45 | msgstr "Ultima actualizare la" 46 | 47 | msgid "By the" 48 | msgstr "Langa" 49 | 50 | msgid "Sphinx Book Theme" 51 | msgstr "Tema Sphinx Book" 52 | 53 | msgid "Open an issue" 54 | msgstr "Deschideți o problemă" 55 | 56 | msgid "next page" 57 | msgstr "pagina următoare" 58 | 59 | msgid "Copyright" 60 | msgstr "Drepturi de autor" 61 | 62 | msgid "Search this book..." 63 | msgstr "Căutați în această carte ..." 64 | 65 | msgid "Print to PDF" 66 | msgstr "Imprimați în PDF" 67 | 68 | msgid "By" 69 | msgstr "De" 70 | 71 | msgid "previous page" 72 | msgstr "pagina anterioară" 73 | 74 | msgid "Search the docs ..." 75 | msgstr "Căutați documente ..." 76 | 77 | msgid "Download notebook file" 78 | msgstr "Descărcați fișierul notebook" 79 | 80 | msgid "suggest edit" 81 | msgstr "sugerează editare" 82 | -------------------------------------------------------------------------------- /_build/html/_static/locales/ru/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: ru\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "repository" 12 | msgstr "хранилище" 13 | 14 | msgid "open issue" 15 | msgstr "открытый вопрос" 16 | 17 | msgid "Contents" 18 | msgstr "Содержание" 19 | 20 | msgid "Fullscreen mode" 21 | msgstr "Полноэкранный режим" 22 | 23 | msgid "Download this page" 24 | msgstr "Загрузите эту страницу" 25 | 26 | msgid "Download source file" 27 | msgstr "Скачать исходный файл" 28 | 29 | msgid "Launch" 30 | msgstr "Запуск" 31 | 32 | msgid "Edit this page" 33 | msgstr "Редактировать эту страницу" 34 | 35 | msgid "Toggle navigation" 36 | msgstr "Переключить навигацию" 37 | 38 | msgid "Theme by the" 39 | msgstr "Тема от" 40 | 41 | msgid "Source repository" 42 | msgstr "Исходный репозиторий" 43 | 44 | msgid "Last updated on" 45 | msgstr "Последнее обновление" 46 | 47 | msgid "By the" 48 | msgstr "Посредством" 49 | 50 | msgid "Sphinx Book Theme" 51 | msgstr "Тема книги Сфинкс" 52 | 53 | msgid "Open an issue" 54 | msgstr "Открыть вопрос" 55 | 56 | msgid "next page" 57 | msgstr "Следующая страница" 58 | 59 | msgid "Copyright" 60 | msgstr "авторское право" 61 | 62 | msgid "Search this book..." 63 | msgstr "Искать в этой книге ..." 64 | 65 | msgid "Print to PDF" 66 | msgstr "Распечатать в PDF" 67 | 68 | msgid "By" 69 | msgstr "По" 70 | 71 | msgid "previous page" 72 | msgstr "Предыдущая страница" 73 | 74 | msgid "Search the docs ..." 75 | msgstr "Искать в документах ..." 76 | 77 | msgid "Download notebook file" 78 | msgstr "Скачать файл записной книжки" 79 | 80 | msgid "suggest edit" 81 | msgstr "предложить редактировать" 82 | -------------------------------------------------------------------------------- /_build/html/_static/locales/sk/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: sk\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "repository" 12 | msgstr "Úložisko" 13 | 14 | msgid "open issue" 15 | msgstr "otvorené vydanie" 16 | 17 | msgid "Contents" 18 | msgstr "Obsah" 19 | 20 | msgid "Fullscreen mode" 21 | msgstr "Režim celej obrazovky" 22 | 23 | msgid "Download this page" 24 | msgstr "Stiahnite si túto stránku" 25 | 26 | msgid "Download source file" 27 | msgstr "Stiahnite si zdrojový súbor" 28 | 29 | msgid "Launch" 30 | msgstr "Spustiť" 31 | 32 | msgid "Edit this page" 33 | msgstr "Upraviť túto stránku" 34 | 35 | msgid "Toggle navigation" 36 | msgstr "Prepnúť navigáciu" 37 | 38 | msgid "Theme by the" 39 | msgstr "Téma od" 40 | 41 | msgid "Source repository" 42 | msgstr "Zdrojové úložisko" 43 | 44 | msgid "Last updated on" 45 | msgstr "Posledná aktualizácia dňa" 46 | 47 | msgid "By the" 48 | msgstr "Podľa" 49 | 50 | msgid "Sphinx Book Theme" 51 | msgstr "Téma knihy Sfinga" 52 | 53 | msgid "Open an issue" 54 | msgstr "Otvorte problém" 55 | 56 | msgid "next page" 57 | msgstr "ďalšia strana" 58 | 59 | msgid "Copyright" 60 | msgstr "Autorské práva" 61 | 62 | msgid "Search this book..." 63 | msgstr "Hľadať v tejto knihe ..." 64 | 65 | msgid "Print to PDF" 66 | msgstr "Tlač do PDF" 67 | 68 | msgid "By" 69 | msgstr "Autor:" 70 | 71 | msgid "previous page" 72 | msgstr "predchádzajúca strana" 73 | 74 | msgid "Search the docs ..." 75 | msgstr "Hľadať v dokumentoch ..." 76 | 77 | msgid "Download notebook file" 78 | msgstr "Stiahnite si zošit" 79 | 80 | msgid "suggest edit" 81 | msgstr "navrhnúť úpravu" 82 | -------------------------------------------------------------------------------- /_build/html/_static/locales/sl/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: sl\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "repository" 12 | msgstr "odlagališče" 13 | 14 | msgid "open issue" 15 | msgstr "odprto vprašanje" 16 | 17 | msgid "Contents" 18 | msgstr "Vsebina" 19 | 20 | msgid "Fullscreen mode" 21 | msgstr "Celozaslonski način" 22 | 23 | msgid "Download this page" 24 | msgstr "Prenesite to stran" 25 | 26 | msgid "Download source file" 27 | msgstr "Prenesite izvorno datoteko" 28 | 29 | msgid "Launch" 30 | msgstr "Kosilo" 31 | 32 | msgid "Edit this page" 33 | msgstr "Uredite to stran" 34 | 35 | msgid "Toggle navigation" 36 | msgstr "Preklopi navigacijo" 37 | 38 | msgid "Theme by the" 39 | msgstr "Tema avtorja" 40 | 41 | msgid "Source repository" 42 | msgstr "Izvorno skladišče" 43 | 44 | msgid "Last updated on" 45 | msgstr "Nazadnje posodobljeno dne" 46 | 47 | msgid "By the" 48 | msgstr "Avtor" 49 | 50 | msgid "Sphinx Book Theme" 51 | msgstr "Tema knjige Sphinx" 52 | 53 | msgid "Open an issue" 54 | msgstr "Odprite številko" 55 | 56 | msgid "next page" 57 | msgstr "Naslednja stran" 58 | 59 | msgid "Copyright" 60 | msgstr "avtorske pravice" 61 | 62 | msgid "Search this book..." 63 | msgstr "Poiščite to knjigo ..." 64 | 65 | msgid "Print to PDF" 66 | msgstr "Natisni v PDF" 67 | 68 | msgid "By" 69 | msgstr "Avtor" 70 | 71 | msgid "previous page" 72 | msgstr "Prejšnja stran" 73 | 74 | msgid "Search the docs ..." 75 | msgstr "Poiščite dokumente ..." 76 | 77 | msgid "Download notebook file" 78 | msgstr "Prenesite datoteko zvezka" 79 | 80 | msgid "suggest edit" 81 | msgstr "predlagajte urejanje" 82 | -------------------------------------------------------------------------------- /_build/html/_static/locales/sr/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: sr\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "repository" 12 | msgstr "спремиште" 13 | 14 | msgid "open issue" 15 | msgstr "отворено издање" 16 | 17 | msgid "Contents" 18 | msgstr "Садржај" 19 | 20 | msgid "Fullscreen mode" 21 | msgstr "Режим целог екрана" 22 | 23 | msgid "Download this page" 24 | msgstr "Преузмите ову страницу" 25 | 26 | msgid "Download source file" 27 | msgstr "Преузми изворну датотеку" 28 | 29 | msgid "Launch" 30 | msgstr "Лансирање" 31 | 32 | msgid "Edit this page" 33 | msgstr "Уредите ову страницу" 34 | 35 | msgid "Toggle navigation" 36 | msgstr "Укључи / искључи навигацију" 37 | 38 | msgid "Theme by the" 39 | msgstr "Тхеме би" 40 | 41 | msgid "Source repository" 42 | msgstr "Изворно спремиште" 43 | 44 | msgid "Last updated on" 45 | msgstr "Последње ажурирање" 46 | 47 | msgid "By the" 48 | msgstr "Од" 49 | 50 | msgid "Sphinx Book Theme" 51 | msgstr "Тема књиге Спхинк" 52 | 53 | msgid "Open an issue" 54 | msgstr "Отворите издање" 55 | 56 | msgid "next page" 57 | msgstr "Следећа страна" 58 | 59 | msgid "Copyright" 60 | msgstr "Ауторско право" 61 | 62 | msgid "Search this book..." 63 | msgstr "Претражите ову књигу ..." 64 | 65 | msgid "Print to PDF" 66 | msgstr "Испис у ПДФ" 67 | 68 | msgid "By" 69 | msgstr "Од стране" 70 | 71 | msgid "previous page" 72 | msgstr "Претходна страница" 73 | 74 | msgid "Search the docs ..." 75 | msgstr "Претражите документе ..." 76 | 77 | msgid "Download notebook file" 78 | msgstr "Преузмите датотеку бележнице" 79 | 80 | msgid "suggest edit" 81 | msgstr "предложи уређивање" 82 | -------------------------------------------------------------------------------- /_build/html/_static/locales/sv/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: sv\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "repository" 12 | msgstr "förvar" 13 | 14 | msgid "open issue" 15 | msgstr "öppet problem" 16 | 17 | msgid "Contents" 18 | msgstr "Innehåll" 19 | 20 | msgid "Fullscreen mode" 21 | msgstr "Fullskärmsläge" 22 | 23 | msgid "Download this page" 24 | msgstr "Ladda ner den här sidan" 25 | 26 | msgid "Download source file" 27 | msgstr "Ladda ner källfil" 28 | 29 | msgid "Launch" 30 | msgstr "Lansera" 31 | 32 | msgid "Edit this page" 33 | msgstr "Redigera den här sidan" 34 | 35 | msgid "Toggle navigation" 36 | msgstr "Växla navigering" 37 | 38 | msgid "Theme by the" 39 | msgstr "Tema av" 40 | 41 | msgid "Source repository" 42 | msgstr "Källförvar" 43 | 44 | msgid "Last updated on" 45 | msgstr "Senast uppdaterad den" 46 | 47 | msgid "By the" 48 | msgstr "Vid" 49 | 50 | msgid "Sphinx Book Theme" 51 | msgstr "Sphinx boktema" 52 | 53 | msgid "Open an issue" 54 | msgstr "Öppna ett problem" 55 | 56 | msgid "next page" 57 | msgstr "nästa sida" 58 | 59 | msgid "Copyright" 60 | msgstr "upphovsrätt" 61 | 62 | msgid "Search this book..." 63 | msgstr "Sök i den här boken ..." 64 | 65 | msgid "Print to PDF" 66 | msgstr "Skriv ut till PDF" 67 | 68 | msgid "By" 69 | msgstr "Förbi" 70 | 71 | msgid "previous page" 72 | msgstr "föregående sida" 73 | 74 | msgid "Search the docs ..." 75 | msgstr "Sök i dokumenten ..." 76 | 77 | msgid "Download notebook file" 78 | msgstr "Ladda ner anteckningsbokfilen" 79 | 80 | msgid "suggest edit" 81 | msgstr "föreslå redigering" 82 | -------------------------------------------------------------------------------- /_build/html/_static/locales/ta/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: ta\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "open issue" 12 | msgstr "திறந்த பிரச்சினை" 13 | 14 | msgid "Download this page" 15 | msgstr "இந்தப் பக்கத்தைப் பதிவிறக்கவும்" 16 | 17 | msgid "Download source file" 18 | msgstr "மூல கோப்பைப் பதிவிறக்குக" 19 | 20 | msgid "Launch" 21 | msgstr "தொடங்க" 22 | 23 | msgid "Edit this page" 24 | msgstr "இந்தப் பக்கத்தைத் திருத்தவும்" 25 | 26 | msgid "Toggle navigation" 27 | msgstr "வழிசெலுத்தலை நிலைமாற்று" 28 | 29 | msgid "Theme by the" 30 | msgstr "வழங்கிய தீம்" 31 | 32 | msgid "Source repository" 33 | msgstr "மூல களஞ்சியம்" 34 | 35 | msgid "Last updated on" 36 | msgstr "கடைசியாக புதுப்பிக்கப்பட்டது" 37 | 38 | msgid "By the" 39 | msgstr "மூலம்" 40 | 41 | msgid "Sphinx Book Theme" 42 | msgstr "ஸ்பிங்க்ஸ் புத்தக தீம்" 43 | 44 | msgid "Open an issue" 45 | msgstr "சிக்கலைத் திறக்கவும்" 46 | 47 | msgid "next page" 48 | msgstr "அடுத்த பக்கம்" 49 | 50 | msgid "Copyright" 51 | msgstr "பதிப்புரிமை" 52 | 53 | msgid "Search this book..." 54 | msgstr "இந்த புத்தகத்தைத் தேடுங்கள் ..." 55 | 56 | msgid "Print to PDF" 57 | msgstr "PDF இல் அச்சிடுக" 58 | 59 | msgid "By" 60 | msgstr "வழங்கியவர்" 61 | 62 | msgid "previous page" 63 | msgstr "முந்தைய பக்கம்" 64 | 65 | msgid "Download notebook file" 66 | msgstr "நோட்புக் கோப்பைப் பதிவிறக்கவும்" 67 | 68 | msgid "suggest edit" 69 | msgstr "திருத்த பரிந்துரைக்கவும்" 70 | -------------------------------------------------------------------------------- /_build/html/_static/locales/te/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: te\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "open issue" 12 | msgstr "ఓపెన్ ఇష్యూ" 13 | 14 | msgid "Download this page" 15 | msgstr "ఈ పేజీని డౌన్లోడ్ చేయండి" 16 | 17 | msgid "Download source file" 18 | msgstr "మూల ఫైల్ను డౌన్లోడ్ చేయండి" 19 | 20 | msgid "Launch" 21 | msgstr "ప్రారంభించండి" 22 | 23 | msgid "Edit this page" 24 | msgstr "ఈ పేజీని సవరించండి" 25 | 26 | msgid "Toggle navigation" 27 | msgstr "నావిగేషన్ను టోగుల్ చేయండి" 28 | 29 | msgid "Theme by the" 30 | msgstr "ద్వారా థీమ్" 31 | 32 | msgid "Source repository" 33 | msgstr "మూల రిపోజిటరీ" 34 | 35 | msgid "Last updated on" 36 | msgstr "చివరిగా నవీకరించబడింది" 37 | 38 | msgid "By the" 39 | msgstr "ద్వారా" 40 | 41 | msgid "Sphinx Book Theme" 42 | msgstr "సింహిక పుస్తక థీమ్" 43 | 44 | msgid "Open an issue" 45 | msgstr "సమస్యను తెరవండి" 46 | 47 | msgid "next page" 48 | msgstr "తరువాతి పేజీ" 49 | 50 | msgid "Copyright" 51 | msgstr "కాపీరైట్" 52 | 53 | msgid "Search this book..." 54 | msgstr "ఈ పుస్తకాన్ని శోధించండి ..." 55 | 56 | msgid "Print to PDF" 57 | msgstr "PDF కి ముద్రించండి" 58 | 59 | msgid "By" 60 | msgstr "ద్వారా" 61 | 62 | msgid "previous page" 63 | msgstr "ముందు పేజి" 64 | 65 | msgid "Download notebook file" 66 | msgstr "నోట్బుక్ ఫైల్ను డౌన్లోడ్ చేయండి" 67 | 68 | msgid "suggest edit" 69 | msgstr "సవరించమని సూచించండి" 70 | -------------------------------------------------------------------------------- /_build/html/_static/locales/tg/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: tg\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "repository" 12 | msgstr "анбор" 13 | 14 | msgid "open issue" 15 | msgstr "барориши кушод" 16 | 17 | msgid "Contents" 18 | msgstr "Мундариҷа" 19 | 20 | msgid "Fullscreen mode" 21 | msgstr "Ҳолати экрани пурра" 22 | 23 | msgid "Download this page" 24 | msgstr "Ин саҳифаро зеркашӣ кунед" 25 | 26 | msgid "Download source file" 27 | msgstr "Файли манбаъро зеркашӣ кунед" 28 | 29 | msgid "Launch" 30 | msgstr "Оғоз" 31 | 32 | msgid "Edit this page" 33 | msgstr "Ин саҳифаро таҳрир кунед" 34 | 35 | msgid "Toggle navigation" 36 | msgstr "Гузаришро иваз кунед" 37 | 38 | msgid "Theme by the" 39 | msgstr "Мавзӯъи аз" 40 | 41 | msgid "Source repository" 42 | msgstr "Анбори манбаъ" 43 | 44 | msgid "Last updated on" 45 | msgstr "Last навсозӣ дар" 46 | 47 | msgid "By the" 48 | msgstr "Бо" 49 | 50 | msgid "Sphinx Book Theme" 51 | msgstr "Сфинкс Мавзӯи китоб" 52 | 53 | msgid "Open an issue" 54 | msgstr "Масъаларо кушоед" 55 | 56 | msgid "next page" 57 | msgstr "саҳифаи оянда" 58 | 59 | msgid "Copyright" 60 | msgstr "Ҳуқуқи муаллиф" 61 | 62 | msgid "Search this book..." 63 | msgstr "Ин китобро ҷустуҷӯ кунед ..." 64 | 65 | msgid "Print to PDF" 66 | msgstr "Чоп ба PDF" 67 | 68 | msgid "By" 69 | msgstr "Бо" 70 | 71 | msgid "previous page" 72 | msgstr "саҳифаи қаблӣ" 73 | 74 | msgid "Search the docs ..." 75 | msgstr "Ҷустуҷӯи ҳуҷҷатҳо ..." 76 | 77 | msgid "Download notebook file" 78 | msgstr "Файли дафтарро зеркашӣ кунед" 79 | 80 | msgid "suggest edit" 81 | msgstr "пешниҳод вироиш" 82 | -------------------------------------------------------------------------------- /_build/html/_static/locales/th/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: th\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "repository" 12 | msgstr "ที่เก็บ" 13 | 14 | msgid "open issue" 15 | msgstr "เปิดปัญหา" 16 | 17 | msgid "Contents" 18 | msgstr "สารบัญ" 19 | 20 | msgid "Fullscreen mode" 21 | msgstr "โหมดเต็มหน้าจอ" 22 | 23 | msgid "Download this page" 24 | msgstr "ดาวน์โหลดหน้านี้" 25 | 26 | msgid "Download source file" 27 | msgstr "ดาวน์โหลดไฟล์ต้นฉบับ" 28 | 29 | msgid "Launch" 30 | msgstr "เปิด" 31 | 32 | msgid "Edit this page" 33 | msgstr "แก้ไขหน้านี้" 34 | 35 | msgid "Toggle navigation" 36 | msgstr "ไม่ต้องสลับช่องทาง" 37 | 38 | msgid "Theme by the" 39 | msgstr "ธีมโดย" 40 | 41 | msgid "Source repository" 42 | msgstr "ที่เก็บซอร์ส" 43 | 44 | msgid "Last updated on" 45 | msgstr "ปรับปรุงล่าสุดเมื่อ" 46 | 47 | msgid "By the" 48 | msgstr "โดย" 49 | 50 | msgid "Sphinx Book Theme" 51 | msgstr "ธีมหนังสือสฟิงซ์" 52 | 53 | msgid "Open an issue" 54 | msgstr "เปิดปัญหา" 55 | 56 | msgid "next page" 57 | msgstr "หน้าต่อไป" 58 | 59 | msgid "Copyright" 60 | msgstr "ลิขสิทธิ์" 61 | 62 | msgid "Search this book..." 63 | msgstr "ค้นหาหนังสือเล่มนี้ ..." 64 | 65 | msgid "Print to PDF" 66 | msgstr "พิมพ์เป็น PDF" 67 | 68 | msgid "By" 69 | msgstr "โดย" 70 | 71 | msgid "previous page" 72 | msgstr "หน้าที่แล้ว" 73 | 74 | msgid "Search the docs ..." 75 | msgstr "ค้นหาเอกสาร ..." 76 | 77 | msgid "Download notebook file" 78 | msgstr "ดาวน์โหลดไฟล์สมุดบันทึก" 79 | 80 | msgid "suggest edit" 81 | msgstr "แนะนำแก้ไข" 82 | -------------------------------------------------------------------------------- /_build/html/_static/locales/tl/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: tl\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "open issue" 12 | msgstr "bukas na isyu" 13 | 14 | msgid "Download this page" 15 | msgstr "I-download ang pahinang ito" 16 | 17 | msgid "Download source file" 18 | msgstr "Mag-download ng file ng pinagmulan" 19 | 20 | msgid "Launch" 21 | msgstr "Ilunsad" 22 | 23 | msgid "Edit this page" 24 | msgstr "I-edit ang pahinang ito" 25 | 26 | msgid "Toggle navigation" 27 | msgstr "I-toggle ang pag-navigate" 28 | 29 | msgid "Theme by the" 30 | msgstr "Tema ng" 31 | 32 | msgid "Source repository" 33 | msgstr "Pinagmulan ng imbakan" 34 | 35 | msgid "Last updated on" 36 | msgstr "Huling na-update noong" 37 | 38 | msgid "By the" 39 | msgstr "Sa pamamagitan ng" 40 | 41 | msgid "Sphinx Book Theme" 42 | msgstr "Tema ng Sphinx Book" 43 | 44 | msgid "Open an issue" 45 | msgstr "Magbukas ng isyu" 46 | 47 | msgid "next page" 48 | msgstr "Susunod na pahina" 49 | 50 | msgid "Copyright" 51 | msgstr "Copyright" 52 | 53 | msgid "Search this book..." 54 | msgstr "Maghanap sa librong ito ..." 55 | 56 | msgid "Print to PDF" 57 | msgstr "I-print sa PDF" 58 | 59 | msgid "By" 60 | msgstr "Ni" 61 | 62 | msgid "previous page" 63 | msgstr "Nakaraang pahina" 64 | 65 | msgid "Download notebook file" 66 | msgstr "Mag-download ng file ng notebook" 67 | 68 | msgid "suggest edit" 69 | msgstr "iminumungkahi i-edit" 70 | -------------------------------------------------------------------------------- /_build/html/_static/locales/tr/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: tr\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "repository" 12 | msgstr "depo" 13 | 14 | msgid "open issue" 15 | msgstr "Açık konu" 16 | 17 | msgid "Contents" 18 | msgstr "İçindekiler" 19 | 20 | msgid "Fullscreen mode" 21 | msgstr "Tam ekran modu" 22 | 23 | msgid "Download this page" 24 | msgstr "Bu sayfayı indirin" 25 | 26 | msgid "Download source file" 27 | msgstr "Kaynak dosyayı indirin" 28 | 29 | msgid "Launch" 30 | msgstr "Başlatmak" 31 | 32 | msgid "Edit this page" 33 | msgstr "Bu sayfayı düzenle" 34 | 35 | msgid "Toggle navigation" 36 | msgstr "Gezinmeyi değiştir" 37 | 38 | msgid "Theme by the" 39 | msgstr "Tarafından tema" 40 | 41 | msgid "Source repository" 42 | msgstr "Kaynak kod deposu" 43 | 44 | msgid "Last updated on" 45 | msgstr "Son güncelleme tarihi" 46 | 47 | msgid "By the" 48 | msgstr "Tarafından" 49 | 50 | msgid "Sphinx Book Theme" 51 | msgstr "Sfenks Kitap Teması" 52 | 53 | msgid "Open an issue" 54 | msgstr "Bir sorunu açın" 55 | 56 | msgid "next page" 57 | msgstr "sonraki Sayfa" 58 | 59 | msgid "Copyright" 60 | msgstr "Telif hakkı" 61 | 62 | msgid "Search this book..." 63 | msgstr "Bu kitabı ara ..." 64 | 65 | msgid "Print to PDF" 66 | msgstr "PDF olarak yazdır" 67 | 68 | msgid "By" 69 | msgstr "Tarafından" 70 | 71 | msgid "previous page" 72 | msgstr "önceki sayfa" 73 | 74 | msgid "Search the docs ..." 75 | msgstr "Belgelerde ara ..." 76 | 77 | msgid "Download notebook file" 78 | msgstr "Defter dosyasını indirin" 79 | 80 | msgid "suggest edit" 81 | msgstr "düzenleme öner" 82 | -------------------------------------------------------------------------------- /_build/html/_static/locales/uk/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: uk\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "repository" 12 | msgstr "сховище" 13 | 14 | msgid "open issue" 15 | msgstr "відкритий випуск" 16 | 17 | msgid "Contents" 18 | msgstr "Зміст" 19 | 20 | msgid "Fullscreen mode" 21 | msgstr "Повноекранний режим" 22 | 23 | msgid "Download this page" 24 | msgstr "Завантажте цю сторінку" 25 | 26 | msgid "Download source file" 27 | msgstr "Завантажити вихідний файл" 28 | 29 | msgid "Launch" 30 | msgstr "Запуск" 31 | 32 | msgid "Edit this page" 33 | msgstr "Редагувати цю сторінку" 34 | 35 | msgid "Toggle navigation" 36 | msgstr "Переключити навігацію" 37 | 38 | msgid "Theme by the" 39 | msgstr "Тема від" 40 | 41 | msgid "Source repository" 42 | msgstr "Джерело сховища" 43 | 44 | msgid "Last updated on" 45 | msgstr "Останнє оновлення:" 46 | 47 | msgid "By the" 48 | msgstr "По" 49 | 50 | msgid "Sphinx Book Theme" 51 | msgstr "Тема книги \"Сфінкс\"" 52 | 53 | msgid "Open an issue" 54 | msgstr "Відкрийте випуск" 55 | 56 | msgid "next page" 57 | msgstr "Наступна сторінка" 58 | 59 | msgid "Copyright" 60 | msgstr "Авторське право" 61 | 62 | msgid "Search this book..." 63 | msgstr "Шукати в цій книзі ..." 64 | 65 | msgid "Print to PDF" 66 | msgstr "Друк у форматі PDF" 67 | 68 | msgid "By" 69 | msgstr "Автор" 70 | 71 | msgid "previous page" 72 | msgstr "Попередня сторінка" 73 | 74 | msgid "Search the docs ..." 75 | msgstr "Шукати в документах ..." 76 | 77 | msgid "Download notebook file" 78 | msgstr "Завантажте файл блокнота" 79 | 80 | msgid "suggest edit" 81 | msgstr "запропонувати редагувати" 82 | -------------------------------------------------------------------------------- /_build/html/_static/locales/ur/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: ur\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "open issue" 12 | msgstr "کھلا مسئلہ" 13 | 14 | msgid "Download this page" 15 | msgstr "اس صفحے کو ڈاؤن لوڈ کریں" 16 | 17 | msgid "Download source file" 18 | msgstr "سورس فائل ڈاؤن لوڈ کریں" 19 | 20 | msgid "Launch" 21 | msgstr "لانچ کریں" 22 | 23 | msgid "Edit this page" 24 | msgstr "اس صفحے میں ترمیم کریں" 25 | 26 | msgid "Toggle navigation" 27 | msgstr "نیویگیشن ٹوگل کریں" 28 | 29 | msgid "Theme by the" 30 | msgstr "کے ذریعہ تھیم" 31 | 32 | msgid "Source repository" 33 | msgstr "ماخذ ذخیرہ" 34 | 35 | msgid "Last updated on" 36 | msgstr "آخری بار تازہ کاری ہوئی" 37 | 38 | msgid "By the" 39 | msgstr "کی طرف" 40 | 41 | msgid "Sphinx Book Theme" 42 | msgstr "سپنکس بک تھیم" 43 | 44 | msgid "Open an issue" 45 | msgstr "ایک مسئلہ کھولیں" 46 | 47 | msgid "next page" 48 | msgstr "اگلا صفحہ" 49 | 50 | msgid "Copyright" 51 | msgstr "کاپی رائٹ" 52 | 53 | msgid "Search this book..." 54 | msgstr "اس کتاب کو تلاش کریں…" 55 | 56 | msgid "Print to PDF" 57 | msgstr "پی ڈی ایف پرنٹ کریں" 58 | 59 | msgid "By" 60 | msgstr "بذریعہ" 61 | 62 | msgid "previous page" 63 | msgstr "سابقہ صفحہ" 64 | 65 | msgid "Download notebook file" 66 | msgstr "نوٹ بک فائل ڈاؤن لوڈ کریں" 67 | 68 | msgid "suggest edit" 69 | msgstr "ترمیم کی تجویز کریں" 70 | -------------------------------------------------------------------------------- /_build/html/_static/locales/vi/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: vi\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "repository" 12 | msgstr "kho" 13 | 14 | msgid "open issue" 15 | msgstr "vấn đề mở" 16 | 17 | msgid "Contents" 18 | msgstr "Nội dung" 19 | 20 | msgid "Fullscreen mode" 21 | msgstr "Chế độ toàn màn hình" 22 | 23 | msgid "Download this page" 24 | msgstr "Tải xuống trang này" 25 | 26 | msgid "Download source file" 27 | msgstr "Tải xuống tệp nguồn" 28 | 29 | msgid "Launch" 30 | msgstr "Phóng" 31 | 32 | msgid "Edit this page" 33 | msgstr "chỉnh sửa trang này" 34 | 35 | msgid "Toggle navigation" 36 | msgstr "Chuyển đổi điều hướng thành" 37 | 38 | msgid "Theme by the" 39 | msgstr "Chủ đề của" 40 | 41 | msgid "Source repository" 42 | msgstr "Kho nguồn" 43 | 44 | msgid "Last updated on" 45 | msgstr "Cập nhật lần cuối vào" 46 | 47 | msgid "By the" 48 | msgstr "Bằng" 49 | 50 | msgid "Sphinx Book Theme" 51 | msgstr "Chủ đề sách nhân sư" 52 | 53 | msgid "Open an issue" 54 | msgstr "Mở một vấn đề" 55 | 56 | msgid "next page" 57 | msgstr "Trang tiếp theo" 58 | 59 | msgid "Copyright" 60 | msgstr "Bản quyền" 61 | 62 | msgid "Search this book..." 63 | msgstr "Tìm kiếm cuốn sách này ..." 64 | 65 | msgid "Print to PDF" 66 | msgstr "In sang PDF" 67 | 68 | msgid "By" 69 | msgstr "Bởi" 70 | 71 | msgid "previous page" 72 | msgstr "trang trước" 73 | 74 | msgid "Search the docs ..." 75 | msgstr "Tìm kiếm tài liệu ..." 76 | 77 | msgid "Download notebook file" 78 | msgstr "Tải xuống tệp sổ tay" 79 | 80 | msgid "suggest edit" 81 | msgstr "đề nghị chỉnh sửa" 82 | -------------------------------------------------------------------------------- /_build/html/_static/locales/zh_CN/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: zh_CN\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "repository" 12 | msgstr "资料库" 13 | 14 | msgid "open issue" 15 | msgstr "公开的问题" 16 | 17 | msgid "Contents" 18 | msgstr "内容" 19 | 20 | msgid "Fullscreen mode" 21 | msgstr "全屏模式" 22 | 23 | msgid "Download this page" 24 | msgstr "下载此页面" 25 | 26 | msgid "Download source file" 27 | msgstr "下载源文件" 28 | 29 | msgid "Launch" 30 | msgstr "发射" 31 | 32 | msgid "Edit this page" 33 | msgstr "编辑这个页面" 34 | 35 | msgid "Toggle navigation" 36 | msgstr "切换导航" 37 | 38 | msgid "Theme by the" 39 | msgstr "主题由" 40 | 41 | msgid "Source repository" 42 | msgstr "源库" 43 | 44 | msgid "Last updated on" 45 | msgstr "上次更新时间:" 46 | 47 | msgid "By the" 48 | msgstr "由" 49 | 50 | msgid "Sphinx Book Theme" 51 | msgstr "狮身人面像书主题" 52 | 53 | msgid "Open an issue" 54 | msgstr "打开一个问题" 55 | 56 | msgid "next page" 57 | msgstr "下一页" 58 | 59 | msgid "Copyright" 60 | msgstr "版权" 61 | 62 | msgid "Search this book..." 63 | msgstr "搜索这本书..." 64 | 65 | msgid "Print to PDF" 66 | msgstr "列印成PDF" 67 | 68 | msgid "By" 69 | msgstr "通过" 70 | 71 | msgid "previous page" 72 | msgstr "上一页" 73 | 74 | msgid "Search the docs ..." 75 | msgstr "搜索文档..." 76 | 77 | msgid "Download notebook file" 78 | msgstr "下载笔记本文件" 79 | -------------------------------------------------------------------------------- /_build/html/_static/locales/zh_TW/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- 1 | 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: Sphinx-Book-Theme\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Content-Transfer-Encoding: 8bit\n" 8 | "Language: zh_TW\n" 9 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 10 | 11 | msgid "repository" 12 | msgstr "資料庫" 13 | 14 | msgid "open issue" 15 | msgstr "公開的問題" 16 | 17 | msgid "Contents" 18 | msgstr "內容" 19 | 20 | msgid "Fullscreen mode" 21 | msgstr "全屏模式" 22 | 23 | msgid "Download this page" 24 | msgstr "下載此頁面" 25 | 26 | msgid "Download source file" 27 | msgstr "下載源文件" 28 | 29 | msgid "Launch" 30 | msgstr "發射" 31 | 32 | msgid "Edit this page" 33 | msgstr "編輯這個頁面" 34 | 35 | msgid "Toggle navigation" 36 | msgstr "切換導航" 37 | 38 | msgid "Theme by the" 39 | msgstr "主題由" 40 | 41 | msgid "Source repository" 42 | msgstr "源庫" 43 | 44 | msgid "Last updated on" 45 | msgstr "上次更新時間:" 46 | 47 | msgid "By the" 48 | msgstr "由" 49 | 50 | msgid "Sphinx Book Theme" 51 | msgstr "獅身人面像書主題" 52 | 53 | msgid "Open an issue" 54 | msgstr "打開一個問題" 55 | 56 | msgid "next page" 57 | msgstr "下一頁" 58 | 59 | msgid "Copyright" 60 | msgstr "版權" 61 | 62 | msgid "Search this book..." 63 | msgstr "搜索這本書..." 64 | 65 | msgid "Print to PDF" 66 | msgstr "列印成PDF" 67 | 68 | msgid "By" 69 | msgstr "通過" 70 | 71 | msgid "previous page" 72 | msgstr "上一頁" 73 | 74 | msgid "Search the docs ..." 75 | msgstr "搜索文檔..." 76 | 77 | msgid "Download notebook file" 78 | msgstr "下載筆記本文件" 79 | 80 | msgid "suggest edit" 81 | msgstr "建議編輯" 82 | -------------------------------------------------------------------------------- /_build/html/_static/logo-us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_static/logo-us.png -------------------------------------------------------------------------------- /_build/html/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_static/minus.png -------------------------------------------------------------------------------- /_build/html/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlintor/curso-python-us/5055648f6dd71d43b96e1eed872d5fdb627043dd/_build/html/_static/plus.png -------------------------------------------------------------------------------- /_build/html/_static/sbt-webpack-macros.html: -------------------------------------------------------------------------------- 1 | 5 | {% macro head_pre_bootstrap() %} 6 | 7 | {% endmacro %} 8 | 9 | {% macro body_post() %} 10 | 11 | {% endmacro %} 12 | -------------------------------------------------------------------------------- /_build/html/_static/scripts/sphinx-book-theme.js: -------------------------------------------------------------------------------- 1 | !function(e){var t={};function n(o){if(t[o])return t[o].exports;var r=t[o]={i:o,l:!1,exports:{}};return e[o].call(r.exports,r,r.exports,n),r.l=!0,r.exports}n.m=e,n.c=t,n.d=function(e,t,o){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:o})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var o=Object.create(null);if(n.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)n.d(o,r,function(t){return e[t]}.bind(null,r));return o},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=0)}([function(e,t,n){e.exports=n(1)},function(e,t,n){"use strict";n.r(t);n.p;var o=e=>{"loading"!=document.readyState?e():document.addEventListener?document.addEventListener("DOMContentLoaded",e):document.attachEvent("onreadystatechange",(function(){"complete"==document.readyState&&e()}))};window.initThebeSBT=()=>{var e=$("div.section h1")[0];$(e).next().hasClass("thebe-launch-button")||$("").insertAfter($(e)),initThebe()},window.printPdf=e=>{let t=$(e).attr("aria-describedby"),n=$("#"+t).detach();window.print(),$("body").append(n)},window.toggleFullScreen=()=>{var e=document.fullscreenElement&&null!==document.fullscreenElement||document.webkitFullscreenElement&&null!==document.webkitFullscreenElement;let t=document.documentElement;e?(console.log("[SBT]: Exiting full screen"),document.exitFullscreen?document.exitFullscreen():document.webkitExitFullscreen&&document.webkitExitFullscreen()):(console.log("[SBT]: Entering full screen"),t.requestFullscreen?t.requestFullscreen():t.webkitRequestFullscreen&&t.webkitRequestFullscreen())},o(()=>{$(document).ready((function(){$('[data-toggle="tooltip"]').tooltip({trigger:"hover",delay:{show:500,hide:100}})}))}),o(()=>{var e=document.getElementById("site-navigation"),t=e.querySelectorAll(".active"),n=t[t.length-1];void 0!==n&&n.offsetTop>.5*$(window).height()&&(e.scrollTop=n.offsetTop-.2*$(window).height())}),o(()=>{var e=[];let t=new IntersectionObserver((t,n)=>{t.forEach(t=>{if(t.isIntersecting)e.push(t.target);else for(let n=0;n