Split PDFs in Python using PyPDF - Sell Your First Python App

preview_player
Показать описание
Congratulations on making it to the fun part of the project!

In this video we implement the core functionality of our application, a PDF splitter. We also take a look at the basics of debugging Python scripts in VS Code.

Ready to learn how modern GUIs are built in Python? If so, like the video and subscribe so you don't miss the next upload.

// RESOURCES 🌐

// USEFUL LINKS 🔗

// PLAYLIST ▶️

// MORE VIDEOS TO WATCH 🎥

// TIMESTAMPS ⌛
00:00 - Intro
00:13 - Obtain Sample PDF
00:39 - Ensure Virtual Environment is Active
04:36 - Outro

// TOOLS THAT I USE 🛠️
○ DaVinci Resolve 18
○ OBS
○ Inkscape
○ GIMP (not what you think it is 🙃)
○ Canva
○ Visual Studio Code

// MUSIC 🎵
Lost by KaizanBlu

// THANK YOU ❤️
If you enjoyed the video, please consider liking and subscribing!
It really means a lot to me, and helps me make more videos just like these.

Thanks once again and have a great day! 😊

DISCLAIMER: Links included in this description might be affiliate links. If you purchase a product or service with the links that I provide I may receive a small commission. There is no additional charge to you! Thank you for supporting my channel so I can continue to provide you with free content!
Рекомендации по теме
Комментарии
Автор

IMPORTANT NOTICE! PLEASE READ BEFORE CONTINUING SERIES!

Hey Everyone!
Just a quick update. Upon further testing, the following line must be added to the settings.json file just before the line we uncommented at 5:42 to ensure our virtual environment works consistently (don't forget the trailing comma):

"terminal.integrated.cwd": "${workspaceFolder}",

The first settings block should now resemble the following:

// Change default terminal
{
"CMD (venv)": {
"path": "C:\\WINDOWS\\System32\\cmd.exe",
"args": ["/K", "python", "-m", "pipenv", "shell"],
"overrideName": true,
"icon": "terminal-cmd",
},
},
"terminal.integrated.cwd": "${workspaceFolder}",
"CMD (venv)",

Apologies for my oversight 😅 See you in the next video 🙂

brain.buffer
Автор

Nice content! I think you want to turn up the volume 50%.

glenneric