, myself included, begin their coding journey utilizing a Jupyter Notebook. These recordsdata have the extension .ipynb, which stands for Interactive Python Pocket book. Because the extension title suggests, it has an intuitive and interactive person interface. The pocket book is damaged down into ‘cells’ or small blocks of separated code or markdown (textual content) language. Outputs are displayed beneath every cell as soon as the code inside that cell has been executed. This promotes a versatile and interactive setting for coders to construct their coding expertise and begin engaged on information science initiatives.
A typical instance of a Jupyter Pocket book is under:

This all sounds nice. And don’t get me unsuitable, to be used instances similar to conducting solo analysis or exploratory information evaluation (EDA), Jupyter Notebooks are nice. The problems come up while you ask the next questions:
- How do you flip a Jupyter Pocket book into code that may be leveraged by a enterprise?
- Are you able to collaborate with different builders on the identical undertaking utilizing a model management system?
- How will you deploy code to a manufacturing setting?
Fairly quickly, the restrictions of completely utilizing Jupyter Notebooks inside a business context will begin to trigger issues. It’s merely not designed for these functions. The overall answer is to organise code in a modular trend.
By the tip of this text, you must have a transparent understanding of methods to construction a small information science undertaking as a Python program and recognize some great benefits of transitioning to a programming method. You possibly can take a look at an instance template to complement this text in my github here.
Disclaimer
The contents of this text are primarily based on my expertise of migrating away from solely utilizing Jupyter Notebooks to put in writing code. Do notebooks nonetheless have a function? Sure. Are there alternative routes to organise and execute code past the strategies I talk about on this article? Sure.
I wished to share this info to assist anybody eager to make the transfer away from notebooks and in the direction of writing scripts and packages. If I’ve missed any options of Jupyter Notebooks that mitigate the restrictions I’ve talked about, please drop a remark!
Let’s get again to it.
Programming: what’s the large deal?
For the aim of this text, I’ll be specializing in the Python programming language as that is the language I exploit for information science initiatives. Structuring code as a Python program unlocks a spread of functionalities which might be tough to realize when working completely inside a Jupyter Pocket book. These advantages embrace collaboration, versatility and portability – you’re merely in a position to do extra along with your code. I’ll clarify these advantages additional down – stick with me a bit of longer!
Python packages are usually organised into modules and packages. A module is a python script (recordsdata with a .py extension) that accommodates python code which may be imported into different recordsdata. A bundle is a listing that accommodates python modules. I’ll talk about the aim of the file __init__.py
later within the article.

Anytime you import a python library into your code, similar to built-in libraries like os
or third-party libraries like pandas
, you’re interacting with a python program that’s been organised right into a bundle and modules.
For instance, let’s say you wish to use the randint perform from numpy. This perform permits you to generate a random integer primarily based on specified parameters. You may write:
from numpy.random import randint
Let’s annotate that import assertion to point out what you’re really importing.

On this occasion, numpy
is a bundle; random
is a module and randint
is a perform.
So, it seems you most likely work together with python packages frequently. This poses the query, what does the journey appear like in the direction of changing into a python programmer?
The good transition: the place do you even begin?
The trick to constructing a purposeful python program is all within the file construction and organisation. It sounds boring nevertheless it performs a brilliant vital half in setting your self up for achievement!
Let me use an analogy to clarify: each home has a drawer that has nearly all the things in it; instruments, elastic bands, drugs, your hopes and desires, the lot. There’s no rhyme or cause, it’s a dumping floor of nearly all the things. Consider this as a Jupyter Pocket book. This one file usually accommodates all levels of a undertaking, from importing information, exploring what the info seems to be like, visualising tendencies, extracting options, coaching a mannequin and so forth. For a undertaking that’s destined to be deployed on a manufacturing system or co-developed with colleagues, it’s going to trigger chaos. What’s wanted is a few organisation, to place all of the instruments in a single compartment, the drugs in one other and so forth.
An effective way to do this with code is to make use of a undertaking template. One which I exploit ceaselessly is the Cookie Cutter Data Science template. You possibly can create a complete listing on your undertaking with all of the related recordsdata wanted to do absolutely anything in a couple of easy operations in a terminal window – see the hyperlink above for info on methods to set up and run Cookie Cutter.
Under are a number of the key options of the undertaking template:
- bundle or src listing — listing for python scripts/modules, geared up with examples to get you began
- readme.md — file to explain utilization, setup and methods to run the bundle
- docs listing — containing recordsdata that allow seamless autodocumentation
- Makefile— for writing OS ambivalent bespoke run instructions
- pyproject.toml/necessities.txt — for dependency administration

