TGTGInsightinteligencia telegramLIVE / telegram public index
← Python Academy

TGINSIGHT SIMILAR POSTS

Buscar contenido similar

Canal fuente @python_academy · Post #1524 · 15 nov

Управление зависимостями в Python с Poetry Сегодня расскажем о мощном инструменте для эффективного управления зависимостями в ваших Python-проектах - Poetry. Poetry представляет собой интуитивно понятный инструмент, который упрощает создание, управление и публикацию пакетов, делая процесс разработки более прозрачным и удобным. Poetry - это инструмент для управления зависимостями и управления проектами в Python. Он предоставляет удобный способ определения зависимостей, настройки окружения и управления проектом с использованием файла pyproject.toml. Преимущества использования Poetry: - Простота: Poetry предоставляет простой и интуитивно понятный способ управления зависимостями, позволяя сосредоточиться на коде, а не на конфигурации. - Управление версиями: Poetry автоматически создает файлы requirements.txt и Pipfile.lock, обеспечивая точное управление версиями зависимостей. - Встроенная документация: Интегрированная поддержка документации и команд для упрощения публикации пакетов. - Интеграция с проектами: Poetry легко интегрируется в процессы разработки и может использоваться вместе с такими инструментами, как VSCode, PyCharm и другими. Как использовать Poetry? Для начала работы установите Poetry с помощью следующей команды: pip install poetry Инициализируйте новый проект: poetry new your_project Добавьте зависимости: poetry add package_name И Poetry автоматически обновит ваш файл pyproject.toml и управит зависимостями. #python#poetry#pyprojecttoml

Resultados

1,551 posts similares encontrados

Búsqueda global general

Writers Cafe

@WritersCafe · Post #510 · 22/08/2025, 17:45

