1. how to do wget now that it's gone
- Posted by euphoric (admin) Aug 29, 2016
- 1438 views
This doesn't seem to exist anymore: http://openeuphoria.org/docs/net_wget.html#_583_netwgetex
All I want to do is download the contents of a text file. For example:
sequence txt = get_text_file_contents( "http://mydomain.com/this_file.txt" )
How does this work in Euphoria now?
P.S. Using Euphoria Interpreter v4.1.0 development.
2. Re: how to do wget now that it's gone
- Posted by jimcbrown (admin) Aug 29, 2016
- 1358 views
This doesn't seem to exist anymore: http://openeuphoria.org/docs/net_wget.html#_583_netwgetex
All I want to do is download the contents of a text file. For example:
sequence txt = get_text_file_contents( "http://mydomain.com/this_file.txt" )
How does this work in Euphoria now?
P.S. Using Euphoria Interpreter v4.1.0 development.
Uh, it is still around.
See http://scm.openeuphoria.org/hg/euphoria/file/979ef64e0941/demo/net/wget.ex
3. Re: how to do wget now that it's gone
- Posted by euphoric (admin) Aug 30, 2016
- 1388 views
Oh! It's in demo/. I thought it was an include module.
Thanks!
4. Re: how to do wget now that it's gone
- Posted by ghaberek (admin) Aug 30, 2016
- 1288 views
All I want to do is download the contents of a text file. For example:
Oh! It's in demo/. I thought it was an include module.
It sounds to me like what you want is http_get.
-Greg
5. Re: how to do wget now that it's gone
- Posted by euphoric (admin) Aug 30, 2016
- 1278 views
It sounds to me like what you want is http_get.
Yep! Implemented it this morning. Works like a charm!