Category Archives: PYTHON

PEID TO YARA OR PEID 2 YARA PEID_TO_YARA.PY

SOURCE: https://dustri.org/b/peid-to-yara-now-with-python3.html WHY I ARRIVED ON THAT PYTHON CODE?

Posted in PYTHON | Leave a comment

WHAT IS PIP IN PYTHON?

READ 🙂 I TOLD YOU MY HOME PAGE IS VERY IMPORTANT 🙂 see below how to read PYTHON COMMAND 🙂 pls visit my HOME PAGE THAT IS YOUR TEACHER 🙂 HOW TO READ SYNTAX FIRST 🙂

Posted in PYTHON | Leave a comment

MYSQL IN PYTHON

mysql.connector.errors.ProgrammingError: Character set ‘utf8’ unsupported…I RECEIVED THAT ERROR 🙂 SOLUTION BELOW 🙂 SO AFTER I RUN py rm_mysql_demo.py …THE OUTPUT BELOW 🙂 SUCCESS!! create table: visit the SOURCE 🙂 https://www.w3schools.com/python/python_mysql_getstarted.asp INSERTING SINGLE RECORDS!! INSERTING MULTIPLE RECORDS SELECT AND DISPLAY THE … Continue reading

Posted in MYSQL, PYTHON | Leave a comment

HOW TO MAKE A WEB SERVER IN PYTHON

OKAY LET’S TRY THIS WEBSITE 🙂 you need to change server port to 8000 we will fix the issue to be continued 🙂 OKAY DO THIS 🙂 after we install the http on top import it OKAY CREATE A FILE … Continue reading

Posted in PYTHON | Leave a comment

CREATING MOBILE APPS IN PYTHON

from kivy.app import Appfrom kivy.uix.label import Label then python hello.py the result is that one class MainApp(App):def build(self):label = Label(text=’Hello from Kivy’,size_hint=(.5, .5),pos_hint={‘center_x’: .5, ‘center_y’: .5}) if name == ‘main‘:app = MainApp()app.run() SOURCE: https://realpython.com/mobile-app-kivy-python/#running-a-hello-kivy-program above: is complete code example NOW … Continue reading

Posted in PYTHON | Leave a comment