Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/azawawi/perl6-net-curl
Use libcurl (client-side URL transfer library) API in Perl 6
https://github.com/azawawi/perl6-net-curl
libcurl perl6
Last synced: about 1 month ago
JSON representation
Use libcurl (client-side URL transfer library) API in Perl 6
- Host: GitHub
- URL: https://github.com/azawawi/perl6-net-curl
- Owner: azawawi
- License: mit
- Created: 2012-11-17T07:04:42.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2017-05-09T20:40:32.000Z (over 7 years ago)
- Last Synced: 2024-09-30T17:45:57.620Z (about 1 month ago)
- Topics: libcurl, perl6
- Language: Perl6
- Size: 186 KB
- Stars: 11
- Watchers: 5
- Forks: 7
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Net::Curl
Net::Curl provides a Perl 6 interface to libcurl.
The plan is support the libcurl Easy interface first
and run all the libcurl website examples
and then support an object-oriented interface.libcurl is a free and easy-to-use client-side URL transfer library.
It supports DICT, FILE, FTP, FTPS, Gopher, HTTP, HTTPS, IMAP, IMAPS,
LDAP, LDAPS, POP3, POP3S, RTMP, RTSP, SCP, SFTP, SMTP, SMTPS, Telnet
and TFTP. libcurl supports SSL certificates, HTTP POST, HTTP PUT,
FTP uploading, HTTP form based upload, proxies, cookies,
user+password authentication (Basic, Digest, NTLM, Negotiate, Kerberos),
file transfer resume, http proxy tunneling and more!## Build Status
| Operating System | Build Status | CI Provider |
| ----------------- | --------------- | ----------- |
| Linux / Mac OS X | [![Build Status](https://travis-ci.org/azawawi/perl6-net-curl.svg?branch=master)](https://travis-ci.org/azawawi/perl6-net-curl) | Travis CI |
| Windows 7 64-bit | [![Build status](https://ci.appveyor.com/api/projects/status/github/azawawi/perl6-net-curl?svg=true)](https://ci.appveyor.com/project/azawawi/perl6-net-curl/branch/master) | AppVeyor |## Installation
* Since Net::Curl uses libcurl, libcurl.so must be found in /usr/lib.
To install libcurl on Debian for example, please use the following command:
```
$ sudo apt-get install libcurl3-dev
```* On Mac OS X, Please use the following command:
```
$ brew install curl
```* Using zef (a module management tool bundled with Rakudo Star):
```
$ zef install Net::Curl
```## Testing
To run tests:
```
$ prove -e "perl6 -Ilib"
```## Author
Ahmad M. Zawawi, azawawi on #perl6, https://github.com/azawawi/
## License
MIT License