Name | docassemblecli3 JSON |
Version |
0.2.1
JSON |
| download |
home_page | None |
Summary | Multi-platform CLI utility for working with docassemble packages and servers |
upload_time | 2024-12-08 02:54:45 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.8 |
license | None |
keywords |
docassemble
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# docassemblecli3
`docassemblecli3` provides command-line utilities for interacting with
[docassemble] servers. This package is meant to be installed on your local
machine, not on a [docassemble] server.
This project is based on [docassemblecli] by Jonathan Pyle Copyright (c) 2021
released under the MIT License.
## Differences from [docassemblecli]
- Requires Python 3.
- Adds multi-platform file monitoring, a.k.a. `dawatchinstall` works on Windows
and without requiring fswatch.
- Adds queueing and batching to improve file monitoring and installation
(improves multi-file saving, late file metadata changes, and avoids server
restart induced timeouts).
- Improves invocation, requiring less configuration of PATH and scripts to work,
especially in Windows (and does not conflict with [docassemblecli]).
- Improved command structure and option flags (so please read this documentation
or utilize the `--help` or `-h` options in the terminal).
## Prerequisites
This program should only require that you have Python 3.8 installed on your
computer, but it was developed and tested with Python 3.12. Please report any
bugs or errors you experience.
## Installation
To install `docassemblecli3` from PyPI, run:
pip install docassemblecli3
## Usage
`docassemblecli3` be more easily be run by typing `da`.
All of the command options, such as showing the "help", have both long `--help`
and short `-h` versions. This documentation will always use the long version,
but feel free to use whichever you prefer.
Usage: da [OPTIONS] COMMAND [ARGS]...
Commands for interacting with docassemble servers.
Options:
-C, --color / -N, --no-color Overrides color auto-detection in interactive
terminals.
-h, --help Show this message and exit.
Commands:
config Manage servers in a docassemblecli config file.
create Create an empty docassemble add-on package.
install Install a docassemble package on a docassemble server.
watch Watch a package directory and `install` any changes.
### create
`docassemblecli3` provides a command-line utility called `create`, which
creates an empty **docassemble** add-on package.
To create a package called `docassemble-foobar` in the current directory, run:
da create --package foobar
You will be asked some questions about the package and the developer. This
information is necessary because it goes into the `setup.py`, `README.md`, and
`LICENSE` files of the package. If you do not yet know what answers to give,
just press enter, and you can edit these files later.
When the command exits, you will find a directory in the current directory
called `docassemble-foobar` containing a shell of a **docassemble** add-on
package.
You can run `da create --help` to get more information about how `create`
works:
Usage: da create [OPTIONS]
Create an empty docassemble add-on package.
Options:
--package PACKAGE Name of the package you want to create
--developer-name NAME Name of the developer of the package
--developer-email EMAIL Email of the developer of the package
--description DESCRIPTION Description of package
--url URL URL of package
--license LICENSE License of package
--version VERSION Version number of package
--output OUTPUT Output directory in which to create the package
-h, --help Show this message and exit.
### install
`docassemblecli3` provides a command-line utility called `install`, which
installs a Python package on a remote server using files on your local computer.
For example, suppose that you wrote a docassemble extension package called
`docassemble.foobar` using the **docassemble** Playground. In the Playground,
you can download the package as a ZIP file called `docassemble-foobar.zip`. You
can then unpack this ZIP file and you will see a directory called
`docassemble-foobar`. Inside of this directory there is a directory called
`docassemble` and a `setup.py` file.
From the command line, use `cd` to navigate into the directory
`docassemble-foobar`. Then run:
da install
or you can specify the directory of the package you want to install (if
`docassemble-foobar` is in your current directory):
da install --directory docassemble-foobar
The first time you run this command, it will ask you for the URL of your
**docassemble** server and the [API key] of a user with `admin` or `developer`
privileges.
It will look something like this:
$ da install --directory docassemble-foobar
Base URL of your docassemble server (e.g., https://da.example.com): https://da.example.com
API key of admin or developer user on https://da.example.com: H3PWMKJOIVAXL4PWUJH3HG7EKPFU5GYT
Testing the URL and API key...
Success!
Configuration saved: ~\.docassemblecli
[2024-08-16 18:10:18] Installing...
Server will restart.
Waiting for package to install...
Waiting for server...
[2024-08-16 18:11:43] Installed.
The next time you run `da install`, it will not ask you for the URL and API key.
You can run `da install --help` to get more information about how `install`
works:
Usage: da install [OPTIONS]
Install a docassemble package on a docassemble server.
`da install` tries to get API info from the --api option first (if used), then
from the first server listed in the ~/.docassemblecli file if it exists
(unless the --config option is used), then it tries to use environmental
variables, and finally it prompts the user directly.
Options:
-a, --api <URL TEXT>... URL of the docassemble server and API key of
the user (admin or developer)
-s, --server SERVER Specify a server from the config file
-d, --directory PATH Specify package directory [default: current
directory]
-c, --config PATH Specify the config file to use or leave it
blank to skip using any config file [default:
C:\Users\jacka\.docassemblecli]
-p, --playground (PROJECT) Install into the default Playground or into the
specified Playground project.
-r, --restart [yes|no|auto] On package install: yes, force a restart | no,
do not restart | auto, only restart if the
package has any .py files or if there are
dependencies to be installed [default: auto]
-h, --help Show this message and exit.
For example, you might want to pass the URL and API key in the command itself:
da install --api https://da.example.com H3PWMKJOIVAXL4PWUJH3HG7EKPFU5GYT --directory docassemble-foobar
If you have more than one server, you can utilize one of the `config` tools `add`:
da config add
to add an additional server configuration to store in your `.docassemblecli`
config file. Then you can select the server using `--server`:
da install --server da.example.com --directory docassemble-foobar
If you do not specify a `--server`, the first server indicated in your
`.docassemblecli` file will be used.
The `--restart no` option can be used when your **docassemble** installation
only uses one server (which is typical) and you are not modifying .py files. In
this case, it is not necessary for the Python web application to restart after
the package has been installed. This will cause `da install` to return a few
seconds faster than otherwise.
The `--restart yes` option should be used when you want to make sure that
**docassemble** restarts the Python web application after the package is
installed. By default, `da install` will avoid restarting the server if the
package has no module files and all of its dependencies (if any) are installed.
By default, `da install` installs a package on the server. If you want to install
a package into your Playground, you can use the `--playground` option.
da install --playground --directory docassemble-foobar
If you want to install into a particular project in your Playground, indicate
the project after the `--playground` option, for example project "testing".
da install --playground testing --directory docassemble-foobar
Installing into the Playground with `--playground` is faster than installing an
actual Python package because it does not need to run `pip`.
If your development installation uses more than one server, it is safe to run
`da install --playground` with `--restart no` if you are only changing YAML files,
because Playground YAML files are stored in cloud storage and will thus be
available immediately to all servers.
### watch
You can use `watch` to automatically `install` your docassemble package every
time a file in your package directory is changed.
For example, if you run:
da watch --playground testing --directory docassemble-foobar
This will monitor the `docassemble-foobar` directory, and if any non-`.py` file
changes, it will run:
da install --playground testing --restart no --directory docassemble-foobar
If a `.py` file is changed, however, it will run
da install --playground testing --restart yes --directory docassemble-foobar
With `da watch --playground` constantly running, soon after you save a YAML file
on your local machine, it will very quickly be available for testing on your
server.
To exit `watch`, press **Ctrl + c**.
You can run `da watch --help` to get more information about how `watch`
works:
Usage: da watch [OPTIONS]
Watch a package directory and `install` any changes. Press Ctrl + c to exit.
Options:
-d, --directory PATH Specify package directory [default: current
directory]
-c, --config PATH Specify the config file to use or leave it
blank to skip using any config file [default:
C:\Users\jacka\.docassemblecli]
-p, --playground (PROJECT) Install into the default Playground or into the
specified Playground project.
-a, --api <URL TEXT>... URL of the docassemble server and API key of
the user (admin or developer)
-s, --server SERVER Specify a server from the config file
-r, --restart [yes|no|auto] On package install: yes, force a restart | no,
do not restart | auto, only restart if any .py
files were changed [default: auto]
-b, --buffer SECONDS (On server restart only) Set the buffer (wait
time) between a file change event and package
installation. If you are experiencing multiple
installs back-to-back, try increasing this
value. [default: 3]
-h, --help Show this message and exit.
Your package's `.gitignore` file is also used by `watch` to decide which files
to ignore. If you don't have a `.gitignore` file in your package, then the
default `.gitignore` that `create` makes is used instead. The `.git/` directory
and `.gitignore` file are both also ignored by `watch` (note: don't add them to
your `.gitignore`).
#### watchdog
The `watch` command now depends on the
[watchdog](https://pypi.org/project/watchdog/) Python package. This allows
`watch` to work on the following platforms that [watchdog] supports:
- Linux 2.6 (inotify)
- macOS (FSEvents, kqueue)
- FreeBSD/BSD (kqueue)
- Windows (ReadDirectoryChangesW with I/O completion ports;
ReadDirectoryChangesW worker threads)
- OS-independent (polling the disk for directory snapshots and comparing them
periodically; slow and not recommended)
An additional note from [watchdog]'s documentation:
Note that when using watchdog with kqueue (macOS and BSD), you need the number
of file descriptors allowed to be opened by programs running on your system to
be increased to more than the number of files that you will be monitoring. The
easiest way to do that is to edit your ~/.profile file and add a line similar
to:
```bash
ulimit -n 1024
```
This is an inherent problem with kqueue because it uses file descriptors to
monitor files. That plus the enormous amount of bookkeeping that watchdog needs
to do in order to monitor file descriptors just makes this a painful way to
monitor files and directories. In essence, kqueue is not a very scalable way to
monitor a deeply nested directory of files and directories with a large number
of files.
### config
These commands are for managing your saved servers and config file. They are
easy to use and will prompt you as necessary.
Usage: da config [OPTIONS] COMMAND [ARGS]...
Manage servers in a docassemblecli config file.
Options:
-h, --help Show this message and exit.
Commands:
add Add a server to the config file.
display List the servers in the config file.
new Create a new config file.
remove Remove a server from the config file.
test Test the URL and API key.
## How it works
The `install` command is just a simple Python script that creates a ZIP file and
uploads it through the **docassemble** API. Feel free to copy the code and write
your own scripts to save yourself time. (That's how this version started!)
## Contributing
Pull requests are welcome. For major changes, please open an issue first
to discuss what you would like to change.
Please make sure to update tests as appropriate.
## License
[MIT](https://choosealicense.com/licenses/mit/)
[docassemble]: https://docassemble.org
[docassemblecli]: https://github.com/jhpyle/docassemblecli/
[API key]: https://docassemble.org/docs/api.html#manage_api
[watchdog]: https://pypi.org/project/watchdog/
Raw data
{
"_id": null,
"home_page": null,
"name": "docassemblecli3",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": "docassemble",
"author": null,
"author_email": "Jack Adamson <jackadamson@gmail.com>, Jonathan Pyle <jhpyle@gmail.com>",
"download_url": "https://files.pythonhosted.org/packages/9b/44/ea0ede124d02e8db53300bec795c4f467991961f73d7d746a74bcd4117b1/docassemblecli3-0.2.1.tar.gz",
"platform": null,
"description": "# docassemblecli3\n\n`docassemblecli3` provides command-line utilities for interacting with\n[docassemble] servers. This package is meant to be installed on your local\nmachine, not on a [docassemble] server.\n\nThis project is based on [docassemblecli] by Jonathan Pyle Copyright (c) 2021\nreleased under the MIT License.\n\n## Differences from [docassemblecli]\n\n- Requires Python 3.\n- Adds multi-platform file monitoring, a.k.a. `dawatchinstall` works on Windows\n and without requiring fswatch.\n- Adds queueing and batching to improve file monitoring and installation\n (improves multi-file saving, late file metadata changes, and avoids server\n restart induced timeouts).\n- Improves invocation, requiring less configuration of PATH and scripts to work,\n especially in Windows (and does not conflict with [docassemblecli]).\n- Improved command structure and option flags (so please read this documentation\n or utilize the `--help` or `-h` options in the terminal).\n\n## Prerequisites\n\nThis program should only require that you have Python 3.8 installed on your\ncomputer, but it was developed and tested with Python 3.12. Please report any\nbugs or errors you experience.\n\n## Installation\n\nTo install `docassemblecli3` from PyPI, run:\n\n pip install docassemblecli3\n\n## Usage\n\n`docassemblecli3` be more easily be run by typing `da`.\n\nAll of the command options, such as showing the \"help\", have both long `--help`\nand short `-h` versions. This documentation will always use the long version,\nbut feel free to use whichever you prefer.\n\n Usage: da [OPTIONS] COMMAND [ARGS]...\n\n Commands for interacting with docassemble servers.\n\n Options:\n -C, --color / -N, --no-color Overrides color auto-detection in interactive\n terminals.\n -h, --help Show this message and exit.\n\n Commands:\n config Manage servers in a docassemblecli config file.\n create Create an empty docassemble add-on package.\n install Install a docassemble package on a docassemble server.\n watch Watch a package directory and `install` any changes.\n\n### create\n\n`docassemblecli3` provides a command-line utility called `create`, which\ncreates an empty **docassemble** add-on package.\n\nTo create a package called `docassemble-foobar` in the current directory, run:\n\n da create --package foobar\n\nYou will be asked some questions about the package and the developer. This\ninformation is necessary because it goes into the `setup.py`, `README.md`, and\n`LICENSE` files of the package. If you do not yet know what answers to give,\njust press enter, and you can edit these files later.\n\nWhen the command exits, you will find a directory in the current directory\ncalled `docassemble-foobar` containing a shell of a **docassemble** add-on\npackage.\n\nYou can run `da create --help` to get more information about how `create`\nworks:\n\n Usage: da create [OPTIONS]\n\n Create an empty docassemble add-on package.\n\n Options:\n --package PACKAGE Name of the package you want to create\n --developer-name NAME Name of the developer of the package\n --developer-email EMAIL Email of the developer of the package\n --description DESCRIPTION Description of package\n --url URL URL of package\n --license LICENSE License of package\n --version VERSION Version number of package\n --output OUTPUT Output directory in which to create the package\n -h, --help Show this message and exit.\n\n### install\n\n`docassemblecli3` provides a command-line utility called `install`, which\ninstalls a Python package on a remote server using files on your local computer.\n\nFor example, suppose that you wrote a docassemble extension package called\n`docassemble.foobar` using the **docassemble** Playground. In the Playground,\nyou can download the package as a ZIP file called `docassemble-foobar.zip`. You\ncan then unpack this ZIP file and you will see a directory called\n`docassemble-foobar`. Inside of this directory there is a directory called\n`docassemble` and a `setup.py` file.\n\nFrom the command line, use `cd` to navigate into the directory\n`docassemble-foobar`. Then run:\n\n da install\n\nor you can specify the directory of the package you want to install (if\n`docassemble-foobar` is in your current directory):\n\n da install --directory docassemble-foobar\n\nThe first time you run this command, it will ask you for the URL of your\n**docassemble** server and the [API key] of a user with `admin` or `developer`\nprivileges.\n\nIt will look something like this:\n\n $ da install --directory docassemble-foobar\n Base URL of your docassemble server (e.g., https://da.example.com): https://da.example.com\n API key of admin or developer user on https://da.example.com: H3PWMKJOIVAXL4PWUJH3HG7EKPFU5GYT\n Testing the URL and API key...\n Success!\n Configuration saved: ~\\.docassemblecli\n [2024-08-16 18:10:18] Installing...\n Server will restart.\n Waiting for package to install...\n Waiting for server...\n [2024-08-16 18:11:43] Installed.\n\nThe next time you run `da install`, it will not ask you for the URL and API key.\n\nYou can run `da install --help` to get more information about how `install`\nworks:\n\n Usage: da install [OPTIONS]\n\n Install a docassemble package on a docassemble server.\n\n `da install` tries to get API info from the --api option first (if used), then\n from the first server listed in the ~/.docassemblecli file if it exists\n (unless the --config option is used), then it tries to use environmental\n variables, and finally it prompts the user directly.\n\n Options:\n -a, --api <URL TEXT>... URL of the docassemble server and API key of\n the user (admin or developer)\n -s, --server SERVER Specify a server from the config file\n -d, --directory PATH Specify package directory [default: current\n directory]\n -c, --config PATH Specify the config file to use or leave it\n blank to skip using any config file [default:\n C:\\Users\\jacka\\.docassemblecli]\n -p, --playground (PROJECT) Install into the default Playground or into the\n specified Playground project.\n -r, --restart [yes|no|auto] On package install: yes, force a restart | no,\n do not restart | auto, only restart if the\n package has any .py files or if there are\n dependencies to be installed [default: auto]\n -h, --help Show this message and exit.\n\nFor example, you might want to pass the URL and API key in the command itself:\n\n da install --api https://da.example.com H3PWMKJOIVAXL4PWUJH3HG7EKPFU5GYT --directory docassemble-foobar\n\nIf you have more than one server, you can utilize one of the `config` tools `add`:\n\n da config add\n\nto add an additional server configuration to store in your `.docassemblecli`\nconfig file. Then you can select the server using `--server`:\n\n da install --server da.example.com --directory docassemble-foobar\n\nIf you do not specify a `--server`, the first server indicated in your\n`.docassemblecli` file will be used.\n\nThe `--restart no` option can be used when your **docassemble** installation\nonly uses one server (which is typical) and you are not modifying .py files. In\nthis case, it is not necessary for the Python web application to restart after\nthe package has been installed. This will cause `da install` to return a few\nseconds faster than otherwise.\n\nThe `--restart yes` option should be used when you want to make sure that\n**docassemble** restarts the Python web application after the package is\ninstalled. By default, `da install` will avoid restarting the server if the\npackage has no module files and all of its dependencies (if any) are installed.\n\nBy default, `da install` installs a package on the server. If you want to install\na package into your Playground, you can use the `--playground` option.\n\n da install --playground --directory docassemble-foobar\n\nIf you want to install into a particular project in your Playground, indicate\nthe project after the `--playground` option, for example project \"testing\".\n\n da install --playground testing --directory docassemble-foobar\n\nInstalling into the Playground with `--playground` is faster than installing an\nactual Python package because it does not need to run `pip`.\n\nIf your development installation uses more than one server, it is safe to run\n`da install --playground` with `--restart no` if you are only changing YAML files,\nbecause Playground YAML files are stored in cloud storage and will thus be\navailable immediately to all servers.\n\n### watch\n\nYou can use `watch` to automatically `install` your docassemble package every\ntime a file in your package directory is changed.\n\nFor example, if you run:\n\n da watch --playground testing --directory docassemble-foobar\n\nThis will monitor the `docassemble-foobar` directory, and if any non-`.py` file\nchanges, it will run:\n\n da install --playground testing --restart no --directory docassemble-foobar\n\nIf a `.py` file is changed, however, it will run\n\n da install --playground testing --restart yes --directory docassemble-foobar\n\nWith `da watch --playground` constantly running, soon after you save a YAML file\non your local machine, it will very quickly be available for testing on your\nserver.\n\nTo exit `watch`, press **Ctrl + c**.\n\nYou can run `da watch --help` to get more information about how `watch`\nworks:\n\n Usage: da watch [OPTIONS]\n\n Watch a package directory and `install` any changes. Press Ctrl + c to exit.\n\n Options:\n -d, --directory PATH Specify package directory [default: current\n directory]\n -c, --config PATH Specify the config file to use or leave it\n blank to skip using any config file [default:\n C:\\Users\\jacka\\.docassemblecli]\n -p, --playground (PROJECT) Install into the default Playground or into the\n specified Playground project.\n -a, --api <URL TEXT>... URL of the docassemble server and API key of\n the user (admin or developer)\n -s, --server SERVER Specify a server from the config file\n -r, --restart [yes|no|auto] On package install: yes, force a restart | no,\n do not restart | auto, only restart if any .py\n files were changed [default: auto]\n -b, --buffer SECONDS (On server restart only) Set the buffer (wait\n time) between a file change event and package\n installation. If you are experiencing multiple\n installs back-to-back, try increasing this\n value. [default: 3]\n -h, --help Show this message and exit.\n\nYour package's `.gitignore` file is also used by `watch` to decide which files\nto ignore. If you don't have a `.gitignore` file in your package, then the\ndefault `.gitignore` that `create` makes is used instead. The `.git/` directory\nand `.gitignore` file are both also ignored by `watch` (note: don't add them to\nyour `.gitignore`).\n\n#### watchdog\n\nThe `watch` command now depends on the\n[watchdog](https://pypi.org/project/watchdog/) Python package. This allows\n`watch` to work on the following platforms that [watchdog] supports:\n\n- Linux 2.6 (inotify)\n- macOS (FSEvents, kqueue)\n- FreeBSD/BSD (kqueue)\n- Windows (ReadDirectoryChangesW with I/O completion ports;\n ReadDirectoryChangesW worker threads)\n- OS-independent (polling the disk for directory snapshots and comparing them\n periodically; slow and not recommended)\n\nAn additional note from [watchdog]'s documentation:\n\nNote that when using watchdog with kqueue (macOS and BSD), you need the number\nof file descriptors allowed to be opened by programs running on your system to\nbe increased to more than the number of files that you will be monitoring. The\neasiest way to do that is to edit your ~/.profile file and add a line similar\nto:\n\n```bash\nulimit -n 1024\n```\n\nThis is an inherent problem with kqueue because it uses file descriptors to\nmonitor files. That plus the enormous amount of bookkeeping that watchdog needs\nto do in order to monitor file descriptors just makes this a painful way to\nmonitor files and directories. In essence, kqueue is not a very scalable way to\nmonitor a deeply nested directory of files and directories with a large number\nof files.\n\n### config\n\nThese commands are for managing your saved servers and config file. They are\neasy to use and will prompt you as necessary.\n\n Usage: da config [OPTIONS] COMMAND [ARGS]...\n\n Manage servers in a docassemblecli config file.\n\n Options:\n -h, --help Show this message and exit.\n\n Commands:\n add Add a server to the config file.\n display List the servers in the config file.\n new Create a new config file.\n remove Remove a server from the config file.\n test Test the URL and API key.\n\n## How it works\n\nThe `install` command is just a simple Python script that creates a ZIP file and\nuploads it through the **docassemble** API. Feel free to copy the code and write\nyour own scripts to save yourself time. (That's how this version started!)\n\n## Contributing\n\nPull requests are welcome. For major changes, please open an issue first\nto discuss what you would like to change.\n\nPlease make sure to update tests as appropriate.\n\n## License\n\n[MIT](https://choosealicense.com/licenses/mit/)\n\n[docassemble]: https://docassemble.org\n[docassemblecli]: https://github.com/jhpyle/docassemblecli/\n[API key]: https://docassemble.org/docs/api.html#manage_api\n[watchdog]: https://pypi.org/project/watchdog/\n",
"bugtrack_url": null,
"license": null,
"summary": "Multi-platform CLI utility for working with docassemble packages and servers",
"version": "0.2.1",
"project_urls": {
"Bug Tracker": "https://github.com/jpagh/docassemblecli3/issues",
"Homepage": "https://github.com/jpagh/docassemblecli3"
},
"split_keywords": [
"docassemble"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "8d9e9514c15b1e338e4a7a1cd8c7eb9ffb949abb4264fc58ec3b8b2838768d65",
"md5": "ecaa09dbc08349f3d76196be3f396966",
"sha256": "6ea563fe70b245dadf2af07372d65b95f22dbd7361c69f25468d9136910be72f"
},
"downloads": -1,
"filename": "docassemblecli3-0.2.1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "ecaa09dbc08349f3d76196be3f396966",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 17541,
"upload_time": "2024-12-08T02:54:44",
"upload_time_iso_8601": "2024-12-08T02:54:44.929101Z",
"url": "https://files.pythonhosted.org/packages/8d/9e/9514c15b1e338e4a7a1cd8c7eb9ffb949abb4264fc58ec3b8b2838768d65/docassemblecli3-0.2.1-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9b44ea0ede124d02e8db53300bec795c4f467991961f73d7d746a74bcd4117b1",
"md5": "0a9e20fefee5359c50bbd67f607c5f82",
"sha256": "5c963c20f869a7ef92bf846d8568df98508666990d876e11f9e5e8b77f78995e"
},
"downloads": -1,
"filename": "docassemblecli3-0.2.1.tar.gz",
"has_sig": false,
"md5_digest": "0a9e20fefee5359c50bbd67f607c5f82",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 20008,
"upload_time": "2024-12-08T02:54:45",
"upload_time_iso_8601": "2024-12-08T02:54:45.820264Z",
"url": "https://files.pythonhosted.org/packages/9b/44/ea0ede124d02e8db53300bec795c4f467991961f73d7d746a74bcd4117b1/docassemblecli3-0.2.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-12-08 02:54:45",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "jpagh",
"github_project": "docassemblecli3",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "docassemblecli3"
}