NISHIO Hirokazu
NISHIO Hirokazu
Thanks for making a great plugin. I'm building a sort of museum by pasting diagrams from my books into my minecraft world. https://twitter.com/nishio/status/1477622869232603139/photo/1 I think this plugin has great potential....
Running the tests causes a lot of warnings such as: `ResourceWarning: unclosed ` It looks `requests` are keeping connections. https://github.com/requests/requests/issues/3912
Here is my workaround: ``` import getpass import six def get_settings(): x = pykintone.load("settings.yaml") x.account.login_id = six.moves.input("User id: ") x.account.login_password = getpass.getpass() return x app = get_settings().app() ``` It may...