[b]"What exactly does requests.post in Python mean? Need a clear explanation!"[/b] or [b]"Can someone explain the

20 Replies, 1080 Views

Kinda confused too at first, but requests.post in python meaning clicked when I tried it.

It’s like mailing a letter (POST) vs. picking one up (GET).

Example:
```python
requests.post('https://example.com/contact', data={'email': 'me@test.com'})
```
Docs helped me: https://docs.python-requests.org/.



Users browsing this thread: 1 Guest(s)