@@ -4,14 +4,14 @@ Simple to use image handler for python sqlite3.
44# Functions
55Function Name | Parameters | Returns
66------------- | ---------- | -------
7- ** [ init] ( #-__init__(self,-databasePath-:-str-=-"database.db",-tableName-:-str-=-"images")-->-None ) ** | ** databasePath** : * str* <br > ** tableName** : * str* | - |
8- ** [ startConnection] [ 2 ] ** | - | - |
9- ** [ imageSelector] [ 3 ] ** | ** path** : * str* | ** bytesContent** : * bytes* <br > ** extensionType** : * str* |
10- ** [ addImage] [ 4 ] ** | ** imageName** : * str* <br > ** imageBytes** : * bytes* <br > ** extensionType** : * str* | - |
11- ** [ getSaveImage] [ 5 ] ** | ** imageName** : * str* <br > ** savePath** : * str* | - |
12- ** [ isImageExists] [ 6 ] ** | ** imageName** : * str* | ** isExists** : * bool* |
13- ** [ deleteImage] [ 7 ] ** | ** imageName** : * str* | - |
14- ** [ updateImage] [ 8 ] ** | ** imageName** : * str* <br > ** newImageBytes** : * bytes* <br > ** newExtensionType** : * str* | - |
7+ ** init** | ** databasePath** : * str* <br > ** tableName** : * str* | - |
8+ ** startConnection** | - | - |
9+ ** imageSelector** | ** path** : * str* | ** bytesContent** : * bytes* <br > ** extensionType** : * str* |
10+ ** addImage** | ** imageName** : * str* <br > ** imageBytes** : * bytes* <br > ** extensionType** : * str* | - |
11+ ** getSaveImage** | ** imageName** : * str* <br > ** savePath** : * str* | - |
12+ ** isImageExists** | ** imageName** : * str* | ** isExists** : * bool* |
13+ ** deleteImage** | ** imageName** : * str* | - |
14+ ** updateImage** | ** imageName** : * str* <br > ** newImageBytes** : * bytes* <br > ** newExtensionType** : * str* | - |
1515
1616<br >
1717
@@ -75,7 +75,7 @@ print("Bytes Length: " + str(len(bytesOfImage)) + "\nExtension Type: " + extensi
7575
7676# Definitions
7777
78- ### __ init__ (self, databasePath : str = "database.db", tableName : str = "images") -> None
78+ ### __ init__ (self,databasePath : str = "database.db", tableName : str = "images") -> None
7979
8080- Sets the * self.databasePath* , * self.tableName* and calls * startConnection()* func.
8181
0 commit comments