#!/bin/bash
### Script installs root.cert.pem to certificate trust store of applications using NSS
### (e.g. Firefox, Thunderbird, Chromium)
### Mozilla uses cert8, Chromium and Chrome use cert9
###
### Requirement: apt install libnss3-tools
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
```python | |
import datetime | |
import pandas as pd | |
def get_last_business_day(frequency_type): | |
""" | |
* retorna uma lista com as últimas datas válidas para analise em um período de 60 dias | |
""" | |
freq = frequency_type.upper() |