{"id":22863787,"url":"https://github.com/nilsding/furaffinity-cli","last_synced_at":"2025-10-14T17:49:08.569Z","repository":{"id":205778573,"uuid":"715084291","full_name":"nilsding/furaffinity-cli","owner":"nilsding","description":"A command line tool to interface with FurAffinity","archived":false,"fork":false,"pushed_at":"2023-12-21T17:02:09.000Z","size":34,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-07T18:24:24.326Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nilsding.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-11-06T12:57:11.000Z","updated_at":"2023-11-06T12:57:34.000Z","dependencies_parsed_at":null,"dependency_job_id":"3643f9d4-3cfb-4d36-9442-8717009de643","html_url":"https://github.com/nilsding/furaffinity-cli","commit_stats":null,"previous_names":["nilsding/furaffinity-cli"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/nilsding/furaffinity-cli","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nilsding%2Ffuraffinity-cli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nilsding%2Ffuraffinity-cli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nilsding%2Ffuraffinity-cli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nilsding%2Ffuraffinity-cli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nilsding","download_url":"https://codeload.github.com/nilsding/furaffinity-cli/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nilsding%2Ffuraffinity-cli/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279012645,"owners_count":26085158,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-12T02:00:06.719Z","response_time":53,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-12-13T11:17:31.691Z","updated_at":"2025-10-14T17:49:08.552Z","avatar_url":"https://github.com/nilsding.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# furaffinity\n\nA gem to interface with FurAffinity, along with a neat little CLI.\n\n## Installation\n\n```sh\ngem install furaffinity\n```\n\n## Usage\n\nCLI usage is as follows:\n\n```sh\n# replace \"cookie-a\" and \"cookie-b\" with the values of the respective cookies\n# use firefox's web inspector for that, the \"Storage\" tab displays it nicely\nfa auth cookie-a cookie-b\n\n# retrieve your notification counters as JSON\nfa notifications\n# {\n#   \"submissions\": 30944,\n#   \"watches\": 317,\n#   \"comments\": 278,\n#   \"favourites\": 1018,\n#   \"journals\": 1642,\n#   \"trouble_tickets\": 9\n# }\n\n# upload a new submission\nfa upload my_image.png --title \"test post please ignore\" --description \"This is an image as you can see\" --rating general --scrap\n\n# interactively update a submission, this needs your preferred editor in ENV\nexport EDITOR=vi\nfa edit 54328944\n```\n\nThere is also a way to upload submissions in bulk: `fa queue`\n\n```sh\n# set your preferred editor in ENV\nexport EDITOR=vi\n\n# initialise queue directory\nfa queue init my_queue\ncd my_queue\n\n# copy files to upload into the queue directory\ncp ~/Pictures/pic*.png .\n\n# add files, an editor will open up for each file to fill in the details\nfa queue add pic1.png\nfa queue add pic2.png pic3.png\n\n# see the status of the queue\nfa queue status\n\n# use your preferred editor to change the submission information afterwards\nvi pic2.png.info.yml\n\n# open up an editor to rearrange the queue order\nfa queue reorder\n\n# upload the entire queue\nfa queue upload\n\n# once everything's uploaded you can remove the already uploaded pics\nfa queue clean\n```\n\n## Development\n\nAfter checking out the repo, run `bin/setup` to install dependencies.\n\nTo install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).\n\n## Contributing\n\nBug reports and pull requests are welcome on GitHub at https://github.com/nilsding/furaffinity. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/nilsding/furaffinity/blob/main/CODE_OF_CONDUCT.md).\n\n## License\n\nThe gem is available as open source under the terms of the [AGPLv3 License](https://opensource.org/license/agpl-v3/).\n\n## Code of Conduct\n\nEveryone interacting in the Furaffinity project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/nilsding/furaffinity/blob/main/CODE_OF_CONDUCT.md).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnilsding%2Ffuraffinity-cli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnilsding%2Ffuraffinity-cli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnilsding%2Ffuraffinity-cli/lists"}