MinJune Kim
MinJune Kim
Add mypy check for type safety.
최근 버전의 Pandas에서 lxml로 KRX StockListing API 를 파싱할 경우 기존과 다른 동작을 합니다. 이에 bs4 flavor를 'bs4'로 고정시켜서 해결합니다. 참고 ``` import pandas as pd url = 'http://kind.krx.co.kr/corpgeneral/corpList.do?method=download&searchType=13' df_lxml...
KRX Stock Listing API에서 다음과 같은 에러가 납니다. ``` tmp ❯ python app.py Traceback (most recent call last): File "/private/tmp/app.py", line 3, in fdr.StockListing('KRX') File "/private/tmp/FinanceDataReader/data.py", line 62, in StockListing...
Say you have two files `service1.proto` and `service2.proto` with same package assigned: service1.proto: ```protobuf syntax = "proto3"; package service; /* Service1 */ service Service1 {} ``` service2.proto: ```protobuf syntax =...
# Problem Currently these two enums in the same file will be both compiled into the same name of `ContentStatus` ``` message Content {enum Status{ ... }} enum ContentStatus{ ......
It is not possible to set `timeout`s in generated `ServiceStubs`. I believe betterproto supports timeouts since #32 but it seems like the code generation does not implement timeouts. [Here](https://github.com/qria/python-betterproto/tree/feature/add-timeout) is...
With callback url there can be additional parameters such as `next` as well as the `oauth_token` and `oauth_verificer`, and there can be unquoted strings in it. For example, my callback...
Windows for some reason have a [260 character limit on file path](https://msdn.microsoft.com/en-us/library/windows/desktop/aa365247%28v=vs.85%29.aspx#maxpath) and tests might fail while making a temporary file with a long name. As a temporary solution I...
Looks like the beats and worker process script have their commands swapped. I swapped them back.
Auto import messes up the renamed imports. if I have a renamed import like so: `import { A1 as A } from 'a'` and I try to auto-import A2, it...