Login:Pass - 😈Cleaner twitter db😈 | Freebie | Crax

Welcome To Crax.Pro Forum!

Check our new Marketplace at Crax.Shop

   Login! SignUp Now!
  • We are in solidarity with our brothers and sisters in Palestine. Free Palestine. To learn more visit this Page

  • Crax.Pro domain has been taken down!

    Alternatives: Craxpro.io | Craxpro.com

Login:Pass đŸ˜ˆCleaner twitter db😈

Login:Pass đŸ˜ˆCleaner twitter db😈

Simple Email:Pass Combolist all domains.
LV
1
 

bazdig

Member
Joined
Oct 18, 2023
Threads
7
Likes
4
Awards
3
Credits
664Š
Cash
0$
Surely you have found a Twitter database there... If you have it downloaded you will see that there are several files, each file is a part of the database and they are quite heavy, right?
Here I leave you a code that cleans this data and adds it to a .db in which you will have it all together!

Code:
import sqlite3
import re
from colorama import Fore, Style

def process_line(line, line_number, cursor, error_log, batch_size):
email_match = re.search(r'Email: (.+?) - Name: (.+?) - ScreenName: (.+?) - Followers: (\d+) - Created At: (.+)', line)

if email_match:
email, name, screen_name, followers, created_at = map(str.strip, email_match.groups())
followers = int(followers)

cursor.execute("INSERT INTO datos (Email, Name, ScreenName, Followers, CreatedAt) VALUES (?, ?, ?, ?, ?)",
(email, name, screen_name, followers, created_at))

print(f"{Fore.GREEN}[+] {email}:{name}:{screen_name}:{followers}:{line_number}{Fore.RESET}")

def main():
db_conn = sqlite3.connect('database.db')
db_cursor = db_conn.cursor()
db_cursor.execute('CREATE TABLE IF NOT EXISTS datos (Email TEXT, Name TEXT, ScreenName TEXT, Followers INTEGER, CreatedAt TEXT)')

with open('FILE', 'r', encoding='utf-8') as file:
batch_size = 1000
batch = []

error_file = open('error_log.txt', 'w', encoding='utf-8')

for line_number, line in enumerate(file, 1):
 

Create an account or login to comment

You must be a member in order to leave a comment

Create account

Create an account on our community. It's easy!

Log in

Already have an account? Log in here.

Tips
Tips
Top Bottom