tld-extract.cr
TLD Extract
TLD parser written in Crystal lang.
With this project you can separate the domain and subdomain of any URL using the Public Suffix List.
Installation
Add this to your application's shard.yml
:
dependencies:
tldextract:
github: mauricioabreu/tld-extract.cr
Usage
API
To parse an URL you need to require the tldextract
shard and call the main function extract
passing the URL as parameter.
It will return a Struct
containing subdomain
, domain
and suffix
.
See the example below.
require "tldextract"
extracted = TLDExtract.extract("https://www.github.com")
puts extracted.subdomain # www
puts extracted.domain # github
puts extracted.suffix # com
TODO: Write usage instructions here
Development
TODO: Write development instructions here
Contributing
- Fork it ( https://github.com/mauricioabreu/tld-extract.cr/fork )
- Create your feature branch (git checkout -b my-new-feature)
- Commit your changes (git commit -am 'Add some feature')
- Push to the branch (git push origin my-new-feature)
- Create a new Pull Request
Contributors
- mauricioabreu Mauricio de Abreu Antunes - creator, maintainer
Repository
tld-extract.cr
Owner
Statistic
- 1
- 0
- 0
- 0
- 1
- over 8 years ago
- July 11, 2016
License
MIT License
Links
Synced at
Sun, 17 Nov 2024 19:00:22 GMT
Languages