Skip to content
View tobywf's full-sized avatar

Organizations

@TerranMechworks
Block or Report

Block or report tobywf

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

  1. pyamiibo pyamiibo Public

    PyAmiibo is a library for manipulating Amiibo dumps.

    Python 38 7

  2. pasteboard pasteboard Public

    UNSUPPORTED Pasteboard - Python interface for NSPasteboard (macOS clipboard)

    Objective-C 33 7

  3. xml_dataclasses xml_dataclasses Public

    UNSUPPORTED (De)serialize XML documents into Python dataclasses

    Python 19 4

  4. A quick script to remove old AWS Lam... A quick script to remove old AWS Lambda function versions
    1
    from __future__ import absolute_import, print_function, unicode_literals
    2
    import boto3
    3
    
                  
    4
    
                  
    5
    def clean_old_lambda_versions():
  5. GZIP compressing files for S3 upload... GZIP compressing files for S3 uploads with boto3
    1
    from io import BytesIO
    2
    import gzip
    3
    import shutil
    4
    
                  
    5