All Questions
53 questions
1
vote
1
answer
126
views
Clear the temp folder with Python script
I am addicted to cleaning the %temp% folder, so I went ahead and tried with pyautogui at first by making it click ...
3
votes
1
answer
96
views
Powershell script that directly executes python script
Wrote this script after having some problems with clients on Win10 and consequent necessity to ship ultra-bloated .exe file of Python project over the Web to them. This is my first try to write ...
2
votes
2
answers
212
views
Python script to categorize download folder based on files
My Download habit is notorious and my download folder end up piled up with random downloads, I created a python script to maintain my download folder in windows
upon running the script it moves files ...
2
votes
0
answers
665
views
A Windows hook that detects the foreground window change
I tried to implement a windows hook to grab foreground window event. This code is probably bad because I didnt understand much. Can you tell me if that is better than a simple while loop that checks ...
2
votes
2
answers
153
views
Synchronization and backup of directories and files
I'm just learning to write. I set myself a task a few days ago, and today I completed its implementation. The task was to create a "backupper" (I was inspired just by my homework with "...
6
votes
1
answer
2k
views
Python module to print in printer
I made a code that simplifies the job of sending anything to print with the Windows API. The module has a Document object which stores a reference to the actual device context within it. You can ...
2
votes
1
answer
157
views
Windows 10 wallpaper-scroller script with Gif support
Intro:
Hello, I'm a python beginner. I haven't had anyone use my code or anything. I want to improve and become a "professional python developer". I thank you for taking the time to help me ...
3
votes
1
answer
149
views
Scan the RAM of a computer, displaying the services and executables
I wanted to write a program in Python which scans the RAM of a computer, by displaying the services and the executables.
...
5
votes
0
answers
546
views
Process Injector using ctypes and the Windows API
To get some practice with the Windows API and ctypes, I decided to write a program capable of injecting and running shellcode inside of another specified process.
...
3
votes
1
answer
80
views
program that fully documents every file on drive
I have a program which goes through your drive and does two things:
For every file extension it creates a file "file of extension_name" and whenever it encounters a file with that extension,...
5
votes
0
answers
954
views
safexl - A Python / pywin32 Excel Application wrapper
Thanks in advance for your interest in my first PyPI project.
While there happen to be a number of projects out there to help with creating & consuming Excel workbooks, I was unable to find one ...
5
votes
2
answers
218
views
Duplicate File Finder in python
I just started learning python yesterday, I have prior experience of C++. So I think I am able to get most of it pretty fast. I wrote a duplicate file finder for testing and practicing.
Can you guys ...
5
votes
2
answers
311
views
Program to delete directories that do not contain a file
I'm an intern and have an ETL project I'm doing in python.
Part of it is to make sure after I move files I delete empty directories.
I wrote this code to clean up directories that are empty and in ...
3
votes
1
answer
75
views
Opening YouTube videos according to chakra cycles
I'm learning how to write code in Python. This code makes an .ini that saves different cycles adding one new operation to the previous cycle. It starts at 1;1, saves that it has run 1 cycle and will ...
9
votes
2
answers
14k
views
Add and enable/disable Windows Firewall rules with Python
I have this following module using for adding and enabling/disabling Windows Firewall rules using Python.
I currently use subprocess.call to execute the ...