High tip. Be sure that to maintain Cookie Cutter updated. With each launch, new options are added in response to the ever-evolving information science universe. I’ve learnt fairly a couple of issues from exploring a brand new file or characteristic within the template!
Alternatively, you need to use different templates to construct your undertaking similar to that supplied by Poetry. Poetry is a bundle supervisor which you need to use to generate a undertaking template that’s extra light-weight than Cookie Cutter.
One of the best ways to work together along with your undertaking is thru an IDE (Built-in Improvement Surroundings). This software program, similar to Visual Studio Code (VS Code) or PyCharm, embody quite a lot of options and processes that allow you to code, take a look at, debug and bundle your work effectively. My private desire is VS Code!
From cells to scripts: let’s get coding
Now that we now have a growth setting and a properly structured undertaking template, how precisely do you write code in a python script when you’ve solely ever coded in a Jupyter Pocket book? To reply that query, let’s first take into account a couple of industry-standard coding Best Practices.
- Modular — comply with the software program engineering philosophy of ‘Single Responsibility Principle’. All code must be encapsulated in features, with every perform performing a single process. The Zen of Python states: ‘Easy is healthier than complicated’.
- Readable — if code is readable, then there’s likelihood will probably be maintainable. Make sure the code is filled with docstrings and feedback!
- Trendy — format code in a constant and clear approach. The PEP 8 guidelines are designed for this function to advise how code must be introduced. You possibly can set up autoformatters similar to Black in an IDE in order that code is mechanically formatted in compliance with PEP 8 every time the python script is saved. For instance, the proper stage of indentation and spacing can be utilized so that you don’t even have to consider it!
- Versatile — if code is encapsulated into features or courses, these may be reused all through a undertaking.
For a deeper dive into coding finest follow, this article is a implausible overview of rules to stick to as a Knowledge Scientist, make sure to test it out!
With these finest practices in thoughts, let’s return to the query: how do you write code in a python script?
Module construction
First, separate the totally different levels of your pocket book or undertaking into totally different python recordsdata. And ensure to call them in response to the duty. For instance, you may need the next scripts in a typical machine studying bundle: information.py
, preprocess.py
, options.py
, prepare.py
, predict.py
, consider.py
and so forth. Relying in your undertaking construction, these would sit throughout the bundle
or src
listing.
Inside every script, code must be organised or ‘encapsulated’ right into a courses and/or features. A function is a reusable block of code that performs a single, well-defined process. A class is a blueprint for creating an object, with its personal set of attributes (variables) and strategies (features). Encapsulating code on this method permits reusability and avoids duplication, thus maintaining code concise.
A script may solely want one perform if the duty is easy. For instance, an information loading module (e.g. information.py
) might solely include a single perform ‘load_data’ which hundreds information from a csv file right into a pandas
DataFrame. Different scripts, similar to an information processing module (e.g. preprocess.py
) will inherently contain extra duties and therefore requires extra features or a category to encapsulate these duties.

