Inclu++ (inclupp) is a command-line tool that enhances your C++ workflow by allowing you to #include header files directly from URLs, just like local files.
🔗 #include "https://example.com/hello.hpp"
📥 Automatically downloaded and compiled with your source code.
- 🔍 Detects
#includedirectives with URLs - 💻 Works for both
CandC++source files - 🌐 Downloads remote header files on the fly
- 🗂 Stores them in a temporary directory
- ⚙️ Compiles using
g++behind the scenes - 🎨 Colorful CLI output with live status messages
- ✅ Simple and lightweight — no setup needed
pip install incluppinclupp main.cpp#include "https://example.com/hello.hpp"
int main() {
hello();
return 0;
}inclupp main.cpp🔧 Processing source file: main.cpp
🔄 Downloading: https://example.com/hello.hpp
✅ Saved to: /tmp/tmpabc123/hello.hpp
🔨 Compiling the processed file...
🎉 Compilation successful: main
inclupp --version
inclupp <source_file.c or .cpp>- Python 3.6+
g++in PATH- Internet connection
- Python packages:
requests,colorama
MIT License
© 2025 LautyDev