You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Parse any date format with dateutil: Tired of manually parsing date strings? Use `dateutil.parser.parse` to auto-detect and convert nearly any date format to a datetime object, even fuzzy, partial, or timezone-tagged strings. π π ... (25 Jun 2025) - link
Literal to constrain values: Want to make your code safer and more self-documenting? ... (19 Jun 2025) - link
Get pipes in Python: Like Unix piping, you can create a pipeline of functions in Python using a custom `Pipe` class overriding the `__or__` method. This allows you to create a sequence of operations where the output of one function becomes the input of the next. Simple example below. ... (17 Jun 2025) - link
Selenium style command line automation: You can use heredoc to simulate typing input into an interactive command line application. This is useful for testing or automating command line tools that require user input. ... (17 Jun 2025) - link
copy to OS clipboard: Did you know you can use `pyperclip` to copy to your OS clipboard in #Python? ... (14 Jun 2025) - link