I want to create s3 file system for uploading files to s3 bucket using the pyarrows write_to_dataset function
fs = s3fs.S3FileSystem()
pa.parquet.write_to_dataset(table, root_path=output_folder, filesystem=fs,
compression='snappy', partition_filename_cb=lambda x: filename)
but I got to know that s3fs library is still in the beta phase.
is there any production/stable library available for creating a s3 file system?
if not is there other way like boto3 to create s3 file system?