{"id":20234871,"url":"https://github.com/datamade/occrp-timeline-tool","last_synced_at":"2026-03-06T18:03:04.436Z","repository":{"id":146796360,"uuid":"95229438","full_name":"datamade/occrp-timeline-tool","owner":"datamade","description":"Help reporters organize and analyze data about sequential events and related data","archived":false,"fork":false,"pushed_at":"2019-11-02T03:00:10.000Z","size":412,"stargazers_count":6,"open_issues_count":4,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-09-11T10:32:47.354Z","etag":null,"topics":[],"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/datamade.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2017-06-23T14:49:30.000Z","updated_at":"2024-12-26T06:54:37.000Z","dependencies_parsed_at":"2023-05-05T15:30:26.132Z","dependency_job_id":null,"html_url":"https://github.com/datamade/occrp-timeline-tool","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/datamade/occrp-timeline-tool","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/datamade%2Foccrp-timeline-tool","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/datamade%2Foccrp-timeline-tool/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/datamade%2Foccrp-timeline-tool/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/datamade%2Foccrp-timeline-tool/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/datamade","download_url":"https://codeload.github.com/datamade/occrp-timeline-tool/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/datamade%2Foccrp-timeline-tool/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30189483,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-06T17:33:53.563Z","status":"ssl_error","status_checked_at":"2026-03-06T17:33:51.678Z","response_time":250,"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":[],"created_at":"2024-11-14T08:13:29.257Z","updated_at":"2026-03-06T18:03:04.411Z","avatar_url":"https://github.com/datamade.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# occrp-timeline-tool\n\nThe [OCCRP Timeline Tool](https://occrp.datamade.us) helps reporters capture, organize, and view sequences of events and how they relate to networks of organizations, people, and sources. \n\n## Get started\nTo get started, run the following commands in your shell:\n\n```bash\n# Clone the repo\ngit clone git@github.com:datamade/occrp-timeline-tool.git\ncd occrp-timeline-tool\n```\n\nWe recommend using [virtualenv](https://virtualenv.readthedocs.io/en/latest/)\nand\n[virtualenvwrapper](https://virtualenvwrapper.readthedocs.io/en/latest/install.html)\nfor working in a virtualized development environment. [Learn about how to set up\nvirtualenv](http://docs.python-guide.org/en/latest/dev/virtualenvs/).\n\nThen, do the following in your bash profile:\n\n```bash\nmkvirtualenv occrp\npip install -r requirements.txt\n```\n\nAt this point, you successfully installed several packages onto your virtual environment. If you want to see what lives inside the \"occrp\" virtualenv, then simply type:\n\n```bash\npip freeze\n```\n\nAnd remember, whenever you want to use this virtual environment (and all its installed modules), run:\n\n```bash\nworkon occrp\n```\n\n## Setup\n\nWe use DataMade's [Flask App Template](https://github.com/datamade/flask_app_template) as a blueprint for the site framework.\n\nCopy the `app_config.py.example`:\n\n```bash\ncp app_config.py.example\napp_config.py\n```\n\nUpdate these variables:\n\n```bash\nDB_USER = ''\nDB_PW = ''\nDB_HOST = ''\nDB_PORT = ''\nDB_NAME = 'occrp'\n```\n\nThe DB_USER and DB_PW most likely will remain an empty string, for local development. Likewise, DB_HOST might be \"localhost,\" and DB_PORT may be \"5432.\"\n\nThen, create your database, and run our custom script to generate tables:\n\n```bash\ncreatedb occrp\npython init_db.py\n```\n\nWe use [Alembic](http://alembic.zzzcomputing.com/en/latest/index.html) and SQLAlchemy to track migrations and to update the database.\n\nYou might make modifications to the model(s). If so, create a new migration:\n\n```bash\nalembic revision --autogenerate -m \"Add first_name first to Person model\"\n```\n\nThen, run the migration: \n\n```bash\nalembic upgrade head\n```\n\n## Team\n\n* Regina Compton\n* Eric Van Zanten\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdatamade%2Foccrp-timeline-tool","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdatamade%2Foccrp-timeline-tool","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdatamade%2Foccrp-timeline-tool/lists"}