Tag

module import

0 views collected around this technical thread.

Java Captain
Java Captain
Jun 11, 2025 · Backend Development

How to Import Modules and Build JAR Files in IntelliJ IDEA

This step‑by‑step guide shows how to create an IntelliJ IDEA project, import a Java module into it, associate the module with the project, and then package the application into a JAR file using the IDE’s Project Structure and Artifacts settings.

IDE tutorialIntelliJ IDEAJAR packaging
0 likes · 6 min read
How to Import Modules and Build JAR Files in IntelliJ IDEA
IT Services Circle
IT Services Circle
Jan 14, 2025 · Fundamentals

Understanding the __name__ Variable and the if __name__ == '__main__' Guard in Python

This article explains how Python's __name__ variable works, why the if __name__ == '__main__' construct is used to differentiate direct script execution from module import, and shows practical examples including simple scripts and multiprocessing scenarios.

__name__if __name__ == '__main__'module import
0 likes · 5 min read
Understanding the __name__ Variable and the if __name__ == '__main__' Guard in Python
Python Programming Learning Circle
Python Programming Learning Circle
May 24, 2021 · Fundamentals

Importing Custom Python Functions as Modules and Merging Multiple Excel Files

This tutorial explains how to package reusable Python functions into importable modules and provides a step‑by‑step guide, including code, to merge multiple Excel files into a single workbook using pandas, enabling easier reuse and automation of common data‑processing tasks.

AutomationData ProcessingExcel
0 likes · 4 min read
Importing Custom Python Functions as Modules and Merging Multiple Excel Files