High tip. Transitioning from Jupyter Notebooks to scripts might take a while and everybody’s private journey will look totally different. Some Knowledge Scientists I do know write code as python scripts right away and don’t contact a pocket book. Personally, I exploit a pocket book for EDA, I then encapsulate the code into features or courses earlier than porting to a script. Do no matter feels best for you.
There are a couple of instruments that may assist with the transition. 1) In VS Code, you’ll be able to choose a number of traces, proper click on and choose Run Python > Run Choice/Line in Python Terminal. That is much like working a cell in Jupyter Pocket book. 2) You possibly can convert a pocket book to a python script by clicking File > Obtain as > Python (.py). I wouldn’t advocate that method with massive notebooks for concern of making monster scripts, however the possibility is there!
The ‘__main__’ occasion
At this level, we’ve established that code must be encapsulated into features and saved inside clearly named scripts. The subsequent logical query is, how will you tie all these scripts collectively so code will get executed in the proper order?
The reply is to import these scripts right into a single-entry level and execute the code in a single place. Throughout the context of creating a easy undertaking, this entry level is usually a script named foremost.py
(however may be known as something). On the prime of foremost.py
, simply as you’d import essential built-in packages or third-party packages from PyPI, you’ll import your personal modules or particular courses/features from modules. Any courses or features outlined in these modules can be out there to make use of by the script they’ve been imported into.
To do that, the bundle listing inside your undertaking must include a __init__.py
file, which is usually left clean for easy initiatives. This file tells the python interpreter to deal with the listing as a bundle, that means that any recordsdata with a .py extension get handled as modules and may due to this fact be imported into different recordsdata.
The construction of foremost.py
is undertaking dependent, however it’ll typically be dictated by the mandatory order of code execution. For a typical machine studying undertaking, you’d first want to make use of the load_data perform from the module information.py
. You then may instantiate the preprocessor class that’s imported from the module preprocess.py
and apply quite a lot of class strategies to the preprocessor object. You’d then transfer onto characteristic engineering and so forth till you’ve gotten the entire workflow written out. This workflow would usually be contained or referenced inside a conditional assertion on the backside of foremost.py
.
Wait….. who talked about something a couple of conditional assertion? The conditional assertion is as follows:
if __name__ == '__main__':
# add code right here
__name__
is a particular python variable that may have two totally different values relying on how the script is run:
- If the script is run straight in terminal, the interpreter assigns the
__name__
variable the worth'__main__'
. As a result of the assertionif '__name__=='__main__':
is true, any code that sits inside this assertion is executed. - If the script is run as an imported module, the interpreter assigns the title of the module as a string to the
__name__
variable. As a result of the assertion ifif '__name__=='__main__':
is fake, the contents of this assertion is just not executed.
Some extra info on this may be discovered here.
Given this course of, you’ll have to reference the grasp perform throughout the if '__name__=='__main__':
conditional assertion in order that it’s executed when foremost.py
is run. Alternatively, you’ll be able to place the code beneath if '__name__=='__main__':
to realize the identical consequence.

foremost.py
(or any python script) may be executed in terminal utilizing the next syntax:
python3 foremost.py
Upon working foremost.py
, code can be executed from all of the imported modules within the specified order. This is similar as clicking the ‘run all’ button on a Jupyter Notebook the place every cell is executed in sequential order. The distinction now’s that the code is organised into particular person scripts in a logical method and encapsulated inside courses and features.
It’s also possible to add CLI (command-line interface) arguments to your code utilizing instruments similar to argparse and typer, permitting you to toggle particular variables when working foremost.py
within the terminal. This supplies an excessive amount of flexibility throughout code execution.
So we’ve now reached the most effective half. The pièce de résistance. The actual explanation why, past having fantastically organised and readable code, you must go to the hassle of Programming.
The top recreation: what’s the purpose of programming?
Let’s stroll via a number of the key advantages of transferring past Jupyter Notebooks and transitioning to writing Python scripts as an alternative.

