{"id":13341093,"url":"https://github.com/linuxluigi/meetup-data-scraper","last_synced_at":"2026-04-07T20:32:25.097Z","repository":{"id":102317572,"uuid":"224854156","full_name":"linuxluigi/meetup-data-scraper","owner":"linuxluigi","description":"Scrape groups \u0026 events from Meetup Rest API to enable a fulltext search","archived":false,"fork":false,"pushed_at":"2020-01-21T11:12:24.000Z","size":210,"stargazers_count":2,"open_issues_count":17,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-08T02:58:07.473Z","etag":null,"topics":["django","docker","docker-compose","elasticsearch","meetup","meetup-api","postgresql","python3","redis","traefik","wagtail","wagtail-cms"],"latest_commit_sha":null,"homepage":null,"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/linuxluigi.png","metadata":{"files":{"readme":"README.rst","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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-11-29T12:54:38.000Z","updated_at":"2024-05-29T08:55:46.000Z","dependencies_parsed_at":null,"dependency_job_id":"92e0cb65-2040-475d-8949-6513070876f8","html_url":"https://github.com/linuxluigi/meetup-data-scraper","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/linuxluigi/meetup-data-scraper","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/linuxluigi%2Fmeetup-data-scraper","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/linuxluigi%2Fmeetup-data-scraper/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/linuxluigi%2Fmeetup-data-scraper/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/linuxluigi%2Fmeetup-data-scraper/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/linuxluigi","download_url":"https://codeload.github.com/linuxluigi/meetup-data-scraper/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/linuxluigi%2Fmeetup-data-scraper/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31528414,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-07T16:28:08.000Z","status":"ssl_error","status_checked_at":"2026-04-07T16:28:06.951Z","response_time":105,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":["django","docker","docker-compose","elasticsearch","meetup","meetup-api","postgresql","python3","redis","traefik","wagtail","wagtail-cms"],"created_at":"2024-07-29T19:25:10.330Z","updated_at":"2026-04-07T20:32:25.072Z","avatar_url":"https://github.com/linuxluigi.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"Meetup Data Scraper\n======================\n\nDowload group \u0026 events from Meetup-API into a database to make a fulltext search on every event.\n\n.. image:: https://img.shields.io/badge/built%20with-Cookiecutter%20Django-ff69b4.svg\n     :target: https://github.com/pydanny/cookiecutter-django/\n     :alt: Built with Cookiecutter Django\n.. image:: https://img.shields.io/badge/code%20style-black-000000.svg\n     :target: https://github.com/ambv/black\n     :alt: Black code style\n.. image:: https://travis-ci.com/linuxluigi/meetup-data-scraper.svg?branch=master\n     :target: https://travis-ci.com/linuxluigi/meetup-data-scraper\n     :alt: Travis CI tests\n.. image:: https://readthedocs.org/projects/meetup-data-scraper/badge/?version=latest\n     :target: https://meetup-data-scraper.readthedocs.io/en/latest/?badge=latest\n     :alt: Documentation Status\n.. image:: https://coveralls.io/repos/github/linuxluigi/meetup-data-scraper/badge.svg?branch=master\n     :target: https://coveralls.io/github/linuxluigi/meetup-data-scraper?branch=master\n     :alt: Coverage\n\n.. image:: docs/_static/meetup-data-scraper.png\n     :target: docs/_static/meetup-data-scraper.png\n     :alt: meetup-data-scraper\n\nSettings\n--------\n\nMoved to settings_.\n\n.. _settings: http://cookiecutter-django.readthedocs.io/en/latest/settings.html\n\nBasic Commands\n--------------\n\nSetting Up Your Users\n^^^^^^^^^^^^^^^^^^^^^\n\n* To create an **superuser account**, use this command::\n\n    $ docker-compose -f local.yml run django python manage.py createsuperuser\n\nType checks\n^^^^^^^^^^^\n\nRunning type checks with mypy:\n\n::\n\n  $ docker-compose -f local.yml run django coverage run -m mypy meetup_data_scraper\n\nTest coverage\n^^^^^^^^^^^^^\n\nTo run the tests, check your test coverage, and generate an HTML coverage report::\n\n    $ docker-compose -f local.yml run django coverage run -m pytest\n    $ docker-compose -f local.yml run django coverage run -m coverage html\n    $ open htmlcov/index.html\n\nRunning tests with py.test\n~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n::\n\n  $ docker-compose -f local.yml run django coverage run -m pytest\n\n\n\n\n\nSentry\n^^^^^^\n\nSentry is an error logging aggregator service. You can sign up for a free account at  https://sentry.io/signup/?code=cookiecutter  or download and host it yourself.\nThe system is setup with reasonable defaults, including 404 logging and integration with the WSGI application.\n\nYou must set the DSN url in production.\n\n\nDeployment\n----------\n\nThe following details how to deploy this application.\n\n\nHeroku\n^^^^^^\n\nSee detailed `cookiecutter-django Heroku documentation`_.\n\n.. _`cookiecutter-django Heroku documentation`: http://cookiecutter-django.readthedocs.io/en/latest/deployment-on-heroku.html\n\n\n\nDocker\n^^^^^^\n\nSee detailed `cookiecutter-django Docker documentation`_.\n\n.. _`cookiecutter-django Docker documentation`: http://cookiecutter-django.readthedocs.io/en/latest/deployment-with-docker.html\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flinuxluigi%2Fmeetup-data-scraper","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flinuxluigi%2Fmeetup-data-scraper","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flinuxluigi%2Fmeetup-data-scraper/lists"}