Skip to main content

Odd Utility Collection Hub

Project description

ouch

ouch

Odd Utiltiy Collection Hub.

ouch is a collection of utilities that are based on and aligned with foc.

$ pip install -U ouch
from ouch import *

# soft flatten
>>> flatten([1, [2, 3, (4, 5)]])
[1, 2, 3, (4, 5)]
# hard flatten
>>> [1, [(2,), [[{3}, (x for x in range(3))]]]] | flat | collect
[1, 2, 3, 0, 1, 2]

# 'shell' command
>>> shell(f"du -hs ouch/__init__.py 2>/dev/null") | fst | ob(_.split)()
['40K', 'ouch/__init__.py']

# 'ls' command
>>> ls(".", r=True, grep="^(ouch).*py$")
['ouch/__init__.py']

# poor man's dot-accessible dict, 'dmap' and pretty-printer 'pp'
>>> d = dmap(name="yunchan lim", age=19)
>>> d.cliburn.semifinal.concerto = "Mozart Piano Concerto No.22, K.482"
>>> d.cliburn.semifinal.recital = "Liszt 12 Transcendental Etudes"
>>> d.cliburn.final = "Rachmaninov Piano Concerto No.3, Op.30"
>>> d | pp
  cliburn |     final | Rachmaninov Piano Concerto No.3, Op.30
            semifinal | concerto | Mozart Piano Concerto No.22, K.482
                         recital | Liszt 12 Transcendental Etudes
     name | yunchan lim

# poor man's 'tabulate'
>>> data = [['Name', 'Age'], ['Sofia', 9], ['Maria', 7]]
>>> print(tabulate(data, style='grid'))    # style={'org', 'markdown', ...}
+-------+-----+
| Name  | Age |
+=======+=====+
| Sofia | 9   |
+-------+-----+
| Maria | 7   |
+-------+-----+

# poor man's progress bar, 'tracker'
>>> for batch in tracker(dataloader, "training"):  # single progress bar
...     model(batch)

>>> for i in tracker(range(10), "outer"):  # nested progress bars
...     ...             
...     for j in tracker(range(20), "inner"):
...         ...              

>>> g = (x for x in range(100))
>>> for item in tracker(g, "task", total=100):  # generator with known length
...     process(item)


# and see more poor man's things in 'ouch'

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

ouch-0.0.26.tar.gz (18.5 kB view details)

Uploaded Source

Built Distribution

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

ouch-0.0.26-py3-none-any.whl (16.2 kB view details)

Uploaded Python 3

File details

Details for the file ouch-0.0.26.tar.gz.

File metadata

  • Download URL: ouch-0.0.26.tar.gz
  • Upload date:
  • Size: 18.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.14

File hashes

Hashes for ouch-0.0.26.tar.gz
Algorithm Hash digest
SHA256 be69b40be63363fab3ff5f924a22c9ebdde070c1dc7e175d7c52eb01e4519df5
MD5 b5db37d5f9ddf89780b35744218b1c17
BLAKE2b-256 14a2ed3d5309d6d5552e47995588ce02c4d2c19d4d446dd9b63e86956b6a1138

See more details on using hashes here.

File details

Details for the file ouch-0.0.26-py3-none-any.whl.

File metadata

  • Download URL: ouch-0.0.26-py3-none-any.whl
  • Upload date:
  • Size: 16.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.14

File hashes

Hashes for ouch-0.0.26-py3-none-any.whl
Algorithm Hash digest
SHA256 5d1a3d9a82f5648fbeb2c05a48023d347f7694a7acc3d350eb1855fa94babb9f
MD5 0f5d934c9dd469ea9464ef9c95973691
BLAKE2b-256 bbc82598ab6df8ea94c67ff4fcf14ab99fbce01a8b22dd2131cb5427bf548407

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