wordops


Namewordops JSON
Version 3.20.0 PyPI version JSON
download
home_pagehttps://github.com/WordOps/WordOps
SummaryAn essential toolset that eases server administration
upload_time2024-04-21 20:49:07
maintainerNone
docs_urlNone
authorWordOps
requires_python>=3.4
licenseMIT
keywords nginx automation wordpress deployment cli
VCS
bugtrack_url
requirements cement pynginxconfig PyMySQL psutil sh SQLAlchemy requests distro argcomplete colorlog
Travis-CI
coveralls test coverage No coveralls.
            <p align="center"><img src="https://raw.githubusercontent.com/WordOps/WordOps/master/logo.png" width="400" alt="Wordops" /><a href="https://wordops.net">

  <br>
</p>

<h2 align="center">An essential toolset that eases WordPress site and server administration</h2>

<p align="center">
<img src="https://docs.wordops.net/images/wordops-intro.gif" width="800" alt="WordOps" />
</p>

<p align="center">
<a href="https://github.com/WordOps/WordOps/actions" target="_blank"><img src="https://github.com/WordOps/WordOps/workflows/CI/badge.svg?branch=master" alt="CI"></a>
<img src="https://img.shields.io/github/license/wordops/wordops.svg?cacheSeconds=86400" alt="MIT">
<img src="https://img.shields.io/github/last-commit/wordops/wordops.svg?cacheSeconds=86400" alt="Commits">
<img alt="GitHub release" src="https://img.shields.io/github/release/WordOps/WordOps.svg">
<br><a href="https://pypi.org/project/wordops/" target="_blank"><img alt="PyPI - Downloads" src="https://img.shields.io/pypi/dm/wordops.svg?cacheSeconds=86400"></a>
<a href="https://twitter.com/WordOps_" target="_blank"><img src="https://img.shields.io/badge/twitter-%40WordOps__-blue.svg?style=flat&logo=twitter&cacheSeconds=86400" alt="Badge Twitter" /></a>
</p>

<p align="center">
  <a href="#key-features">Key Features</a> •
  <a href="#usage">Usage</a> •
  <a href="https://github.com/WordOps/WordOps/projects">RoadMap</a> •
  <a href="https://github.com/WordOps/WordOps/blob/master/CHANGELOG.md">Changelog</a> •
  <a href="#credits">Credits</a> •
  <a href="#license">License</a>
</p>
<p align="center">
<a href="https://wordops.net" target="_blank"> WordOps.net</a> •
<a href="https://docs.wordops.net" target="_blank">Documentation</a> •
<a href="https://community.wordops.net" target="_blank">Community Forum</a> •
<a href="https://demo.wordops.eu" target="_blank">Dashboard demo</a>
</p>

---

## Key Features

