[SAP CP] Web API created with python in CF environment
# Introduction This article was written as an article for December 15th of SAP Advent Calendar 2020. This time, I would like to create a WebAPI with Phthon and run it on a CF environment. I was ab
[Python3] Call by dynamically specifying the keyword argument of the function
# 0. Conclusion #### **`f(arg1,arg2)Should be as follows`** ```python f(**{"arg1":hoge, "arg2":fuga}) ``` # 1. What you want to do Suppose you have the function `f` and the formal parameters of`
Basics of Python learning ~ What is a string literal? ~
This is a memorandum of learning Python. We hope that it will be helpful for beginners in programming and those who are also interested in other languages. * * * ### What is a string literal? For
I tried LeetCode every day 110. Balanced Binary Tree (Python, Go)
#### What is Leetcode [leetcode.com](https://leetcode.com/) This is the practice of coding interviews for software developers. A total of more than 1,500 coding questions have been posted, and it s
I tried to create a Python script to get the value of a cell in Microsoft Excel
# 1. Install MSYS2 Download the latest version of MSYS2 from https://www.msys2.org/ and install it on Windows 10. 
# Introduction Do you want to laser branch? I want to let you. I will teach you how to branch a laser that anyone can do. Target audience You can buy a laser, but you find it difficult to proces
Make HTTPS for free with Amazon Linux2 + Freenom + Let's Encrypt
I made it HTTPS for free with Amazon Linux2 + Freenom + Let's Encrypt, so make a note in case you do not have any trouble when you do the same work later. Basically, I will mainly write the work of
[Python] I tried to analyze the characteristics of thumbnails that are easy to play on YouTube by deep learning
Hello. This is Kushima, the first year since joining NTT DoCoMo. In this article on the 16th day of the Advent calendar, we will explain in detail how to analyze the characteristics of thumbnails th
[Python] The first step to making a game with Pyxel
# Introduction Pyxel is a retro game engine for Python. I used to play a lot because I could easily make games, but I haven't touched it so much recently, so I completely lost my memory. I will pla
Try using a Linux server as a backup destination for Time Machine (Ver. 2020)
This article is a 12/15 minute article of [Ryukyu Advent Calendar 2020](https://adventar.org/calendars/5231). (And this is the 2020 Ver. Of the 12/21 minute article of [Ryukyu Advent Calender 2019](
The result of making the first thing that works with Python (image recognition)
## 1.First of all Hello, this is Magicchic of Aidemy trainees. What kind of image do you have of programming? It's been about two months since I first came into contact with programming, but I stil
Code review with machine learning Amazon Code Guru now supports Python so I tried it
# Introduction This article is the 22nd day article of [Hands Lab Advent Calendar 2020](https://qiita.com/advent-calendar/2020/handslab). Hello, it's @ sr-mtmt. It's the end of the year. Among the
Can the F1C100s dream of embedded development for mediocre Linux users?
Hello, this is uzulla of Web-based engineers usually. I am studying at a study group called [Low Level Study Group](https://lowleveltokyo.connpass.com/). This is an Advent calendar article of "[Jap
Python3 | Getting Started with numpy
** Development environment: Jupyter Notebook ** First, read. ```python import numpy as np ``` It means "load a library called numpy as np". By declaring this, the method can be referred to as np.
Load the network modeled with Rhinoceros in Python ①
Network analysis is one of the most popular mathematics of architecture and city planning. It is a common practice to analyze and simulate architecture and cities in a mathematically easy-to-use form
About Linux ①
Linux is a type of os and is the basic software for running computers. Developed by Linus Torvalds in 1991 ▼ Applications Server (web industry) Built-in Desktop etc. ▼ Features Open source
Typical Linux commands (7)
**①cd [path](current directory)** Command to go to [path]. **②pwd(print working directory)** A command to display the current directory. **③mkdir [new folder](make directory)** Command to create
A story made by a person who has no knowledge of Python or Json
# Preface https://qiita.com/PigeonsHouse/items/a6a6833e81c8dee384a4 Thanks to Bot Tsuyotsuyo Man who wrote this article, I was motivated. Also, I wanted Princess Maho to speak Also, since it's a
Python: I tried to make a flat / flat_map just right with a generator
I couldn't find anything just right, so I made it myself. Is it somewhere? What is "just right": + ``` [[0], [1], [2]]-> [0, 1, 2]` `: Basic function of flat. Obvious + ``` [0, [1], [[2]]]-> [0,
I made a competitive programming glossary with Python
# table of contents 1. Development environment 1. Glossary code 1. Explanation 1. References ## 1. Development environment MacOS Big Sur 11.0.1 I'm running it in Spyder. In a terminal or comman
Easy-to-use GNU/Linux desktop
I use a GNU/Linux desktop for both work and private life. Very free and easy to use. I've been using it for many years and have accumulated some knowledge, so I would like to introduce it. I think th
[Python/Django] Summary of frequently used commands (3) <Operation of PostgreSQL>
#### background Here are some frequently used commands when developing with Python/Django. I would like to take this opportunity to thank you for solving the problem by borrowing the wisdom of our
[Examination Report] Python 3 Engineer Certified Data Analysis Exam
# Introduction This article is a brief record of the ** Python 3 Engineer Certification Data Analysis Exam ** that you passed the other day. I think that the general information about this exam ha
Reading, summarizing, visualizing, and exporting time series data to an Excel file with Python
* This article is for super beginners. I had the opportunity to aggregate time series data at work, so I did it in Python, so I will summarize it. Aggregate time-series data while performing ope
Python learning basics ~ What is type conversion? ~
This is a memorandum of learning Python. We hope that it will be helpful for beginners in programming and those who are also interested in other languages. * * * ### What is type conversion? Before
Install tensorflow in Docker (LINUX) (memo)
Environment Windows10 Pro 64bit Docker for Windows DockerToolbox Virtual environment Ubuntu Anaconda3 Python3 # tensorflow installation I installed tensorflow on Ubuntu. However, the following err
Dry-run sql query using psycopg2 on Redshift in Python
# Introduction I implemented the process to execute SQL query in Redshift using [psycopg2](https://github.com/psycopg/psycopg2) in Python, but I implemented it in a wrapper class to execute it with d
It's easier to iterate over a python file from a command prompt (cmd) .bat
# Introduction Hello. Wanko soba is a liberal arts student who attends a local public university. In this article, I'll show you (as a reminder) how to run python from __cmd without having to rewri
[ES Lab] I tried to develop a WEB application with Python and Flask ②
## Introduction This article is a reminder of a previously developed app. When I was in the third year of university, I became interested in an engineer job in the IT industry while doing job hunti
I tried sending an email with python.
# I tried sending an email with python. This article is the 14th day article of SLP KBIT Advent Calendar 2020. This time I tried to send an email with Python. A sample source code can be found on th