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
defined a simple function, def, a list, and a dictionary — in every case it printed the value correctly, because Python's print() works on any object type by converting it to its string representation internally, so the function doesn't care what kind of data x holds 🐍. However, when I called show() with no arguments at all, Python raised a TypeError: show() missing 1 required positional argument: 'x', and when I called it with two arguments like show("hello", "world"), it raised TypeError: show() takes 1 positional argument but 2 were given — this happens because while Python is flexible about the type of data a function accepts, it strictly enforces the number of arguments based on the function's signature, and since x has no default value, exactly one argument must be supplied, no more and no less; if you wanted to allow a flexible number of arguments, you'd need to use a default value like def show(x=None): or a variadic form like def show(*args): instead 🛠️.
Читать полностью…
Hi everyone! I want to learn Python, but I’m not sure which videos, books, or other resources I should use. I’d really appreciate it if you could guide me and recommend some good resources for learning Python. Thanks!
Читать полностью…
Python groups in other languages
(⚠️Not managed by us ‼️)
Arabic @arabipython
Azerbaijani @azepug
Chinese @pythonzh
French @python_francais
German @pythonde
Hebrew @pythonisrael
Tamil @pythontamilcommunity
Indonesian @pythonid
Italian @python_ita @pythonita
Kazakh @python_kz
Malaysia @pythonmalaysia
Persian @pyfarsi
Portuguese @pythonbr
Russian @ru_python_beginners @ru_python @python_scripts
Spanish @PythonEsp
Swahili @python_eafrica
Turkish @python_tr
Uzbek @python_uz
If you have an active and well managed group that you want to be listed there, ask in the Meta group, link in the rules page.
Please don request him to send you things, He must share it here
Читать полностью…
If it isn't working and you don't have any errors, then it isn't running or you haven't found the errors.
Читать полностью…
its not particularly hard to do, and anything else is a hack at best
Читать полностью…
If you want to host something yourself you'll have to learn these concepts
Читать полностью…
You'd use tmux for development and systemd to host a production app.
Читать полностью…
nohup uv run main.py & Then you should be able to close your SSH session.
No, if your VPS reboots, you'll lose your tmux session. But if you use systemd, that'll take care of starting it again on boot.
Читать полностью…
i though if i run the command:
uv run main.py
in the terminal of the vps then even my laptop's or termux's termianl app got closed but the python process should to run in the vps, so the port should to open and this should to response to outer request over https.
But i found randomly sometime after a break the python app which was runnign just stop anyhow, i checked others things and got confirmed that my vps never got reboot in the meantim, but still the uv run main.py got stopped, is this because could be my vps is low configuration?
Any that you have available, when knowing nothing any material is an option
Читать полностью…
Can anyone help me with this
At the Python interactive prompt, write a function that prints its single arguunent to
the screen and call it interactively, passing a variety of object types: string, integer, List,
dictionary. Then try calling it without passing any argument: What happens? What happens
when you pass two arguments?
https://divyajyotidas15.substack.com/p/journey-of-http-packets-end-to-end?r=26jw99&utm_medium=ios
Nice Article on http packet flow from client to server.
This is not a Python specific question, please delete your offtopic message, move to @PythonOfftopic and ask there.
Читать полностью…
Sure I can help Send me the code you're trying to run and tell me what happens when you run it Also let me know which Python version you're using
Читать полностью…
Please provide a full explanation including all the details that you consider relevant. Your statement is too broad and there is no clear way to answer you, you have to explain:
- what you're doing
- what you're expecting
- what you're using
- where you're running the script
- what Python version you're using
- what packages and their versions you're using
- and the most important thing: show the code YOU wrote (read rule 5️⃣ for that)
and more details, that way your chances to get help will increase.
When I write the code inside the pycharm or vs code python is not working
Читать полностью…
hi guys i have to put a little bot that use apis to send some results via telegram, can you please suggest to me a free hosting to run h24 this bot?
Читать полностью…
Look up how to create a systemd service and then use that with your Python code
Читать полностью…
tmux is (basically) designed to let you keep a shell session even if you close your terminal. You can then open another terminal and reattach to the same session (because it carries on running even if you're not attached to it). This works nicely for your uv run use case, for dev work.
so there is two type of things i need to setup, to keep running 1 things always correctly?
what what these, tmux , systemd.
thought i never used this and knew nothing about this, are you saying this to use to host real python app ?
i checked nohup > & like this, i think maybe my cpu is 1 vCpu that' why it kills my python process there
Читать полностью…
i never listen this concept,but what is the background of this topic, is this like even my vos got reboot this tmux will help to run all python thing?
Читать полностью…
Well, my first guess is that the process is killed with the SSH connection. If you want exactly this command to keep running, you need to use tmux on the VPS, not on the client (laptop). And the way you'd actually do it in production is with systemd services.
Читать полностью…
Could have have anything to do with the SSH connection being disconnected?
Читать полностью…