Skip to content

Commit 210ad85

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

1 file changed

Lines changed: 25 additions & 10 deletions

File tree

README.md

Lines changed: 25 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,37 @@ Simple to use image handler for python sqlite3.
44
# Functions
55
Function Name | Parameters | Returns
66
------------- | ---------- | -------
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* | - |
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

18-
1918
[See definitions](#definitions)
2019

20+
[init]: #initselfdatabasepath--str--databasedb-tablename--str--images---none
21+
22+
[startConnection]: #startconnectionself---none
23+
24+
[imageSelector]: #imageselectorself-path--str--none---bytescontentbytes-extensiontypestr
25+
26+
[addImage]: #addimageself-imagename--str-imagebytes--bytes-extensiontype--str--png---none
27+
28+
[getSaveImage]: #getsaveimageself-imagename--str--none-savepath--str--savedimage---none
29+
30+
[isImageExists]: #isimageexistsself-imagename--str--none---isexistsbool
31+
32+
[deleteImage]: #deleteimageself-imagename--str--none---none
33+
34+
[updateImage]: #updateimageself-imagename--str--none-newimagebytes--bytes--none-newextensiontype--str--none---none
35+
2136
# Usage
22-
- <h3> Importing & Creating Handler </h3>
37+
- <h3>Importing & Creating Handler</h3>
2338

2439
```python
2540
from SQLiteImageHandler.SQLiteImageHandler import ImageHandler

0 commit comments

Comments
 (0)