Skip to content

Instantly share code, notes, and snippets.

View ppsirg's full-sized avatar

pedro rivera ppsirg

View GitHub Profile
@cgoldberg
cgoldberg / helloworld_pyqt5.py
Last active January 27, 2019 20:43
Hello World, in Python3 and Qt5
#!/usr/bin/env python3
"""
helloworld.py
Python3 and Qt5
"""
from PyQt5 import QtWidgets
@advance512
advance512 / s3_async_client.py
Last active August 18, 2019 19:59
S3 client that uses Tornado's asynchronous mechanisms. Allows the uploading and downloading of files asynchronously, including metadata support as well. Based on https://gist.github.com/taylanpince/5876491
#!/usr/bin/python
# -*- coding: utf-8 -*-
# Copyright 2011-2013 Everything.me. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without modification, are
# permitted provided that the following conditions are met:
#
# 1. Redistributions of source code must retain the above copyright notice, this list of
# conditions and the following disclaimer.