Skip to content
View sigilioso's full-sized avatar
Block or Report

Block or report sigilioso

Report abuse

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

Report abuse

Pinned Loading

  1. long_polling_example long_polling_example Public

    A simple long-polling example based on Flask-restful and jQuery

    Python 42 12

  2. bernardopires/django-tenant-schemas bernardopires/django-tenant-schemas Public

    Tenant support for Django using PostgreSQL schemas.

    Python 1.4k 425

  3. open-telemetry/opentelemetry-collector-contrib open-telemetry/opentelemetry-collector-contrib Public

    Contrib repository for the OpenTelemetry Collector

    Go 2.8k 2.2k

  4. .dotfiles .dotfiles Public

    Shell 1

  5. Simple XOR encrypt/decrypt Simple XOR encrypt/decrypt
    1
    #!/usr/bin/env python3
    2
    # -*- coding: utf-8 -*-
    3
    import argparse
    4
    from binascii import unhexlify, hexlify
    5
    from itertools import cycle
  6. Python PIL Example: get a thumbnail ... Python PIL Example: get a thumbnail by resizing and cropping an image.
    1
    # -*- coding: utf-8 -*-
    2
    
                  
    3
    import Image
    4
    
                  
    5
    def resize_and_crop(img_path, modified_path, size, crop_type='top'):