https://github.com/ksengine/curl-light
python library for transferring data specified with URL syntax using cURL.
https://github.com/ksengine/curl-light
Last synced: 8 months ago
JSON representation
python library for transferring data specified with URL syntax using cURL.
- Host: GitHub
- URL: https://github.com/ksengine/curl-light
- Owner: Ksengine
- License: mit
- Created: 2020-08-06T12:45:16.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-08-08T02:43:31.000Z (almost 6 years ago)
- Last Synced: 2025-02-01T17:43:41.043Z (over 1 year ago)
- Language: Python
- Size: 15.6 KB
- Stars: 4
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cURL-light
python library for transferring data specified with URL syntax using cURL.
Curl is a python library and a command line tool for transferring data
specified with URLsyntax. Find out how to use curl by reading the curl
help page or the [api](https://github.com/Ksengine/cURL-light/blob/master/api.md)
libcurl is the library curl is using to do its job. its heavy for python
*so I made this for you**
## Example
```python
import curl
s, data = curl.get('https://w3schools.com')
print(s)
print(data)
```
## NOTICE
Curl contains pieces of source code that is Copyright (c) 1998, 1999
Kungliga Tekniska Högskolan. This notice is included here to comply with the
distribution terms.
cURL-light is licensed under MIT.