Metadata-Version: 2.1
Name: smModule
Version: 9.0.0
Summary: Fixed bugs, spelling and completed README
Home-page: UNKNOWN
Author: Pascal Vallaster
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE.txt

##**SM - Module for Python programing language >= 3.6:**

##**CopyRight by Pascal Vallaster | all rights reserved**

###**Please report any errors to <pascalvallaster@gmail.com>**

###General Stuff:

####def check_system()
 - Checks if the OS is Windows or Unix

####def quit()
 - Exits the current (main-)thread

####def clear()
 - Clears the terminal

####def sleep(sec)
 - Sleeps a certain time= sec: int

####def check_input_int()
 - Checks if the entry from the user was an integer 

####def makeString
 - Converts a list to a string
 - Could  place "fillings" between the single elements of the list: eg. (the filling is "+"): "these+are+fillings+"
 - Note: At the end of the string there is also a filling. Just delete it by doing:
    ```
    sm.makeString(str)[:-1]
    ```

###Math Stuff:

####def fracture(
 - Calculates a fracture; param p(bool) if for printing the result => True/False;
 - If division-zero error is raised it

####def check_int(nZ)
 - Checks if the param nZ is an int; param p(bool) if for printing the number => True/False;
 - Returns a bool

####def N(nZ)
 - Checks if param nZ is a natural number; param p(bool) if for printing the number => True/False;
 - Returns a bool

####def Nu(nZ)
 - Checks if param nZ is part of the uneven numbers; param p(bool) if for printing the number => True/False;
 - Returns a bool

####def Ne(nZ)
 - Checks if param nZ is part of even numbers; param p(bool) if for printing the result => True/False;
 - Returns a bool

####def P(nZ)
 - Checks if param nZ is part of the prime numbers; param p(bool) if for printing the result => True/False;
 - Returns a bool


###Hacking Stuff (aircrack-ng):

####def attack(bssid, interf)
 - Attacks the wifi with the given bssid and interf; can only be used with the program aircrack-ng or similar
one that accepts the same commands;
   
######--legal-disclaimer--
 - **Only use this function for good purposes - I am
not responsible for any damage that could happen if the function was executed!**


###DB Stuff:

####def HowTo()
 - Gives very short introduction on SQL-Querys in general and shows an example on how to use dbworker

####class IncorrectEntry(Exception)
 - Exception class in case the entry from some params is invalid; is raised by def check_vars()
    ```
    from sm import dbworker
    class db(dbworker):
        def __init__(self):
            super(db, self).__init__()
            
    instance = db()
    instance.INSERT(table:"table1", column:"column1")
    
    -Execute Python-Script-
    ...
    Incorrect entry for variable: value
    Got 'NONE' instead  # Because 'value' must have a value, but it hasn't one => ERROR
        
    ```

####class dbworker

    => def INSERT()
    => def SELECT_ELEMETs()
    => def SELECT_ALL()
    => def  DELETE()
    => def UPDATE()
    => def getLastEntry()

 - See doc from dbworker itself, and the single functions in class dbworker._< function >_(); 
 - It's recommended to close the connection to the db before closing down the application => dbworker.close()


###XML Stuff:

####class XMLworker

    => def overwrite()
    => def insert_element()

 - See doc from XMLworker itself, and the single functions in class XMLworker._< function >_();


###JSON Stuff:

####class JSONworker

    => def write()

 - See doc from XMLworker itself, and the single functions in class JSONworker._< function >_();


####Mail Stuff:

####send_mail()
 - Send a mail to a person via GMAIL
 - Arguments: sender, password, name, receiver, subject, msg_text


###Log Stuff:

####class logMaker

    => def writeLog
    => def close

 - Writes a log in a file with function writeLog()
 - Takes two arguments: log, strftime = time on which the log was generated


###Color Stuff:

####class colors

    => RED = Fore.RED
    => BLUE = Fore.BLUE
    => CYAN = Fore.CYAN
    => WHITE = Fore.WHITE
    => BLACK = Fore.BLACK
    => GREEN = Fore.GREEN
    => YELLOW = Fore.YELLOW
    => MAGENTA = Fore.MAGENTA

    => RESET = Fore.RESET
    => BRIGHT = Style.BRIGHT
    => NORMAL = Style.NORMAL

 - See doc from package <a href="https://pypi.org/project/colorama/">colorama</a> itself


###Animations:

####def point_animation()
 - To animate the three points (loading symbol)

####def stick_animation()
 - To animate a rotating stick  (loading symbol)


###Copy-Paste Code:

- No Doc


###Main Stuff:

####main()

 - For handling the sys args if module is started with these

