clapp-pm 1.0.32__py3-none-any.whl → 1.0.34__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.
- {clapp_pm-1.0.32.data → clapp_pm-1.0.34.data}/data/version.json +1 -1
- {clapp_pm-1.0.32.dist-info → clapp_pm-1.0.34.dist-info}/METADATA +1 -1
- {clapp_pm-1.0.32.dist-info → clapp_pm-1.0.34.dist-info}/RECORD +31 -11
- publish_command.py +26 -5
- test-app/clapp-packages-repo/README.md +46 -0
- test-app/clapp-packages-repo/index.json +40 -0
- test-app/clapp-packages-repo/packages/cloud-finder/README.md +164 -0
- test-app/clapp-packages-repo/packages/cloud-finder/main.py +985 -0
- test-app/clapp-packages-repo/packages/cloud-finder/manifest.json +8 -0
- test-app/clapp-packages-repo/packages/cloud-finder/requirements.txt +2 -0
- test-app/clapp-packages-repo/packages/cloud-web-browser/README.md +160 -0
- test-app/clapp-packages-repo/packages/cloud-web-browser/cloud_browser.py +1031 -0
- test-app/clapp-packages-repo/packages/cloud-web-browser/manifest.json +13 -0
- test-app/clapp-packages-repo/packages/cloud-web-browser/requirements.txt +4 -0
- test-app/clapp-packages-repo/packages/test-app/README.md +51 -0
- test-app/clapp-packages-repo/packages/test-app/main.py +1 -0
- test-app/clapp-packages-repo/packages/test-app/manifest.json +1 -0
- test-app/clapp-packages-repo/packages/test-app-2/README.md +51 -0
- test-app/clapp-packages-repo/packages/test-app-2/main.py +55 -0
- test-app/clapp-packages-repo/packages/test-app-2/manifest.json +15 -0
- test-app/clapp-packages-repo/packages.json +40 -0
- test-app/main.py +1 -55
- test-app/manifest.json +1 -15
- test-app/packages/test-app/README.md +51 -0
- test-app/packages/test-app/main.py +1 -0
- test-app/packages/test-app/manifest.json +1 -0
- version.py +1 -1
- {clapp_pm-1.0.32.dist-info → clapp_pm-1.0.34.dist-info}/WHEEL +0 -0
- {clapp_pm-1.0.32.dist-info → clapp_pm-1.0.34.dist-info}/entry_points.txt +0 -0
- {clapp_pm-1.0.32.dist-info → clapp_pm-1.0.34.dist-info}/licenses/LICENSE +0 -0
- {clapp_pm-1.0.32.dist-info → clapp_pm-1.0.34.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,13 @@
|
|
1
|
+
{
|
2
|
+
"name": "cloud-web-browser",
|
3
|
+
"version": "1.0.0",
|
4
|
+
"language": "python",
|
5
|
+
"entry": "cloud_browser.py",
|
6
|
+
"description": "Modern ve hızlı web tarayıcı uygulaması. Python ve Flet framework'ü ile geliştirilmiştir. WebView teknolojisi ile gerçek web sayfalarını uygulama içinde görüntüler.",
|
7
|
+
"dependencies": [
|
8
|
+
"flet>=0.21.0",
|
9
|
+
"flet-webview>=0.1.0",
|
10
|
+
"requests>=2.31.0",
|
11
|
+
"beautifulsoup4>=4.12.0"
|
12
|
+
]
|
13
|
+
}
|
@@ -0,0 +1,51 @@
|
|
1
|
+
# Hello Python - clapp Örnek Uygulaması
|
2
|
+
|
3
|
+
Bu uygulama, clapp için Python uygulaması geliştirme örneğidir.
|
4
|
+
|
5
|
+
## 🚀 Özellikler
|
6
|
+
|
7
|
+
- Basit kullanıcı etkileşimi
|
8
|
+
- Hata yönetimi
|
9
|
+
- Sistem bilgileri gösterimi
|
10
|
+
- Matematik işlemleri
|
11
|
+
|
12
|
+
## 📦 Kurulum
|
13
|
+
|
14
|
+
```bash
|
15
|
+
# Uygulamayı yükle
|
16
|
+
clapp install ./hello-python
|
17
|
+
|
18
|
+
# Uygulamayı çalıştır
|
19
|
+
clapp run hello-python
|
20
|
+
```
|
21
|
+
|
22
|
+
## 🧪 Test
|
23
|
+
|
24
|
+
```bash
|
25
|
+
# Uygulamayı doğrula
|
26
|
+
clapp validate ./hello-python
|
27
|
+
|
28
|
+
# Bağımlılıkları kontrol et
|
29
|
+
clapp dependency check hello-python
|
30
|
+
```
|
31
|
+
|
32
|
+
## 📁 Dosya Yapısı
|
33
|
+
|
34
|
+
```
|
35
|
+
hello-python/
|
36
|
+
├── manifest.json # Uygulama manifesti
|
37
|
+
├── main.py # Ana uygulama dosyası
|
38
|
+
└── README.md # Bu dosya
|
39
|
+
```
|
40
|
+
|
41
|
+
## 🔧 Geliştirme
|
42
|
+
|
43
|
+
Bu şablonu kendi uygulamanız için kullanabilirsiniz:
|
44
|
+
|
45
|
+
1. `manifest.json` dosyasındaki `name` alanını değiştirin
|
46
|
+
2. `main.py` dosyasını kendi kodunuzla değiştirin
|
47
|
+
3. Gerekirse `requirements.txt` ekleyin
|
48
|
+
|
49
|
+
## 📝 Lisans
|
50
|
+
|
51
|
+
MIT License
|
@@ -0,0 +1 @@
|
|
1
|
+
print("Hello from test app")
|
@@ -0,0 +1 @@
|
|
1
|
+
{"name": "test-app", "version": "1.0.0", "language": "python", "entry": "main.py", "description": "Test app"}
|
@@ -0,0 +1,51 @@
|
|
1
|
+
# Hello Python - clapp Örnek Uygulaması
|
2
|
+
|
3
|
+
Bu uygulama, clapp için Python uygulaması geliştirme örneğidir.
|
4
|
+
|
5
|
+
## 🚀 Özellikler
|
6
|
+
|
7
|
+
- Basit kullanıcı etkileşimi
|
8
|
+
- Hata yönetimi
|
9
|
+
- Sistem bilgileri gösterimi
|
10
|
+
- Matematik işlemleri
|
11
|
+
|
12
|
+
## 📦 Kurulum
|
13
|
+
|
14
|
+
```bash
|
15
|
+
# Uygulamayı yükle
|
16
|
+
clapp install ./hello-python
|
17
|
+
|
18
|
+
# Uygulamayı çalıştır
|
19
|
+
clapp run hello-python
|
20
|
+
```
|
21
|
+
|
22
|
+
## 🧪 Test
|
23
|
+
|
24
|
+
```bash
|
25
|
+
# Uygulamayı doğrula
|
26
|
+
clapp validate ./hello-python
|
27
|
+
|
28
|
+
# Bağımlılıkları kontrol et
|
29
|
+
clapp dependency check hello-python
|
30
|
+
```
|
31
|
+
|
32
|
+
## 📁 Dosya Yapısı
|
33
|
+
|
34
|
+
```
|
35
|
+
hello-python/
|
36
|
+
├── manifest.json # Uygulama manifesti
|
37
|
+
├── main.py # Ana uygulama dosyası
|
38
|
+
└── README.md # Bu dosya
|
39
|
+
```
|
40
|
+
|
41
|
+
## 🔧 Geliştirme
|
42
|
+
|
43
|
+
Bu şablonu kendi uygulamanız için kullanabilirsiniz:
|
44
|
+
|
45
|
+
1. `manifest.json` dosyasındaki `name` alanını değiştirin
|
46
|
+
2. `main.py` dosyasını kendi kodunuzla değiştirin
|
47
|
+
3. Gerekirse `requirements.txt` ekleyin
|
48
|
+
|
49
|
+
## 📝 Lisans
|
50
|
+
|
51
|
+
MIT License
|
@@ -0,0 +1,55 @@
|
|
1
|
+
#!/usr/bin/env python3
|
2
|
+
"""
|
3
|
+
Hello Python - clapp Örnek Uygulaması
|
4
|
+
|
5
|
+
Bu uygulama clapp için Python uygulaması geliştirme örneğidir.
|
6
|
+
"""
|
7
|
+
|
8
|
+
import sys
|
9
|
+
import os
|
10
|
+
from datetime import datetime
|
11
|
+
|
12
|
+
def main():
|
13
|
+
"""Ana fonksiyon"""
|
14
|
+
print("=" * 50)
|
15
|
+
print("🚀 Hello Python - clapp Örnek Uygulaması")
|
16
|
+
print("=" * 50)
|
17
|
+
|
18
|
+
# Temel bilgiler
|
19
|
+
print(f"📅 Tarih: {datetime.now().strftime('%Y-%m-%d %H:%M:%S')}")
|
20
|
+
print(f"🐍 Python Sürümü: {sys.version}")
|
21
|
+
print(f"📁 Çalışma Dizini: {os.getcwd()}")
|
22
|
+
|
23
|
+
# Kullanıcı etkileşimi
|
24
|
+
name = input("\n👋 Adınızı girin: ")
|
25
|
+
if name.strip():
|
26
|
+
print(f"Merhaba {name}! clapp'e hoş geldiniz!")
|
27
|
+
else:
|
28
|
+
print("Merhaba! clapp'e hoş geldiniz!")
|
29
|
+
|
30
|
+
# Örnek işlemler
|
31
|
+
print("\n🔢 Basit Hesaplama Örneği:")
|
32
|
+
try:
|
33
|
+
a = float(input("Birinci sayıyı girin: "))
|
34
|
+
b = float(input("İkinci sayıyı girin: "))
|
35
|
+
|
36
|
+
print(f"Toplam: {a + b}")
|
37
|
+
print(f"Çarpım: {a * b}")
|
38
|
+
print(f"Bölüm: {a / b if b != 0 else 'Tanımsız'}")
|
39
|
+
|
40
|
+
except ValueError:
|
41
|
+
print("❌ Geçersiz sayı girişi!")
|
42
|
+
except ZeroDivisionError:
|
43
|
+
print("❌ Sıfıra bölme hatası!")
|
44
|
+
|
45
|
+
print("\n✅ Uygulama başarıyla tamamlandı!")
|
46
|
+
print("=" * 50)
|
47
|
+
|
48
|
+
if __name__ == "__main__":
|
49
|
+
try:
|
50
|
+
main()
|
51
|
+
except KeyboardInterrupt:
|
52
|
+
print("\n\n👋 Uygulama kullanıcı tarafından sonlandırıldı.")
|
53
|
+
except Exception as e:
|
54
|
+
print(f"\n❌ Beklenmeyen hata: {e}")
|
55
|
+
sys.exit(1)
|
@@ -0,0 +1,15 @@
|
|
1
|
+
{
|
2
|
+
"name": "test-app-2",
|
3
|
+
"version": "1.0.0",
|
4
|
+
"language": "python",
|
5
|
+
"entry": "main.py",
|
6
|
+
"description": "Basit bir Python Hello World uygulaması",
|
7
|
+
"author": "clapp Developer",
|
8
|
+
"license": "MIT",
|
9
|
+
"tags": [
|
10
|
+
"example",
|
11
|
+
"hello",
|
12
|
+
"python"
|
13
|
+
],
|
14
|
+
"category": "demo"
|
15
|
+
}
|
@@ -0,0 +1,40 @@
|
|
1
|
+
{
|
2
|
+
"repository": "mburakmmm/clapp-packages",
|
3
|
+
"version": "1.0.0",
|
4
|
+
"last_updated": "2024-01-15T10:00:00Z",
|
5
|
+
"packages": [
|
6
|
+
{
|
7
|
+
"name": "hello-world",
|
8
|
+
"version": "1.0.0",
|
9
|
+
"language": "python",
|
10
|
+
"description": "Basit merhaba dünya uygulaması - clapp ile ilk adımınız",
|
11
|
+
"author": "clapp-team",
|
12
|
+
"dependencies": [],
|
13
|
+
"download_url": "https://github.com/mburakmmm/clapp-packages/releases/download/v1.0.0/hello-world.clapp.zip",
|
14
|
+
"category": "demo",
|
15
|
+
"tags": ["demo", "tutorial", "beginner"],
|
16
|
+
"size": "1.2 KB",
|
17
|
+
"downloads": 150
|
18
|
+
},
|
19
|
+
|
20
|
+
|
21
|
+
}
|
22
|
+
],
|
23
|
+
"categories": {
|
24
|
+
"demo": "Demo ve Öğretici",
|
25
|
+
"productivity": "Verimlilik",
|
26
|
+
"utility": "Araçlar",
|
27
|
+
"system": "Sistem",
|
28
|
+
"games": "Oyunlar",
|
29
|
+
"security": "Güvenlik",
|
30
|
+
"development": "Geliştirme"
|
31
|
+
},
|
32
|
+
"statistics": {
|
33
|
+
"total_packages": 10,
|
34
|
+
"total_downloads": 1722,
|
35
|
+
"languages": {
|
36
|
+
"python": 10,
|
37
|
+
"lua": 0
|
38
|
+
}
|
39
|
+
}
|
40
|
+
}
|
test-app/main.py
CHANGED
@@ -1,55 +1 @@
|
|
1
|
-
|
2
|
-
"""
|
3
|
-
Hello Python - clapp Örnek Uygulaması
|
4
|
-
|
5
|
-
Bu uygulama clapp için Python uygulaması geliştirme örneğidir.
|
6
|
-
"""
|
7
|
-
|
8
|
-
import sys
|
9
|
-
import os
|
10
|
-
from datetime import datetime
|
11
|
-
|
12
|
-
def main():
|
13
|
-
"""Ana fonksiyon"""
|
14
|
-
print("=" * 50)
|
15
|
-
print("🚀 Hello Python - clapp Örnek Uygulaması")
|
16
|
-
print("=" * 50)
|
17
|
-
|
18
|
-
# Temel bilgiler
|
19
|
-
print(f"📅 Tarih: {datetime.now().strftime('%Y-%m-%d %H:%M:%S')}")
|
20
|
-
print(f"🐍 Python Sürümü: {sys.version}")
|
21
|
-
print(f"📁 Çalışma Dizini: {os.getcwd()}")
|
22
|
-
|
23
|
-
# Kullanıcı etkileşimi
|
24
|
-
name = input("\n👋 Adınızı girin: ")
|
25
|
-
if name.strip():
|
26
|
-
print(f"Merhaba {name}! clapp'e hoş geldiniz!")
|
27
|
-
else:
|
28
|
-
print("Merhaba! clapp'e hoş geldiniz!")
|
29
|
-
|
30
|
-
# Örnek işlemler
|
31
|
-
print("\n🔢 Basit Hesaplama Örneği:")
|
32
|
-
try:
|
33
|
-
a = float(input("Birinci sayıyı girin: "))
|
34
|
-
b = float(input("İkinci sayıyı girin: "))
|
35
|
-
|
36
|
-
print(f"Toplam: {a + b}")
|
37
|
-
print(f"Çarpım: {a * b}")
|
38
|
-
print(f"Bölüm: {a / b if b != 0 else 'Tanımsız'}")
|
39
|
-
|
40
|
-
except ValueError:
|
41
|
-
print("❌ Geçersiz sayı girişi!")
|
42
|
-
except ZeroDivisionError:
|
43
|
-
print("❌ Sıfıra bölme hatası!")
|
44
|
-
|
45
|
-
print("\n✅ Uygulama başarıyla tamamlandı!")
|
46
|
-
print("=" * 50)
|
47
|
-
|
48
|
-
if __name__ == "__main__":
|
49
|
-
try:
|
50
|
-
main()
|
51
|
-
except KeyboardInterrupt:
|
52
|
-
print("\n\n👋 Uygulama kullanıcı tarafından sonlandırıldı.")
|
53
|
-
except Exception as e:
|
54
|
-
print(f"\n❌ Beklenmeyen hata: {e}")
|
55
|
-
sys.exit(1)
|
1
|
+
print("Hello from test app")
|
test-app/manifest.json
CHANGED
@@ -1,15 +1 @@
|
|
1
|
-
{
|
2
|
-
"name": "test-app",
|
3
|
-
"version": "1.0.0",
|
4
|
-
"language": "python",
|
5
|
-
"entry": "main.py",
|
6
|
-
"description": "Basit bir Python Hello World uygulaması",
|
7
|
-
"author": "clapp Developer",
|
8
|
-
"license": "MIT",
|
9
|
-
"tags": [
|
10
|
-
"example",
|
11
|
-
"hello",
|
12
|
-
"python"
|
13
|
-
],
|
14
|
-
"category": "demo"
|
15
|
-
}
|
1
|
+
{"name": "test-app", "version": "1.0.0", "language": "python", "entry": "main.py", "description": "Test app"}
|
@@ -0,0 +1,51 @@
|
|
1
|
+
# Hello Python - clapp Örnek Uygulaması
|
2
|
+
|
3
|
+
Bu uygulama, clapp için Python uygulaması geliştirme örneğidir.
|
4
|
+
|
5
|
+
## 🚀 Özellikler
|
6
|
+
|
7
|
+
- Basit kullanıcı etkileşimi
|
8
|
+
- Hata yönetimi
|
9
|
+
- Sistem bilgileri gösterimi
|
10
|
+
- Matematik işlemleri
|
11
|
+
|
12
|
+
## 📦 Kurulum
|
13
|
+
|
14
|
+
```bash
|
15
|
+
# Uygulamayı yükle
|
16
|
+
clapp install ./hello-python
|
17
|
+
|
18
|
+
# Uygulamayı çalıştır
|
19
|
+
clapp run hello-python
|
20
|
+
```
|
21
|
+
|
22
|
+
## 🧪 Test
|
23
|
+
|
24
|
+
```bash
|
25
|
+
# Uygulamayı doğrula
|
26
|
+
clapp validate ./hello-python
|
27
|
+
|
28
|
+
# Bağımlılıkları kontrol et
|
29
|
+
clapp dependency check hello-python
|
30
|
+
```
|
31
|
+
|
32
|
+
## 📁 Dosya Yapısı
|
33
|
+
|
34
|
+
```
|
35
|
+
hello-python/
|
36
|
+
├── manifest.json # Uygulama manifesti
|
37
|
+
├── main.py # Ana uygulama dosyası
|
38
|
+
└── README.md # Bu dosya
|
39
|
+
```
|
40
|
+
|
41
|
+
## 🔧 Geliştirme
|
42
|
+
|
43
|
+
Bu şablonu kendi uygulamanız için kullanabilirsiniz:
|
44
|
+
|
45
|
+
1. `manifest.json` dosyasındaki `name` alanını değiştirin
|
46
|
+
2. `main.py` dosyasını kendi kodunuzla değiştirin
|
47
|
+
3. Gerekirse `requirements.txt` ekleyin
|
48
|
+
|
49
|
+
## 📝 Lisans
|
50
|
+
|
51
|
+
MIT License
|
@@ -0,0 +1 @@
|
|
1
|
+
print("Hello from test app")
|
@@ -0,0 +1 @@
|
|
1
|
+
{"name": "test-app", "version": "1.0.0", "language": "python", "entry": "main.py", "description": "Test app"}
|
version.py
CHANGED
File without changes
|
File without changes
|
File without changes
|
File without changes
|