- **Easy to install** : One step automated installer with migration from EasyEngine v3 support
- **Fast deployment** : Fast and automated WordPress, Nginx, PHP, MySQL & Redis installation
- **Custom Nginx build** : Nginx 1.24.0 - TLS v1.3 Cloudflare HTTP/2 HPACK & Brotli support
- **Up-to-date** : PHP 7.2, 7.3, 7.4, 8.0, 8.1, 8.2 & 8.3 - MariaDB 10.11 LTS & Redis 7.0
- **Secured** : Hardened WordPress security with strict Nginx location directives
- **Powerful** : Optimized Nginx configurations with multiple cache backends support
- **SSL** : Domain, Subdomain & Wildcard Let's Encrypt SSL certificates with DNS API support
- **Modern** : Strong ciphers_suite, modern TLS protocols and HSTS support (Grade A+ on [ssllabs](https://www.ssllabs.com/ssltest/analyze.html?d=demo.wordops.eu&latest))
- **Monitoring** : Live Nginx vhost traffic with ngx_vts_module and server monitoring with Netdata
- **User Friendly** : WordOps dashboard with server status/monitoring and tools ([demo](https://demo.wordops.eu))
- **Release cycle** : WordOps stable releases are published in June and December.

---

## Requirements

### Operating System

#### Recommended

- Ubuntu 22.04 LTS (Jammy)
- Ubuntu 20.04 LTS (Focal)

#### Also compatible

- Debian 10 (Buster)
- Debian 11 (Bullseye)
- Debian 12 (Bookworm)

#### For testing purpose only

- Raspbian 10 (Buster)
- Raspbian 11 (Bullseye)

## Getting Started

```bash
wget -qO wo wops.cc && sudo bash wo      # Install WordOps
sudo wo site create example.com --wp     # Install required packages & setup WordPress on example.com
```

Detailed Getting Started guide with additional installation methods can be found in [the documentation](https://docs.wordops.net/getting-started/installation-guide/).

## Usage

### Standard WordPress sites

```bash
wo site create example.com --wp                # install wordpress with PHP 8.2 without any page caching
wo site create example.com --wp  --php83       # install wordpress with PHP 8.3  without any page caching
wo site create example.com --wpfc              # install wordpress + nginx fastcgi_cache
wo site create example.com --wpredis           # install wordpress + nginx redis_cache
wo site create example.com --wprocket          # install wordpress with WP-Rocket plugin
wo site create example.com --wpce              # install wordpress with Cache-enabler plugin
wo site create example.com --wpsc              # install wordpress with wp-super-cache plugin
```

### WordPress multisite with subdirectory

```bash
wo site create example.com --wpsubdir            # install wpmu-subdirectory without any page caching
wo site create example.com --wpsubdir --wpsc     # install wpmu-subdirectory with wp-super-cache plugin
wo site create example.com --wpsubdir --wpfc     # install wpmu-subdirectory + nginx fastcgi_cache
wo site create example.com --wpsubdir --wpredis  # install wpmu-subdirectory + nginx redis_cache
wo site create example.com --wpsubdir --wprocket # install wpmu-subdirectory + WP-Rocket plugin
wo site create example.com --wpsubdir --wpce     # install wpmu-subdirectory + Cache-Enabler plugin
```

### WordPress multisite with subdomain

```bash
wo site create example.com --wpsubdomain            # install wpmu-subdomain without any page caching
wo site create example.com --wpsubdomain --wpsc     # install wpmu-subdomain with wp-super-cache plugin
wo site create example.com --wpsubdomain --wpfc     # install wpmu-subdomain + nginx fastcgi_cache
wo site create example.com --wpsubdomain --wpredis  # install wpmu-subdomain + nginx redis_cache
wo site create example.com --wpsubdomain --wprocket # install wpmu-subdomain + WP-Rocket plugin
wo site create example.com --wpsubdomain --wpce     # install wpmu-subdomain + Cache-Enabler plugin
```

### Non-WordPress sites

```bash
wo site create example.com --html     # create example.com for static/html sites
wo site create example.com --php      # create example.com with php 8.2 support
wo site create example.com --php80      # create example.com with php 8.0 support
wo site create example.com --php81      # create example.com with php 8.1 support
wo site create example.com --php82      # create example.com with php 8.2 support
wo site create example.com --mysql    # create example.com with php 8.2 & mysql support
wo site create example.com --mysql --php83   # create example.com with php 8.3 & mysql support
wo site create example.com --proxy=127.0.0.1:3000 #  create example.com with nginx as reverse-proxy
```

### Switch between PHP versions

```bash
wo site update example.com --php72 # switch to PHP 7.2
wo site update example.com --php73 # switch to PHP 7.3
wo site update example.com --php74 # switch to PHP 7.4
wo site update example.com --php80 # switch to PHP 8.0
wo site update example.com --php81 # switch to PHP 8.1
wo site update example.com --php82 # switch to PHP 8.2
wo site update example.com --php83 # switch to PHP 8.3
```

### Sites secured with Let's Encrypt

```bash
wo site create example.com --wp -le #  wordpress & letsencrypt
wo site create sub.example.com --wp -le # wordpress & letsencrypt subdomain
wo site create example.com --wp --letsencrypt --hsts # wordpress & letsencrypt with HSTS
wo site create example.com --wp -le=wildcard --dns=dns_cf # wordpress & wildcard SSL certificate with Cloudflare DNS API
```

## Update WordOps

```bash
wo update
```

## Support

If you feel there is a bug directly related to WordOps, or if you want to suggest new features for WordOps, feel free to open an issue.
For any other questions about WordOps or if you need support, please use the [Community Forum](https://community.wordops.net/).

# Contributing

If you'd like to contribute, please fork the repository and make changes as you'd like. Pull requests are warmly welcome.
There is no need to be a developer or a system administrator to contribute to WordOps project. You can still contribute by helping us to improve [WordOps documentation](https://github.com/WordOps/docs.wordops.net).
Otherwise, you can still contribute to the project by making a donation on [Ko-Fi](https://ko-fi.com/wordops).

## Credits

- Source : [EasyEngine](https://github.com/easyengine/easyengine)

Apps & Tools shipped with WordOps :

- [Acme.sh](https://github.com/Neilpang/acme.sh)
- [WP-CLI](https://github.com/wp-cli/wp-cli)
- [Netdata](https://github.com/netdata/netdata)
- [phpMyAdmin](https://www.phpmyadmin.net/)
- [Composer](https://github.com/composer/composer)
- [Adminer](https://www.adminer.org/)
- [phpRedisAdmin](https://github.com/erikdubbelboer/phpRedisAdmin)
- [opcacheGUI](https://github.com/amnuts/opcache-gui)
- [eXtplorer](https://github.com/soerennb/extplorer)
- [Webgrind](https://github.com/jokkedk/webgrind)
- [MySQLTuner](https://github.com/major/MySQLTuner-perl)
- [Fail2Ban](https://github.com/fail2ban/fail2ban)
- [ClamAV](https://github.com/Cisco-Talos/clamav-devel)
- [cheat.sh](https://github.com/chubin/cheat.sh)
- [ProFTPd](https://github.com/proftpd/proftpd)
- [Nginx-ultimate-bad-bot-blocker](https://github.com/mitchellkrogza/nginx-ultimate-bad-bot-blocker/)
- [Nanorc](https://github.com/scopatz/nanorc)

Third-party debian packages shipped with WordOps :

- [Nginx-wo by WordOps](https://build.opensuse.org/package/show/home:virtubox:WordOps/nginx)
- [PHP by Ondřej Surý](https://launchpad.net/~ondrej/+archive/ubuntu/php)
- [Redis](https://redis.io/docs/getting-started/installation/install-redis-on-linux/)

WordPress Cache Plugins supported by WordOps :

- [Nginx-helper](https://github.com/rtCamp/nginx-helper)
- [Cache-Enabler](https://github.com/keycdn/cache-enabler)
- [Redis-object-cache](https://github.com/tillkruss/redis-cache)
- [WP-Super-Cache](https://github.com/Automattic/wp-super-cache)
- [WP-Rocket](https://github.com/wp-media/wp-rocket)

## License

- [MIT](http://opensource.org/licenses/MIT) © [WordOps](https://wordops.net)

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/WordOps/WordOps",
    "name": "wordops",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.4",
    "maintainer_email": null,
    "keywords": "nginx automation wordpress deployment CLI",
    "author": "WordOps",
    "author_email": "contact@wordops.io",
    "download_url": "https://files.pythonhosted.org/packages/f9/20/77a7de384fa18ca34b701741f6fe67ceab60eaa260fab1166c7f874ad7f3/wordops-3.20.0.tar.gz",
    "platform": null,
    "description": "<p align=\"center\"><img src=\"https://raw.githubusercontent.com/WordOps/WordOps/master/logo.png\" width=\"400\" alt=\"Wordops\" /><a href=\"https://wordops.net\">\n\n  <br>\n</p>\n\n<h2 align=\"center\">An essential toolset that eases WordPress site and server administration</h2>\n\n<p align=\"center\">\n<img src=\"https://docs.wordops.net/images/wordops-intro.gif\" width=\"800\" alt=\"WordOps\" />\n</p>\n\n<p align=\"center\">\n<a href=\"https://github.com/WordOps/WordOps/actions\" target=\"_blank\"><img src=\"https://github.com/WordOps/WordOps/workflows/CI/badge.svg?branch=master\" alt=\"CI\"></a>\n<img src=\"https://img.shields.io/github/license/wordops/wordops.svg?cacheSeconds=86400\" alt=\"MIT\">\n<img src=\"https://img.shields.io/github/last-commit/wordops/wordops.svg?cacheSeconds=86400\" alt=\"Commits\">\n<img alt=\"GitHub release\" src=\"https://img.shields.io/github/release/WordOps/WordOps.svg\">\n<br><a href=\"https://pypi.org/project/wordops/\" target=\"_blank\"><img alt=\"PyPI - Downloads\" src=\"https://img.shields.io/pypi/dm/wordops.svg?cacheSeconds=86400\"></a>\n<a href=\"https://twitter.com/WordOps_\" target=\"_blank\"><img src=\"https://img.shields.io/badge/twitter-%40WordOps__-blue.svg?style=flat&logo=twitter&cacheSeconds=86400\" alt=\"Badge Twitter\" /></a>\n</p>\n\n<p align=\"center\">\n  <a href=\"#key-features\">Key Features</a> \u2022\n  <a href=\"#usage\">Usage</a> \u2022\n  <a href=\"https://github.com/WordOps/WordOps/projects\">RoadMap</a> \u2022\n  <a href=\"https://github.com/WordOps/WordOps/blob/master/CHANGELOG.md\">Changelog</a> \u2022\n  <a href=\"#credits\">Credits</a> \u2022\n  <a href=\"#license\">License</a>\n</p>\n<p align=\"center\">\n<a href=\"https://wordops.net\" target=\"_blank\"> WordOps.net</a> \u2022\n<a href=\"https://docs.wordops.net\" target=\"_blank\">Documentation</a> \u2022\n<a href=\"https://community.wordops.net\" target=\"_blank\">Community Forum</a> \u2022\n<a href=\"https://demo.wordops.eu\" target=\"_blank\">Dashboard demo</a>\n</p>\n\n---\n\n## Key Features\n\n- **Easy to install** : One step automated installer with migration from EasyEngine v3 support\n- **Fast deployment** : Fast and automated WordPress, Nginx, PHP, MySQL & Redis installation\n- **Custom Nginx build** : Nginx 1.24.0 - TLS v1.3 Cloudflare HTTP/2 HPACK & Brotli support\n- **Up-to-date** : PHP 7.2, 7.3, 7.4, 8.0, 8.1, 8.2 & 8.3 - MariaDB 10.11 LTS & Redis 7.0\n- **Secured** : Hardened WordPress security with strict Nginx location directives\n- **Powerful** : Optimized Nginx configurations with multiple cache backends support\n- **SSL** : Domain, Subdomain & Wildcard Let's Encrypt SSL certificates with DNS API support\n- **Modern** : Strong ciphers_suite, modern TLS protocols and HSTS support (Grade A+ on [ssllabs](https://www.ssllabs.com/ssltest/analyze.html?d=demo.wordops.eu&latest))\n- **Monitoring** : Live Nginx vhost traffic with ngx_vts_module and server monitoring with Netdata\n- **User Friendly** : WordOps dashboard with server status/monitoring and tools ([demo](https://demo.wordops.eu))\n- **Release cycle** : WordOps stable releases are published in June and December.\n\n---\n\n## Requirements\n\n### Operating System\n\n#### Recommended\n\n- Ubuntu 22.04 LTS (Jammy)\n- Ubuntu 20.04 LTS (Focal)\n\n#### Also compatible\n\n- Debian 10 (Buster)\n- Debian 11 (Bullseye)\n- Debian 12 (Bookworm)\n\n#### For testing purpose only\n\n- Raspbian 10 (Buster)\n- Raspbian 11 (Bullseye)\n\n## Getting Started\n\n```bash\nwget -qO wo wops.cc && sudo bash wo      # Install WordOps\nsudo wo site create example.com --wp     # Install required packages & setup WordPress on example.com\n```\n\nDetailed Getting Started guide with additional installation methods can be found in [the documentation](https://docs.wordops.net/getting-started/installation-guide/).\n\n## Usage\n\n### Standard WordPress sites\n\n```bash\nwo site create example.com --wp                # install wordpress with PHP 8.2 without any page caching\nwo site create example.com --wp  --php83       # install wordpress with PHP 8.3  without any page caching\nwo site create example.com --wpfc              # install wordpress + nginx fastcgi_cache\nwo site create example.com --wpredis           # install wordpress + nginx redis_cache\nwo site create example.com --wprocket          # install wordpress with WP-Rocket plugin\nwo site create example.com --wpce              # install wordpress with Cache-enabler plugin\nwo site create example.com --wpsc              # install wordpress with wp-super-cache plugin\n```\n\n### WordPress multisite with subdirectory\n\n```bash\nwo site create example.com --wpsubdir            # install wpmu-subdirectory without any page caching\nwo site create example.com --wpsubdir --wpsc     # install wpmu-subdirectory with wp-super-cache plugin\nwo site create example.com --wpsubdir --wpfc     # install wpmu-subdirectory + nginx fastcgi_cache\nwo site create example.com --wpsubdir --wpredis  # install wpmu-subdirectory + nginx redis_cache\nwo site create example.com --wpsubdir --wprocket # install wpmu-subdirectory + WP-Rocket plugin\nwo site create example.com --wpsubdir --wpce     # install wpmu-subdirectory + Cache-Enabler plugin\n```\n\n### WordPress multisite with subdomain\n\n```bash\nwo site create example.com --wpsubdomain            # install wpmu-subdomain without any page caching\nwo site create example.com --wpsubdomain --wpsc     # install wpmu-subdomain with wp-super-cache plugin\nwo site create example.com --wpsubdomain --wpfc     # install wpmu-subdomain + nginx fastcgi_cache\nwo site create example.com --wpsubdomain --wpredis  # install wpmu-subdomain + nginx redis_cache\nwo site create example.com --wpsubdomain --wprocket # install wpmu-subdomain + WP-Rocket plugin\nwo site create example.com --wpsubdomain --wpce     # install wpmu-subdomain + Cache-Enabler plugin\n```\n\n### Non-WordPress sites\n\n```bash\nwo site create example.com --html     # create example.com for static/html sites\nwo site create example.com --php      # create example.com with php 8.2 support\nwo site create example.com --php80      # create example.com with php 8.0 support\nwo site create example.com --php81      # create example.com with php 8.1 support\nwo site create example.com --php82      # create example.com with php 8.2 support\nwo site create example.com --mysql    # create example.com with php 8.2 & mysql support\nwo site create example.com --mysql --php83   # create example.com with php 8.3 & mysql support\nwo site create example.com --proxy=127.0.0.1:3000 #  create example.com with nginx as reverse-proxy\n```\n\n### Switch between PHP versions\n\n```bash\nwo site update example.com --php72 # switch to PHP 7.2\nwo site update example.com --php73 # switch to PHP 7.3\nwo site update example.com --php74 # switch to PHP 7.4\nwo site update example.com --php80 # switch to PHP 8.0\nwo site update example.com --php81 # switch to PHP 8.1\nwo site update example.com --php82 # switch to PHP 8.2\nwo site update example.com --php83 # switch to PHP 8.3\n```\n\n### Sites secured with Let's Encrypt\n\n```bash\nwo site create example.com --wp -le #  wordpress & letsencrypt\nwo site create sub.example.com --wp -le # wordpress & letsencrypt subdomain\nwo site create example.com --wp --letsencrypt --hsts # wordpress & letsencrypt with HSTS\nwo site create example.com --wp -le=wildcard --dns=dns_cf # wordpress & wildcard SSL certificate with Cloudflare DNS API\n```\n\n## Update WordOps\n\n```bash\nwo update\n```\n\n## Support\n\nIf you feel there is a bug directly related to WordOps, or if you want to suggest new features for WordOps, feel free to open an issue.\nFor any other questions about WordOps or if you need support, please use the [Community Forum](https://community.wordops.net/).\n\n# Contributing\n\nIf you'd like to contribute, please fork the repository and make changes as you'd like. Pull requests are warmly welcome.\nThere is no need to be a developer or a system administrator to contribute to WordOps project. You can still contribute by helping us to improve [WordOps documentation](https://github.com/WordOps/docs.wordops.net).\nOtherwise, you can still contribute to the project by making a donation on [Ko-Fi](https://ko-fi.com/wordops).\n\n## Credits\n\n- Source : [EasyEngine](https://github.com/easyengine/easyengine)\n\nApps & Tools shipped with WordOps :\n\n- [Acme.sh](https://github.com/Neilpang/acme.sh)\n- [WP-CLI](https://github.com/wp-cli/wp-cli)\n- [Netdata](https://github.com/netdata/netdata)\n- [phpMyAdmin](https://www.phpmyadmin.net/)\n- [Composer](https://github.com/composer/composer)\n- [Adminer](https://www.adminer.org/)\n- [phpRedisAdmin](https://github.com/erikdubbelboer/phpRedisAdmin)\n- [opcacheGUI](https://github.com/amnuts/opcache-gui)\n- [eXtplorer](https://github.com/soerennb/extplorer)\n- [Webgrind](https://github.com/jokkedk/webgrind)\n- [MySQLTuner](https://github.com/major/MySQLTuner-perl)\n- [Fail2Ban](https://github.com/fail2ban/fail2ban)\n- [ClamAV](https://github.com/Cisco-Talos/clamav-devel)\n- [cheat.sh](https://github.com/chubin/cheat.sh)\n- [ProFTPd](https://github.com/proftpd/proftpd)\n- [Nginx-ultimate-bad-bot-blocker](https://github.com/mitchellkrogza/nginx-ultimate-bad-bot-blocker/)\n- [Nanorc](https://github.com/scopatz/nanorc)\n\nThird-party debian packages shipped with WordOps :\n\n- [Nginx-wo by WordOps](https://build.opensuse.org/package/show/home:virtubox:WordOps/nginx)\n- [PHP by Ond\u0159ej Sur\u00fd](https://launchpad.net/~ondrej/+archive/ubuntu/php)\n- [Redis](https://redis.io/docs/getting-started/installation/install-redis-on-linux/)\n\nWordPress Cache Plugins supported by WordOps :\n\n- [Nginx-helper](https://github.com/rtCamp/nginx-helper)\n- [Cache-Enabler](https://github.com/keycdn/cache-enabler)\n- [Redis-object-cache](https://github.com/tillkruss/redis-cache)\n- [WP-Super-Cache](https://github.com/Automattic/wp-super-cache)\n- [WP-Rocket](https://github.com/wp-media/wp-rocket)\n\n## License\n\n- [MIT](http://opensource.org/licenses/MIT) \u00a9 [WordOps](https://wordops.net)\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "An essential toolset that eases server administration",
    "version": "3.20.0",
    "project_urls": {
        "Documentation": "https://docs.wordops.net",
        "Forum": "https://community.wordops.net",
        "Homepage": "https://github.com/WordOps/WordOps",
        "Source": "https://github.com/WordOps/WordOps",
        "Tracker": "https://github.com/WordOps/WordOps/issues"
    },
    "split_keywords": [
        "nginx",
        "automation",
        "wordpress",
        "deployment",
        "cli"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "935487d6ea0471379613e22a71ebe836efed28878f4b0edfdac776d7155a531e",
                "md5": "72e48c9e40409f7caeccac791e17fdd4",
                "sha256": "751f978184717720124b012dcbb30709e828d1fdfe3602e9ca2c576c6301ad3b"
            },
            "downloads": -1,
            "filename": "wordops-3.20.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "72e48c9e40409f7caeccac791e17fdd4",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.4",
            "size": 227747,
            "upload_time": "2024-04-21T20:49:01",
            "upload_time_iso_8601": "2024-04-21T20:49:01.750516Z",
            "url": "https://files.pythonhosted.org/packages/93/54/87d6ea0471379613e22a71ebe836efed28878f4b0edfdac776d7155a531e/wordops-3.20.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f92077a7de384fa18ca34b701741f6fe67ceab60eaa260fab1166c7f874ad7f3",
                "md5": "a9395c12e360aabaa766c18b04a8b49c",
                "sha256": "8d6e5b2236449a6ba49502a5cfe6c22471368df48a9ec82b816105e5610bc4b5"
            },
            "downloads": -1,
            "filename": "wordops-3.20.0.tar.gz",
            "has_sig": false,
            "md5_digest": "a9395c12e360aabaa766c18b04a8b49c",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.4",
            "size": 155356,
            "upload_time": "2024-04-21T20:49:07",
            "upload_time_iso_8601": "2024-04-21T20:49:07.976772Z",
            "url": "https://files.pythonhosted.org/packages/f9/20/77a7de384fa18ca34b701741f6fe67ceab60eaa260fab1166c7f874ad7f3/wordops-3.20.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-21 20:49:07",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "WordOps",
    "github_project": "WordOps",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "cement",
            "specs": [
                [
                    "==",
                    "2.10.14"
                ]
            ]
        },
        {
            "name": "pynginxconfig",
            "specs": [
                [
                    "==",
                    "0.3.4"
                ]
            ]
        },
        {
            "name": "PyMySQL",
            "specs": [
                [
                    "==",
                    "1.1.0"
                ]
            ]
        },
        {
            "name": "psutil",
            "specs": [
                [
                    "==",
                    "5.9.8"
                ]
            ]
        },
        {
            "name": "sh",
            "specs": [
                [
                    "==",
                    "2.0.6"
                ]
            ]
        },
        {
            "name": "SQLAlchemy",
            "specs": [
                [
                    "==",
                    "1.4.52"
                ]
            ]
        },
        {
            "name": "requests",
            "specs": [
                [
                    ">=",
                    "2.20.0"
                ]
            ]
        },
        {
            "name": "distro",
            "specs": [
                [
                    "==",
                    "1.9.0"
                ]
            ]
        },
        {
            "name": "argcomplete",
            "specs": [
                [
                    "==",
                    "3.3.0"
                ]
            ]
        },
        {
            "name": "colorlog",
            "specs": [
                [
                    "==",
                    "6.8.2"
                ]
            ]
        }
    ],
    "lcname": "wordops"
}
        
Elapsed time: 0.25308s