Nitratine
A place where I share projects developed by me and tutorials on topics that I'm interested in.
Auto Py to Exe
pip install auto-py-to-exe
Issues When Using auto-py-to-exe
After helping many of people fix issues with auto-py-to-exe and PyInstaller, this post contains what I think you should understand and ways to fix issues you are having with auto-py-to-exe.
17 Nov 2018 GeneralSort Spotify playlists using Spotify's pre-calculated audio features to attempt to emotionally gradient playlists.
Python Encryption and Decryption with PyCryptodome
PyCryptodome is a fork of PyCrypto that brings enhancements on top of the now unmaintained PyCrypto library. This tutorial demonstrates using the library by encrypting strings and files using AES.
14 May 2019 TutorialsPython Requests Tutorial
This is a basic Python requests tutorial to help you get started with sending HTTP requests in Python. This will cover all the basics that you will need and want to know when making HTTP requests in Python.
4 Apr 2019 TutorialsPython Face Recognition Tutorial
In this tutorial, I explain the setup and usage of the Python face_recognition library. This library can be used to detect faces using Python and identify facial features.
1 Sep 2020 TutorialsSimulate Keypresses In Python
This demonstrates how to press keys with Python. Using pynput we are able to simulate key presses into any window. This will show you how to press and release a key, type special keys and type a sentence.
16 Dec 2017 YouTubeSpotify Lyrics Viewer is a tool that allows you to view the lyrics of the current playing song on Spotify by simply signing in.
How To Hash Passwords In Python
In this tutorial, I cover the usage of PBKDF2_HMAC to encrypt passwords with a salt using Python.
20 May 2019 TutorialsHow to Make Hotkeys in Python
This demonstrates how to make a script to detect combinations of keypresses or even single keys pressed in Python. The script will use pynput to detect keypresses and will work on windows, mac and linux.
13 Jan 2018 YouTube