dxpy 0.394.0
pip install dxpy
Released:
DNAnexus Platform API bindings for Python
Navigation
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: Apache Software License (Apache Software License)
- Author: Aleksandra Zalcman, Andrey Kislyuk, Anurag Biyani, Geet Duggal, Katherine Lai, Kurt Jensen, Marek Hrvol, Ohad Rodeh, Phil Sung
- Requires: Python >=3.8
Classifiers
- Environment
- Intended Audience
- License
- Operating System
- Programming Language
- Topic
Project description
dxpy: DNAnexus Python API
Building
From the dx-toolkit root directory:
python3 -m pip install -e src/python
Debugging
Set the _DX_DEBUG
environment variable to a positive integer before
running a dxpy-based program (such as dx
) to display the input and
output of each API call. Supported values are 1, 2, and 3 with
increasing numbers producing successively more verbose output.
Example:
$ _DX_DEBUG=1 dx ls
Debugging inside the IDE (PyCharm)
To be able to debug dx-toolkit (dx commands) directly in the IDE, 'Run/Debug Configurations' needs to be changed.
- Go to Run → Edit Configurations...
- Add New Configuration (Python)
- Change script to module (dxpy.scripts.dx)
- To Script parameters field write dx command you want to run (eg 'ls' runs 'dx ls')
- Apply and OK (now it is possible to start debugging via main() function in dx.py)
Python coding style
- Conform to PEP-8.
- Relax the line length requirement to 120 characters per line, where you judge readability not to be compromised.
- Relax other PEP-8 requirements at your discretion if it simplifies code or is needed to follow conventions established elsewhere at DNAnexus.
- Document your code in a format usable by Sphinx Autodoc.
- Run
pylint -E
on your code before checking it in. - Do not introduce module import-time side effects.
-
Do not add module-level attributes into the API unless you are absolutely certain they will remain constants. For example, do not declare an attribute
dxpy.foo
(dxpy._foo
is OK), or any other non-private variable in the global scope of any module. This is because unless the value is a constant, it may need to be updated by an initialization method, which may need to run lazily to avoid side effects at module load time. Instead, use accessor methods that can perform the updates at call time:_foo = None def get_foo(): initialize() return _foo
-
Other useful resources:
Python version compatibility
dxpy is supported on Python 3 (3.8+)
Convention for Python scripts that are also modules
Some scripts, such as format converters, are useful both as standalone executables and as importable modules.
We have the following convention for these scripts:
-
Install the script into
src/python/dxpy/scripts
with a name likedx_useful_script.py
. This will allow importing withimport dxpy.scripts.dx_useful_script
. -
Include in the script a top-level function called
main()
, which should be the entry point processor, and conclude the script with the following stanza:if __name__ == '__main__': main()
-
The dxpy installation process (invoked through
setup.py
or withmake -C src python
at the top level) will find the script and install a launcher for it into the executable path automatically. This is done using theentry_points
facility of setuptools/distribute.- Note: the install script will replace underscores in the name of your module with dashes in the name of the launcher script.
-
Typically, when called on the command line, main() will first parse the command line arguments (sys.argv). However, when imported as a module, the arguments need to instead be passed as inputs to a function. The following is a suggestion for how to accommodate both styles simultaneously with just one entry point (
main
):def main(**kwargs): if len(kwargs) == 0: kwargs = vars(arg_parser.parse_args(sys.argv[1:])) ... if __name__ == '__main__': main()
Project details
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: Apache Software License (Apache Software License)
- Author: Aleksandra Zalcman, Andrey Kislyuk, Anurag Biyani, Geet Duggal, Katherine Lai, Kurt Jensen, Marek Hrvol, Ohad Rodeh, Phil Sung
- Requires: Python >=3.8
Classifiers
- Environment
- Intended Audience
- License
- Operating System
- Programming Language
- Topic
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file dxpy-0.394.0.tar.gz
.
File metadata
- Download URL: dxpy-0.394.0.tar.gz
- Upload date:
- Size: 618.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6ba10417b0907f80c2ef1049f6799014cd8fce69654cbd8d3dcc2823d30f7892 |
|
MD5 | 098a2814b656d70c823829bc97cd23da |
|
BLAKE2b-256 | a3012a986db11c0668393c19cbbbef70ed54b8f6172bc825b9228adfd38417cf |