{"id":49091103,"url":"https://github.com/nstrydom2/neckbeard","last_synced_at":"2026-04-20T18:42:57.350Z","repository":{"id":51246053,"uuid":"170745678","full_name":"nstrydom2/neckbeard","owner":"nstrydom2","description":"An easy to use GIF meme generator","archived":false,"fork":false,"pushed_at":"2021-05-19T08:16:12.000Z","size":29198,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-05-02T04:06:49.585Z","etag":null,"topics":["gif","meme-api","meme-generator","memes"],"latest_commit_sha":null,"homepage":"","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/nstrydom2.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-02-14T19:25:04.000Z","updated_at":"2023-05-20T07:24:03.000Z","dependencies_parsed_at":"2022-09-16T13:45:19.966Z","dependency_job_id":null,"html_url":"https://github.com/nstrydom2/neckbeard","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/nstrydom2/neckbeard","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nstrydom2%2Fneckbeard","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nstrydom2%2Fneckbeard/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nstrydom2%2Fneckbeard/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nstrydom2%2Fneckbeard/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nstrydom2","download_url":"https://codeload.github.com/nstrydom2/neckbeard/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nstrydom2%2Fneckbeard/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32060873,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-20T11:35:06.609Z","status":"ssl_error","status_checked_at":"2026-04-20T11:34:48.899Z","response_time":94,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["gif","meme-api","meme-generator","memes"],"created_at":"2026-04-20T18:42:56.659Z","updated_at":"2026-04-20T18:42:57.344Z","avatar_url":"https://github.com/nstrydom2.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# neckbeard Python library\nNeckbeard is a lightweight and easy to use GIF meme generator built for Python3 application implementation.\n\n## Getting Started\n\nThese instructions will get you a copy of the project up and running on your local\nmachine for development and testing purposes. See deployment for notes on how to\ndeploy the project on a live system.\n\n### Prerequisites\n\nPython 3.7+ is required to run this application and the Imagemagick application, other \nthan that there are no other prerequisites for the project, as the dependencies are \nincluded in the repository.\n\n### Installing\n\nTo install the library is as simple as cloning the repository and running\n\n```bash\npip install -e .\n```\n\nIt is recommended to create an virtual environment prior to installing this library.\nAlternatively, you can also install this library via Pip:\n\n```bash\npip install anonfile\n```\n\n### Dev Notes\n\nRun unit tests locally:\n\n```bash\npytest --verbosity=2 -s [--token \"REDACTED\"]\n```\n\nAdd the `-k test_*` option if you want to test only a single function.\n\n## Usage\n\nImport the module and instantiate the `Neckbeard()` constructor with the image path as\na parameter. Set your meme text, positioning, and color. Then call the process method\nto generate your new meme!\n\n```python\nfrom neckbeard import Neckbeard\n\n# create meme from existing GIF\nnb = Neckbeard('/home/ghost/Pictures/olaf.gif')\nnb.top(\"tfw you have something important to do\")\nnb.bottom(\"but you don't care\")\n\n# process the new meme\nnb.tip_fedora()\n\n# create GIF meme from mp4\nnb = Neckbeard(path='/home/ghost/Videos/wACDCVwsgGSS.mp4', start_time=(8, 52.0), end_time=(9, 15.0))\nnb.top(\"tfw you have something important to do\")\nnb.bottom(\"but you don't care\")\n\n# process the new meme\nnb.tip_fedora()\n```\n\n## Command Line Interface\n\n```bash\n# get help\nneckbeard --help\n\n# simple generate a meme\nneckbeard --top \"tfw you have something important to do\" --bottom \"but you just dgaf\" --file /home/ghost/olaf_playing_nose.gif\n```\n\n## Built With\n\n* [moviepy](https://zulko.github.io/moviepy/) - Python module for video editing\n\n\n## Versioning\n\nNavigate to [tags on this repository](https://github.com/nstrydom2/neckbeard/tags)\nto see all available versions.\n\n## Authors\n\n| Name             | Mail Address                | GitHub Profile                                |\n|------------------|-----------------------------|-----------------------------------------------|\n| Nicholas Strydom | nstrydom@gmail.com          | [nstrydom2](https://github.com/nstrydom2)     |\n\nSee also the list of [contributors](https://github.com/nstrydom2/neckbeard/contributors)\nwho participated in this project.\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for more details.\n\n## Acknowledgments\n\n* Joseph Marie Jacquard\n* Charles Babbage\n* Ada Lovelace\n* My Dad\n* Hat tip to anyone whose code was used\n* Inspiration\n* etc\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnstrydom2%2Fneckbeard","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnstrydom2%2Fneckbeard","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnstrydom2%2Fneckbeard/lists"}