z4usx 0.2.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.
- z4usx-0.2.0/PKG-INFO +19 -0
- z4usx-0.2.0/README.md +1 -0
- z4usx-0.2.0/pyproject.toml +21 -0
- z4usx-0.2.0/setup.cfg +4 -0
- z4usx-0.2.0/setup.py +17 -0
- z4usx-0.2.0/z4usx/__init__.py +24 -0
- z4usx-0.2.0/z4usx.egg-info/PKG-INFO +19 -0
- z4usx-0.2.0/z4usx.egg-info/SOURCES.txt +8 -0
- z4usx-0.2.0/z4usx.egg-info/dependency_links.txt +1 -0
- z4usx-0.2.0/z4usx.egg-info/top_level.txt +1 -0
z4usx-0.2.0/PKG-INFO
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: z4usx
|
|
3
|
+
Version: 0.2.0
|
|
4
|
+
Summary: Zeus Python package
|
|
5
|
+
Home-page: https://github.com/Z4usXcode/Zeus
|
|
6
|
+
Author: z4usx
|
|
7
|
+
Author-email: Ali <you@example.com>
|
|
8
|
+
License: MIT
|
|
9
|
+
Keywords: zeus,python,package
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
12
|
+
Classifier: Operating System :: OS Independent
|
|
13
|
+
Requires-Python: >=3.9
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
Dynamic: author
|
|
16
|
+
Dynamic: home-page
|
|
17
|
+
Dynamic: requires-python
|
|
18
|
+
|
|
19
|
+
# Zeus
|
z4usx-0.2.0/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# Zeus
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=42", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "z4usx" # Paket ismi, küçük harf, boşluk yok
|
|
7
|
+
version = "0.2.0" # SemVer formatı
|
|
8
|
+
description = "Zeus Python package"
|
|
9
|
+
authors = [{name = "Ali", email = "you@example.com"}]
|
|
10
|
+
readme = "README.md" # varsa readme dosyan
|
|
11
|
+
requires-python = ">=3.8"
|
|
12
|
+
license = {text = "MIT"} # Lisans
|
|
13
|
+
keywords = ["zeus", "python", "package"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Programming Language :: Python :: 3",
|
|
16
|
+
"License :: OSI Approved :: MIT License",
|
|
17
|
+
"Operating System :: OS Independent"
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[tool.setuptools]
|
|
21
|
+
packages = ["z4usx"] # Paket klasör adın
|
z4usx-0.2.0/setup.cfg
ADDED
z4usx-0.2.0/setup.py
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
|
|
3
|
+
setup(
|
|
4
|
+
name="z4usx",
|
|
5
|
+
version="0.1.0",
|
|
6
|
+
packages=find_packages(),
|
|
7
|
+
description="A short description of your package",
|
|
8
|
+
url="https://github.com/Z4usXcode/Zeus",
|
|
9
|
+
author="z4usx",
|
|
10
|
+
author_email="example@example.com", # boş bırakma
|
|
11
|
+
classifiers=[
|
|
12
|
+
"Programming Language :: Python :: 3",
|
|
13
|
+
"License :: OSI Approved :: MIT License",
|
|
14
|
+
"Operating System :: OS Independent",
|
|
15
|
+
],
|
|
16
|
+
python_requires='>=3.9', # daha yaygın sürüm
|
|
17
|
+
)
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import requests
|
|
2
|
+
import random
|
|
3
|
+
|
|
4
|
+
def fetch_random_device():
|
|
5
|
+
url = "https://raw.githubusercontent.com/Z4usXcode/-/main/devices.txt"
|
|
6
|
+
response = requests.get(url)
|
|
7
|
+
response.raise_for_status()
|
|
8
|
+
|
|
9
|
+
lines = response.text.strip().splitlines()
|
|
10
|
+
if not lines:
|
|
11
|
+
raise ValueError("Dosya boş.")
|
|
12
|
+
line = random.choice(lines)
|
|
13
|
+
parts = line.strip().split(":")
|
|
14
|
+
if len(parts) != 7:
|
|
15
|
+
raise ValueError("Satır beklenen formatta değil.")
|
|
16
|
+
return {
|
|
17
|
+
"iid": parts[0],
|
|
18
|
+
"did": parts[1],
|
|
19
|
+
"type": parts[2],
|
|
20
|
+
"brand": parts[3],
|
|
21
|
+
"os_version": parts[4],
|
|
22
|
+
"cdid": parts[5],
|
|
23
|
+
"odid": parts[6],
|
|
24
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: z4usx
|
|
3
|
+
Version: 0.2.0
|
|
4
|
+
Summary: Zeus Python package
|
|
5
|
+
Home-page: https://github.com/Z4usXcode/Zeus
|
|
6
|
+
Author: z4usx
|
|
7
|
+
Author-email: Ali <you@example.com>
|
|
8
|
+
License: MIT
|
|
9
|
+
Keywords: zeus,python,package
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
12
|
+
Classifier: Operating System :: OS Independent
|
|
13
|
+
Requires-Python: >=3.9
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
Dynamic: author
|
|
16
|
+
Dynamic: home-page
|
|
17
|
+
Dynamic: requires-python
|
|
18
|
+
|
|
19
|
+
# Zeus
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
z4usx
|