Skip to content

Instantly share code, notes, and snippets.

View rnovec's full-sized avatar
🏡
Working remotely

Raúl Novelo rnovec

🏡
Working remotely
  • Encora Inc.
  • Mérida, MX
  • 01:17 (UTC -06:00)
  • LinkedIn in/rnoveloc
View GitHub Profile
@rnovec
rnovec / pdf-report.py
Created August 2, 2021 21:45 — forked from chris1610/pdf-report.py
PDF Report Generation - pbpython.com
"""
Generate PDF reports from data included in several Pandas DataFrames
From pbpython.com
"""
from __future__ import print_function
import pandas as pd
import numpy as np
import argparse
from jinja2 import Environment, FileSystemLoader
from weasyprint import HTML
@rnovec
rnovec / App.vue
Created April 14, 2021 22:31 — forked from shreyasmalewar/App.vue
Using Google Maps API for Location Picker with Vue 2
<template>
<div id="app">
<GmapMap
:center="center"
:zoom="18"
map-style-id="roadmap"
:options="mapOptions"
style="width: 100vmin; height: 50vmin"
ref="mapRef"
@click="handleMapClick"
@rnovec
rnovec / tweet-selenium.py
Created August 15, 2018 18:38 — forked from dannguyen/tweet-selenium.py
how to send a tweet through Firefox using Python + Selenium
"""
Tweeting by controlling Firefox via Python + selenium
http://selenium-python.readthedocs.org/
This script:
- Opens up Firefox
- Goes to https://www.twitter.com
- Clicks the login button
- logs you in (assuming you have your twitter password in a file named `mypassword.txt`...)