Skip to main content

Functional and fluent interface for filesystem interactions

Project description

fluentfs

The fluentfs library provides a functional and fluent interface for filesystem interactions.

This library is usable and tested, but the API is currently not stable, a lot of features are still missing etc.

In summary - try it out, but (obviously) don't use it for anything in production.

Requirements

You need Python >= 3.9 for this library.

Installation

You can install fluentfs using the pip package manager:

pip install fluentfs

Code examples

Let's say you need to get the total number of lines of all txt files in the current directory (including its subdirectories). The fluentfs library allows you to express this functionally as following:

  1. Filter the files by the "txt" extension
  2. Map the files to their line counts
  3. Reduce the line counts to their sum

This is how it looks in code:

import fluentfs as fs

total_txt_line_count = (
    fs.Dir(".")                         # get the current directory
        .files                          # get an iterator for the (regular) files in the current directory
        .filter_extension("txt")        # filter the files by the txt extension
        .text_file_iterator()           # all the files should now be text files -> obtain a text file iterator to enable text file functions
        .map_line_count()               # map every file to its line count
        .sum()                          # sum the line count
)
print(total_txt_line_count)

The library is very flexible, allowing you to write both short and long forms for most properties:

import fluentfs as fs

# Short form (for when you quickly need to prototype something)
fs.Dir(".").files.filter_ext("txt").t().map_lc().sum()

# Long form (for when you need to use the library in a codebase)
(
    fs.Dir(".")
        .files
        .filter_extension("txt")
        .text_file_iterator()
        .map_line_count()
        .sum()
)

The fluentfs library is very general. If you need to perform an operation that is currently not present, simply call the respective higher-order functions with your own callables. For example here is how we could perform our task by explicitly calling the respective higher-order functions:

import fluentfs as fs

(
    fs.Dir(".")
    .files
    .filter(lambda f: f.extension == "txt")
    .text_file_iterator()
    .map_self(lambda f: f.line_count)
    .reduce(lambda x, y: x + y, 0)
)

Documentation

You can have a look at the basics if this is the first time you are using this library.

You can have a look at the guide if you wish to go more in-depth.

You can have a look at the recipes if you have a specific task you want to accomplish and want to look at some fluent chains that accomplish this or a similar task.

You can also have a look at the API documentation.

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

fluentfs-0.4.0.tar.gz (24.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

fluentfs-0.4.0-py3-none-any.whl (34.8 kB view details)

Uploaded Python 3

File details

Details for the file fluentfs-0.4.0.tar.gz.

File metadata

  • Download URL: fluentfs-0.4.0.tar.gz
  • Upload date:
  • Size: 24.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for fluentfs-0.4.0.tar.gz
Algorithm Hash digest
SHA256 5cdabc9da926061a0ab3b29e79840a91bce444dde5bb0dd6b005f2e8dd99eaa7
MD5 1ed35543319464c8c10931ffbe9fc62f
BLAKE2b-256 fa0b3b1dbcc04bdb8b001bc5ca11651a877b5cab05077596519d73338efaa60b

See more details on using hashes here.

File details

Details for the file fluentfs-0.4.0-py3-none-any.whl.

File metadata

  • Download URL: fluentfs-0.4.0-py3-none-any.whl
  • Upload date:
  • Size: 34.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for fluentfs-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 99d4f5dc63c082444e792a603e8ea9d5b06553f86deb1777bf1f09fa49994f1a
MD5 3a40ee144d64a39271a9f7cb29e24940
BLAKE2b-256 cff43e05fa213f43ca2e2912af3fe05d48f5d905d319d2d201a38e8221e2b841

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page