{"id":20206149,"url":"https://github.com/requests/requests-docs-fr","last_synced_at":"2025-04-10T12:23:15.544Z","repository":{"id":7323438,"uuid":"8642899","full_name":"requests/requests-docs-fr","owner":"requests","description":"French translation of Requests' documentation.","archived":false,"fork":false,"pushed_at":"2023-02-16T06:12:46.000Z","size":6005,"stargazers_count":3,"open_issues_count":3,"forks_count":10,"subscribers_count":10,"default_branch":"master","last_synced_at":"2025-04-09T09:50:24.039Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"fr.python-requests.org","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/requests.png","metadata":{"files":{"readme":"README.md","changelog":"HISTORY.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":"AUTHORS.rst","dei":null,"publiccode":null,"codemeta":null}},"created_at":"2013-03-08T04:13:43.000Z","updated_at":"2022-07-16T14:20:02.000Z","dependencies_parsed_at":"2024-11-20T10:19:18.323Z","dependency_job_id":null,"html_url":"https://github.com/requests/requests-docs-fr","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/requests%2Frequests-docs-fr","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/requests%2Frequests-docs-fr/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/requests%2Frequests-docs-fr/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/requests%2Frequests-docs-fr/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/requests","download_url":"https://codeload.github.com/requests/requests-docs-fr/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248217111,"owners_count":21066633,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-14T05:21:37.510Z","updated_at":"2025-04-10T12:23:15.526Z","avatar_url":"https://github.com/requests.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n\n\u003cspan align=\"center\"\u003e\n\n\u003cpre\u003e\n    \u003ca href=\"https://requests.readthedocs.io/\"\u003e\u003cimg src=\"https://raw.githubusercontent.com/psf/requests/master/ext/requests-logo.png\" align=\"center\" /\u003e\u003c/a\u003e\n    \n    \u003cdiv align=\"left\"\u003e\n    \u003cp\u003e\u003c/p\u003e\n    \u003ccode\u003e Python 3.7.4 (default, Sep  7 2019, 18:27:02)\u003c/code\u003e\n    \u003ccode\u003e \u003e\u003e\u003e \u003cstrong\u003eimport requests\u003c/strong\u003e\u003c/code\u003e\n    \u003ccode\u003e \u003e\u003e\u003e r = requests.get('https://api.github.com/repos/psf/requests')\u003c/code\u003e\n    \u003ccode\u003e \u003e\u003e\u003e r.json()[\"description\"]\u003c/code\u003e\n    \u003ccode\u003e 'A simple, yet elegant HTTP library. Handcrafted, with ♥, for the Python community.'\u003c/code\u003e\n    \u003c/div\u003e\n\n    \u003cp align=\"center\"\u003e\nThis software has been designed for you, with much joy,\nby \u003ca href=\"https://kennethreitz.org/\"\u003eKenneth Reitz\u003c/a\u003e \u0026 is protected by The \u003ca href=\"https://www.python.org/psf/\"\u003ePython Software Foundation\u003c/a\u003e.\n   \u003c/p\u003e\n\u003c/pre\u003e\n\n\u003c/span\u003e\n\n\u003cp\u003e\u0026nbsp;\u003c/p\u003e\u003cp\u003e\u0026nbsp;\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\u003cstrong\u003eRequests\u003c/strong\u003e is an elegant and simple HTTP library for Python, built with ♥.\u003c/p\u003e\n\n\u003cp\u003e\u0026nbsp;\u003c/p\u003e\n\n```pycon\n\u003e\u003e\u003e import requests\n\u003e\u003e\u003e r = requests.get('https://api.github.com/user', auth=('user', 'pass'))\n\u003e\u003e\u003e r.status_code\n200\n\u003e\u003e\u003e r.headers['content-type']\n'application/json; charset=utf8'\n\u003e\u003e\u003e r.encoding\n'utf-8'\n\u003e\u003e\u003e r.text\nu'{\"type\":\"User\"...'\n\u003e\u003e\u003e r.json()\n{u'disk_usage': 368627, u'private_gists': 484, ...}\n```\n\n\n\n---------------------------------------------------------------------\n\n\u003cp\u003e\u0026nbsp;\u003c/p\u003e\n\nRequests allows you to send HTTP/1.1 requests extremely easily. There’s no need to manually add query strings to your URLs, or to form-encode your `PUT` \u0026 `POST` data — but nowadays, just use the `json` method!\n\n\nRequests is **the most downloaded Python package today**, pulling in around `14M downloads / week`— according to GitHub, Requests is currently [depended upon](https://github.com/psf/requests/network/dependents?package_id=UGFja2FnZS01NzA4OTExNg%3D%3D) by `367_296` repositories. You may certainly put your trust in this code.\n\n\n\u003cp\u003e\u0026nbsp;\u003c/p\u003e\n\u003cp align=\"center\"\u003e\u003ca href=\"https://pepy.tech/project/requests\" rel=\"nofollow\"\u003e\u003cimg src=\"https://camo.githubusercontent.com/e1dedc9f5ce5cd6b6c699f33d2e812daadcf3645/68747470733a2f2f706570792e746563682f62616467652f7265717565737473\" alt=\"Downloads\" data-canonical-src=\"https://pepy.tech/badge/requests\" style=\"max-width:100%;\"\u003e\u003c/a\u003e\n\u003ca href=\"https://pypi.org/project/requests/\" rel=\"nofollow\"\u003e\u003cimg src=\"https://camo.githubusercontent.com/6d78aeec0a9a1cfe147ad064bfb99069e298e29b/68747470733a2f2f696d672e736869656c64732e696f2f707970692f707976657273696f6e732f72657175657374732e737667\" alt=\"image\" data-canonical-src=\"https://img.shields.io/pypi/pyversions/requests.svg\" style=\"max-width:100%;\"\u003e\u003c/a\u003e\n\u003ca href=\"https://github.com/psf/requests/graphs/contributors\"\u003e\u003cimg src=\"https://camo.githubusercontent.com/a70ea15870b38bba9203b969f6a6b7e7845fbb8a/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f636f6e7472696275746f72732f7073662f72657175657374732e737667\" alt=\"image\" data-canonical-src=\"https://img.shields.io/github/contributors/psf/requests.svg\" style=\"max-width:100%;\"\u003e\u003c/a\u003e\u003c/p\u003e\n\n\u003cp\u003e\u0026nbsp;\u003c/p\u003e\n\n\u003ch2 align=\"center\"\u003eSupported Features \u0026 Best–Practices\u003c/h2\u003e\n\nRequests is ready for the demands of building robust and reliable HTTP–speak applications, for the needs of today.\n\n\u003cpre class=\"test\"\u003e\n         + International Domains and URLs       + Keep-Alive \u0026 Connection Pooling\n         + Sessions with Cookie Persistence     + Browser-style SSL Verification\n         + Basic \u0026 Digest Authentication        + Familiar `dict`–like Cookies\n         + Automatic Decompression of Content   + Automatic Content Decoding\n         + Automatic Connection Pooling         + Unicode Response Bodies\u003csuper\u003e*\u003c/super\u003e\n         + Multi-part File Uploads              + SOCKS Proxy Support\n         + Connection Timeouts                  + Streaming Downloads\n         + Automatic honoring of `.netrc`       + Chunked HTTP Requests\n\n                            \u0026, of course, rock–solid stability!\n\u003c/pre\u003e\n\u003c/div\u003e\n\n\u003cp align=\"center\"\u003e\n        ✨ 🍰 ✨\u0026nbsp;\u0026nbsp;\u0026nbsp;\u0026nbsp;\u0026nbsp;\u0026nbsp;\u0026nbsp;\u0026nbsp;\u0026nbsp;\u0026nbsp;\u0026nbsp;\u0026nbsp;\n\u003c/p\u003e\n\n\u003cp\u003e\u0026nbsp;\u003c/p\u003e\n\nRequests Module Installation\n----------------------------\n\nThe recommended way to intall the `requests` module is to simply use [`pipenv`](http://pipenv.org/) (or `pip`, of\ncourse):\n\n```console\n$ pipenv install requests\nAdding requests to Pipfile's [packages]…\n✔ Installation Succeeded\n…\n```\n\nRequests officially supports Python 2.7 \u0026 3.4–3.8.\n\n-------------------------------------\n\n## P.S. — Documentation is Available at [`//requests.readthedocs.io`](https://requests.readthedocs.io/en/latest/).\n\n\u003cp align=\"center\"\u003e\n        \u003ca href=\"https://requests.readthedocs.io/\"\u003e\u003cimg src=\"https://raw.githubusercontent.com/psf/requests/master/ext/ss.png\" align=\"center\" /\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n\n------------------\n\n\n\u003cp\u003e\u0026nbsp;\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n        \u003ca href=\"https://kennethreitz.org/\"\u003e\u003cimg src=\"https://raw.githubusercontent.com/psf/requests/master/ext/kr.png\" align=\"center\" /\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n\u003cp\u003e\u0026nbsp;\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n        \u003ca href=\"https://www.python.org/psf/\"\u003e\u003cimg src=\"https://raw.githubusercontent.com/psf/requests/master/ext/psf.png\" align=\"center\" /\u003e\u003c/a\u003e\n\u003c/p\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frequests%2Frequests-docs-fr","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frequests%2Frequests-docs-fr","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frequests%2Frequests-docs-fr/lists"}