All Projects → code4romania → asset-declarations

code4romania / asset-declarations

Licence: other
Crowd sourcing implementation of Moonsheep platform for Romanian asset declarations.

Programming Languages

python
139335 projects - #7 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to asset-declarations

monitorizare-vot-ios
iOS election monitoring app - a mobile app through which commissioned observers can easily report back to their respective NGOs throughout the election day
Stars: ✭ 17 (+30.77%)
Mutual labels:  civic-tech, civic-hacking, code4ro
openbudgetoakland
Visualizations of Oakland's budget data, and explanations about the budget process.
Stars: ✭ 91 (+600%)
Mutual labels:  civictech, civic-hacking
ACCESS-NYC-PATTERNS
ACCESS NYC Pattern library and design system documentation for https://access.nyc.gov. Maintained by @NYCOpportunity
Stars: ✭ 14 (+7.69%)
Mutual labels:  civictech, civic-tech
nyc-crash-mapper
React Redux web application for viewing, filtering, & comparing trends of automobile collision data published by the NYPD.
Stars: ✭ 15 (+15.38%)
Mutual labels:  civictech, civic-tech
who-owns-what
Who owns what in nyc?
Stars: ✭ 146 (+1023.08%)
Mutual labels:  civictech, civic-tech
tenants
JustFix.nyc is a tool to document, organize, and take action in getting repairs made on your apartment.
Stars: ✭ 15 (+15.38%)
Mutual labels:  civictech, civic-tech
openaustralia-parser
Parser component for OpenAustralia.org
Stars: ✭ 28 (+115.38%)
Mutual labels:  civictech
analises
Análises dos dados relacionados a Feira de Santana 📊
Stars: ✭ 31 (+138.46%)
Mutual labels:  civic-tech
uk planning scraper
A Ruby gem to get planning applications data from UK council websites.
Stars: ✭ 19 (+46.15%)
Mutual labels:  civictech
publiccode.yml
A metadata description standard for public software and policy repositories
Stars: ✭ 18 (+38.46%)
Mutual labels:  civic-tech
Everypolitician Data
data for national legislatures worldwide
Stars: ✭ 174 (+1238.46%)
Mutual labels:  civic-tech
dkan2
Deprecated: please use the 2.x branch of the dkan repo
Stars: ✭ 17 (+30.77%)
Mutual labels:  civic-tech
friendly-plans
Supporting system of behavioral therapy of people with autism. Check starter kit:
Stars: ✭ 24 (+84.62%)
Mutual labels:  civic-tech
recordexpungPDX
A project to automate the expungement of qualifying criminal records in Oregon. This project is done in conjunction with Qiu-Qiu Law.
Stars: ✭ 45 (+246.15%)
Mutual labels:  civic-tech
modern-software-delivery-maturity-index
A resource to help teams evaluate and improve their software delivery.
Stars: ✭ 15 (+15.38%)
Mutual labels:  civictech
nyt-first-said
Tweets when words are published for the first time in the NYT
Stars: ✭ 222 (+1607.69%)
Mutual labels:  civic-tech
Design System
Open source design and front-end development resources for creating Section 508 compliant, responsive, and consistent websites.
Stars: ✭ 192 (+1376.92%)
Mutual labels:  civic-tech
tweetyourmep
TweetyourMEP
Stars: ✭ 17 (+30.77%)
Mutual labels:  civic-hacking
impeachment-timeline
Timeline of events that lead to the impeachment of Donald J. Trump →
Stars: ✭ 14 (+7.69%)
Mutual labels:  civic-tech
CTI-website-frontend
Join a worldwide movement to catalog 
every open source 
civic tech project.
Stars: ✭ 28 (+115.38%)
Mutual labels:  civic-tech

Catalog politic - Declaratii de avere Datree GitHub contributors GitHub last commit License: MPL 2.0

code for romania twitter code for romania facebook

Important! This project is currently not accepting contributions. It would seem like there is a public-sector effort to solve the problem of opening up the data contained within asset declarations. We will not duplicate effort and we will either resume or archive this project according to what we learn about the digitalisation effort.

