Library written in Python, includes several extensions for inbuilt Python solutions
Project description
AveyTense
AveyTense is a library written in Python, which provides especially extensions to inbuilt Python solutions.
Features
Some feature examples:
aveytense.Tense.append()- A pure, extended version oflist.append()that adds an arbitrary amount of items, starting with items in the given iterable object.
from aveytense import Tense
Tense.append([651, 78, 888, 906], 75, 12, 6, 678)
# [651, 78, 888, 906, 75, 12, 6, 678]
Tense.append({762: 783, 9003: 96}, (960, 120), (762, 786))
# {762: 786, 960: 120, 762: 786}
aveytense.Tense.extend()- A pure, extended version oflist.extend()that adds an arbitrary amount of items included in every iterable objects, starting with items in the first given iterable object.
from aveytense import Tense
Tense.extend([651, 78, 888, 906], (75, 12), {6, 678})
# [651, 78, 888, 906, 75, 12, 6, 678]
Tense.extend({762: 783, 9003: 96}, {960: 120}, {762: 786})
# {762: 786, 960: 120, 762: 786}
aveytense.Tense.reverse()- A pure, extended version oflist.reverse()that reverses given iterable object.
from aveytense import Tense
Tense.reverse("Hi, Python! Hi, AveyTense!")
# "!esneTyevA ,iH !nohtyP ,iH"
Tense.reverse([762, 876, 906, 903, 123])
# [123, 903, 906, 876, 762]
aveytense.Tense.shuffle()- A pure, extended version ofrandom.shuffle()that shuffles given iterable object.
from aveytense import Tense
Tense.shuffle("Hi, Python! Hi, AveyTense!")
# " ,sPh y!ti,neeTo!HvHeyA ni"
Tense.shuffle([762, 876, 906, 903, 123])
# [762, 906, 903, 123, 876]
More features are included in this page. For code changes see this Google document.
Getting started
Before installing AveyTense, ensure you meet following Python version condition included in the table below:
| AveyTense Version | Python Version |
|---|---|
| ≥ 0.3.46 | ≥ 3.8 |
| < 0.3.46 | ≥ 3.9 |
Then run the following command:
pip install aveytense
The command will also install typing_extensions. Minimal version of typing_extensions project for
AveyTense to run correctly is 4.10.0 (version of adding TypeIs to the project).
After installation process, you can import module aveytense, which imports AveyTense components into your project.
If you think you are out of date, consider checking out releases section and running following command:
pip install --upgrade aveytense
If you have AveyTense 0.3.54 or higher, you can also use the following command to upgrade AveyTense:
aveytense-upgrade
To view version of AveyTense, you can use importlib.metadata.version(), aveytense.__version__,
aveytense.Tense.version, aveytense.Tense.versionInfo
or since AveyTense 0.3.54 the command below:
aveytense-version
This project can be used anywhere, including for educational and enternainment/game purposes.
Support
If you found anomalies in code, need more information about the project or/and want to suggest changes, consider sending mail to my email or creating an issue in the GitHub repository. Bug fixes will be issued in future versions of AveyTense. The project isn't intended to be a malware.
AveyTense project maintained on PyPi since 7th August 2024.
© 2024-Present Aveyzan // License: MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file aveytense-0.3.70.tar.gz.
File metadata
- Download URL: aveytense-0.3.70.tar.gz
- Upload date:
- Size: 134.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6489e804a91c4ee18138d2800488fdd0d054082cb4aa8b560d5b30d50d227b96
|
|
| MD5 |
898edb8bc53e11b90dcf726469bebe79
|
|
| BLAKE2b-256 |
ec0c0e020aa9add1b1b6bb274397d4199b1a9f615add9b2d8eab98fae30b79fa
|
File details
Details for the file aveytense-0.3.70-py3-none-any.whl.
File metadata
- Download URL: aveytense-0.3.70-py3-none-any.whl
- Upload date:
- Size: 139.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
57bb8d6ca58b25562fa5152b06548e7680f6a5efff8c27329d3615f6de7dca0c
|
|
| MD5 |
837762be8b565d2a20442a4f6fe23c7a
|
|
| BLAKE2b-256 |
b1ac68ccf58e5ddcaf9a6588a45af45208e2530d1157c1405d7c51b030af7407
|