##MONGODB & PYTHON
###Ubuntu Install
sudo apt-get install mongodb
pip install pymongo
Table - Collection
Column - Property
Row - Document
| #!/bin/bash | |
| ############################################################## | |
| # Set Your System and Wordpress Config Preferences | |
| ############################################################## | |
| export SYSTEM_USER=username # User PHP-FPM runs under | |
| # Database | |
| export WP_DB_NAME=wordpress |
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| import json | |
| from flask import Flask, url_for | |
| from flask_sqlalchemy import SQLAlchemy | |
| """ | |
| Flask-SQLAlchemy many-to-many relationship using helper table | |
| http://flask-sqlalchemy.pocoo.org/2.1/models/ | |
| Hippies love their dogs. |
##MONGODB & PYTHON
###Ubuntu Install
sudo apt-get install mongodb
pip install pymongo
Table - Collection
Column - Property
Row - Document
| { | |
| "estados": [ | |
| { | |
| "sigla": "AC", | |
| "nome": "Acre", | |
| "cidades": [ | |
| "Acrelândia", | |
| "Assis Brasil", | |
| "Brasiléia", | |
| "Bujari", |
| <# | |
| .SYNOPSIS | |
| Converts files to the given encoding. | |
| Matches the include pattern recursively under the given path. | |
| .EXAMPLE | |
| Convert-FileEncoding -Include *.js -Path scripts -Encoding UTF8 | |
| #> | |
| function Convert-FileEncoding([string]$Include, [string]$Path, [string]$Encoding='UTF8') { | |
| $count = 0 |