Qwael 3.1.0__tar.gz → 3.5.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {qwael-3.1.0 → qwael-3.5.0}/PKG-INFO +2 -1
- qwael-3.5.0/Qwael/DoIP.py +18 -0
- {qwael-3.1.0 → qwael-3.5.0}/Qwael/__init__.py +2 -1
- {qwael-3.1.0 → qwael-3.5.0}/Qwael.egg-info/PKG-INFO +2 -1
- {qwael-3.1.0 → qwael-3.5.0}/Qwael.egg-info/SOURCES.txt +1 -0
- {qwael-3.1.0 → qwael-3.5.0}/Qwael.egg-info/requires.txt +1 -0
- {qwael-3.1.0 → qwael-3.5.0}/setup.py +3 -2
- {qwael-3.1.0 → qwael-3.5.0}/LICENSE +0 -0
- {qwael-3.1.0 → qwael-3.5.0}/Qwael/DR/304/260VE.py" +0 -0
- {qwael-3.1.0 → qwael-3.5.0}/Qwael.egg-info/dependency_links.txt +0 -0
- {qwael-3.1.0 → qwael-3.5.0}/Qwael.egg-info/top_level.txt +0 -0
- {qwael-3.1.0 → qwael-3.5.0}/README.md +0 -0
- {qwael-3.1.0 → qwael-3.5.0}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: Qwael
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.5.0
|
|
4
4
|
Summary: Qwael: İşlevsel ve kolaylaştırılmış Python kütüphanesi
|
|
5
5
|
Author: Bedirhan
|
|
6
6
|
Author-email: bedirhan.oytpass@gmail.com
|
|
@@ -20,6 +20,7 @@ Requires-Dist: google-auth
|
|
|
20
20
|
Requires-Dist: google-auth-oauthlib
|
|
21
21
|
Requires-Dist: google-auth-httplib2
|
|
22
22
|
Requires-Dist: Pillow
|
|
23
|
+
Requires-Dist: requests
|
|
23
24
|
Dynamic: author
|
|
24
25
|
Dynamic: author-email
|
|
25
26
|
Dynamic: classifier
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import socket
|
|
2
|
+
import requests
|
|
3
|
+
|
|
4
|
+
class IP:
|
|
5
|
+
@staticmethod
|
|
6
|
+
def lokal():
|
|
7
|
+
try:
|
|
8
|
+
hostname = socket.gethostname()
|
|
9
|
+
return socket.gethostbyname(hostname)
|
|
10
|
+
except Exception as e:
|
|
11
|
+
return f"Hata: {e}"
|
|
12
|
+
|
|
13
|
+
@staticmethod
|
|
14
|
+
def clop():
|
|
15
|
+
try:
|
|
16
|
+
return requests.get("https://api.ipify.org").text
|
|
17
|
+
except Exception as e:
|
|
18
|
+
return f"Hata: {e}"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: Qwael
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.5.0
|
|
4
4
|
Summary: Qwael: İşlevsel ve kolaylaştırılmış Python kütüphanesi
|
|
5
5
|
Author: Bedirhan
|
|
6
6
|
Author-email: bedirhan.oytpass@gmail.com
|
|
@@ -20,6 +20,7 @@ Requires-Dist: google-auth
|
|
|
20
20
|
Requires-Dist: google-auth-oauthlib
|
|
21
21
|
Requires-Dist: google-auth-httplib2
|
|
22
22
|
Requires-Dist: Pillow
|
|
23
|
+
Requires-Dist: requests
|
|
23
24
|
Dynamic: author
|
|
24
25
|
Dynamic: author-email
|
|
25
26
|
Dynamic: classifier
|
|
@@ -5,14 +5,15 @@ with open("README.md", "r", encoding="utf-8") as f:
|
|
|
5
5
|
|
|
6
6
|
setup(
|
|
7
7
|
name="Qwael",
|
|
8
|
-
version="3.
|
|
8
|
+
version="3.5.0",
|
|
9
9
|
packages=find_packages(),
|
|
10
10
|
install_requires=[
|
|
11
11
|
"google-api-python-client",
|
|
12
12
|
"google-auth",
|
|
13
13
|
"google-auth-oauthlib",
|
|
14
14
|
"google-auth-httplib2",
|
|
15
|
-
"Pillow"
|
|
15
|
+
"Pillow",
|
|
16
|
+
"requests"
|
|
16
17
|
],
|
|
17
18
|
description="Qwael: İşlevsel ve kolaylaştırılmış Python kütüphanesi",
|
|
18
19
|
long_description=README,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|