"Silent Conversations" Describe an important, intimate conversation between two characters without them saying a single word to each other. Utilize body language, facial expressions, and actions instead. How you can write? Educational response: In the hushed afternoon light, Lila and Henry sat on the dock, legs tangling over the water. He looked at her, eyes carrying an unspoken sadness. She took his hands, strong yet trembling, as a single tear rolled down her against her warm olive skin. They watched the setting sun, understanding that after today, nothing would be the same. His thumb caressed the back of her hand — a silent promise, a goodbye. The sinking oranges and purples of the dusk were their comfort. Their silence was not empty, but full of unuttered confessions. How would you proceed writing on this(#prompt)? Accept the challenge, write & send in comments below or @WritersClub. #CreativeWriting#FictionWriting#WritingChallenge#Poetry Sharing is caring 🔥@WritersCafe

Writers Cafe

@WritersCafe · Post #504 · 13/08/2025, 22:24

"The Unexplained Experience" Write a supernatural encounter from the perspective of an inanimate object in an urban setting. Explore the object's sentiments, wishes, and views of the event. How you can write? If I had a voice, or thoughts, or desires, they would all pale in insignificance to the experience I bore witness to late one frosty night. Sat silently and unnoticed, my body, a rusty mailbox in the corner of 5th and Nash, bore the icy touch of winter. As the night wore on, I watched the shadow of a man appear, only the second living being to approach me since sunset. He seemed nervous, fidgeting constantly. He glanced furtively as he slipped a note into my mouth, not just a note, but something otherworldly, consumed in ethereal blue light. As quickly as he’d arrived, the man vanished, leaving me gently humming with an unidentifiable energy and holding an untold secret. The following day, a routine postman collected the cooled note, oblivious to the otherworldly encounter that had transpired. How would you proceed writing on this(#prompt)? Accept the challenge, write & send in comments below or @WritersClub. #CreativeWriting#FictionWriting#WritingChallenge#Poetry Sharing is caring 🔥@WritersCafe

Writers Cafe

@WritersCafe · Post #502 · 13/08/2025, 22:20

"Forgotten Dreams" Write a poem from the perspective of a childhood dream or ambition, abandoned and lost over the years. How might that forgotten dream feel? How you can write? "Once I was a spaceship, set for galaxies afar, a playground in your heart, now a forgotten star. Removed, unvoiced, yet waiting in the dark, your childhood goal, a ember's spark." How would you proceed writing on this(#prompt)? Accept the challenge, write & send in comments below or @WritersClub. #CreativeWriting#FictionWriting#WritingChallenge#Poetry Sharing is caring 🔥@WritersCafe

Writers Cafe

@WritersCafe · Post #499 · 13/08/2025, 21:45

"The Echo of Unheard Melodies" Imagine a world where hearing music is considered a privilege and is granted only to the elite. Write a story from the perspective of a character who has just heard music for the first time. How you can write? In a world of silence, Nia couldn't have imagined the symphony of sounds hidden behind the walls of privilege. A single note, the convoluted dance of harmony and rhythm, was more rebellious, intoxicating, and freeing than any spoken word. How would you proceed writing on this(#prompt)? Accept the challenge, write & send in comments below or @WritersClub. #CreativeWriting#FictionWriting#WritingChallenge#Poetry Sharing is caring 🔥@WritersCafe

djangoproject

@djangoproject · Post #545 · 11/01/2018, 14:08

https://online.dr-chuck.com/about.php This is the web site of the "University of Dr. Chuck". I teach a number of free/online/open courses based on free and open materials and this site is the course catalog for my free courses. #learn#python

djangoproject

@djangoproject · Post #524 · 17/12/2017, 16:42

https://python.swaroopch.com/ A Byte of #Python "A Byte of Python" is a free book on programming using the Python language. It serves as a tutorial or guide to the Python language for a beginner audience. If all you know about computers is how to save text files, then this is the book for you. #learn

djangoproject

@djangoproject · Post #486 · 31/10/2017, 19:49

https://intellipaat.com/tutorial/python-tutorial/ This #Python free tutorial is for beginners as an introduction to learn this powerful programming language. #learn

djangoproject

@djangoproject · Post #432 · 07/09/2017, 09:30

# In Python 3.4+ you can use # contextlib.suppress() to selectively # ignore specific exceptions: import contextlib with contextlib.suppress(FileNotFoundError): os.remove('somefile.tmp') # This is equivalent to: try: os.remove('somefile.tmp') except FileNotFoundError: pass # contextlib.suppress docstring: # # "Return a context manager that suppresses any # of the specified exceptions if they occur in the body # of a with statement and then resumes execution with # the first statement following the end of # the with statement." #python#learn

djangoproject

@djangoproject · Post #412 · 15/08/2017, 05:11

https://intellipaat.com/tutorial/python-tutorial/ Often, programmers fall for Python because of its minimum compilation time and speedier edit-test-debug cycle. Python is a go-programming language that has automated the way programmers code. This is indeed one of the major reasons developers have switched their interest to Python programming language. It helps you write simple scripts at relatively faster rate compared to Java, C, C++ . Get #Python Certification in just 16 Hours GET CERTIFIED #learn

djangoproject

@djangoproject · Post #284 · 31/03/2017, 06:53

http://docs.python-guide.org/en/latest/ Greetings, Earthling! Welcome to The Hitchhiker’s Guide to Python. This is a living, breathing guide. If you’d like to contribute, fork us on GitHub! This handcrafted guide exists to provide both novice and expert Python developers a best practice handbook to the installation, configuration, and usage of Python on a daily basis. This guide is opinionated in a way that is almost, but not quite, entirely unlike Python’s official documentation. You won’t find a list of every #Python web framework available here. Rather, you’ll find a nice concise list of highly recommended options. #learn

Data Science Jobs

@datasciencejobs · Post #1702 · 29/09/2023, 06:02

#vacancy#вакансия#python#data engineer #remote Компания Swift Invention ищет разработчиков: https://www.swiftinvention.com/#/ Data Engineer (Python) Full-time Remote 4000-5000USD Required skills: - 3+ years of work experience in developing data-related solutions - Strong background in Python for data collecting and analysis - Experience with building and maintaining web scrapers (data mining) - Experience with preparing data for machine learning (ETL) - Experience with relational databases (SQLite/MySQL/PostgreSQL) - Bachelor’s degree or higher in computer science or a related field Desired skills: - Understanding of data modeling concepts - Experience with creating ML data for text classification - Experience with cloud computing platforms (e.g., AWS, Azure, GCP) We offer: - Paid time off (24 working days per year) - Equipment: MacBook Pro or Dell laptop (m1, m2, i7, 16/32GB RAM) - Flexible working hours About the project: Pakira is a SaaS industry directory, chat, forum, and order tracking for businesses in the wholesale wood industry. Contacts: [email protected] tg @HelenSwiftInv

12•••4546474849•••100•••129130