Skip to content
View shaenr's full-sized avatar

Block or report shaenr

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. bandcamp-flac-get bandcamp-flac-get Public

    Generate flac download links for bandcamp albums that are free or are name your own price with no minimum price; batch downloads all of them. WIP.

    Python 6

  2. cli-tool-template cli-tool-template Public

    a template for argument parsing in command line projects.

    Python

  3. proxy-requests-template proxy-requests-template Public template

    a web requests template with support for webshare.io proxies and default headers

    Python

  4. shaen-logger shaen-logger Public

    slog or shaen-logger is a simple mixin package for quickly adding logging functionality to a project.

    Python

  5. Write out dict paths to deeper data ... Write out dict paths to deeper data from elaborate json using dot notation...
    1
    def get_value(d, key_str):
    2
        for key in key_str.split('.'):
    3
            d = d[key]
    4
        return d
    5