Skip to main content

Professional C++ Python bindings with type-generic templates, pystubs and native threading

Project description

IncludeCPP

Use C++ code in Python. Write your C++ functions and classes, IncludeCPP generates the Python bindings automatically.

pip install IncludeCPP

Quick Start

1. Create a Project

mkdir myproject && cd myproject
includecpp init

This creates:

  • cpp.proj - your project settings
  • include/ - put your C++ files here
  • plugins/ - binding files go here (auto-generated)

2. Write Some C++

Create include/math.cpp:

namespace includecpp {

int add(int a, int b) {
    return a + b;
}

int multiply(int a, int b) {
    return a * b;
}

}

Your code must be inside namespace includecpp. Everything outside is ignored.

3. Generate Bindings

includecpp plugin math include/math.cpp

This scans your C++ and creates plugins/math.cp with the binding instructions.

4. Build

includecpp rebuild

Compiles your C++ into a Python module.

5. Use in Python

from includecpp import math

print(math.add(2, 3))       # 5
print(math.multiply(4, 5))  # 20

Done. Your C++ code works in Python.


Classes

C++ classes work the same way:

// include/calculator.cpp
#include <vector>

namespace includecpp {

class Calculator {
public:
    Calculator() : result(0) {}

    void add(int x) { result += x; }
    void subtract(int x) { result -= x; }
    int getResult() { return result; }
    void reset() { result = 0; }

private:
    int result;
};

}

Generate and build:

includecpp plugin calculator include/calculator.cpp
includecpp rebuild

Use in Python:

from includecpp import calculator

calc = calculator.Calculator()
calc.add(10)
calc.add(5)
calc.subtract(3)
print(calc.getResult())  # 12

Development Workflow

When you're actively working on your C++:

# Regenerate bindings AND rebuild in one command
includecpp auto math

# Fast rebuild (skips unchanged files, ~0.4s when nothing changed)
includecpp rebuild --fast

# Rebuild everything from scratch
includecpp rebuild --clean

CLI Commands

Command What it does
init Create project structure
plugin <name> <file.cpp> Generate bindings from C++
auto <name> Regenerate bindings + rebuild
rebuild Compile all modules
rebuild --fast Fast incremental build
rebuild --clean Full clean rebuild
get <name> Show module's API
server start Start HomeServer
server stop Stop HomeServer
server upload Upload file/project
server download Download file/project
server list List stored items

Project Configuration

The cpp.proj file controls your build:

{
  "project": "MyProject",
  "include": "/include",
  "plugins": "/plugins",
  "compiler": {
    "standard": "c++17",
    "optimization": "O3"
  }
}

Plugin Files (.cp)

The .cp files tell IncludeCPP what to expose. They're auto-generated, but you can edit them:

SOURCE(calculator.cpp) calculator

PUBLIC(
    calculator CLASS(Calculator) {
        CONSTRUCTOR()
        METHOD(add)
        METHOD(subtract)
        METHOD(getResult)
        METHOD(reset)
    }
)

Common directives:

  • CLASS(Name) - expose a class
  • METHOD(name) - expose a method
  • FUNC(name) - expose a function
  • FIELD(name) - expose a member variable
  • CONSTRUCTOR() or CONSTRUCTOR(int, string) - expose constructor

Requirements

  • Python 3.9+
  • C++ compiler (g++, clang++, or MSVC)
  • CMake

pybind11 is installed automatically.


More Help

includecpp --doc           # Full documentation
includecpp --changelog     # Version history
includecpp <command> --help

HomeServer

Store and manage your modules, projects and files locally with the HomeServer:

# Install and start the server (one-time setup)
includecpp server install

# Manual start/stop
includecpp server start
includecpp server stop
includecpp server status

# Upload files or projects
includecpp server upload mymodule ./include/mymodule.cpp
includecpp server upload myproject ./myproject --project

# List, download, delete
includecpp server list
includecpp server download mymodule ./backup/
includecpp server delete mymodule

# Change port (default: 2007)
includecpp server port 3000

# Remove HomeServer completely
includecpp server deinstall

The server runs silently in the background and can auto-start with Windows.


CSSL Scripting Language

CSSL is IncludeCPP's built-in scripting language with 330+ builtin functions, C++-style syntax, and advanced features like CodeInfusion and BruteInjection.

Quick Example

# Run CSSL code
includecpp cssl run "printl('Hello from CSSL!');"

# Run a .cssl file
includecpp cssl file script.cssl

# Interactive REPL
includecpp cssl repl

Features

  • C++ Containers: vector<T>, stack<T>, map<K,V>, queue<T>, datastruct<T>
  • Classes & Inheritance: class Child : extends Parent { }
  • Namespaces & Enums: Organize code with namespace mylib { }
  • CodeInfusion: Inject code into functions at runtime with <<==
  • BruteInjection: Data manipulation with <== and filters
  • Snapshots: Capture and restore variable states with %variable
  • C++ I/O Streams: cout << "Hello" << endl;
  • Native/Unative: Control C++/Python execution with keywords

CSSL CLI

includecpp cssl run "code"     # Execute code string
includecpp cssl file script.cssl  # Run .cssl file
includecpp cssl repl           # Interactive mode
includecpp cssl convert file.cssl  # Convert to Python
includecpp cssl docs           # Full documentation

Full documentation: includecpp cssl docs or see CSSL_DOCUMENTATION.md


Experimental Features

IncludeCPP also includes experimental features:

  • AI Commands - OpenAI-powered code analysis (includecpp ai)
  • CPPY - Python to C++ conversion (includecpp cppy)

Enable with: includecpp settings → "Enable Experimental Features"


Issues

Report bugs at: https://github.com/liliassg/IncludeCPP/issues

includecpp bug    # Quick bug report
includecpp update # Update to latest version

Project details


Release history Release notifications | RSS feed

This version

5.0.0

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

includecpp-5.0.0.tar.gz (2.9 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

includecpp-5.0.0-py3-none-any.whl (3.0 MB view details)

Uploaded Python 3

File details

Details for the file includecpp-5.0.0.tar.gz.

File metadata

  • Download URL: includecpp-5.0.0.tar.gz
  • Upload date:
  • Size: 2.9 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for includecpp-5.0.0.tar.gz
Algorithm Hash digest
SHA256 2f9c42d4737e0f4446d5418f97e6835172cc7c189944ff081e33263b62a484ef
MD5 d0d11b47c42b81db224b5b1dbf18b34f
BLAKE2b-256 060b5ea6a0884a27f77019941096c694447575f580bf5be7c8783d6444571f18

See more details on using hashes here.

File details

Details for the file includecpp-5.0.0-py3-none-any.whl.

File metadata

  • Download URL: includecpp-5.0.0-py3-none-any.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for includecpp-5.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 c374d09a23c7dd9bfc0d76c382aa5dfcc48bf6c051b7032a0944504e8f438eaf
MD5 d64423e68b88073c73358fbed75ca1df
BLAKE2b-256 ea25304517c62ce5629c9cd0b76777ade261060c1c19babf783f5b82aacc5227

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page