Skip to content

Commit 469457d

Browse files
authored
Update README.md
1 parent c9c622b commit 469457d

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ Simple to use image handler for python sqlite3.
44
# Functions
55
Function 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

Comments
 (0)