SILENT KILLERPanel

Current Path: > > opt > alt > python37 > lib64 > python3.7 > site-packages


Operation   : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
Software     : Apache
Server IP    : 162.0.232.56 | Your IP: 216.73.216.111
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: //opt/alt/python37/lib64/python3.7/site-packages

NameTypeSizeLast ModifiedActions
MarkupSafe-2.0.1-py3.7.egg-info Directory - -
MySQLdb Directory - -
PyYAML-5.4.1-py3.7.egg-info Directory - -
__pycache__ Directory - -
_yaml Directory - -
lxml Directory - -
lxml-4.4.3-py3.7.egg-info Directory - -
markupsafe Directory - -
multidict Directory - -
multidict-5.1.0-py3.7.egg-info Directory - -
mysqlclient-1.3.10-py3.7.egg-info Directory - -
psutil Directory - -
psutil-5.8.0-py3.7.egg-info Directory - -
pylve-2.1-py3.7.egg-info Directory - -
pyrsistent Directory - -
pyrsistent-0.14.11-py3.7.egg-info Directory - -
simplejson Directory - -
simplejson-3.12.0-py3.7.egg-info Directory - -
unshare-0.22-py3.7.egg-info Directory - -
yaml Directory - -
README.txt File 119 bytes June 05 2023 20:45:13.
_mysql.so File 90392 bytes March 07 2024 08:18:55.
_mysql_exceptions.py File 2335 bytes July 26 2016 08:12:24.
_pyrsistent_version.py File 24 bytes February 21 2019 21:31:17.
pvectorc.cpython-37m-x86_64-linux-gnu.so File 35104 bytes November 14 2023 13:59:52.
unshare.cpython-37m-x86_64-linux-gnu.so File 7944 bytes April 24 2023 20:41:40.

Reading File: //opt/alt/python37/lib64/python3.7/site-packages/_mysql_exceptions.py

"""_mysql_exceptions: Exception classes for _mysql and MySQLdb.

These classes are dictated by the DB API v2.0:

    https://www.python.org/dev/peps/pep-0249/
"""

try:
    from exceptions import Exception, StandardError, Warning
except ImportError:
    # Python 3
    StandardError = Exception


class MySQLError(StandardError):
    
    """Exception related to operation with MySQL."""


class Warning(Warning, MySQLError):

    """Exception raised for important warnings like data truncations
    while inserting, etc."""

class Error(MySQLError):

    """Exception that is the base class of all other error exceptions
    (not Warning)."""


class InterfaceError(Error):

    """Exception raised for errors that are related to the database
    interface rather than the database itself."""


class DatabaseError(Error):

    """Exception raised for errors that are related to the
    database."""


class DataError(DatabaseError):

    """Exception raised for errors that are due to problems with the
    processed data like division by zero, numeric value out of range,
    etc."""


class OperationalError(DatabaseError):

    """Exception raised for errors that are related to the database's
    operation and not necessarily under the control of the programmer,
    e.g. an unexpected disconnect occurs, the data source name is not
    found, a transaction could not be processed, a memory allocation
    error occurred during processing, etc."""


class IntegrityError(DatabaseError):

    """Exception raised when the relational integrity of the database
    is affected, e.g. a foreign key check fails, duplicate key,
    etc."""


class InternalError(DatabaseError):

    """Exception raised when the database encounters an internal
    error, e.g. the cursor is not valid anymore, the transaction is
    out of sync, etc."""


class ProgrammingError(DatabaseError):

    """Exception raised for programming errors, e.g. table not found
    or already exists, syntax error in the SQL statement, wrong number
    of parameters specified, etc."""


class NotSupportedError(DatabaseError):

    """Exception raised in case a method or database API was used
    which is not supported by the database, e.g. requesting a
    .rollback() on a connection that does not support transaction or
    has transactions turned off."""



SILENT KILLER Tool