55 < head >
66 < meta charset ="utf-8 " />
77 < meta name ="viewport " content ="width=device-width, initial-scale=1.0 " />
8- < title > <no title> — Python Workshop 🐍</ title >
8+ < title > Python Workshop — Python Workshop 🐍</ title >
99
1010 < link href ="_static/css/theme.css " rel ="stylesheet " />
1111 < link href ="_static/css/index.c5995385ac14fb8791e8eb36b4908be2.css " rel ="stylesheet " />
@@ -83,7 +83,7 @@ <h1 class="site-logo" id="site-title">Python Workshop 🐍</h1>
8383 < ul class ="nav bd-sidenav ">
8484 < li class ="toctree-l1 ">
8585 < a class ="reference internal " href ="intro.html ">
86- Welcome to Python Workshop. 🐍
86+ Python Workshop
8787 </ a >
8888 </ li >
8989</ ul >
@@ -265,9 +265,9 @@ <h1 class="site-logo" id="site-title">Python Workshop 🐍</h1>
265265 <!-- ipynb file if we had a myst markdown file -->
266266
267267 <!-- Download raw file -->
268- < a class ="dropdown-buttons " href ="_sources/README.rst "> < button type ="button "
268+ < a class ="dropdown-buttons " href ="_sources/README.md "> < button type ="button "
269269 class ="btn btn-secondary topbarbtn " title ="Download source file " data-toggle ="tooltip "
270- data-placement ="left "> .rst </ button > </ a >
270+ data-placement ="left "> .md </ button > </ a >
271271 <!-- Download PDF via print -->
272272 < button type ="button " id ="download-print " class ="btn btn-secondary topbarbtn " title ="Print to PDF "
273273 onClick ="window.print() " data-toggle ="tooltip " data-placement ="left "> .pdf</ button >
@@ -310,7 +310,22 @@ <h1 class="site-logo" id="site-title">Python Workshop 🐍</h1>
310310 < i class ="fas fa-list "> </ i > Contents
311311 </ div >
312312 < nav id ="bd-toc-nav ">
313- < ul class ="simple visible nav section-nav flex-column ">
313+ < ul class ="visible nav section-nav flex-column ">
314+ < li class ="toc-h1 nav-item toc-entry ">
315+ < a class ="reference internal nav-link " href ="# ">
316+ Python Workshop
317+ </ a >
318+ </ li >
319+ < li class ="toc-h1 nav-item toc-entry ">
320+ < a class ="reference internal nav-link " href ="#development-setup ">
321+ Development setup
322+ </ a >
323+ </ li >
324+ < li class ="toc-h1 nav-item toc-entry ">
325+ < a class ="reference internal nav-link " href ="#made-with ">
326+ Made with ❤️
327+ </ a >
328+ </ li >
314329</ ul >
315330
316331 </ nav >
@@ -322,7 +337,48 @@ <h1 class="site-logo" id="site-title">Python Workshop 🐍</h1>
322337
323338 < div >
324339
325-
340+ < div class ="section " id ="python-workshop ">
341+ < h1 > Python Workshop< a class ="headerlink " href ="#python-workshop " title ="Permalink to this headline "> ¶</ a > </ h1 >
342+ < p > 🚀 < a class ="reference external " href ="https://prodigiouspython.github.io/PythonWorkshop/ "> Homepage</ a > </ p >
343+ < p > 📖 < a class ="reference external " href ="https://drive.google.com/file/d/1DF1IhLzjnLSzSlNO3PE1hcuv_Cgx6bAS/view?usp=sharing "> PDF</ a > </ p >
344+ < p > Welcome to Python Workshop 🐍</ p >
345+ < p > Idea of Python Workshop is to be different from the traditional books.</ p >
346+ < p > We wanted Python Workshop to be:</ p >
347+ < ul class ="simple ">
348+ < li > < p > Fun 🎉</ p > </ li >
349+ < li > < p > Executable 🤖</ p > </ li >
350+ < li > < p > Publishable via static web pages and PDF ⚙️</ p > </ li >
351+ </ ul >
352+ </ div >
353+ < div class ="section " id ="development-setup ">
354+ < h1 > Development setup< a class ="headerlink " href ="#development-setup " title ="Permalink to this headline "> ¶</ a > </ h1 >
355+ < p > First things first, We need to clone our repo</ p >
356+ < div class ="highlight-shell notranslate "> < div class ="highlight "> < pre > < span > </ span > git clone https://github.com/ProdigiousPython/PythonWorkshop.git
357+ </ pre > </ div >
358+ </ div >
359+ < p > We use < a class ="reference external " href ="https://python-poetry.org/ "> Poetry</ a > for the dependency mangement.</ p >
360+ < p > Let’s install the packages required using the below command:</ p >
361+ < div class ="highlight-shell notranslate "> < div class ="highlight "> < pre > < span > </ span > poetry install
362+ </ pre > </ div >
363+ </ div >
364+ < p > To run the jupyter-lab:</ p >
365+ < div class ="highlight-shell notranslate "> < div class ="highlight "> < pre > < span > </ span > poetry run jupyter-lab
366+ </ pre > </ div >
367+ </ div >
368+ < p > To convert the notebooks to html</ p >
369+ < div class ="highlight-shell notranslate "> < div class ="highlight "> < pre > < span > </ span > poetry run jb build .
370+ </ pre > </ div >
371+ </ div >
372+ < p > To convert the notebooks to pdf</ p >
373+ < div class ="highlight-shell notranslate "> < div class ="highlight "> < pre > < span > </ span > poetry run jb build --builder< span class ="o "> =</ span > pdfhtml .
374+ </ pre > </ div >
375+ </ div >
376+ < p > The generated files would be present in < code class ="docutils literal notranslate "> < span class ="pre "> _build</ span > </ code > folder.</ p >
377+ </ div >
378+ < div class ="section " id ="made-with ">
379+ < h1 > Made with ❤️< a class ="headerlink " href ="#made-with " title ="Permalink to this headline "> ¶</ a > </ h1 >
380+ </ div >
381+
326382 < script type ="text/x-thebe-config ">
327383 {
328384 requestKernel : true ,
0 commit comments