Posts

YouTube BOT (Python GUI + Selenium)

Image
Stream YouTube Videos     Do you want more views on your account? Might want to try this code. All you need to do is install the required libraries and run the program, input necessary details (link, loop, and exact time of the video) and finally click that ok button and wallah! It is now streaming! Creation and Importing of the BackEnd of the Gui            As we can see in the first part of the  picture below "import backENDyoutube as BE" which means we are importing the other file needed or the function part of our code. The latter picture will show it. Here, we can clearly see that this code pertains to a simple GUI, as a "class" is made to group them all together and at the bottom part we simply call the class to execute these lines of code which belongs to the class.       The BackEnd (Functions)      T     We need to install the webdriver of what browser we are currently using, in my ca...

Prime Numbers Checker, Prime Factors using (Python GUI + backEnd + Main)

Image
Prime Factors of Prime Numbers Checker This picture shows all the codes are gonna be executed here, thus making this our main file.  The highlighted word "import" depicts that we are gonna import a module or a file, this allows us to be able to crossover between files easily. The second picture shows the front part of our activity, it is the design or the layout. We can see that I also imported something here, "from tkinter import*" this simply means that from the given module or the stated module which is "tkinter" we are importing all which the "*" stands for. A Class is like an object constructor, or a "blueprint" for creating objects, here I made a class which name is "primeNumber" so that we can group all the objects inside it. The "def" is what we call a function in python. A function is a block of code which only runs when it is called. We can also pass data in a function and they are known as parameters, a fu...