[PYTHON] A summary of what I have touched like a blog

python flask A library for python web applications. Sending and receiving via protocol communication is fairly easy. You can calculate the received numerical value on the python side or summarize it in a table. It seems that it is not suitable for building a large-scale system such as Instagram. However, there is no problem in creating a simple web application. Accurate and inaccurate information is widespread and needs to be implemented and verified. Knowledge of port opening is required.

http://python.zombie-hunting-club.com/entry/2017/11/03/223503 I learned the basics of how to use flask from here.

https://qiita.com/keimoriyama/items/7c935c91e95d857714fb https://qiita.com/5zm/items/ac8c9d1d74d012e682b4 [Kleinant → Server] For reference on how to get a file from a client.

https://qiita.com/5zm/items/760000cf63b176be544c [Server → Kleinant] For reference on how to throw a file to a client using protocol communication.

matplotlib,sympy The one when I suddenly think about it and want to draw a graph. matplotlib is a drawing library and sympy is a simulation library. I don't know what it is, but I use both.

https://qiita.com/HigashinoSola/items/2ab8894b543e0c55cfa7 This page is well organized and good for beginners.

https://qiita.com/orange_u/items/8a1e285a45093857aef7 I used it as a reference when drawing in 3D.

https://matplotlib.org/3.1.0/gallery/mplot3d/text3d.html How to write text in 3D drawing. As you can see in the page above,

import matplotlib.pyplot as plt
fig=plt.figure()
ax=Axes3D(fig)
ax.text(x,y,z,Text,dir)
# x, y, z are coordinates, Text is a str type character, dir is (x, y, z) and the angle to the camera

Recommended Posts

A summary of what I have touched like a blog
A miscellaneous summary of what I researched about Ansible
H29.2.27 ~ 3.5 Summary of what I did
What is a recommend engine? Summary of the types
2017.3.6 ~ 3.12 Summary of what we did
A brief summary of Linux
I touched PyAutoIt for a moment
A brief summary of Python collections
I have a question about whitespace
A brief summary of qubits (beginners)
A Tour of Go Learning Summary
A reminder of what I got stuck when starting Atcoder with python
I touched "Orator" so I made a note
Summary of numpy functions I didn't know
I made a conversation partner like Siri
What I did with a Python array
A brief summary of Pinax overview #djangoja
I took a benchmark of h5py compression
I tried 3D detection of a car
Summary of linux command techniques that I knew when I was a fledgling engineer
I touched graph-rcnn which generates a scene graph
We have released a trained model of fastText
I touched some of the new features of Python 3.8 ①
I / O related summary of python and fortran
I took a look at the contents of sklearn (scikit-learn) (1) ~ What about the implementation of CountVectorizer? ~