- Packaging & distribution — you’ll be able to bundle and distribute your python program so it may be shared, put in and run on one other laptop. Bundle managers similar to pip, poetry or conda can be utilized to put in the bundle, simply as you’d set up packages from PyPI, similar to
pandas
ornumpy
. The trick to efficiently distributing your bundle is to make sure that the dependencies are managed accurately, which is the place the recordsdatapyproject.toml
ornecessities.txt
are available in. Some helpful assets may be discovered here and here. - Deployment — while there are a number of strategies and platforms to deploy code, utilizing a modular method will put you in good stead to get your code manufacturing prepared. Instruments similar to Docker allow the deployment of packages or functions in remoted environments known as containers, which may be simply managed via CI/CD (steady integration & deployment) pipelines. It’s value noting that whereas Jupyter Notebooks may be deployed utilizing JupyterLab, this method lacks the flexibleness and scalability of adopting a modular, script-based workflow.
- Model management — transferring away from Jupyter Notebooks opens up the fantastic worlds of model management and collaboration. Model management techniques similar to Git are very a lot {industry} customary and supply a wealth of advantages, offering you utilize them appropriately! Comply with the motto ‘incremental adjustments are key’ and make sure that you make small, common commits with logical commit messages in crucial language everytime you make purposeful adjustments while creating. This may make it far simpler to maintain monitor of adjustments and take a look at code. Here is a brilliant helpful information to utilizing git as an information scientist.
Enjoyable reality. It’s typically discouraged to commit Jupyter Notebooks to model management techniques as it’s tough to trace adjustments!
- (Auto)Documentation — everyone knows that documenting code will increase its readability thus serving to the reader perceive what the code is doing. It’s thought of finest follow so as to add docstrings to features and courses inside python scripts. What’s actually cool is that we will use these docstrings to construct an index of formatted documentation of your entire undertaking within the type of html recordsdata. Instruments similar to Sphinx allow you to do that in a fast and simple approach. You possibly can learn my earlier article which takes you thru this course of step-by-step.
- Reusability — adopting a modular method promotes the reuse of code. There are a lot of widespread duties inside information science initiatives, similar to cleaning information or scaling options. There’s little level in reinventing the wheel, so when you can reuse features or courses with minor modification from earlier initiatives, so long as there aren’t any confidentiality restrictions, then save your self that point! You may need a
utils.py
orcourses.py
module which accommodates ambivalent code that can be utilized throughout modules. - Configuration administration — while that is doable with a Jupyter Pocket book, it’s common follow to make use of configuration administration for a python program. Configuration administration refers to organising and managing a undertaking’s parameters and variables in a centralised approach. As an alternative of defining variables all through the code, they’re saved in a file that sits throughout the undertaking listing. Which means you do not want to interrogate the code to vary a parameter. An outline of this may be discovered here.
Be aware. For those who use a YAML file (.yml) for configuration, this requires the python bundle
yaml
. Be sure that to put in the pyyaml bundle (not ‘yaml’) utilizingpip set up pyyaml
. Forgetting this may result in “bundle not discovered” errors—I’ve made this error, possibly greater than as soon as..
- Logging — utilizing loggers inside a python program lets you simply monitor code execution, present debugging info and monitor a program or utility. While this performance is feasible inside a Jupyter Pocket book, it’s typically thought of overkill and is fulfilled with the print() assertion as an alternative. By utilizing python’s logger module, you’ll be able to format a logging object to your liking. It has 5 totally different messaging ranges (information, debug, warning, error, important) relative to the severity of the occasions being logger. You possibly can embrace logging messages all through the code to offer perception into code execution, which may be printed to terminal and/or written to a file. You possibly can study extra about logging here.
When are Jupyter Notebooks helpful?
As I eluded firstly of this text, Jupyter Notebooks nonetheless have their place in information science initiatives. Their easy-to-use interface makes them nice for exploratory and interactive duties. Two key use instances are listed under:
- Conducting exploratory information evaluation on a dataset throughout the preliminary levels of a undertaking.
- Creating an interactive useful resource or report back to exhibit analytical findings. Be aware there are many instruments on the market that you need to use on this nature, however a Jupyter Pocket book may do the trick.
Last ideas
Thanks for sticking with me to the very finish! I hope this dialogue has been insightful and has shed some mild on how and why to start out programming. As with most issues in Knowledge Science, there isn’t a single ‘appropriate’ approach to clear up an issue, however a thought of multi-faceted method relying on the duty at hand.
Shout out to my colleague and fellow information scientist Hannah Alexander for reviewing this text 🙂
Thanks for studying!