GitXplorerGitXplorer
d

PoshFlickr

public
0 stars
0 forks
0 issues

Commits

List of commits on branch main.
Unverified
4bbd46293fa19b0ef14ac492ca8859a05fd1aae8

enable localhost redirect

ddrdamour committed 2 years ago
Unverified
3f5defa1c297f4ccfa2f584b2a9ee1fe8a1732bc

doc some todos

ddrdamour committed 2 years ago
Unverified
7cf60f04d946b2cca7147d49b70a8124aaa1d1cd

add auth level to connect, implement remove album photo command

ddrdamour committed 2 years ago
Unverified
0f03853d86099cf70296d7fab3a51f6202272aab

implement Get-FlickrAlbumPhotos

ddrdamour committed 2 years ago
Unverified
fbbdeb7fd683135cb18c0a2eee2355bc0defd079

implement some of album fetch photos

ddrdamour committed 2 years ago
Unverified
ab4d4840aa79f4e824acf48c8256b4ddb81ab187

implement Get-AlbumPhoto -name

ddrdamour committed 2 years ago

README

The README file for this repository.

PoshFlickr

Do Flickr with Powershell and a DotNet Core Lib to boot. Inspird by https://github.com/pwujczyk/ProductivityTools.PSFlickr

Also since it was needed a simple Flickr net core client hapily stealing from various other implementations like:

My main goal was to be able to run this kind of commmand sequence

Connect-Flickr [apikey] [apisecret]

Get-FlickrAlbum -Name "Auto Upload" | Get-FlickrAlbumPhotos -prop tags | Where {$_.Tags.length -gt 0 -and $_.Public} | Remove-FlickrAlbumPhoto

cause removing from albums is not possible in flickr's organzr. That was achieved mar 17 2023 and unless i get interest i dont plan to domuch more than that.

this targets .net6 because i was to lazy to figure out how to make record types target 2.1, and i don't really care to have that kind of compatability anyways, everyone should be on dotnet 6+ soon enough

Known best cmdlet practices NOT followed: