PrettyTableX 0.1.2__tar.gz → 0.1.3__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.
@@ -0,0 +1,43 @@
1
+ Metadata-Version: 2.4
2
+ Name: PrettyTableX
3
+ Version: 0.1.3
4
+ Summary: A module that will help you make tables look pretty.
5
+ Author: SG-1022
6
+ Requires-Python: >=3.8
7
+ Description-Content-Type: text/markdown
8
+
9
+ # PrettyTableX
10
+
11
+ PrettyTableX is a free module build to make boring arrays into good looking tables via the console.
12
+
13
+ To get it, all you have to do is type 'pip install PrettyTableX' in the terminal.
14
+
15
+ To use it, you have to type
16
+
17
+ from PrettyTable import PrettyTable
18
+
19
+
20
+
21
+ To use it, you first need an array. Then you can optionally give a header, row's indexes and column's indexes.
22
+
23
+ table = PrettyTable(ar=array)
24
+
25
+ Here are all the parameters you can put in PrettyTableX.
26
+
27
+ ar = Array
28
+
29
+ header: Takes a string. The header of the table.
30
+
31
+ row_index: Takes a boolean. If you want the rows to be indexed, turn this on.
32
+
33
+ row_indexes: Takes a list. After turning on row_index, you can give a list of the indexes they use. If you don't put a parameter here, then the indexes automatically become numbers.
34
+
35
+ column_indexes: Takes a list. If you want the columns to be indexed, then put the list here.
36
+
37
+
38
+
39
+ After putting your array into PrettyTable. You can use the dict_to_array or the tup_to_array if you need to change the non-array into an array.
40
+
41
+ If you want to see your array. Print the table.
42
+
43
+ If you want it prettified instead of normal. Run table.make_table_pretty() and then print the table.
@@ -0,0 +1,43 @@
1
+ Metadata-Version: 2.4
2
+ Name: PrettyTableX
3
+ Version: 0.1.3
4
+ Summary: A module that will help you make tables look pretty.
5
+ Author: SG-1022
6
+ Requires-Python: >=3.8
7
+ Description-Content-Type: text/markdown
8
+
9
+ # PrettyTableX
10
+
11
+ PrettyTableX is a free module build to make boring arrays into good looking tables via the console.
12
+
13
+ To get it, all you have to do is type 'pip install PrettyTableX' in the terminal.
14
+
15
+ To use it, you have to type
16
+
17
+ from PrettyTable import PrettyTable
18
+
19
+
20
+
21
+ To use it, you first need an array. Then you can optionally give a header, row's indexes and column's indexes.
22
+
23
+ table = PrettyTable(ar=array)
24
+
25
+ Here are all the parameters you can put in PrettyTableX.
26
+
27
+ ar = Array
28
+
29
+ header: Takes a string. The header of the table.
30
+
31
+ row_index: Takes a boolean. If you want the rows to be indexed, turn this on.
32
+
33
+ row_indexes: Takes a list. After turning on row_index, you can give a list of the indexes they use. If you don't put a parameter here, then the indexes automatically become numbers.
34
+
35
+ column_indexes: Takes a list. If you want the columns to be indexed, then put the list here.
36
+
37
+
38
+
39
+ After putting your array into PrettyTable. You can use the dict_to_array or the tup_to_array if you need to change the non-array into an array.
40
+
41
+ If you want to see your array. Print the table.
42
+
43
+ If you want it prettified instead of normal. Run table.make_table_pretty() and then print the table.
@@ -0,0 +1,35 @@
1
+ # PrettyTableX
2
+
3
+ PrettyTableX is a free module build to make boring arrays into good looking tables via the console.
4
+
5
+ To get it, all you have to do is type 'pip install PrettyTableX' in the terminal.
6
+
7
+ To use it, you have to type
8
+
9
+ from PrettyTable import PrettyTable
10
+
11
+
12
+
13
+ To use it, you first need an array. Then you can optionally give a header, row's indexes and column's indexes.
14
+
15
+ table = PrettyTable(ar=array)
16
+
17
+ Here are all the parameters you can put in PrettyTableX.
18
+
19
+ ar = Array
20
+
21
+ header: Takes a string. The header of the table.
22
+
23
+ row_index: Takes a boolean. If you want the rows to be indexed, turn this on.
24
+
25
+ row_indexes: Takes a list. After turning on row_index, you can give a list of the indexes they use. If you don't put a parameter here, then the indexes automatically become numbers.
26
+
27
+ column_indexes: Takes a list. If you want the columns to be indexed, then put the list here.
28
+
29
+
30
+
31
+ After putting your array into PrettyTable. You can use the dict_to_array or the tup_to_array if you need to change the non-array into an array.
32
+
33
+ If you want to see your array. Print the table.
34
+
35
+ If you want it prettified instead of normal. Run table.make_table_pretty() and then print the table.
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "PrettyTableX"
7
- version = "0.1.2"
7
+ version = "0.1.3"
8
8
  description = "A module that will help you make tables look pretty."
9
9
  requires-python = ">=3.8"
10
10
  readme = "README.md"
@@ -1,16 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: PrettyTableX
3
- Version: 0.1.2
4
- Summary: A module that will help you make tables look pretty.
5
- Author: SG-1022
6
- Requires-Python: >=3.8
7
- Description-Content-Type: text/markdown
8
-
9
- # PrettyTableX
10
-
11
- PrettyTableX is a free module build to make boring arrays into good looking tables via the console.
12
-
13
- To get it, all you have to do is type
14
- pip install PrettyTableX
15
- in the terminal.
16
-
@@ -1,16 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: PrettyTableX
3
- Version: 0.1.2
4
- Summary: A module that will help you make tables look pretty.
5
- Author: SG-1022
6
- Requires-Python: >=3.8
7
- Description-Content-Type: text/markdown
8
-
9
- # PrettyTableX
10
-
11
- PrettyTableX is a free module build to make boring arrays into good looking tables via the console.
12
-
13
- To get it, all you have to do is type
14
- pip install PrettyTableX
15
- in the terminal.
16
-
@@ -1,8 +0,0 @@
1
- # PrettyTableX
2
-
3
- PrettyTableX is a free module build to make boring arrays into good looking tables via the console.
4
-
5
- To get it, all you have to do is type
6
- pip install PrettyTableX
7
- in the terminal.
8
-
File without changes