135201
You will be muted until you read the rules. Read them! @Rules_for_Python A group about the Python programming language. Offtopic things go here: @pythonofftopic Resources to learn python: @pythonres Group for Hy: @hylang Selenium: @SeleniumPython
Read docs and practice or YouTube and watch brocodez, Python is such a big language theres so much to learn you never stop learning new ways to do something
Читать полностью…
Yes, but you should start by learning basis, before the actual web/app scraping programming.
Читать полностью…
hi guys is anyone able to last min check my python cheat sheet. nobody want help me with qunatity
Читать полностью…
Can anyone explain to me in detail how I can connect snowflake with python and execute queries without SAML authentication
Читать полностью…
Hi I have the doubt how to check the excel headers and db table to store the import data through loop method so how to define the excel header should map with db table in python django
Читать полностью…
CIP I/O protocol how to handle with python in PLC programming
Читать полностью…
you're not the one being asked the question
we can make our own guesses
The true X problem might be: nobody cares about version of dependencies in python. Some infrastructures about machine learning requires numpy 1.x, and none defined "numpy<2" in their requirements. Also, numerous open source project from big companies lock versions blindly.
Читать полностью…
Is there a tool to find latest version for some dependencies on pypi on a specified date?
For example I found a library defined nothing about it's dependency, the only thing I know is its latest publish date. Commonly, dependencies with latest version on that date will satisfy the requirement.
Download Python from here:
https://www.python.org/downloads/
Rules in our groups are strictly enforced. It is strongly recommended to read our rules before engaging in any other activity!
Читать полностью…
Exactly because of the reason that was written in the warning
Читать полностью…
If you don't have any idea about how to do it, you probably need to work on your Python skills before picking up such a task.
Читать полностью…
This group is to help you on specific issues you have on YOUR code, so you have to show the code you wrote and explain where and why you are stuck... as simple as that
Читать полностью…
Literally the first google result
https://github.com/cpchrispye/PyCIP
guys is the way I'm managing my sqlalchemy season correct
@asynccontextmanagerЧитать полностью…
async def get_db_context() -> AsyncGenerator[DbSessionWrapper, None]:
async with AsyncSessionLocal() as session:
try:
yield DbSessionWrapper(session)
await session.commit()
except Exception:
await session.rollback()
raise
finally:
await session.close()