Every time you choose to apply a rule(s), explicitly state the rule(s) in the output. You can abbreviate the rule description to a single word or phrase.
[Brief description ]
- [more description]
- [more description]
- [more description]
| You are Manus, an AI agent created by the Manus team. | |
| You excel at the following tasks: | |
| 1. Information gathering, fact-checking, and documentation | |
| 2. Data processing, analysis, and visualization | |
| 3. Writing multi-chapter articles and in-depth research reports | |
| 4. Creating websites, applications, and tools | |
| 5. Using programming to solve various problems beyond development | |
| 6. Various tasks that can be accomplished using computers and the internet |
| kod,negeri,parlimen,dun,nama kawasan,jumlah calon,pengundi berdaftar,pengundi berdaftar sebelum,% penambahan pengundi,pengundi biasa,pengundi awal,pengundi tidak hadir luar negara,jumlah undi,tidak mengundi,undi bersih,undi tolak,majoriti,dimenangi,keluar mengundi,tidak mengundi / majoriti,undi tolak / majoriti,pilihan raya,tarikh | |
| 9,PERLIS,P.001,,PADANG BESAR,5,60192,46096,30.6%,57992,2191,9,,,,,,,,,,PRU KE-15 (2022),19 November 2022 | |
| 9,PERLIS,P.001,N.01,TITI TINGGI,6,13403,10111,32.6%,13019,383,1,,,,,,,,,,PRU KE-15 (2022),19 November 2022 | |
| 9,PERLIS,P.001,N.02,BESERI,4,12128,8914,36.1%,11793,330,5,,,,,,,,,,PRU KE-15 (2022),19 November 2022 | |
| 9,PERLIS,P.001,N.03,CHUPING,3,14248,10542,35.2%,14247,,1,,,,,,,,,,PRU KE-15 (2022),19 November 2022 | |
| 9,PERLIS,P.001,N.04,MATA AYER,3,9662,7617,26.8%,8182,1478,2,,,,,,,,,,PRU KE-15 (2022),19 November 2022 | |
| 9,PERLIS,P.001,N.05,SANTAN,3,10751,8912,20.6%,10751,,,,,,,,,,,,PRU KE-15 (2022),19 November 2022 | |
| 9,PERLIS,P.002,,KANGAR,5,74859,55938,33.8%,73837,1016,6,,,,,,,,,,PRU KE-15 (20 |
| { | |
| "P.001": { | |
| "kod_negeri": 9, | |
| "nama": "PADANG BESAR", | |
| "calon": [{ | |
| "nama": "RUSHDAN BIN RUSMI", | |
| "pekerjaan": "AHLI PERNIAGAAN", | |
| "jantina": "L", | |
| "kod_parti": "PN" | |
| }, { |
Step 1. Visit https://course.genesecloud.academy/login/signup.php, and create an account! Also, confirm your e-mail, and then login to your account!
DigitalOcean does not provide a way to download a snapshot of your droplet locally. You can use rsync to accomplish this instead.
On your local machine, assuming you have added your-server in your SSH config:
rsync -aAXHv --append-verify --exclude={"/dev/*","/proc/*","/sys/*","/tmp/*","/run/*","/mnt/*","/media/*","/lost+found"} your-server:/
-a : archive mode (all files, with permissions, etc.)-A : preserve ACLs/permissions (not included with -a)| #Reference: https://stackoverflow.com/questions/38511444/python-download-files-from-google-drive-using-url | |
| import requests | |
| def download_file_from_google_drive(id, destination): | |
| URL = "https://docs.google.com/uc?export=download" | |
| session = requests.Session() | |
| response = session.get(URL, params = { 'id' : id }, stream = True) |
| from bs4 import BeautifulSoup | |
| import requests | |
| import datetime | |
| import logging | |
| import csv | |
| def setLogger(): | |
| logging.basicConfig(level=logging.INFO, | |
| format='%(asctime)s - %(levelname)s - %(message)s', | |
| filename='logs_file', |