aveytense 0.3.51__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.
- aveytense-0.3.51/AveyTense.egg-info/PKG-INFO +87 -0
- aveytense-0.3.51/AveyTense.egg-info/SOURCES.txt +28 -0
- aveytense-0.3.51/AveyTense.egg-info/dependency_links.txt +1 -0
- aveytense-0.3.51/AveyTense.egg-info/requires.txt +1 -0
- aveytense-0.3.51/AveyTense.egg-info/top_level.txt +1 -0
- aveytense-0.3.51/MANIFEST.in +1 -0
- aveytense-0.3.51/PKG-INFO +87 -0
- aveytense-0.3.51/aveytense/__init__.py +8231 -0
- aveytense-0.3.51/aveytense/_/341/264/247v_collection/__init__.py +12 -0
- aveytense-0.3.51/aveytense/_/341/264/247v_collection/_abroad.py +325 -0
- aveytense-0.3.51/aveytense/_/341/264/247v_collection/_constants.py +54 -0
- aveytense-0.3.51/aveytense/_/341/264/247v_collection/_exceptions.py +224 -0
- aveytense-0.3.51/aveytense/_/341/264/247v_collection/_primal.py +3197 -0
- aveytense-0.3.51/aveytense/_/341/264/247v_collection/_subscript_builtins.py +39 -0
- aveytense-0.3.51/aveytense/_/341/264/247v_collection/_types.py +2177 -0
- aveytense-0.3.51/aveytense/_/341/264/247v_collection/_util.py +2963 -0
- aveytense-0.3.51/aveytense/_/341/264/247v_collection/_version.py +271 -0
- aveytense-0.3.51/aveytense/constants.py +90 -0
- aveytense-0.3.51/aveytense/exceptions.py +103 -0
- aveytense-0.3.51/aveytense/operators.py +56 -0
- aveytense-0.3.51/aveytense/py.typed +0 -0
- aveytense-0.3.51/aveytense/types_collection.py +421 -0
- aveytense-0.3.51/aveytense/util.py +20 -0
- aveytense-0.3.51/setup.cfg +4 -0
- aveytense-0.3.51/setup.py +106 -0
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: aveytense
|
|
3
|
+
Version: 0.3.51
|
|
4
|
+
Summary: Library written in Python, includes several extensions for inbuilt Python solutions
|
|
5
|
+
Author: Aveyzan
|
|
6
|
+
Author-email: aveyzan@gmail.com
|
|
7
|
+
License: MIT
|
|
8
|
+
Project-URL: Documentation, https://aveyzan.xyz/aveytense/
|
|
9
|
+
Project-URL: Changes, https://docs.google.com/document/d/1GC_KAOXML65jNfBZA8GhVViqPnrMoFtbLv_jHvUhBlg/edit?usp=sharing
|
|
10
|
+
Project-URL: Repository, https://github.com/Aveyzan/aveytense
|
|
11
|
+
Project-URL: Ko-Fi Donations, https://ko-fi.com/aveyzan
|
|
12
|
+
Project-URL: Issues, https://github.com/Aveyzan/aveytense/issues/
|
|
13
|
+
Classifier: Development Status :: 4 - Beta
|
|
14
|
+
Classifier: Intended Audience :: Developers
|
|
15
|
+
Classifier: Operating System :: OS Independent
|
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
23
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
24
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
25
|
+
Classifier: Topic :: Software Development
|
|
26
|
+
Requires-Python: >=3.8
|
|
27
|
+
Description-Content-Type: text/markdown
|
|
28
|
+
Requires-Dist: typing_extensions>=4.10.0
|
|
29
|
+
Dynamic: author
|
|
30
|
+
Dynamic: author-email
|
|
31
|
+
Dynamic: classifier
|
|
32
|
+
Dynamic: description
|
|
33
|
+
Dynamic: description-content-type
|
|
34
|
+
Dynamic: license
|
|
35
|
+
Dynamic: project-url
|
|
36
|
+
Dynamic: requires-dist
|
|
37
|
+
Dynamic: requires-python
|
|
38
|
+
Dynamic: summary
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
# AveyTense
|
|
42
|
+
|
|
43
|
+
**AveyTense** is a library written by Aveyzan using Python, which provides especially extensions to inbuilt Python solutions.
|
|
44
|
+
|
|
45
|
+
## Features
|
|
46
|
+
|
|
47
|
+
Features are included in [this page](https://aveyzan.xyz/aveytense).
|
|
48
|
+
For code changes see [this Google document](https://docs.google.com/document/d/1GC_KAOXML65jNfBZA8GhVViqPnrMoFtbLv_jHvUhBlg/edit?usp=sharing).
|
|
49
|
+
|
|
50
|
+
## Getting started
|
|
51
|
+
|
|
52
|
+
To install AveyTense, run the following command:
|
|
53
|
+
|
|
54
|
+
```
|
|
55
|
+
pip install aveytense
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
Ensure you have [`typing_extensions`](https://pypi.org/project/typing_extensions) PyPi project with version 4.10.0 or above, and Python 3.8 or above.
|
|
59
|
+
|
|
60
|
+
If you think you are out of date, consider checking out [releases section](https://pypi.org/project/aveytense/#history) and running following command:
|
|
61
|
+
|
|
62
|
+
```py
|
|
63
|
+
pip install --upgrade aveytense
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
After installation process, you can import module `aveytense`, which imports AveyTense components into your project.
|
|
67
|
+
|
|
68
|
+
> **Note**: It is highly recommended to install latest final version of AveyTense. Do not rely on alpha, beta releases, and
|
|
69
|
+
> release candidates before their final counterparts are published.
|
|
70
|
+
|
|
71
|
+
> **Warning**: Support for Python 3.8 just has been initiated in version 0.3.46, so some definitions will be still prone for errors due
|
|
72
|
+
> to the backward-compatibility. For code changes to completely support Python 3.8 there will be still need to inspect every definition
|
|
73
|
+
> included in the project.
|
|
74
|
+
|
|
75
|
+
## Support
|
|
76
|
+
|
|
77
|
+
You can support my project via donation on my [Ko-Fi](https://ko-fi.com/aveyzan). This isn't necessary but will be much appreciated.
|
|
78
|
+
|
|
79
|
+
If you found anomalies in code or/and want to suggest changes, consider sending mail to [my email](mailto:aveyzan@gmail.com) or
|
|
80
|
+
creating an issue in [the GitHub repository](https://github.com/Aveyzan/AveyTense/issues). Bug fixes will be issued in future versions
|
|
81
|
+
of AveyTense. The project isn't intended to be a malware.
|
|
82
|
+
|
|
83
|
+
- Aveyzan (30th May 2025), AveyTense Project Owner
|
|
84
|
+
|
|
85
|
+
AveyTense project maintained on PyPi since 7th August 2024.
|
|
86
|
+
|
|
87
|
+
© 2024-Present Aveyzan // License: MIT
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
MANIFEST.in
|
|
2
|
+
setup.py
|
|
3
|
+
AveyTense.egg-info/PKG-INFO
|
|
4
|
+
AveyTense.egg-info/SOURCES.txt
|
|
5
|
+
AveyTense.egg-info/dependency_links.txt
|
|
6
|
+
AveyTense.egg-info/requires.txt
|
|
7
|
+
AveyTense.egg-info/top_level.txt
|
|
8
|
+
aveytense/__init__.py
|
|
9
|
+
aveytense/constants.py
|
|
10
|
+
aveytense/exceptions.py
|
|
11
|
+
aveytense/operators.py
|
|
12
|
+
aveytense/py.typed
|
|
13
|
+
aveytense/types_collection.py
|
|
14
|
+
aveytense/util.py
|
|
15
|
+
aveytense.egg-info/PKG-INFO
|
|
16
|
+
aveytense.egg-info/SOURCES.txt
|
|
17
|
+
aveytense.egg-info/dependency_links.txt
|
|
18
|
+
aveytense.egg-info/requires.txt
|
|
19
|
+
aveytense.egg-info/top_level.txt
|
|
20
|
+
aveytense/_ᴧv_collection/__init__.py
|
|
21
|
+
aveytense/_ᴧv_collection/_abroad.py
|
|
22
|
+
aveytense/_ᴧv_collection/_constants.py
|
|
23
|
+
aveytense/_ᴧv_collection/_exceptions.py
|
|
24
|
+
aveytense/_ᴧv_collection/_primal.py
|
|
25
|
+
aveytense/_ᴧv_collection/_subscript_builtins.py
|
|
26
|
+
aveytense/_ᴧv_collection/_types.py
|
|
27
|
+
aveytense/_ᴧv_collection/_util.py
|
|
28
|
+
aveytense/_ᴧv_collection/_version.py
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
typing_extensions>=4.10.0
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
aveytense
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
include tense/package.json
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: aveytense
|
|
3
|
+
Version: 0.3.51
|
|
4
|
+
Summary: Library written in Python, includes several extensions for inbuilt Python solutions
|
|
5
|
+
Author: Aveyzan
|
|
6
|
+
Author-email: aveyzan@gmail.com
|
|
7
|
+
License: MIT
|
|
8
|
+
Project-URL: Documentation, https://aveyzan.xyz/aveytense/
|
|
9
|
+
Project-URL: Changes, https://docs.google.com/document/d/1GC_KAOXML65jNfBZA8GhVViqPnrMoFtbLv_jHvUhBlg/edit?usp=sharing
|
|
10
|
+
Project-URL: Repository, https://github.com/Aveyzan/aveytense
|
|
11
|
+
Project-URL: Ko-Fi Donations, https://ko-fi.com/aveyzan
|
|
12
|
+
Project-URL: Issues, https://github.com/Aveyzan/aveytense/issues/
|
|
13
|
+
Classifier: Development Status :: 4 - Beta
|
|
14
|
+
Classifier: Intended Audience :: Developers
|
|
15
|
+
Classifier: Operating System :: OS Independent
|
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
23
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
24
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
25
|
+
Classifier: Topic :: Software Development
|
|
26
|
+
Requires-Python: >=3.8
|
|
27
|
+
Description-Content-Type: text/markdown
|
|
28
|
+
Requires-Dist: typing_extensions>=4.10.0
|
|
29
|
+
Dynamic: author
|
|
30
|
+
Dynamic: author-email
|
|
31
|
+
Dynamic: classifier
|
|
32
|
+
Dynamic: description
|
|
33
|
+
Dynamic: description-content-type
|
|
34
|
+
Dynamic: license
|
|
35
|
+
Dynamic: project-url
|
|
36
|
+
Dynamic: requires-dist
|
|
37
|
+
Dynamic: requires-python
|
|
38
|
+
Dynamic: summary
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
# AveyTense
|
|
42
|
+
|
|
43
|
+
**AveyTense** is a library written by Aveyzan using Python, which provides especially extensions to inbuilt Python solutions.
|
|
44
|
+
|
|
45
|
+
## Features
|
|
46
|
+
|
|
47
|
+
Features are included in [this page](https://aveyzan.xyz/aveytense).
|
|
48
|
+
For code changes see [this Google document](https://docs.google.com/document/d/1GC_KAOXML65jNfBZA8GhVViqPnrMoFtbLv_jHvUhBlg/edit?usp=sharing).
|
|
49
|
+
|
|
50
|
+
## Getting started
|
|
51
|
+
|
|
52
|
+
To install AveyTense, run the following command:
|
|
53
|
+
|
|
54
|
+
```
|
|
55
|
+
pip install aveytense
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
Ensure you have [`typing_extensions`](https://pypi.org/project/typing_extensions) PyPi project with version 4.10.0 or above, and Python 3.8 or above.
|
|
59
|
+
|
|
60
|
+
If you think you are out of date, consider checking out [releases section](https://pypi.org/project/aveytense/#history) and running following command:
|
|
61
|
+
|
|
62
|
+
```py
|
|
63
|
+
pip install --upgrade aveytense
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
After installation process, you can import module `aveytense`, which imports AveyTense components into your project.
|
|
67
|
+
|
|
68
|
+
> **Note**: It is highly recommended to install latest final version of AveyTense. Do not rely on alpha, beta releases, and
|
|
69
|
+
> release candidates before their final counterparts are published.
|
|
70
|
+
|
|
71
|
+
> **Warning**: Support for Python 3.8 just has been initiated in version 0.3.46, so some definitions will be still prone for errors due
|
|
72
|
+
> to the backward-compatibility. For code changes to completely support Python 3.8 there will be still need to inspect every definition
|
|
73
|
+
> included in the project.
|
|
74
|
+
|
|
75
|
+
## Support
|
|
76
|
+
|
|
77
|
+
You can support my project via donation on my [Ko-Fi](https://ko-fi.com/aveyzan). This isn't necessary but will be much appreciated.
|
|
78
|
+
|
|
79
|
+
If you found anomalies in code or/and want to suggest changes, consider sending mail to [my email](mailto:aveyzan@gmail.com) or
|
|
80
|
+
creating an issue in [the GitHub repository](https://github.com/Aveyzan/AveyTense/issues). Bug fixes will be issued in future versions
|
|
81
|
+
of AveyTense. The project isn't intended to be a malware.
|
|
82
|
+
|
|
83
|
+
- Aveyzan (30th May 2025), AveyTense Project Owner
|
|
84
|
+
|
|
85
|
+
AveyTense project maintained on PyPi since 7th August 2024.
|
|
86
|
+
|
|
87
|
+
© 2024-Present Aveyzan // License: MIT
|