Useful when building a string from data that can be converted into a string, in parts.
Project description
StringDataDeque
Useful when building a string from data that can be converted into a string, in parts.
Installation
pip install StringDataDeque
Uses
This is designed to be a drop-in replacement for when you might want to append to a string in a loop.
Benefits
- Around 5 times faster than the naive implementation of appending to a string, such as
x = "" for x in collection: x+="new string"
- Provides many extra features that help simply code.
Examples
sd = StringDeque(sep="\n")
for x in collection:
sd += x
# StringDeque is a specialization of StringDataDeque where conversion func is "str"
# this allows any datatype to be used which can convert to str
sd += 1
print(sd)
You can also pipe data into the StringDeque
sd = StringDeque()
sd = [1,2,3,4,5] | sd
# or
sd |= [1,2,3,4,5]
StringDataDeque implements the "contains" method so you can search within it
sd = StringDeque(["line_one","line_two"],sep="\n")
if "line_one" in sd:
print("yes")
If you need more control over how data is added to the deque either use StringDataDeque or one of its subclasses.
# convert_func is called when data is added, and format_func is called when data is printed.
int_sdd =StringDataDeque(data="test", convert_func=int, format_func=str,sep=" ")
int_sdd |= ["1","2","3","4","5"]
assert int_sdd[0] == 1
assert str(int_sdd) == "1 2 3 4 5"
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
stringdatadeque-1.1.1.tar.gz
(63.3 kB
view details)
Built Distribution
File details
Details for the file stringdatadeque-1.1.1.tar.gz
.
File metadata
- Download URL: stringdatadeque-1.1.1.tar.gz
- Upload date:
- Size: 63.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 339bb4de4cf33fb7092a23c9888f79301113d461edb95cddf84fa5ace17caac7 |
|
MD5 | ec599c5916bbd96f6a35a19793c7af38 |
|
BLAKE2b-256 | 078e643a6476c2fae3533f155202edf274613f92fd78d56d9c61a5ce9d306858 |
File details
Details for the file StringDataDeque-1.1.1-py3-none-any.whl
.
File metadata
- Download URL: StringDataDeque-1.1.1-py3-none-any.whl
- Upload date:
- Size: 45.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f9cb6df808e9c806a4fe89d51337391ed676337b9efcd8af272ace0c7663a908 |
|
MD5 | 2d1654edeafaf6ef0b9b4c48ad95ab7a |
|
BLAKE2b-256 | 87560588c1227e90efebc6d0f13e4a27f0e26729f710cd6357057a6d346c9474 |