Rye Python Project Management Solution Demo

Поделиться
HTML-код
  • Опубликовано: 20 окт 2024
  • This is a quick demo for my rye project management tool for Python. For more information see github.com/mit...

Комментарии • 21

  • @ArminRonacher
    @ArminRonacher  Год назад +4

    Thank you for all the feedback. I am not yet decided what to do with Rye, but for now I put up a website with some documentation around it, and there is now a simple way available to install it. rye-up.com/

  • @abdulniyas1657
    @abdulniyas1657 Год назад +11

    Wow, A Cargo like tool for Python! It's one of the tools I wished the Python ecosystem had. Thank you for making this possible!

  • @thedanielfrg
    @thedanielfrg Год назад +4

    Extremely useful. Thank you for sharing this, even without maintenance it going to be useful.
    I am going to replace a bunch of bash scripts to do some of these tasks!

  • @sohangchopra6478
    @sohangchopra6478 Год назад +9

    Wow - looks really good! I esp. like that you can switch to different Python versions so easily! Only wish it was also available on Windows 😢

  • @danny.goldstein
    @danny.goldstein Год назад

    This is really awesome! The python ecosystem needs a tool like this

  • @michaelhoffmann2891
    @michaelhoffmann2891 Год назад +1

    Came here from the TheRegister article. Watching the video, it seemed more akin to something like "pyenv", which I've now used for years (and like, unlike Conda). What's missing is: how does this help me package and distribute? How will it integrate with my dev environment (including IDEs, such as PyCharm or VS Code) and my build pipelines? How will it play nice with (off the top of my head, because I had to use it just recently) AWS CDK, which has its own "init" mechanism?

  • @EndikaMT
    @EndikaMT 11 месяцев назад

    It is really one of the best projects tbh currently in python. Python is amazing but pip and package management is a completely nightmare. Thanks!

  • @M3MYS3LF1979
    @M3MYS3LF1979 Год назад +2

    Gonna try this out on a monorepo at work that poetry chokes on. Definitely interested in better python tooling

  • @ac130kz
    @ac130kz Год назад

    thank you so much for making Python world better again, is it possible to use poetry-like syntax for dependencies? I know that it's a standard, but these strings are so weird

  • @Onkoe
    @Onkoe Год назад

    This is incredible! Thank you! :)

  • @Kennethlumor
    @Kennethlumor 11 месяцев назад

    Sir please can i use flask to develop ecommerce web, because I learn flask cannot handle large amounts of traphic. So is only django that can be use to develop it

  • @ASJ-95
    @ASJ-95 Год назад +6

    Nice wok!

  • @KlausSchaefers
    @KlausSchaefers 9 месяцев назад

    Nice!!!

  • @JOHNSMITH-ve3rq
    @JOHNSMITH-ve3rq Год назад

    so how would this have otherwise been done??

  • @coenraadloubser5768
    @coenraadloubser5768 Год назад

    Thanks for sharing

  • @lqhuy
    @lqhuy Год назад

    awesome !!!

  • @aflous
    @aflous Год назад

    Why would be this better than poetry?

    • @ArminRonacher
      @ArminRonacher  Год назад +4

      It manages Python installations for you.

  • @bryanthe1358
    @bryanthe1358 Год назад

    cool!

  • @jfk1337
    @jfk1337 Год назад

    You could do the dev-dependencies with [project.optional-dependencies] and then a dev key

  • @mirozbiro
    @mirozbiro Год назад

    1. to make this work, it is needed to 'export PATH=$PATH:~/.rye/shims' 2. it is not clear to me, how to add a script ([ project.scripts] ), I can just see there is some kind of local install (pip -e .); The question will arise with security and updates of pythons - who is responsible? Things also take quite a time, in comparison, any change with pip -e . is immediate, here, I dont know. Every sync takes 8 secs.? Thank you