Skip to content
View su79eu7k's full-sized avatar
🎯
Focusing
🎯
Focusing
  • Seoul, Korea
Block or Report

Block or report su79eu7k

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. SAP BAPI with pyrfc SAP BAPI with pyrfc
    1
    import pandas as pd
    2
    from pyrfc import Connection, ABAPApplicationError, ABAPRuntimeError, LogonError, CommunicationError
    3
    
                  
    4
    
                  
    5
    class RFC_Handle(object):
  2. SAP table access and report generati... SAP table access and report generation with pyrfc
    1
    import pandas as pd
    2
    from pyrfc import Connection, ABAPApplicationError, ABAPRuntimeError, LogonError, CommunicationError
    3
    
                  
    4
    
                  
    5
    class RFC_Handle(object):
  3. daily-block daily-block Public

    simple markdown diary

    JavaScript

  4. Korea_National_Budget_Reconciliation Korea_National_Budget_Reconciliation Public

    Python

  5. Bayesian Network Models in PyMC3 and... Bayesian Network Models in PyMC3 and NetworkX
    1
    {
    2
     "cells": [
    3
      {
    4
       "cell_type": "code",
    5
       "execution_count": 1,
  6. grouping/chunking elements with last... grouping/chunking elements with last_index.
    1
    def handle_last_index(elements, last_index):
    2
        grouped = []
    3
        for i, _ in enumerate(last_index):
    4
            if i == 0:
    5
                grouped.append(' '.join(elements[:last_index[i] + 1]))