Skip to main content

A tool to automate Odoo module creation

Project description

Odoo Module Generator (OMG)

Project Overview

The Odoo Module Generator (OMG) is a command-line interface (CLI) tool designed to streamline the initial setup of new Odoo modules. It automates the creation of essential boilerplate files, including Python models, XML views, and security access rules, based on simple command-line arguments. This tool significantly reduces the manual effort and potential for errors when starting new Odoo development projects, allowing developers to focus on core business logic faster.

Features

  • Automated Module Structure: Generates the standard Odoo module directory structure.
  • Python Model Generation: Creates models.py with defined models and fields (Char, Integer, Float, Text, etc.).
  • XML View Generation: Produces views.xml for form, tree, and action views, ready for customization.
  • Security Access Rules: Sets up ir.model.access.csv for basic user permissions.
  • Customizable Metadata: Allows specifying module name, summary, and author.
  • CamelCase Class Names: Automatically converts model names to Odoo-standard CamelCase for Python classes.
  • Clean __init__.py Management: Ensures correct __init__.py files are placed for proper module and package recognition.

Technologies Used

  • Python: The core programming language for the CLI tool.
  • Jinja2: A powerful templating engine used to generate the Odoo module files (Python, XML, CSV).
  • argparse: Python's standard library for parsing command-line arguments.

Installation

You can install OMG directly from PyPI using pip:

pip install omg-cli==0.1.1

Usage

To generate a new Odoo module, run the omg command followed by your desired module name and model definitions.

omg <module_name> --model <ModelName> --fields <field1:Type,field2:Type> [--summary "Module Summary"] [--author "Author Name"]

Arguments:

  • <module_name>: The technical name of your Odoo module (e.g., my_custom_module). This will also be the name of the generated directory.
  • --model <ModelName>: (Required, can be repeated) Defines an Odoo model. The ModelName will be converted to CamelCase for the Python class and snake_case for the _name attribute.
    • Example: --model "Product Item"
  • --fields <field1:Type,field2:Type>: (Optional, applies to the last --model defined) Defines fields for the model.
    • field1: The technical name of the field (e.g., product_code).
    • Type: The Odoo field type (e.g., Char, Integer, Float, Text, Boolean, Date, Datetime).
    • Example: --fields "code:Char,quantity:Integer,notes:Text"
  • --summary "Module Summary": (Optional) A brief description of your module. Defaults to "My Odoo Module".
  • --author "Author Name": (Optional) The author's name for the module manifest. Defaults to "Me".

Examples:

1. Basic Module with One Model and Fields

Generate a module named my_crm with a model Customer and fields name (Char) and email (Char):

omg my_crm --model "Customer" --fields "name:Char,email:Char" --summary "Custom CRM module" --author "John Doe"

2. Module with Multiple Models

Generate a module named project_management with two models: Project and Task.

omg project_management \
    --model "Project" --fields "name:Char,start_date:Date,end_date:Date" \
    --model "Task" --fields "name:Char,description:Text,is_done:Boolean" \
    --summary "Project Management Module"

Contributing

Contributions are welcome! Please feel free to submit pull requests or open issues on the GitHub repository.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Project details


Download files

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

Source Distribution

omg_cli-0.1.1.tar.gz (3.7 kB view details)

Uploaded Source

Built Distribution

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

omg_cli-0.1.1-py3-none-any.whl (3.9 kB view details)

Uploaded Python 3

File details

Details for the file omg_cli-0.1.1.tar.gz.

File metadata

  • Download URL: omg_cli-0.1.1.tar.gz
  • Upload date:
  • Size: 3.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.8.16

File hashes

Hashes for omg_cli-0.1.1.tar.gz
Algorithm Hash digest
SHA256 f062ed49406652327612beedcbf49b219580fc78c15f2532a3752647daa807e7
MD5 3ed5d80c2cff2ead8fe7a503f6667dbe
BLAKE2b-256 c3a569e7ad790c6db05e750849632cb7942a0b634aba70befcbdaadebbee0206

See more details on using hashes here.

File details

Details for the file omg_cli-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: omg_cli-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 3.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.8.16

File hashes

Hashes for omg_cli-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 0ef0c2ad4d2a0b19a642cb30bfc298e97a010178b1d4ebfc57c8711410c664b3
MD5 14e0a417d20049bb328c057a7f7d59a5
BLAKE2b-256 96581ddb80848384541e3a2c1850ba9fc2ad6541b33eb19b92363792fadb50ee

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