Giter Site home page Giter Site logo

python-development-environment's Introduction

Python Development Environment

Summary

This is a repository to create a basic development environment for coding in Python.

Poetry is used to manage Python dependencies for your application (boto3, requests, etc). You can specify groups of dependencies that are needed to run different tools in the repo. Typically, the groups are packages necessary to run a production application as well as simplify the development process (code formatters and linters).

At the top of the repo is the pyproject.toml file.

Commands

poetry install

will create a virtual environment .venv and install the dependencies according to the poetry.lock file. By default, this installs all depency groups that are specified in the pyproject.tmol file. Once installed, a python executable, as well as tools such as black and isort, can be found in .venv/bin. This will create a new poetry.lock file if one does not already exist.

Warning

Never manually update a poetry.lock file! If there is a problem with this file, delete it and rerun the command, poetry install and a new file will be generated.

poetry run python script.py

The virtual environment can be applied to any of the executed scripts by simply adding the prefix poetry run.

poetry updaate

will do the following

  1. review the version of the restrictions in the pyproject.toml file.
  2. resolve the latest compatible verions and update the poetry.lock file.
  3. apply any changes to the virtual environment.

python-development-environment's People

Contributors

stardustsuperwizard avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.