Many models workflows in Python: Part I

This summer I worked on my first substantial research project in Python. I’ve used Python for a number of small projects before, but this was the first time that it was important for me to have an efficient workflow for working with many models at once. I… Read more

Similar

Sharing Go Packages with Python

Introduction In the previous post we saw how a Go service can call a Python service using gRPC. Using gRPC to connect a Go and Python program together can be a great choice, but there’s a complexity price that goes with it. You need to manage one more ser... (more…)

Read more »

Working with SQLite Using Go and Python

Introduction I prefer to use relational (SQL) databases in general since they provide several features that are very useful when working with data. SQLite is a great choice since the database is a single file, which makes it easier to share data. Even tho... (more…)

Read more »

Python -m

python -m lets you run modules as scripts. If your module is just one .py file it'll be executed (which usually means code under if __name_...

Read more »