Code Monkey home page Code Monkey logo

Comments (2)

giovanigenerali avatar giovanigenerali commented on May 26, 2024 2

script liberado no repositório para consulta!
fechando a issue, valeu.

from fipe-json.

giovanigenerali avatar giovanigenerali commented on May 26, 2024

@bruno-rodrigues não tenho um script pronto para a FIPE, mas dá para criar um robozinho e agendar no cron para atualizar. É uma idéia, se alguém puder ajudar a melhorar o projeto só avisar.

Tenho esse exemplo aqui, puxa do G1 e foi o que usei ;)
Só salvar e rodar no terminal php script.php, demora mas funcionou pra mim.

<?php
function getVehicles($vehicles) {
	global $api;
	foreach ($vehicles as $vehicle) {
		$json_file = $vehicle.".json";
		$json_url = $api . $json_file;
		exec("curl $json_url -o $json_file");
		exec("mkdir $vehicle");
		getModels($vehicle);
	}
}
function getModels($vehicle) {
	global $api;
	$file = file_get_contents($vehicle.".json");
	$fipe_codes = json_decode($file, true);
	foreach ($fipe_codes as $code) {
		$json_file = $vehicle ."/". $code['cod_fipe'] .".json";
		$json_url = $api . $json_file;
		exec("curl $json_url -o $json_file");
	}
}

global $api;
$api = "http://g1.globo.com/static/fipe/json/";
getVehicles(["caminhao", "moto", "carro"]);

from fipe-json.

Related Issues (8)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.