Skip to main content

Welcome to crocodile

Fill your life with one-liners, take your code to artistic level of brevity and readability while simultaneously being more productive by typing less boilerplate lines of code that are needless to say.

This package extends many native Python classes to equip you with an uneasy-to-tame power. The major classes extended are:

  • list is extended to List

    • Forget that for loops exist, because with this class, for loops are implicitly used to apply a function to all items. Inevitably while programming, one will encounter objects of the same type and you will be struggling to get a tough grab on them. List is a powerful structure that put at your disposal a grip, so tough, that the objects you have at hand start behaving like one object. Behaviour is ala-JavaScript implementation of forEach method of Arrays.
  • dict is extended to Struct.

    • Combines the power of dot notation like classes and key access like dictionaries.
  • pathlib.Path is extended to P

    • P objects are incredibly powerful for parsing paths, no more than one line of code is required to do any operation. Take a shufti at this:
    path = tb.P("dataset/type1/meta/images/file3.ext")
    >> path[0]  # allows indexing!
    P("dataset")
    >> path[-1]  # nifty!
    P("file3.ext")
    >> path[2:-1]  # even slicing!
    P("meta/images/file3.ext")
    

    This and much more, is only on top of the indespensible pathlib.Path functionalities.

  • Additionally, the package provides many other new classes, e.g. Read and Save. Together with P, they provide comprehensible support for file management. Life cannot get easier with those. Every class inherits attributes that allow saving and loading in one line.

Furthermore, those classes are inextricably connected. For example, globbing a path P object returns a List object. You can move back and forth between List and Struct and DataFrame with one method, and so on.

Install

In the commandline: pip install crocodile.

Being a thin extension on top of almost pure Python, you need to worry not about your venv, the package is not aggressive in requirements, it installs itself peacefully, never interfere with your other packages. If you do not have numpy, matplotlib and pandas, it simply throws ImportError at runtime, that's it.

Getting Started

That's as easy as taking candy from a baby; whenever you start a Python file, preface it with following in order to unleash the library:

import crocodile.toolbox as tb

A Taste of Power

Suppose you want to know how many lines of code in your repository. The procedure is to glob all .py files recursively, read string code, split each one of them by lines, count the lines, add up everything from all strings of code.

To achieve this, all you need is an eminently readable one-liner.

tb.P.cwd().search("*.py", r=True).read_text().split('\n').apply(len).to_numpy().sum()

How does this make perfect sense?

  • search returns List of P path objects
  • read_text is a P method, but it is being run against List object. Behind the scenes, responsible black magic fails to find such a method in List and realizes it is a method of items inside the list, so it runs it against them and thus read all files and containerize them in another List object and returns it.
  • A similar story applies to split which is a method of strings in Python.
  • Next, apply is a method of List. Sure enough, it lives up to its apt name and applies the passed function len to all items in the list and returns another List object that contains the results.
  • .to_numpy() converts List to numpy array, then .sum is a method of numpy, which gives the final result.

Methods naming convention like apply and to_numpy are inspired from the popular pandas library, resulting in almost non-existing learning curve.

Friendly interactive tutorial.

Please refer to Here on the main git repo.

Full docs:

Click Here

Author

Alex Al-Saffar. email

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

crocodile-2.0.1.tar.gz (56.8 kB view details)

Uploaded Source

Built Distribution

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

crocodile-2.0.1-py3-none-any.whl (56.3 kB view details)

Uploaded Python 3

File details

Details for the file crocodile-2.0.1.tar.gz.

File metadata

  • Download URL: crocodile-2.0.1.tar.gz
  • Upload date:
  • Size: 56.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0.post20201207 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.5

File hashes

Hashes for crocodile-2.0.1.tar.gz
Algorithm Hash digest
SHA256 91c79fec9bfb2a882dbcf22581051396afa41223798d468a66d1ace1deb2f0fb
MD5 3b243764b7a22f96e4b5513b51126fa1
BLAKE2b-256 be403e05fed8d3b65bb1b2e081daf0c9bd104cd4124baa21339d42c80d69afa6

See more details on using hashes here.

File details

Details for the file crocodile-2.0.1-py3-none-any.whl.

File metadata

  • Download URL: crocodile-2.0.1-py3-none-any.whl
  • Upload date:
  • Size: 56.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0.post20201207 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.5

File hashes

Hashes for crocodile-2.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 3ff9bb9a1b609979d1958d5d2e7fc9867e890f5359077474c80d9d648fa5a7cf
MD5 1bc3d600fd09f2e5307d34c1db7c99bc
BLAKE2b-256 25c5c122597f5859ed42ae95592d4c2ae449bcdf99d2e9a52121e353ff5605ae

See more details on using hashes here.

Release history Release notifications | RSS feed

15.0

2 files

14.8

2 files

14.7

2 files

14.6

2 files

14.5

2 files

14.3

2 files

14.2

2 files

14.1

2 files

14.0

2 files

13.9

2 files

13.8

2 files

13.7

2 files

13.5

2 files

13.4

2 files

13.3

2 files

13.2

2 files

13.1

2 files

13.0

2 files

12.0

2 files

11.2

2 files

11.1.0

2 files

11.0.2

2 files

11.0.0

2 files

10.4.0

2 files

10.3.5

2 files

10.3.4

2 files

10.3.3

2 files

10.3.1

2 files

10.3.0

2 files

10.2

2 files

10.1.0

2 files

10.0

2 files

9.0

2 files

8.40

2 files

8.20

2 files

8.0

2 files

7.30

2 files

7.20

2 files

7.10

2 files

7.0

2 files

6.70

2 files

6.60

2 files

6.35

2 files

6.30

2 files

6.21

2 files

6.20

2 files

6.15

2 files

6.10

2 files

6.5

2 files

6.0

2 files

5.91

2 files

5.63

2 files

5.41

2 files

5.32

2 files

5.31

2 files

5.8

2 files

5.7

2 files

5.6

2 files

5.5

2 files

5.4

2 files

5.2

2 files

5.0

2 files

4.5

2 files

4.0

2 files

3.0

2 files

2.3

2 files

2.2

2 files

2.1.2

2 files

2.1.1

2 files

2.1.0

2 files

This release

2.0.1 This release

2 files

2.0.0

2 files

1.9.0

2 files

1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page