Skip to content

Commit 07ace61

Browse files
authored
Add files via upload
1 parent 96838f9 commit 07ace61

11 files changed

Lines changed: 109 additions & 0 deletions
2.13 KB
Binary file not shown.

dist/secure_input-1.0.3.tar.gz

1.75 KB
Binary file not shown.

secure_input/CHANGELOG.txt

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
Change Log
2+
==================
3+
4+
1.0.0 (12/01/2023)
5+
------------------
6+
- First Release
7+
8+
9+
1.0.1 (12/01/2023)
10+
------------------
11+
- Added an Exception for non Unicode Characters ( Anti Crash )
12+
13+
14+
1.0.2 (15/01/2023)
15+
------------------
16+
- Fixed some Stuff
17+
18+
19+
1.0.3 (15/01/2023)
20+
------------------
21+
- Added custom string

secure_input/Discord - Support.url

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[{000214A0-0000-0000-C000-000000000046}]
2+
Prop3=19,11
3+
[InternetShortcut]
4+
IDList=
5+
URL=https://discord.gg/KkxjCe8Fg2

secure_input/GitHub.url

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[{000214A0-0000-0000-C000-000000000046}]
2+
Prop3=19,11
3+
[InternetShortcut]
4+
IDList=
5+
URL=https://github.com/SwezyDev/secure_input

secure_input/LICENCE.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Copyright 2023 Swezy
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4+
5+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6+
7+
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

secure_input/MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
global-include *.txt *.py

secure_input/Notes.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Ö Ä Ü ß Doesn't work only normal ASCII Letters and Symbols like ! ? = ) ( / " $ % & \ } ] [ { € @ ~ + * # ' - _ . : ; , | < >

secure_input/README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
How to use :
2+
3+
Python Example:
4+
5+
---------------------------------------
6+
7+
from secure_input import secure_input
8+
9+
password = secure_input("Enter your Password: ")
10+
11+
print(password)
12+
13+
---------------------------------------

secure_input/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
from .secure_input import secure_input
2+
3+
def __call__(*args, **kwargs):
4+
return secure_input(*args, **kwargs)

0 commit comments

Comments
 (0)