internal
cleaned up several dependencies and features
ryo3-zstd
actually changed to use py buffer protocol this time… I dont know how it
got missed before…
re-factored a decent bit and made submodule with future plans to expand encoding/decoding dictionary
support
submodule is ry.zstd
and/or ry.ryo3.zstd
ryo3-reqwest
client configuration for pickling
allow buffer-protocol for body
fetching methods (should add string maybe?)
ryo3-walkdir
ryo3-glob
new wrapper around glob
crate
ryo3-jiff
Switched to use conversions from jiff
feature of pyo3-v24
as opposed to
hand-rolled conversions we had before
pyo3 version 0.24.0
ryo3-which
functions return pathlib.Path
now due to changes in pyo3-v24;
this may change in the near future…
dependencies updated
pickling support and tests for several types
bytes/buffer-protocol support for several sub-packages/packages:
ryo3-brotli
ryo3-bzip2
ryo3-flate2
ryo3-fnv
ryo3-xxhash
ryo3-zstd
internal
types split up and cleaned up
ryo3-size
ryo3-jiff
series
iterators have take
function that takes a usize
returns a list
of size usize
updated series types to be JiffSeries
class
ryo3-std
fs
:
read_stream
function that returns an iterator of ry.Bytes
objects from
a PathLike
object
Several more fs functions added
ryo3-tokio
Several more tokio fs functions added
internal
reorganized type annotations to be not a HUGE file…
ryo3-jiter
Allow PyBytes
wrapper/buffer protocol to be given
renamed jiter_cache_clear
to json_cache_clear
and jiter_cache_usage
to
json_cache_usage
Removed parse_json_str
just use parse_json
with str
input
ryo3-fspath
Allow read/write to take ry.Bytes
or Bytes
objects
ryo3-core
got rid of ryo3-types
and moved into ryo3-core
ryo3-tokio
read_async
and write_async
async functions
ryo3-which
which_re
functions accepts ry.Regex
or str
now
ryo3-std
read
and write
functions which take/return ry.Bytes
objects
internal
Changed many many many of the structs/classes to be pyo3 frozen
behaviour
should not be different
jiff
Upgraded jiff to version 2
internal
Switch all lints from #[allow(...)]
/#![allow(...)]
to
#[expect(...)]
/#![expect(...)]
Removed a bunch o commented out code
ryo3-std
added several std::fs
structs
ryo3-fspath
conversion to pathlib.Path
by way of FsPath.to_pathlib()
internal
Made sure each ryo3-*
crate has a README.md
ryo3-bytes
& ryo3-fspath
added __hash__
dunders to both Bytes
and FsPath
structs
jiff
Per Mr. Sushi’s thoughts changed all until
/since
methods to use kwargs
instead of the rust-like tuples that impl From
/Into
as it does not
translate well to python
Gets rid of the following inane types:
IntoDateDifference = (
DateDifference
| Date
| DateTime
| ZonedDateTime
| tuple[JIFF_UNIT_STRING, Date]
| tuple[JIFF_UNIT_STRING, DateTime]
| tuple[JIFF_UNIT_STRING, ZonedDateTime]
)
IntoTimeDifference = (
TimeDifference
| Time
| DateTime
| ZonedDateTime
| tuple[JIFF_UNIT_STRING, Time]
| tuple[JIFF_UNIT_STRING, DateTime]
| tuple[JIFF_UNIT_STRING, ZonedDateTime]
)
IntoDateTimeDifference = (
DateTimeDifference
| Date
| Time
| DateTime
| ZonedDateTime
| tuple[JIFF_UNIT_STRING, Date]
| tuple[JIFF_UNIT_STRING, Time]
| tuple[JIFF_UNIT_STRING, DateTime]
| tuple[JIFF_UNIT_STRING, ZonedDateTime]
)
IntoTimestampDifference = (
TimestampDifference
| Timestamp
| ZonedDateTime
| tuple[JIFF_UNIT_STRING, Timestamp]
| tuple[JIFF_UNIT_STRING, ZonedDateTime]
)
ry
reqwest
headers-property response returns Headers
object instead of python dict
same-file
wrapper module added with is_same_file
py-fn (yet another piece of burnt
sushi)
jiff
jiff-version 0.1.25
~ add in_tz
methods and point old intz
at new
in_tz
methods and raise DeprecationWarning
for old intz
methods
Continued adding implementations that previously raised
NotImplementedError
Date.nth_weekday_of_month
Date.nth_weekday
DateTime.nth_weekday_of_month
DateTime.nth_weekday
TimeSpan.compare
TimeSpan.total
ZonedDateTime.nth_weekday_of_month
ZonedDateTime.nth_weekday
reqwest
AsyncClient
renamed to HttpClient
jiff
human timespan strings for TimeSpan
and SignedDuration
objects:
ry.TimeSpan.parse("P2M10DT2H30M").string(human=True) == "2mo 10d 2h 30m"
ry.SignedDuration.parse("PT2H30M").string(human=True) == "2h 30m"
internal
workspace-ified all the deps
jiff
Updated to 0.1.21
which has span and signed duration strings with capital
letters
http
basic headers struct/obj – WIP
reqwest
reqwest client (currently root-export)
default client + root fetch
function likely needs work…
response byte_stream
!
python -m ry.dev
repl for ipython/python repl ~ handy nifty secret tool
makes it into repo
internal
in process of renaming all python-rust #[new]
functions to be named
fn py_new(...)
unindent
Added unindent
module for unindenting strings will move to ryo3-unindent
FsPath
creeping ever closer to being a full-fledged pathlib.Path replacement
Added bindings to all rust std::path::Path(buf)
methods for FsPath
sub-packaging
xxhash
is own sub package now ry.xxhash
JSON
is own subpackage right now – named ry.JSON
to avoid conflict with
json
module but maybe will change…
food-for-thought-ing how ryo3
and ry
should be organized w/ respsect to
sub-packages and where that organization should be
type-annotations
required to break up the type annotations due to migration to sub-packages
breaking up the type annotations file into smaller files under
<REPO>/python/ry/ryo3/*.pyi
regex
Super simple regex wrapper (must to do here, but was added for
ryo3-which::which_re
)
jiff
until
/since
Basic until
/since
implementation but I do not like them and they
confusingly named *Difference
structs/py-objects, so I may change how
they work…
jiff
seems to be about as performant as whenever
~ yay! also the
whenever dude appears to be watching this repo (as of 2024-12-16)
walkdir
collect
added to WalkdirGen
to collect the results into a list
deps
thiserror
version 2.0.7
-> 2.0.8
walkdir
add glob
kwarg that takes a ry.Glob
or ry.GlobSet
or ry.Globster
obj
to filter the walk on
globset
Internal refactoring
added globster()
method to ry.Glob
and ry.GlobSet
to return a
ry.Globster
obj
added globset()
method to ry.Glob
to return a ry.GlobSet
obj from a
ry.Glob
obj
url
python Url
changed name URL
; aligns with jawascript and other python
libs
bzip2
jiff
conversions for jiff-round-mode/unit/weekday
not-implemented placeholders and new impls
span builder functions use form s._hours(1)
for panic-inducing building,
and s.try_hours(1)
for non-panic-inducing building
type-annotations
fixes and updates and a hacky script I wrote to check for discrepancies
regex
Templated out regex package but nothing added
ry
jiter
Updated jiter version thanks depbot!
jiff
Renamed ry.Span
to ry.TimeSpan
Renamed ry.Zoned
to ry.ZonedDateTime
Updated type stubs to reflect renames
docs
init-ed the docs
style guide under DEVELOPMENT.md
file
jiff
ry.TimeZone
testing and to/from datetime.tzinfo
conversions
Using nu-types for jiff
intermediate types bc of the classic orphans
problem (aka batman) w/ traits
hypothesis tests
jiter
Moved walkdir to ryo3-walkdir
added ryo3-types
for custom and shared types
heck
wrapper(s)
jiff
Added operators +
/+=
/-
/-=
to date/time/datetime/etc
TODO: figure out how to take refs in the union enum for the operators
fspath
further beefing out as well as testing
from __future__ import annotations
added to all modules
cicd updated to include more targets
Primitive/crude wrappers around Mr. Sushi’s jiff
library
Updated to use pyo3 (had to use jiter git repo dep)
ry.FsPath
beefed out
Added iterdir gen wrapper
(todo undo when jiter + pyo3 23 is public)
VERSION SKIPPED DUE TO 13
BEING SPOOKY AND ME BEING MODERATELY-STITCHOUS
(AKA fully ‘superstitchous’)
sqlformat wrapper(s) (this is the first ryo3-*
sub-crate)
dependencies updated
prepare for python 3.13
Added globset
wrapper(s)
Added __init__.py
generator
Added zstd (zstd_encode
/zstd
and zstd_decode
)
Added gzip (gzip_encode
/gzip
and gzip_decode
/gunzip
)
Added bzip2 (bzip2_encode
/bzip2
and bzip2_decode
)
Added walkdir
Reorg libs
Added brotli (brotli_encode
and brotli_decode
)
xxhash
const functions
hasher streaming objects