falcon-lang-sayan 4.8.0__py3-none-any.whl → 4.8.1__py3-none-any.whl
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.
- {falcon_lang_sayan-4.8.0.dist-info → falcon_lang_sayan-4.8.1.dist-info}/METADATA +1 -1
- falcon_lang_sayan-4.8.1.dist-info/RECORD +8 -0
- fpm.py +27 -0
- falcon_lang_sayan-4.8.0.dist-info/RECORD +0 -8
- {falcon_lang_sayan-4.8.0.dist-info → falcon_lang_sayan-4.8.1.dist-info}/WHEEL +0 -0
- {falcon_lang_sayan-4.8.0.dist-info → falcon_lang_sayan-4.8.1.dist-info}/entry_points.txt +0 -0
- {falcon_lang_sayan-4.8.0.dist-info → falcon_lang_sayan-4.8.1.dist-info}/licenses/LICENSE +0 -0
- {falcon_lang_sayan-4.8.0.dist-info → falcon_lang_sayan-4.8.1.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
falcon_engine.py,sha256=K1zwmZ72tax-nq-39QPi5oFUal81sBNSX7LygJ4KsKY,8339
|
|
2
|
+
fpm.py,sha256=pK0-BlX14FBwofEwEfu4E6gGfYT6hDSqPoUe5nXA24o,1893
|
|
3
|
+
falcon_lang_sayan-4.8.1.dist-info/licenses/LICENSE,sha256=SeFTmrPbutlXBdIGV6jElZo6M86lQ6yZ3QFes8O-KcM,11318
|
|
4
|
+
falcon_lang_sayan-4.8.1.dist-info/METADATA,sha256=0zB2cQjJ-Gg6GH7YVIp1iSrzy_xNdyWGbpjPhr1rhwc,3586
|
|
5
|
+
falcon_lang_sayan-4.8.1.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
6
|
+
falcon_lang_sayan-4.8.1.dist-info/entry_points.txt,sha256=PXysJqospLuszYgGSi3qdCfk65VLhHCeqLL4oRxOu4o,46
|
|
7
|
+
falcon_lang_sayan-4.8.1.dist-info/top_level.txt,sha256=EvzFF4zHmblEzGPoDXzvLbPrHfh_K2IH8qIGSIgc3o8,18
|
|
8
|
+
falcon_lang_sayan-4.8.1.dist-info/RECORD,,
|
fpm.py
CHANGED
|
@@ -27,3 +27,30 @@ if __name__ == "__main__":
|
|
|
27
27
|
print("🚀 Falcon Package Manager (FPM) v1.0")
|
|
28
28
|
print("Usage: python fpm.py install <package_name>")
|
|
29
29
|
|
|
30
|
+
import os
|
|
31
|
+
import sys
|
|
32
|
+
import subprocess
|
|
33
|
+
|
|
34
|
+
def install(package_url):
|
|
35
|
+
print(f"🦅 Falcon Package Manager: Installing {package_url}...")
|
|
36
|
+
try:
|
|
37
|
+
# এটি প্যাকেজটিকে আপনার লোকাল ফোল্ডারে ক্লোন করবে
|
|
38
|
+
subprocess.run(["git", "clone", package_url], check=True)
|
|
39
|
+
print("✅ Installation successful!")
|
|
40
|
+
except Exception as e:
|
|
41
|
+
print(f"❌ Error: {e}")
|
|
42
|
+
|
|
43
|
+
def main():
|
|
44
|
+
if len(sys.argv) < 3:
|
|
45
|
+
print("Usage: fpm install <package_github_url>")
|
|
46
|
+
return
|
|
47
|
+
|
|
48
|
+
command = sys.argv[1]
|
|
49
|
+
target = sys.argv[2]
|
|
50
|
+
|
|
51
|
+
if command == "install":
|
|
52
|
+
install(target)
|
|
53
|
+
|
|
54
|
+
if __name__ == "__main__":
|
|
55
|
+
main()
|
|
56
|
+
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
falcon_engine.py,sha256=K1zwmZ72tax-nq-39QPi5oFUal81sBNSX7LygJ4KsKY,8339
|
|
2
|
-
fpm.py,sha256=TSzs4jV1ypUIZTI1iuzsOHl_r0NhhGU0eLC_wD0b9p8,1170
|
|
3
|
-
falcon_lang_sayan-4.8.0.dist-info/licenses/LICENSE,sha256=SeFTmrPbutlXBdIGV6jElZo6M86lQ6yZ3QFes8O-KcM,11318
|
|
4
|
-
falcon_lang_sayan-4.8.0.dist-info/METADATA,sha256=2uvGGWcf9QKCABkxgLAHjX0X54Fk1p0_zOK17hQ-pb0,3586
|
|
5
|
-
falcon_lang_sayan-4.8.0.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
6
|
-
falcon_lang_sayan-4.8.0.dist-info/entry_points.txt,sha256=PXysJqospLuszYgGSi3qdCfk65VLhHCeqLL4oRxOu4o,46
|
|
7
|
-
falcon_lang_sayan-4.8.0.dist-info/top_level.txt,sha256=EvzFF4zHmblEzGPoDXzvLbPrHfh_K2IH8qIGSIgc3o8,18
|
|
8
|
-
falcon_lang_sayan-4.8.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|