ahqstore-cli 0.10.6__py3-none-any.whl → 0.10.7__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.
PKG-INFO CHANGED
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ahqstore-cli
3
- Version: 0.10.6
3
+ Version: 0.10.7
4
4
  Summary: A modern Python wrapper for the ahqstore CLI
5
5
  Author-email: AHQ Softwares <ahqsecret@gmail.com>
6
6
  Classifier: License :: OSI Approved :: MIT License
@@ -15,38 +15,87 @@ Description-Content-Type: text/markdown
15
15
 
16
16
  Read more about it [here](https://ahqstore.github.io)
17
17
 
18
- # Changelog
18
+ This is the Official AHQ Store CLI and the CLI with the most number of ports.
19
+ The original CLI has been written in rust lang and we're quite excited to tell you how versatile this tool actually is. This tool is **OFFICIALLY** available and mainted for :
19
20
 
20
- ## 0.6.0 **(m)** 05-Sep-2024 10:37PM IST
21
+ - [Crates.io (Original)](https://crates.io/crates/ahqstore_cli_rs)
22
+ - [npmjs (Port)](https://www.npmjs.com/package/@ahqstore/cli)
23
+ - [jsr (Port)](https://jsr.io/@ahqstore/cli)
24
+ - [PyPi (Port)](https://pypi.org/project/ahqstore-cli/)
25
+ - [Nuget (Port)](https://www.nuget.org/packages/AHQStoreCLI)
26
+ - [Golang (Port; Not Tested)](https://github.com/ahqstore/cli/tree/main/go)
21
27
 
22
- - Introduced ahqstore-types apps validation
23
- - Now you can view schemas in [docs.rs](https://docs.rs/ahqstore_cli_rs)
24
- - Update Dependencies
28
+ All the platforms use the same codebase (the rust codebase). We're making use of the C-Abi to
29
+ make the CLI compatible to the following languages/runtimes:
25
30
 
26
- ## 0.5.5 03-Sep-2024 10:20PM IST
31
+ - Cargo
32
+ - NodeJS
33
+ - Deno
34
+ - Bun
35
+ - Python
36
+ - .NET C#
37
+ - Golang
27
38
 
28
- - update ahqstore-types
39
+ # Usage
29
40
 
30
- ## 0.5.4 01-Sep-2024 10:07PM IST
41
+ Head over to https://ahqstore.github.io/guide/cli/ for usage references!
31
42
 
32
- - **[CRITICAL]** Fixes invalid config files being generated
43
+ # Installation
33
44
 
34
- ## 0.5.1 23-Aug-2024 10:09PM IST
45
+ ## Rust
35
46
 
36
- - Fix NPM Publish error
47
+ There are two ways to install in Rust Lang, `cargo install` and `cargo binstall`
37
48
 
38
- ## 0.5.0 **(I)** 23-Aug-2024 10:05PM IST
49
+ ## cargo install (official)
39
50
 
40
- - Update to the new resources scheme (ahqstore-types v3.1.0)
41
- - Update Dependencies
51
+ ```sh
52
+ cargo install ahqstore_cli_rs
53
+ ```
42
54
 
43
- ## 0.4.x **(m)**
55
+ ### cargo binstall
44
56
 
45
- - Update to ahqstore-types 2.3.0
57
+ ```sh
58
+ cargo binstall ahqstore_cli_rs
59
+ ```
46
60
 
47
- **NOTE:**
61
+ ## NodeJS
48
62
 
49
- - **I** Internal Breaking Changes
50
- - **m** Minor Breaking / Minor Addition Changes
51
- - **B** Breaking Changes
52
- - **P** Patch Changes
63
+ ```sh
64
+ npm i -g @ahqstore/cli
65
+ ```
66
+
67
+ ## Deno
68
+
69
+ ### Using npmjs
70
+
71
+ ```sh
72
+ deno install -g npm:@ahqstore/cli
73
+ ```
74
+
75
+ ### Using JSR
76
+
77
+ ```sh
78
+ deno install -A -f -g -n ahqstore https://jsr.io/@ahqstore/cli/0.10.7/js/cli.js
79
+ ```
80
+
81
+ ## Bun
82
+
83
+ ```sh
84
+ bun install -g @ahqstore/cli
85
+ ```
86
+
87
+ ## Python
88
+
89
+ ```sh
90
+ pip install ahqstore-cli
91
+ ```
92
+
93
+ ## GoLang
94
+
95
+ To be yet figured out
96
+
97
+ ## .NET C#
98
+
99
+ ```sh
100
+ dotnet tool install --global AHQStoreCLI
101
+ ```
@@ -0,0 +1,101 @@
1
+ Metadata-Version: 2.4
2
+ Name: ahqstore-cli
3
+ Version: 0.10.7
4
+ Summary: A modern Python wrapper for the ahqstore CLI
5
+ Author-email: AHQ Softwares <ahqsecret@gmail.com>
6
+ Classifier: License :: OSI Approved :: MIT License
7
+ Classifier: Operating System :: OS Independent
8
+ Classifier: Programming Language :: Python :: 3
9
+ Requires-Python: >=3.8
10
+ Requires-Dist: cffi>=1.17.0
11
+ Requires-Dist: requests>=2.25.1
12
+ Description-Content-Type: text/markdown
13
+
14
+ # AHQ Store CLI
15
+
16
+ Read more about it [here](https://ahqstore.github.io)
17
+
18
+ This is the Official AHQ Store CLI and the CLI with the most number of ports.
19
+ The original CLI has been written in rust lang and we're quite excited to tell you how versatile this tool actually is. This tool is **OFFICIALLY** available and mainted for :
20
+
21
+ - [Crates.io (Original)](https://crates.io/crates/ahqstore_cli_rs)
22
+ - [npmjs (Port)](https://www.npmjs.com/package/@ahqstore/cli)
23
+ - [jsr (Port)](https://jsr.io/@ahqstore/cli)
24
+ - [PyPi (Port)](https://pypi.org/project/ahqstore-cli/)
25
+ - [Nuget (Port)](https://www.nuget.org/packages/AHQStoreCLI)
26
+ - [Golang (Port; Not Tested)](https://github.com/ahqstore/cli/tree/main/go)
27
+
28
+ All the platforms use the same codebase (the rust codebase). We're making use of the C-Abi to
29
+ make the CLI compatible to the following languages/runtimes:
30
+
31
+ - Cargo
32
+ - NodeJS
33
+ - Deno
34
+ - Bun
35
+ - Python
36
+ - .NET C#
37
+ - Golang
38
+
39
+ # Usage
40
+
41
+ Head over to https://ahqstore.github.io/guide/cli/ for usage references!
42
+
43
+ # Installation
44
+
45
+ ## Rust
46
+
47
+ There are two ways to install in Rust Lang, `cargo install` and `cargo binstall`
48
+
49
+ ## cargo install (official)
50
+
51
+ ```sh
52
+ cargo install ahqstore_cli_rs
53
+ ```
54
+
55
+ ### cargo binstall
56
+
57
+ ```sh
58
+ cargo binstall ahqstore_cli_rs
59
+ ```
60
+
61
+ ## NodeJS
62
+
63
+ ```sh
64
+ npm i -g @ahqstore/cli
65
+ ```
66
+
67
+ ## Deno
68
+
69
+ ### Using npmjs
70
+
71
+ ```sh
72
+ deno install -g npm:@ahqstore/cli
73
+ ```
74
+
75
+ ### Using JSR
76
+
77
+ ```sh
78
+ deno install -A -f -g -n ahqstore https://jsr.io/@ahqstore/cli/0.10.7/js/cli.js
79
+ ```
80
+
81
+ ## Bun
82
+
83
+ ```sh
84
+ bun install -g @ahqstore/cli
85
+ ```
86
+
87
+ ## Python
88
+
89
+ ```sh
90
+ pip install ahqstore-cli
91
+ ```
92
+
93
+ ## GoLang
94
+
95
+ To be yet figured out
96
+
97
+ ## .NET C#
98
+
99
+ ```sh
100
+ dotnet tool install --global AHQStoreCLI
101
+ ```
@@ -0,0 +1,10 @@
1
+ ./.gitignore,sha256=DNBkdlt0Cp15HxUmbuVdZEtLDPQClHVMIdWQHtnHgcM,11
2
+ ./PKG-INFO,sha256=I2nZHcJ5HEt9Hlk2Yc9VJKPAMK4ShX366BoIhfoH0cA,2077
3
+ ./cli.py,sha256=yik2vnIccc3K1JXadjQhpEO4u-ZZDHKVwP6YvqjDCow,2539
4
+ ./pyproject.toml,sha256=OrNGJrstJSqOVlkCTm1v5wNW6rFEIuzUzIam5OJIGBo,647
5
+ ./setup.py,sha256=8bMFSFEirC83P2E5gqWscOv456HhYeZRC2ocGtZLFEo,37
6
+ ./.vscode/settings.json,sha256=Nsps3MtDH6o4saSxNgu1zaKuPCjSfrE6w4sk8G7Txrg,101
7
+ ahqstore_cli-0.10.7.dist-info/METADATA,sha256=I2nZHcJ5HEt9Hlk2Yc9VJKPAMK4ShX366BoIhfoH0cA,2077
8
+ ahqstore_cli-0.10.7.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
9
+ ahqstore_cli-0.10.7.dist-info/entry_points.txt,sha256=2mQ7jRN1am_T50S-EVmZN7-jWDvhvWtJOA2Qx8NWnnc,38
10
+ ahqstore_cli-0.10.7.dist-info/RECORD,,
pyproject.toml CHANGED
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "ahqstore-cli"
7
- version = "0.10.6"
7
+ version = "0.10.7"
8
8
  authors = [{ name = "AHQ Softwares", email = "ahqsecret@gmail.com" }]
9
9
  description = "A modern Python wrapper for the ahqstore CLI"
10
10
  readme = "../README.md"
@@ -1,52 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: ahqstore-cli
3
- Version: 0.10.6
4
- Summary: A modern Python wrapper for the ahqstore CLI
5
- Author-email: AHQ Softwares <ahqsecret@gmail.com>
6
- Classifier: License :: OSI Approved :: MIT License
7
- Classifier: Operating System :: OS Independent
8
- Classifier: Programming Language :: Python :: 3
9
- Requires-Python: >=3.8
10
- Requires-Dist: cffi>=1.17.0
11
- Requires-Dist: requests>=2.25.1
12
- Description-Content-Type: text/markdown
13
-
14
- # AHQ Store CLI
15
-
16
- Read more about it [here](https://ahqstore.github.io)
17
-
18
- # Changelog
19
-
20
- ## 0.6.0 **(m)** 05-Sep-2024 10:37PM IST
21
-
22
- - Introduced ahqstore-types apps validation
23
- - Now you can view schemas in [docs.rs](https://docs.rs/ahqstore_cli_rs)
24
- - Update Dependencies
25
-
26
- ## 0.5.5 03-Sep-2024 10:20PM IST
27
-
28
- - update ahqstore-types
29
-
30
- ## 0.5.4 01-Sep-2024 10:07PM IST
31
-
32
- - **[CRITICAL]** Fixes invalid config files being generated
33
-
34
- ## 0.5.1 23-Aug-2024 10:09PM IST
35
-
36
- - Fix NPM Publish error
37
-
38
- ## 0.5.0 **(I)** 23-Aug-2024 10:05PM IST
39
-
40
- - Update to the new resources scheme (ahqstore-types v3.1.0)
41
- - Update Dependencies
42
-
43
- ## 0.4.x **(m)**
44
-
45
- - Update to ahqstore-types 2.3.0
46
-
47
- **NOTE:**
48
-
49
- - **I** Internal Breaking Changes
50
- - **m** Minor Breaking / Minor Addition Changes
51
- - **B** Breaking Changes
52
- - **P** Patch Changes
@@ -1,10 +0,0 @@
1
- ./.gitignore,sha256=DNBkdlt0Cp15HxUmbuVdZEtLDPQClHVMIdWQHtnHgcM,11
2
- ./PKG-INFO,sha256=sBKZk-2j6jocm5LnmHu7uBimIIePC3uJ0lOKNz2qWAg,1229
3
- ./cli.py,sha256=yik2vnIccc3K1JXadjQhpEO4u-ZZDHKVwP6YvqjDCow,2539
4
- ./pyproject.toml,sha256=JTQx-hOCiXns0ub7WxOY9ov0sSIbGjQ3ihW8_a2VuGU,647
5
- ./setup.py,sha256=8bMFSFEirC83P2E5gqWscOv456HhYeZRC2ocGtZLFEo,37
6
- ./.vscode/settings.json,sha256=Nsps3MtDH6o4saSxNgu1zaKuPCjSfrE6w4sk8G7Txrg,101
7
- ahqstore_cli-0.10.6.dist-info/METADATA,sha256=sBKZk-2j6jocm5LnmHu7uBimIIePC3uJ0lOKNz2qWAg,1229
8
- ahqstore_cli-0.10.6.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
9
- ahqstore_cli-0.10.6.dist-info/entry_points.txt,sha256=2mQ7jRN1am_T50S-EVmZN7-jWDvhvWtJOA2Qx8NWnnc,38
10
- ahqstore_cli-0.10.6.dist-info/RECORD,,