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

Block or report iwanbolzern

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

    ConfMe is a simple to use, production ready application configuration management library 😍

    Python 27

  2. Have you ever been in a situation wh... Have you ever been in a situation where you would have liked others to give you a data frame with the right columns? If no, you're a lucky one. 🤩 If yes, check out this gist 🧐
    1
    # First step in the direction of a really typed DataFrame
    2
    I come across many great libraries every day, but unfortunately most of them are not well suited for enterprise or medical projects,
    3
    because they lack the possibility for proper interface definitions or the ussage of refactoring capabilities of your IDE. 
    4
    
                  
    5
    This is especially true if it comes to libraries in the data science area. Just remember your last ```df['my_feature'] = df['my_feature'] * 2``` 😉 And unfortunately, exactly these libraries are also the ones that are written for super fast computations. 
  3. ConfMe-Workshop ConfMe-Workshop Public

    Very short introduction into ConfMe and it's main capabilities

    Python

  4. Simple logging configuration for python Simple logging configuration for python
    1
    # setup logging
    2
    stdout_handler = logging.StreamHandler(stream=sys.stdout)
    3
    rotate_handler = RotatingFileHandler('../log/face-aggregator.log', maxBytes=2000, backupCount=10)
    4
    logging.basicConfig(level=logging.INFO,
    5
                        format='[%(asctime)s] [%(levelname)s] %(message)s',
  5. mongodb-write-cache mongodb-write-cache Public

    Write Cache for pymongo

    Python

  6. This is a simple solution to work wi... This is a simple solution to work with periods in time. For a detailed description of how to use this class check the attached Readme
    1
    from datetime import datetime, timedelta
    2
    
                  
    3
    
                  
    4
    class PeriodException(Exception):
    5