Posts

Showing posts from January 8, 2019

Reducing the amount of List in a WebScraper

Image
0 At the moment, I'm learning and experimenting on the use of web scraping content from different varieties of web pages. But I've come across a common smelly code among several of my applications. I have many repetitive List that has data being append to them. from requests import get import requests import json from time import sleep import pandas as pd url = 'https://shopee.com.my/api/v2/flash_sale/get_items?offset=0&limit=16&filter_soldout=true' list_name = list_price = list_discount = list_stock = response = get(url) json_data = response.json() def getShockingSales(): index = 0 if response.status_code is 200: print('Api Satus: ' + 'OK') else: print('API unable to access') total_flashsale = 15 for i in range(

1076

Image
Esta página ou secção não cita fontes confiáveis e independentes , o que compromete sua credibilidade (desde outubro de 2017) . Por favor, adicione referências e insira-as corretamente no texto ou no rodapé. Conteúdo sem fontes poderá ser removido. — Encontre fontes: Google (notícias, livros e acadêmico) SÉCULOS: Século X — Século XI — Século XII DÉCADAS: 1020 • 1030 • 1040 • 1050 • 1060 • 1070 • 1080 • 1090 • 1100 • 1110 • 1120 ANOS: 1071 • 1072 • 1073 • 1074 • 1075 • 1076 • 1077 • 1078 • 1079 • 1080 • 1081 1076 em outros calendários Calendário gregoriano 1076 MLXXVI Ab urbe condita 1829 Calendário arménio N/A Calendário chinês 3772 – 3773 Calendário judaico 4836 – 4837 Calendários hindus - Vikram Samvat - Shaka Samvat - Kali Yuga 1131 – 1132 998 – 999 4177 – 4178 Calendário persa 454 – 455 Calendário islâmico 468 – 469 Calendário rúnico 1326 1076 ( MLXXVI , na

Laura Branigan In Concert

Image
Laura Branigan In Concert foi gravado ao vivo em Caesars Tahoe, Lake Tahoe, NV, pela cantora Laura Branigan, da turnê Self Control Tour 1984, lançado em VHS, em 1984. Laura Branigan In Concert Álbum ao vivo de Laura Branigan Lançamento Outubro de 1984 Gravação Caesars Tahoe, Lake Tahoe, NV, no dia 22 de setembro de 1984 Gênero(s) Pop, Rock progressivo Formato(s) VHS Gravadora(s) RCA/Columbia Cronologia de Laura Branigan Self Control (1984) Hold Me (1985)

Managing locking for access

Image
1 I've been working for a while on locking resources (state objects) so that the only way to access them is by acquiring a lock, I wanted something with a lot of syntactic sugar so that once the lock is acquired the resource (object) is used via a reference without a need for special getters and setters. namespace Lockable { public delegate void ActionRef<REF>(ref REF r1); public delegate void ActionIn<REF>(in REF r1); public delegate RES FuncRef<REF, RES>(ref REF r1); public delegate RES FuncIn<REF, RES>(in REF r1); public delegate void ActionRef<REF1, REF2>(ref REF1 r1, ref REF2 r2); public delegate void ActionIn<REF1, REF2>(in REF1 r1, in REF2 r2); public delegate RES FuncRef<REF1, REF2, RES>(ref REF1 r1, ref REF2 r2); public delegate RES FuncIn&l