{"id":17867203,"url":"https://github.com/s/instagramprinter","last_synced_at":"2025-07-31T03:41:28.568Z","repository":{"id":9645314,"uuid":"11579536","full_name":"s/InstagramPrinter","owner":"s","description":"A Python application that prints Instagram photos.","archived":false,"fork":false,"pushed_at":"2025-03-14T21:20:40.000Z","size":3089,"stargazers_count":17,"open_issues_count":4,"forks_count":3,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-03-17T23:44:39.766Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"s.github.io/InstagramPrinter","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/s.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-07-22T11:17:54.000Z","updated_at":"2025-03-14T21:20:43.000Z","dependencies_parsed_at":"2022-09-04T10:41:44.661Z","dependency_job_id":null,"html_url":"https://github.com/s/InstagramPrinter","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/s%2FInstagramPrinter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/s%2FInstagramPrinter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/s%2FInstagramPrinter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/s%2FInstagramPrinter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/s","download_url":"https://codeload.github.com/s/InstagramPrinter/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244771739,"owners_count":20507857,"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","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-10-28T09:45:17.474Z","updated_at":"2025-03-21T09:31:23.895Z","avatar_url":"https://github.com/s.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"InstagramPrinter\n================\n\nA Python application that searchs and prints(soon) Instagram photos with the given hashtag.\n\nApplication first connects to Instagram Api and fetchs matched photo datas.\u003cbr/\u003e\n\nThen clones the template \u003ccode\u003emain.html\u003c/code\u003e and replaces tags with returning data from Api.\n\n##Installation and Run\n\n```\n$ git clone git://github.com/s/InstagramPrinter.git ~/InstagramPrinter\n$ cd ~/InstagramPrinter\n$ python app.py\n```\n\n##Skeletal\n  \u003ch3\u003eClasses: (Core python files)\u003c/h3\u003e\u003cbr/\u003e\n    \u003ccode\u003eApi.py\u003c/code\u003e : Handles Instagram Api connection and generates html files.\u003cbr/\u003e\n  \n   \u003ch3\u003eOutput: (Public data)\u003c/h3\u003e\u003cbr/\u003e\n    \u003ccode\u003eassets\u003c/code\u003e          : Contains css and font files.\u003cbr/\u003e\n    \u003ccode\u003etemplates\u003c/code\u003e        : Contains original templates.\u003cbr/\u003e\n    \u003ccode\u003eviews\u003c/code\u003e           : Contains generated views. Generated views will be in the folder for e.g \u003ccode\u003eviews/#InstagramPrinter\u003c/code\u003e\u003cbr/\u003e\n\n##Configuration (config.yaml)  \n  \u003ccode\u003eaccessToken      \u003c/code\u003e  : Instagram api access token.\u003cbr/\u003e\n\t\u003ccode\u003esearchHashtag    \u003c/code\u003e  : Hashtag to search. Default:\u003ccode\u003eInstagramPrinter\u003c/code\u003e\u003cbr/\u003e\t\n\t\u003ccode\u003edelayTime        \u003c/code\u003e  : Delay time between each api request. Default: \u003ccode\u003e30\u003c/code\u003e(seconds)\u003cbr/\u003e\t\n\t\u003ccode\u003epageTitle        \u003c/code\u003e  : Page title of generated html file. Default: \u003ccode\u003eInstagramPrinter\u003c/code\u003e\u003cbr/\u003e\n  \u003ccode\u003etemplateFileName \u003c/code\u003e  : Name of template file. Default: \u003ccode\u003emain.html\u003c/code\u003e\u003cbr/\u003e\n\n##View Template Tags:\n\n\n\u003ccode\u003e{$title}\u003c/code\u003e                    : Page Title\u003cbr/\u003e\n\u003ccode\u003e{$photoUrl}\u003c/code\u003e                 : Url of photo\u003cbr/\u003e\n\u003ccode\u003e{$photoWidth}\u003c/code\u003e               : Width of photo\u003cbr/\u003e\n\u003ccode\u003e{$photoHeight}\u003c/code\u003e              : Height of photo\u003cbr/\u003e\n\u003ccode\u003e{$postOwnerAvatar}\u003c/code\u003e          : Avatar of post owner\u003cbr/\u003e\n\u003ccode\u003e{$postOwner}\u003c/code\u003e                : Screen username of post owner\u003cbr/\u003e\n\u003ccode\u003e{$postDate}\u003c/code\u003e                 : Create date of post\u003cbr/\u003e\n\u003ccode\u003e{$likes}\u003c/code\u003e                    : People who likes this post\u003cbr/\u003e\n\u003ccode\u003e{$comments} .. {/$comments}\u003c/code\u003e : Comments block\u003cbr/\u003e\n\u003ccode\u003e{$commentOwnerAvatar}\u003c/code\u003e       : Avatar of owner of any comment\u003cbr/\u003e\n\u003ccode\u003e{$commentOwner}\u003c/code\u003e             : Screen username of owner of any comment\u003cbr/\u003e\n\u003ccode\u003e{$commentText}\u003c/code\u003e              : Text of comment\u003cbr/\u003e\n\n\n##Screen Shots\n\n![View Screen Shot](https://raw.github.com/saidozcan/InstagramPrinter/master/screenshots/view.png)\n\n##TO-DO\n-\u003eLog files.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fs%2Finstagramprinter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fs%2Finstagramprinter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fs%2Finstagramprinter/lists"}