Skip to content

Commit 1991f91

Browse files
committed
Merge branch 'main' of github.com:rambasnet/Python-Fundamentals
2 parents 1824eb0 + 9f29d25 commit 1991f91

Some content is hidden

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

44 files changed

+20
-34
lines changed

README.md

+8-2
File renamed without changes.

generatepdfs.sh

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#! /bin/bash
2+
3+
# Script to convert jupyter notebooks to PDF files. The pdfs are saved in ./pdfs folder
4+
5+
sudo apt update
6+
sudo apt install -y pandoc texlive texlive-xetex > /dev/null
7+
8+
files=$(find . -name '*.ipynb')
9+
for f in $files; do
10+
echo Converting: $f
11+
jupyter nbconvert --log-level=0 --output-dir='./pdfs' --to pdf $f > /dev/null
12+
done

integers.txt

-10
This file was deleted.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

test

Whitespace-only changes.

test1.txt

-7
This file was deleted.

words.txt

-8
This file was deleted.

words1.txt

-7
This file was deleted.

0 commit comments

Comments
 (0)