Skip to content

Commit b1f575c

Browse files
committed
Merge branch 'master' into pandas-gradebook
2 parents baa5a54 + 6861bb2 commit b1f575c

32 files changed

+443
-20
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ version: 2
66
jobs:
77
build:
88
docker:
9-
- image: circleci/python:3.6
9+
- image: circleci/python:3.8
1010

1111
working_directory: ~/repo
1212

@@ -21,7 +21,7 @@ jobs:
2121
- v1-dependencies-
2222

2323
- run:
24-
name: install dependencies
24+
name: Install dependencies
2525
command: |
2626
python3 -m venv venv
2727
. venv/bin/activate

.dependabot/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
version: 1
2+
update_configs:
3+
- package_manager: "python"
4+
directory: "/requirements.txt"
5+
update_schedule: "monthly"
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Creating and Modifying PDFs With Python
2+
3+
This folder contains resources and materials for Real Python's [Creating and Modifying PDFs With Python](https://realpython.com/creating-modifying-pdf/) tutorial.
4+
5+
There are two subfolders in this folder:
6+
7+
1. **`practice_files/`:** Contains the sample PDFs used in the chapter
8+
2. **`source_code/`:** Contains source code from the chapter
9+
10+
The source code files are organized by section of the article, and the start of each subsection is indicated with comments.
11+
12+
The content of the companion tutorial was adapted from the "Creating and Modifying PDF Files" chapter of the book [*Python Basics: A Practical Introduction to Python 3*](https://realpython.com/products/python-basics-book/). If you enjoy this tutorial, check out the full book!
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
167 KB
Binary file not shown.
5.73 KB
Binary file not shown.
6.01 KB
Binary file not shown.

0 commit comments

Comments
 (0)