Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/guitarrapc/hatenablog-sitemap
retrieve hatena-blog urls from sitemaps
https://github.com/guitarrapc/hatenablog-sitemap
hatena-blog sitemap
Last synced: 9 days ago
JSON representation
retrieve hatena-blog urls from sitemaps
- Host: GitHub
- URL: https://github.com/guitarrapc/hatenablog-sitemap
- Owner: guitarrapc
- License: mit
- Created: 2019-01-05T14:55:28.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-01-08T20:00:43.000Z (almost 6 years ago)
- Last Synced: 2024-10-27T23:20:30.692Z (about 2 months ago)
- Topics: hatena-blog, sitemap
- Language: Go
- Size: 17.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
## hatenablog-sitemap
Retrieve sitemaps for hatenablog and others via multiple languages.
### Supported
* C# (C# 7.3 w/.NETCore 2.2)
* PowerShell (PowerShell 6.1 w/.NETCore 2.1)
* Golang### CSharp
Sample:
```csharp
cd CSharp/Hatenablog-Sitemap
dotnet publish -o bin/publish
cd bin/publish
dotnet Hatenablog-Sitemap.dll http://tech.guitarrapc.com
```### PowerShell
```powershell
pwsh
cd PowerShell
. ./Get-SitemapUrl.ps1
Get-SitemapUrl -Url http://tech.guitarrapc.com
```### Golang
no package sample.
```golang
cd Golang/nopackage
go build
./nopackage http://tech.guitarrapc.com
```use package sample.
```golang
cd Golang/usepackage
go build
./usepackage http://tech.guitarrapc.com
```