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

Block or report gearbox

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. yandex2goods yandex2goods Public

    Converts Yandex.Market xls file to Goods.ru xml file

    Python

  2. SC SC Public

    Python

  3. SpeedCamsDB.com SpeedCamsDB.com Public

    A Solid Road SpeedCams DataBase

    CSS

  4. SQLAlchemy quick start SQLAlchemy quick start
    1
    # http://bytefish.de/blog/first_steps_with_sqlalchemy/
    2
    
                  
    3
    from sqlalchemy.ext.declarative import declarative_base
    4
    from sqlalchemy import create_engine
    5
    from datetime import datetime, timedelta
  5. A "Best of the Best Practices" (BOBP... A "Best of the Best Practices" (BOBP) guide to developing in Python.
    1
    # The Best of the Best Practices (BOBP) Guide for Python
    2
    
                  
    3
    A "Best of the Best Practices" (BOBP) guide to developing in Python.
    4
    
                  
    5
    ## In General
  6. The best explanation of Python decor... The best explanation of Python decorators I’ve ever seen. (An archived answer from StackOverflow.)
    1
    *__NOTE:__ This is [a question I found on StackOverflow]() which I’ve archived here, because the answer is so effing phenomenal.*
    2
    
                  
    3
    ----
    4
    
                  
    5
    # Q: How can I make a chain of function decorators in Python?