odoo-env


Nameodoo-env JSON
Version 0.11.7 PyPI version JSON
download
home_page
SummaryA Dockerized environment for Odoo
upload_time2023-12-02 13:39:23
maintainer
docs_urlNone
author
requires_python>=3.4
license
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ![workflow](https://github.com/jobiols/odoo-env/actions/workflows/pre-commit.yml/badge.svg)
[![CodeFactor](https://www.codefactor.io/repository/github/jobiols/odoo-env/badge)](https://www.codefactor.io/repository/github/jobiols/odoo-env)

[Project documentation](https://jobiols.github.io/odoo-env/)

odoo-env
=========
jeo Software (c) 2023 jorge.obiols@gmail.com
This code is distributed under the MIT license.

Tool to manage docker based odoo environments. This is a Dockerized
Environment to manage Odoo. Two environments are provided debug and prod.

Directory structure

    /odoo_ar
    ├── odoo-16.0
    │   ├── client_one
    │   │    ├── config             odoo.conf
    │   │    ├── data_dir           filestore
    │   │    ├── backup_dir         zip files with backups
    │   │    ├── log                odoo.log
    │   │    ├── postgresql         postgres database
    │   │    └── sources            custom sources
    │   ├── dist-local-packages     packages from image for debug
    │   └── dist-packages           pagkages from image for debug
    └── nginx
        ├── conf
        ├── log
        └── cert

Functionality
-------------

    usage: oe [-h] [-i] [-p] [-w] [-R] [-r] [-S] [-s] [-E] [-u] [-c CLIENT] [-v] [--no-deactivate]
              [--extract-sources] [--debug] [--prod] [--from-prod] [--no-repos] [-d DATABASE]
              [-m MODULE] [--nginx] [-Q repo] [--backup-list] [--restore] [-f BACKUP_FILE] [-H]
              [-V]

    Odoo Environment Manager v0.10.24 - by jeo Software <jorge.obiols@gmail.com>

    optional arguments:
      -h, --help          show this help message and exit
      -i, --install       Install. Creates dir structure, and pull all the repositories declared in
                          the client manifest. Use with --debug to copy Odoo image sources to host
      -p, --pull-images   Pull Images. Download all images declared in client manifest.
      -w, --write-config  Create / Overwrite config file.
      -R, --run-env       Run postgres and aeroo images.
      -r, --run-cli       Run odoo image
      -S, --stop-env      Stop postgres and aeroo images.
      -s, --stop-cli      Stop odoo image.
      -E, --ext-dep       Update manifest external dependecies.
      -u, --update        Update modules to database. Use --debug to force update with image
                          sources. use -m modulename to update this only module default is all use
                          -d databasename to update this database, default is clientname_default
      -c CLIENT           Set default client name. This option is persistent
      -v, --verbose       Go verbose mode. Prints every command
      --no-deactivate     No Deactivate database before restore. WARNING this may be a potential
                          risk
      --extract-sources   Extract sources from images on -i
      --debug             Set default environment mode to debugThis option has the following
                          efects: 1.- When doing an install it copies the image sources to host and
                          clones repos with depth=1002.- When doing an update all, (option -u) it
                          forces update with image sources.This option is persistent.
      --prod              Set default environment mode to productionThis option is intended to
                          install a production environment.This option is persistent.
      --from-prod         Restore backup from production server. Use with --restore
      --no-repos          Does not clone or pull repos when doing -i (install)
      -d DATABASE         Set default Database name.This option is persistent
      -m MODULE           Module to update. Used with -u (update) i.e. -m sale for updating sale
                          module -m all for updating all modules. NOTE: if you perform -u without
                          -m it asumes all modules
      --nginx             Add nginx to installation: Used with -i creates nginx dir with config
                          file. Used with -r starts an nginx container linked to odoo.Used with -s
                          stops nginx container. If you want to add certificates review nginx.conf
                          file located in /odoo_ar/nginx/conf
      -Q repo             Perform QA running tests, argument are repository to test. Need -d, -m
                          and -c options Note: for the test to run the database must be created
                          with demo data and must have admin user with password admin.
      --backup-list       List all backup files available for restore
      --restore           Restores a backup. it uses last backup and restores to default database.
                          You can change the backup file to restore with -f option and change
                          database name -d option
      -f BACKUP_FILE      Filename to restore. Used with --restore. To get the name of this file
                          issue a --backup-list command.If ommited the newest file will be restored
      -H, --server-help   Show odoo server help, it shows the help from the odoo imagedeclared in
                          the cliente manifest
      -V, --version       Show version number and exit.


Installation
------------
    sudo pip install odoo-env
    see proyect in https://pypi.org/project/odoo-env/

Changelog
---------
    - 0.11.7  - FIX -i is no longer removing directory packages
    - 0.11.6  - FIX --extract-sources now can remove directory packages
    - 0.11.5  - FIX --from-server does not download the database
    - 0.11.4  - FIX now can download repositories with submodules
    - 0.11.3  - Support for submodules, oe -w can write paths for a submodule structure
    - 0.10.24 - Small patch that allows to use postgres with versions greater than 10.
    - 0.10.23 - The postgres docker image is not required anymore it is not necessary.
              - new longpolling port exposed if declared in manifest
              - new parameter -E to install external dependences in manifest.py
    - 0.10.22 find manifest with exact name instaed of part of name.
    - 0.10.21 change dbtools version to 1.3.0
    - 0.10.20 fix --restore --from-server does not work when base_dir is not default
    - 0.10.19 dbtools for postgres 14.2
    - 0.10.18 ADD warning if --nginx issued and there are no nginx image on proyect
    - 0.10.16 FIX overwrite workers in odoo.conf
    - 0.10.15 base_dir parameter on oe_config.yaml
    - 0.10.14 add --extract-sources option
    - 0.10.13 fix -w to take into account submodules
    - 0.10.12 fix -w to take into account not standard repo structure and odoo.conf rights
    - 0.10.11 ask before overwriting local image sources
    - 0.10.10 minor refactoring, improving doc
    - 0.10.9 minor fixes, more documentation
    - 0.10.8 improving in writing the odoo.conf
    - 0.10.7 Fix bug creating odoo.conf missing data_dir in config.
    - 0.10.6 Fix bug creating odoo.conf when there are no config spec is manifest
    - 0.10.5 Set parameters in odoo.conf from manifest file.
    - 0.10.4 IMP creation of odoo.conf improved in V11 also.
    - 0.10.3 FIX nginx config now works behind port redirections
    - 0.10.2 FIX collision field in manifest "license"
    - 0.10.1 FIX bad filestore dir
    - 0.10.0 New manifest syntax, backward compatible.
    - 0.9.14 improved creation of odoo.conf, i.e. detect cpu number and
      calculate workers.
    - 0.9.13 solved bug when creating nginx config file
    - 0.9.12 Get last wdb vesion. Added a check to verify if there is
    a new version available in pypi. Fixed copy sources to host.
    - 0.9.11 The commands -c and --debug now are persistent.
    - 0.8.35 Workaround for mdillon gis database
    - 0.8.32 Fix issue with first time installation
    - 0.8.30 Add cache file to fix performance issues when we have more
    than 15 clients.
    - 0.8.29 Modify ssl certificate directories from letsencrypt,
    support for oca/letsencript.
    - 0.8.27 Fix compatibility issues w/ python3
    - 0.8.22 When using the options -i together with --debug, the
    dist_packages and extra_addons directories were created with the
    image sources but in read-only mode. Now we give them write
    permission and a git repository is added to verify if there were
    modifications. Option -V is added to show the version.
    - 0.8.21 Many improvements on restore database.
    - 0.8.20 When option -d not present assume database = client_name +
             "_prod" when option -m is not present asume default "all"
    - 0.8.19 Allow options -i and -w to work together
    - 0.8.18 add -p command
    - 0.8.17 Fix bug in python3 installation
    - 0.8.13 Removing edm option (it was a bad idea), rewrite nginx
             config to block /database/manager and /database/selector
    - 0.8.12 fix version of wdb image to 3.2.5, latest does not work
    - 0.8.11 Fix --nginx installation
    - 0.8.10 Add --edm option to allow database manager on production
    - 0.8.9  When installed from pip --nginx does not work
    - 0.8.8  Disable database manager on login page in prod environment
    - 0.8.7  Working on Python 2.7 to 3.7
    - 0.8.6  Fix: when installing on prod make a Shallow Clone
    - 0.8.5  Fix test (option -Q) failing to run
    - 0.8.4  PyPi version increment
    - 0.8.3  PyPi version increment
    - 0.8.2  Docker installs at the end allowing abort
    - 0.8.1  Fix starting debug mode.
    - 0.8.0  Use kozera image for wdb, write the nginx.conf with the
             proper client name.
    - 0.7.4  New parameter to attach to a running containcer in sd.
             Support for debug image in v11 (python3)
             data/install_scripts.sh improvements and fixes
    - 0.7.3  if odoo not in manifest do not start image instead showing
             an error
    - 0.7.2  start aeroo on v > 9
    - 0.7.1  Revert again go https
    - 0.7.0  Change protocol from https to ssh in order to use ssh keys.
    - 0.6.1  FIX working directory with version > 9. If odoo main
             version was > 9 the directory added a dot ie /odoo-10.0./
    - 0.6.0  deprecate dbfilter.
    - 0.5.4  illformed manifest causing crash
    - 0.5.3  Restore database with bad image
    - 0.5.2  sd was not copied to /usr/local/bin
    - 0.5.1  change postgres container name to pg-<client name>
    - 0.5.0  support for non github repos, i.e. bitbucket, gitlab, etc
    - 0.4.6  Odoo v10 do not run aeroo, find manifest
    - 0.4.5  Install_scripts now installs python and docker
    - 0.4.4  Do not expose 8072 when using Nginx
    - 0.4.3  No more rewriting config on update all
    - 0.4.2  Expose longpolling port in debug mode
    - 0.4.1  Fixes in test invocation
    - 0.4.0  Change QA invocation
    - 0.3.2  do not overwrite config while making QA
    - 0.3.1  Stop images instead of kill them on -s or -S
    - 0.3.0  Restore any automatic backup made with database_tools module.
             List all available backup files write config file add help
             option -H (odoo help)
    - 0.2.1  bug On QA, expose port 1984 for debug purpoes with WDB
    - 0.2.0  Quality Assurance support, Add command sd rmall for removing
             all docker images in memory
    - 0.1.0  Nginx support, Script to install docker (in script folder,
             for now you have to execute manually) sd command (short for
             sudo docker plus some enhacements)
    - 0.0.2  Minor fixes
    - 0.0.1  Starting project

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "odoo-env",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.4",
    "maintainer_email": "",
    "keywords": "",
    "author": "",
    "author_email": "Jorge Obiols <jorge.obiols@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/92/e3/d5a0bea9e258f95737515170b3dd05ae0e91b1c800e2b038776847595025/odoo_env-0.11.7.tar.gz",
    "platform": null,
    "description": "![workflow](https://github.com/jobiols/odoo-env/actions/workflows/pre-commit.yml/badge.svg)\n[![CodeFactor](https://www.codefactor.io/repository/github/jobiols/odoo-env/badge)](https://www.codefactor.io/repository/github/jobiols/odoo-env)\n\n[Project documentation](https://jobiols.github.io/odoo-env/)\n\nodoo-env\n=========\njeo Software (c) 2023 jorge.obiols@gmail.com\nThis code is distributed under the MIT license.\n\nTool to manage docker based odoo environments. This is a Dockerized\nEnvironment to manage Odoo. Two environments are provided debug and prod.\n\nDirectory structure\n\n    /odoo_ar\n    \u251c\u2500\u2500 odoo-16.0\n    \u2502\u00a0\u00a0 \u251c\u2500\u2500 client_one\n    \u2502\u00a0\u00a0 \u2502    \u251c\u2500\u2500 config             odoo.conf\n    \u2502\u00a0\u00a0 \u2502    \u251c\u2500\u2500 data_dir           filestore\n    \u2502   \u2502    \u251c\u2500\u2500 backup_dir         zip files with backups\n    \u2502\u00a0\u00a0 \u2502    \u251c\u2500\u2500 log                odoo.log\n    \u2502\u00a0\u00a0 \u2502    \u251c\u2500\u2500 postgresql         postgres database\n    \u2502\u00a0\u00a0 \u2502    \u2514\u2500\u2500 sources            custom sources\n    \u2502   \u251c\u2500\u2500 dist-local-packages     packages from image for debug\n    \u2502   \u2514\u2500\u2500 dist-packages           pagkages from image for debug\n    \u2514\u2500\u2500 nginx\n        \u251c\u2500\u2500 conf\n        \u251c\u2500\u2500 log\n        \u2514\u2500\u2500 cert\n\nFunctionality\n-------------\n\n    usage: oe [-h] [-i] [-p] [-w] [-R] [-r] [-S] [-s] [-E] [-u] [-c CLIENT] [-v] [--no-deactivate]\n              [--extract-sources] [--debug] [--prod] [--from-prod] [--no-repos] [-d DATABASE]\n              [-m MODULE] [--nginx] [-Q repo] [--backup-list] [--restore] [-f BACKUP_FILE] [-H]\n              [-V]\n\n    Odoo Environment Manager v0.10.24 - by jeo Software <jorge.obiols@gmail.com>\n\n    optional arguments:\n      -h, --help          show this help message and exit\n      -i, --install       Install. Creates dir structure, and pull all the repositories declared in\n                          the client manifest. Use with --debug to copy Odoo image sources to host\n      -p, --pull-images   Pull Images. Download all images declared in client manifest.\n      -w, --write-config  Create / Overwrite config file.\n      -R, --run-env       Run postgres and aeroo images.\n      -r, --run-cli       Run odoo image\n      -S, --stop-env      Stop postgres and aeroo images.\n      -s, --stop-cli      Stop odoo image.\n      -E, --ext-dep       Update manifest external dependecies.\n      -u, --update        Update modules to database. Use --debug to force update with image\n                          sources. use -m modulename to update this only module default is all use\n                          -d databasename to update this database, default is clientname_default\n      -c CLIENT           Set default client name. This option is persistent\n      -v, --verbose       Go verbose mode. Prints every command\n      --no-deactivate     No Deactivate database before restore. WARNING this may be a potential\n                          risk\n      --extract-sources   Extract sources from images on -i\n      --debug             Set default environment mode to debugThis option has the following\n                          efects: 1.- When doing an install it copies the image sources to host and\n                          clones repos with depth=1002.- When doing an update all, (option -u) it\n                          forces update with image sources.This option is persistent.\n      --prod              Set default environment mode to productionThis option is intended to\n                          install a production environment.This option is persistent.\n      --from-prod         Restore backup from production server. Use with --restore\n      --no-repos          Does not clone or pull repos when doing -i (install)\n      -d DATABASE         Set default Database name.This option is persistent\n      -m MODULE           Module to update. Used with -u (update) i.e. -m sale for updating sale\n                          module -m all for updating all modules. NOTE: if you perform -u without\n                          -m it asumes all modules\n      --nginx             Add nginx to installation: Used with -i creates nginx dir with config\n                          file. Used with -r starts an nginx container linked to odoo.Used with -s\n                          stops nginx container. If you want to add certificates review nginx.conf\n                          file located in /odoo_ar/nginx/conf\n      -Q repo             Perform QA running tests, argument are repository to test. Need -d, -m\n                          and -c options Note: for the test to run the database must be created\n                          with demo data and must have admin user with password admin.\n      --backup-list       List all backup files available for restore\n      --restore           Restores a backup. it uses last backup and restores to default database.\n                          You can change the backup file to restore with -f option and change\n                          database name -d option\n      -f BACKUP_FILE      Filename to restore. Used with --restore. To get the name of this file\n                          issue a --backup-list command.If ommited the newest file will be restored\n      -H, --server-help   Show odoo server help, it shows the help from the odoo imagedeclared in\n                          the cliente manifest\n      -V, --version       Show version number and exit.\n\n\nInstallation\n------------\n    sudo pip install odoo-env\n    see proyect in https://pypi.org/project/odoo-env/\n\nChangelog\n---------\n    - 0.11.7  - FIX -i is no longer removing directory packages\n    - 0.11.6  - FIX --extract-sources now can remove directory packages\n    - 0.11.5  - FIX --from-server does not download the database\n    - 0.11.4  - FIX now can download repositories with submodules\n    - 0.11.3  - Support for submodules, oe -w can write paths for a submodule structure\n    - 0.10.24 - Small patch that allows to use postgres with versions greater than 10.\n    - 0.10.23 - The postgres docker image is not required anymore it is not necessary.\n              - new longpolling port exposed if declared in manifest\n              - new parameter -E to install external dependences in manifest.py\n    - 0.10.22 find manifest with exact name instaed of part of name.\n    - 0.10.21 change dbtools version to 1.3.0\n    - 0.10.20 fix --restore --from-server does not work when base_dir is not default\n    - 0.10.19 dbtools for postgres 14.2\n    - 0.10.18 ADD warning if --nginx issued and there are no nginx image on proyect\n    - 0.10.16 FIX overwrite workers in odoo.conf\n    - 0.10.15 base_dir parameter on oe_config.yaml\n    - 0.10.14 add --extract-sources option\n    - 0.10.13 fix -w to take into account submodules\n    - 0.10.12 fix -w to take into account not standard repo structure and odoo.conf rights\n    - 0.10.11 ask before overwriting local image sources\n    - 0.10.10 minor refactoring, improving doc\n    - 0.10.9 minor fixes, more documentation\n    - 0.10.8 improving in writing the odoo.conf\n    - 0.10.7 Fix bug creating odoo.conf missing data_dir in config.\n    - 0.10.6 Fix bug creating odoo.conf when there are no config spec is manifest\n    - 0.10.5 Set parameters in odoo.conf from manifest file.\n    - 0.10.4 IMP creation of odoo.conf improved in V11 also.\n    - 0.10.3 FIX nginx config now works behind port redirections\n    - 0.10.2 FIX collision field in manifest \"license\"\n    - 0.10.1 FIX bad filestore dir\n    - 0.10.0 New manifest syntax, backward compatible.\n    - 0.9.14 improved creation of odoo.conf, i.e. detect cpu number and\n      calculate workers.\n    - 0.9.13 solved bug when creating nginx config file\n    - 0.9.12 Get last wdb vesion. Added a check to verify if there is\n    a new version available in pypi. Fixed copy sources to host.\n    - 0.9.11 The commands -c and --debug now are persistent.\n    - 0.8.35 Workaround for mdillon gis database\n    - 0.8.32 Fix issue with first time installation\n    - 0.8.30 Add cache file to fix performance issues when we have more\n    than 15 clients.\n    - 0.8.29 Modify ssl certificate directories from letsencrypt,\n    support for oca/letsencript.\n    - 0.8.27 Fix compatibility issues w/ python3\n    - 0.8.22 When using the options -i together with --debug, the\n    dist_packages and extra_addons directories were created with the\n    image sources but in read-only mode. Now we give them write\n    permission and a git repository is added to verify if there were\n    modifications. Option -V is added to show the version.\n    - 0.8.21 Many improvements on restore database.\n    - 0.8.20 When option -d not present assume database = client_name +\n             \"_prod\" when option -m is not present asume default \"all\"\n    - 0.8.19 Allow options -i and -w to work together\n    - 0.8.18 add -p command\n    - 0.8.17 Fix bug in python3 installation\n    - 0.8.13 Removing edm option (it was a bad idea), rewrite nginx\n             config to block /database/manager and /database/selector\n    - 0.8.12 fix version of wdb image to 3.2.5, latest does not work\n    - 0.8.11 Fix --nginx installation\n    - 0.8.10 Add --edm option to allow database manager on production\n    - 0.8.9  When installed from pip --nginx does not work\n    - 0.8.8  Disable database manager on login page in prod environment\n    - 0.8.7  Working on Python 2.7 to 3.7\n    - 0.8.6  Fix: when installing on prod make a Shallow Clone\n    - 0.8.5  Fix test (option -Q) failing to run\n    - 0.8.4  PyPi version increment\n    - 0.8.3  PyPi version increment\n    - 0.8.2  Docker installs at the end allowing abort\n    - 0.8.1  Fix starting debug mode.\n    - 0.8.0  Use kozera image for wdb, write the nginx.conf with the\n             proper client name.\n    - 0.7.4  New parameter to attach to a running containcer in sd.\n             Support for debug image in v11 (python3)\n             data/install_scripts.sh improvements and fixes\n    - 0.7.3  if odoo not in manifest do not start image instead showing\n             an error\n    - 0.7.2  start aeroo on v > 9\n    - 0.7.1  Revert again go https\n    - 0.7.0  Change protocol from https to ssh in order to use ssh keys.\n    - 0.6.1  FIX working directory with version > 9. If odoo main\n             version was > 9 the directory added a dot ie /odoo-10.0./\n    - 0.6.0  deprecate dbfilter.\n    - 0.5.4  illformed manifest causing crash\n    - 0.5.3  Restore database with bad image\n    - 0.5.2  sd was not copied to /usr/local/bin\n    - 0.5.1  change postgres container name to pg-<client name>\n    - 0.5.0  support for non github repos, i.e. bitbucket, gitlab, etc\n    - 0.4.6  Odoo v10 do not run aeroo, find manifest\n    - 0.4.5  Install_scripts now installs python and docker\n    - 0.4.4  Do not expose 8072 when using Nginx\n    - 0.4.3  No more rewriting config on update all\n    - 0.4.2  Expose longpolling port in debug mode\n    - 0.4.1  Fixes in test invocation\n    - 0.4.0  Change QA invocation\n    - 0.3.2  do not overwrite config while making QA\n    - 0.3.1  Stop images instead of kill them on -s or -S\n    - 0.3.0  Restore any automatic backup made with database_tools module.\n             List all available backup files write config file add help\n             option -H (odoo help)\n    - 0.2.1  bug On QA, expose port 1984 for debug purpoes with WDB\n    - 0.2.0  Quality Assurance support, Add command sd rmall for removing\n             all docker images in memory\n    - 0.1.0  Nginx support, Script to install docker (in script folder,\n             for now you have to execute manually) sd command (short for\n             sudo docker plus some enhacements)\n    - 0.0.2  Minor fixes\n    - 0.0.1  Starting project\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "A Dockerized environment for Odoo",
    "version": "0.11.7",
    "project_urls": {
        "Bug Tracker": "https://github.com/jobiols/odoo-env/issues",
        "Homepage": "https://jobiols.github.io/odoo-env/"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "df0bc30525ac9e565510e2077e6786ebd289f31510d72136aaf427cf3fd5fecf",
                "md5": "c13eaf3064382a3e89d9d3ffef8eb7f0",
                "sha256": "b138f75ef93ac993aa8cdf0d60fd340b086f6a125be6fdaedb8bec73a4dd692a"
            },
            "downloads": -1,
            "filename": "odoo_env-0.11.7-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "c13eaf3064382a3e89d9d3ffef8eb7f0",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.4",
            "size": 38484,
            "upload_time": "2023-12-02T13:39:21",
            "upload_time_iso_8601": "2023-12-02T13:39:21.078022Z",
            "url": "https://files.pythonhosted.org/packages/df/0b/c30525ac9e565510e2077e6786ebd289f31510d72136aaf427cf3fd5fecf/odoo_env-0.11.7-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "92e3d5a0bea9e258f95737515170b3dd05ae0e91b1c800e2b038776847595025",
                "md5": "27b0a06cf4e6ecfdeece1954db98da64",
                "sha256": "e1e9652bc13eda513d9fe9fbcd1d705da346829c9eb013f35d318733a4513e0c"
            },
            "downloads": -1,
            "filename": "odoo_env-0.11.7.tar.gz",
            "has_sig": false,
            "md5_digest": "27b0a06cf4e6ecfdeece1954db98da64",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.4",
            "size": 64117,
            "upload_time": "2023-12-02T13:39:23",
            "upload_time_iso_8601": "2023-12-02T13:39:23.266997Z",
            "url": "https://files.pythonhosted.org/packages/92/e3/d5a0bea9e258f95737515170b3dd05ae0e91b1c800e2b038776847595025/odoo_env-0.11.7.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-02 13:39:23",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "jobiols",
    "github_project": "odoo-env",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "odoo-env"
}
        
Elapsed time: 0.14390s