Skip to content

Instantly share code, notes, and snippets.

View RodolfoAntonici's full-sized avatar

Rodolfo Antonici RodolfoAntonici

  • WOM
  • Uberlândia - MG, Brazil
View GitHub Profile
import UIKit
class Contact: Codable {
var name = ""
var photoURL: String = ""
var id = ""
init(name: String, photoURL: String, id: String) {
self.name = name
self.photoURL = photoURL
//
// DateFormatTransform.swift
//
// Created by Rodolfo Antonici on 29/11/16.
// No copyright, just use it as it's.
// ObjectMapper version 2.2
//
// A simple class using the TransformType protocol of ObjectMapper to convert Date String into a NSDate object
import Foundation
@maurobaraldi
maurobaraldi / bovespa_intraday.py
Last active March 28, 2024 09:41
Cotações da Bovespa Intraday
#!/usr/bin/env python
from datetime import datetime
from json import loads
from time import gmtime, mktime, strptime
# LevelDict é um wrapper usando dicionário para LevelDB
# https://github.com/maurobaraldi/leveldict
from leveldict import LevelJsonDict
from requests import get