Releases: dapodix/dapodik
Releases · dapodix/dapodik
Under the hood improvement
Update kode bawahan. :P
Slots for all of .rest classes
The special attribute __slots__
allows you to explicitly state which instance attributes you expect your object instances to have, with the expected results:
- faster attribute access.
- space savings in memory.
The space savings is from
- Storing value references in slots instead of
__dict__
- Denying
__dict__
and__weakref__
creation if parent classes deny them and you declare__slots__
.
Penambahan BaseRest & BasePesertaDidik
v0.8.0 v0.8.0 - Added Dapodik.rest
Mulai ulang proyek!
Peringatan jika anda menggunakan versi sebelumnya, bahwa versi ini menghapus sebagian besar API.
Remove lxml & Update setup.py
v0.6.1 v0.6.1 - Remove lxml & Update setup.py
v0.6.0 - Migrate dataclass to attrs
migrate dataclass to attrs
Initial implementation for base getter
v0.3.0 base getter