Skip to content
View tobywf's full-sized avatar

Organizations

@TerranMechworks

Block or report tobywf

Report abuse

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

Report abuse

Pinned Loading

  1. pyamiibo pyamiibo Public

    PyAmiibo is a library for manipulating Amiibo dumps.

    Python 39 7

  2. pasteboard pasteboard Public

    UNSUPPORTED Pasteboard - Python interface for NSPasteboard (macOS clipboard)

    Objective-C 36 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