pyminio icon indicating copy to clipboard operation
pyminio copied to clipboard

Pyminio is a python client wrapped like the os module to control minio server

Results 10 pyminio issues
Sort by recently updated
recently updated
newest added

- Add python 3.9 to CI - Update setup.py

Most cases for minio have very big files, so just make sure you don't load them entirely to the RAM (use file-like interfaces for read and write) _Originally posted by...

enhancement

p = Path("/") / "test" / "b" pyminio.rm(p)

enhancement

Unit tests added for new functions. - [X] All tests are green. ![image](https://github.com/user-attachments/assets/d06e4f88-807c-4f89-ba03-60a3b7eb27ec)

Changing os.path to posixpath to prevent issues when using pyminio in Windows environments. os.path uses the current system file system separator and adjust all its functions to that. MinIO is...

**Is your feature request related to a problem? Please describe.** The os.path uses the current OS path separator and rules to adapt its functions. MinIO uses posix format. **Describe the...

use self.minio_obj.list_objects instead of _get_objects_at and diy logic to reduce the amount of code written and tested