Skip to content

Commit 8d5f391

Browse files
completed migration of NaveenKumarReddy8/pythonworkshop to ProdigiousPython/PythonWorkshop with jupyter-book
1 parent 68cb230 commit 8d5f391

145 files changed

Lines changed: 53782 additions & 2 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

README.md

Lines changed: 0 additions & 2 deletions
This file was deleted.

README.rst

Whitespace-only changes.

_config.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Book settings
2+
# Learn more at https://jupyterbook.org/customize/config.html
3+
4+
title: My sample book
5+
author: The Jupyter Book Community
6+
logo: logo.png
7+
8+
# Force re-execution of notebooks on each build.
9+
# See https://jupyterbook.org/content/execute.html
10+
execute:
11+
execute_notebooks: force
12+
allow_errors: true
13+
only_build_toc_files: true
14+
15+
# Define the name of the latex output file for PDF builds
16+
latex:
17+
latex_documents:
18+
targetname: book.tex
19+
20+
# Add a bibtex file so that we can create citations
21+
bibtex_bibfiles:
22+
- references.bib
23+
24+
# Information about where the book exists on the web
25+
repository:
26+
url: https://github.com/ProdigiousPython/PythonWorkshop # Online location of your book
27+
path_to_book: docs # Optional path to your book, relative to the repository root
28+
branch: main # Which branch of the repository should be used when creating links (optional)
29+
30+
# Add GitHub buttons to your book
31+
# See https://jupyterbook.org/customize/config.html#add-a-link-to-your-repository
32+
html:
33+
use_issues_button: true
34+
use_repository_button: true

_toc.yml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# Table of contents
2+
# Learn more at https://jupyterbook.org/customize/toc.html
3+
4+
format: jb-book
5+
root: intro
6+
parts:
7+
- caption: 1. Introduction to Python 🐍
8+
numbered: True
9+
chapters:
10+
- file: pythonworkshop/Chapter_1/1_Getting_Started_With_Python_Language
11+
- file: pythonworkshop/Chapter_1/2_Creating_Variables_and_Assigning_Values
12+
- file: pythonworkshop/Chapter_1/3_Keywords_and_Variable_naming
13+
- file: pythonworkshop/Chapter_1/4_Datatypes
14+
- file: pythonworkshop/Chapter_1/5_Collection_Types
15+
- file: pythonworkshop/Chapter_1/6_IDEs_for_Python
16+
- file: pythonworkshop/Chapter_1/7_User_Input
17+
- file: pythonworkshop/Chapter_1/8_Builtins
18+
- file: pythonworkshop/Chapter_1/9_Modules
19+
- file: pythonworkshop/Chapter_1/10_String_representations_of_objects
20+
- file: pythonworkshop/Chapter_1/11_Installing_Packages
21+
- file: pythonworkshop/Chapter_1/12_Help_Utility
22+
- caption: 2. Indendation
23+
numbered: True
24+
chapters:
25+
- file: pythonworkshop/Chapter_2/1_Indendation
26+
- caption: 3. Comments and Docstrings
27+
numbered: True
28+
chapters:
29+
- file: pythonworkshop/Chapter_3/1_Comments_and_docstrings
30+
- caption: 4. Functions
31+
numbered: True
32+
chapters:
33+
- file: pythonworkshop/Chapter_4/1_Functions
34+
- file: pythonworkshop/Chapter_4/2_Positional_Arguments
35+
- file: pythonworkshop/Chapter_4/3_Unnamed_Positional_Arguments
36+
- file: pythonworkshop/Chapter_4/4_Keyword_only_arguments
37+
- file: pythonworkshop/Chapter_4/5_Keyword_arguments
38+
- file: pythonworkshop/Chapter_4/6_Default_Arguments
39+
- file: pythonworkshop/Chapter_4/7_TLDR_about_Functions_arguments
40+
- file: pythonworkshop/Chapter_4/8_Lambda_functions

0 commit comments

Comments
 (0)