Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Popular Words: [xss] テスト %27 test

Results 21 - 30 of 47 for host:python-poetry.org (0.02 sec)

  1. FAQ | main | Documentation | Poetry - Python de...

    FAQ Why is the dependency resolution process slow? While the dependency resolver at the heart of Poetry is highly optimized and should be fast enough for most cases, with certain sets of dependencies it can take time to find a valid solution. This is due to the fact that not all libraries on PyPI have properly declared their metadata and, as such, they are not available via the PyPI JSON API. At this point, Poetry has no choice but to download the packages and inspect them to get the necessary information. This is an expensive operation, both in bandwidth and time, which is why it seems this is a long process.
    python-poetry.org/docs/main/faq/ Similar Results (1)
    Registered: Mon Mar 31 09:27:38 UTC 2025
    - Last Modified: Mon Mar 31 09:27:38 UTC 2025
    - 101.7K bytes
    - Viewed (0)
  2. Commands | 1.8 | Documentation | Poetry - Pytho...

    Commands You’ve already learned how to use the command-line interface to do some things. This chapter documents all the available commands. To get help from the command-line, simply call poetry to see the complete list of commands, then --help combined with any of those can give you more information. Global options --verbose (-v|vv|vvv): Increase the verbosity of messages: “-v” for normal output, “-vv” for more verbose output and “-vvv” for debug. --help (-h) : Display help information. --quiet (-q) : Do not output any message. --ansi: Force ANSI output. --no-ansi: Disable ANSI output. --version (-V): Display this application version. --no-interaction (-n): Do not ask any interactive question. --no-plugins: Disables plugins. --no-cache: Disables Poetry source caches. --directory=DIRECTORY (-C): The working directory for the Poetry command (defaults to the current working directory). new This command will help you kickstart your new Python project by creating a directory structure suitable for most projects.
    python-poetry.org/docs/1.8/cli/
    Registered: Mon Mar 31 09:25:48 UTC 2025
    - Last Modified: Mon Mar 31 04:40:22 UTC 2025
    - 116.8K bytes
    - Viewed (0)
  3. pre-commit hooks | 1.8 | Documentation | Poetry...

    pre-commit hooks pre-commit is a framework for building and running git hooks. See the official documentation for more information: pre-commit.com This document provides a list of available pre-commit hooks provided by Poetry. Note If you specify the args: for a hook in your .pre-commit-config.yaml, the defaults are overwritten. You must fully specify all arguments for your hook if you make use of args:. Note If the pyproject.toml file is not in the root directory, you can specify args: ["-C", "./subdirectory"]. poetry-check The poetry-check hook calls the poetry check command to make sure the poetry configuration does not get committed in a broken state.
    python-poetry.org/docs/1.8/pre-commit-hooks/
    Registered: Mon Mar 31 09:26:12 UTC 2025
    - Last Modified: Mon Mar 31 09:26:12 UTC 2025
    - 67.2K bytes
    - Viewed (0)
  4. Building extension modules | main | Documentati...

    Building Extension Modules Warning While this feature has been around since almost the beginning of the Poetry project and has needed minimal changes, it is still considered unstable. You can participate in the discussions about stabilizing this feature here. And as always, your contributions towards the goal of improving this feature are also welcome. Poetry allows a project developer to introduce support for, build and distribute native extensions within their project. In order to achieve this, at the highest level, the following steps are required.
    python-poetry.org/docs/main/building-extension-modules/ Similar Results (1)
    Registered: Mon Mar 31 09:27:12 UTC 2025
    - Last Modified: Mon Mar 31 09:27:12 UTC 2025
    - 100.1K bytes
    - Viewed (0)
  5. FAQ | 1.8 | Documentation | Poetry - Python dep...

    FAQ Why is the dependency resolution process slow? While the dependency resolver at the heart of Poetry is highly optimized and should be fast enough for most cases, with certain sets of dependencies it can take time to find a valid solution. This is due to the fact that not all libraries on PyPI have properly declared their metadata and, as such, they are not available via the PyPI JSON API. At this point, Poetry has no choice but to download the packages and inspect them to get the necessary information. This is an expensive operation, both in bandwidth and time, which is why it seems this is a long process.
    python-poetry.org/docs/1.8/faq/
    Registered: Mon Mar 31 09:26:34 UTC 2025
    - Last Modified: Mon Mar 31 09:26:34 UTC 2025
    - 73.9K bytes
    - Viewed (0)
  6. Community | 1.8 | Documentation | Poetry - Pyth...

    Community Badge For any projects using Poetry, you may add its official badge somewhere prominent like the README. Markdown [![Poetry](https://img.shields.io/endpoint?url=https://python-poetry.org/badge/v0.json)](https://python-poetry.org/) reStructuredText .. image:: https://img.shields.io/endpoint?url=https://python-poetry.org/badge/v0.json :alt: Poetry :target: https://python-poetry.org/
    python-poetry.org/docs/1.8/community/
    Registered: Mon Mar 31 09:26:31 UTC 2025
    - Last Modified: Mon Mar 31 09:26:31 UTC 2025
    - 54.1K bytes
    - Viewed (0)
  7. Repositories | main | Documentation | Poetry - ...

    Repositories Poetry supports the use of PyPI and private repositories for discovery of packages as well as for publishing your projects. By default, Poetry is configured to use the PyPI repository, for package installation and publishing. So, when you add dependencies to your project, Poetry will assume they are available on PyPI. This represents most cases and will likely be enough for most users. Private Repository Example Installing from private package sources By default, Poetry discovers and installs packages from PyPI. But, you want to install a dependency to your project for a simple API repository? Let’s do it.
    python-poetry.org/docs/main/repositories/ Similar Results (1)
    Registered: Mon Mar 31 09:27:23 UTC 2025
    - Last Modified: Mon Mar 31 09:27:23 UTC 2025
    - 89.6K bytes
    - Viewed (0)
  8. Managing environments | 1.8 | Documentation | P...

    Managing environments Poetry makes project environment isolation one of its core features. What this means is that it will always work isolated from your global Python installation. To achieve this, it will first check if it’s currently running inside a virtual environment. If it is, it will use it directly without creating a new one. But if it’s not, it will use one that it has already created or create a brand new one for you.
    python-poetry.org/docs/1.8/managing-environments/
    Registered: Mon Mar 31 09:25:55 UTC 2025
    - Last Modified: Mon Mar 31 09:25:55 UTC 2025
    - 61.4K bytes
    - Viewed (0)
  9. Basic usage | 1.8 | Documentation | Poetry - Py...

    Basic usage For the basic usage introduction we will be installing pendulum, a datetime library. If you have not yet installed Poetry, refer to the Introduction chapter. Project setup First, let’s create our new project, let’s call it poetry-demo: poetry new poetry-demo This will create the poetry-demo directory with the following content: poetry-demo ├── pyproject.toml ├── README.md ├── poetry_demo │ └── __init__.py └── tests └── __init__.py The pyproject.toml file is what is the most important here. This will orchestrate your project and its dependencies. For now, it looks like this:
    python-poetry.org/docs/1.8/basic-usage/
    Registered: Mon Mar 31 09:26:18 UTC 2025
    - Last Modified: Mon Mar 31 04:36:32 UTC 2025
    - 79.3K bytes
    - Viewed (0)
  10. Libraries | 1.8 | Documentation | Poetry - Pyth...

    Libraries This chapter will tell you how to make your library installable through Poetry. Versioning Poetry requires PEP 440-compliant versions for all projects. While Poetry does not enforce any release convention, it used to encourage the use of semantic versioning within the scope of PEP 440 and supports version constraints that are especially suitable for semver. Note As an example, 1.0.0-hotfix.1 is not compatible with PEP 440. You can instead choose to use 1.0.0-post1 or 1.0.0.post1. Lock file For your library, you may commit the poetry.lock file if you want to. This can help your team to always test against the same dependency versions. However, this lock file will not have any effect on other projects that depend on it. It only has an effect on the main project.
    python-poetry.org/docs/1.8/libraries/
    Registered: Mon Mar 31 09:26:25 UTC 2025
    - Last Modified: Mon Mar 31 04:40:41 UTC 2025
    - 58.3K bytes
    - Viewed (0)
Back to top