Currently, in Romania, public information on elected officials is spread on a multitude of media, in a multitude of formats and requires a priori knowledge of the sources where data resides, making it hard, if not impossible for a regular citizen to make sense of the data.

Furthermore, no comprehensive analysis of data on elected officials can be attempted, as most of it is not digitised, hence not in an open format.

Catalog Politic is powered by the desire to centralise all public information on elected representatives and lower the information cost necessary for citizens, making public information truly public. For this end we are digitising hundreds of thousands of asset declarations, scrapping dozens of official websites and manually collecting data where no automation is possible.

Citizens, who want to find out more about their representatives, but lack the time, energy and know-how to find all the relevant data will gain access to in-depth information in a friendly and easy to digest format.

The platform will help journalists, watchdogs and researchers identify and verify information on elected officials. The data provided will offer an unprecedented starting point for in-depth analysis.

Catalog Politic - Declaratii de avere - aims to automate the process of parsing and extracting information from asset declarations of Romanian politicians and public figures, by providing a user friendly platform for volunteers to extract and map information to a fixed datamodel. The implementation is based on Moonsheep framework.

Built with | Repos and projects | Deployment | Contributing | Feedback | License | About Code4Ro

Built With

Django Moonsheep

Programming languages

Python 3.5+ Please follow the Python style guide.

In order to solve the formatting debates, black is enforced. Before submiting a PR, you can run

black --line-length 80 --target-version py37 .

and your code will be automatically formatted.

Platforms

Political Catalogue - Asset Declaration is a web application.

Frontend framework

Django

Package managers

Pip

Database technology & provider

PostgreSQL

Repos and projects

Moonsheep on GitHub

Deployment

Installation process

  • Fork this repo
  • Clone your fork
  • Open the directory where you have cloned the repo (cd asset-declarations)
  • Optionally, you can create a virtual environment named "venv": python3 -m venv venv and then activate it: source venv/bin/activate
  • pip install -r requirements-dev.txt
  • export DJANGO_SETTINGS_MODULE=project_template.settings.dev
  • python manage.py migrate --run-syncdb
  • python manage.py seed
  • python manage.py runserver

Using docker-compose:

  • Install docker and cdocker-compose
  • Fork this repo
  • Clone your fork
  • Open the directory where you have cloned the repo (cd asset-declarations)
  • Run the following command to start the development server docker-compose up
  • You can interact with the container's environment using docker-compose exec web bash

Contributing

If you would like to contribute to one of our repositories, first identify the scale of what you would like to contribute. If it is small (grammar/spelling or a bug fix) feel free to start working on a fix. If you are submitting a feature or substantial code contribution, please discuss it with the team and ensure it follows the product roadmap.

Our collaboration model is described here.

Get familiar with some basic coding guidelines.

Debugging

As you develop this app, you will surely add / remove / change database models (Django Models).
In order for your local server to acknowledge these changes, you will need to migrate your new structure.
During the development stage, while you're still testing things out and you don't care about the data in your local sqlite database, the following quick hack will update your models and clean the test database data:

rm  project_template/migrations/*
rm db.sqlite3
python manage.py makemigrations
python manage.py migrate --run-syncdb

Feedback

  • Request a new feature on GitHub.
  • Vote for popular feature requests.
  • File a bug in GitHub Issues.
  • Email us with other feedback [email protected]

License

This project is licensed under the MPL 2.0 License - see the LICENSE.md file for details

About Code4Ro

Started in 2016, Code for Romania is a civic tech NGO, official member of the Code for All network. We have a community of over 500 volunteers (developers, ux/ui, communications, data scientists, graphic designers, devops, it security and more) who work pro-bono for developing digital solutions to solve social problems. #techforsocialgood. If you want to learn more details about our projects visit our site or if you want to talk to one of our staff members, please e-mail us at [email protected].

Last, but not least, we rely on donations to ensure the infrastructure, logistics and management of our community that is widely spread accross 11 timezones, coding for social change to make Romania and the world a better place. If you want to support us, you can do it here.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].