This free Notion document contains the best 100+ resources you need for building a successful startup, divided in 4 categories: Fundraising, People, Product, and Growth.
This free eBook goes over the 10 slides every startup pitch deck has to include, based on what we learned from analyzing 500+ pitch decks, including those from Airbnb, Uber and Spotify.
This free sheet contains 100 accelerators and incubators you can apply to today, along with information about the industries they generally invest in.
This free sheet contains 100 VC firms, with information about the countries, cities, stages, and industries they invest in, as well as their contact details.
This free sheet contains all the information about the top 100 unicorns, including their valuation, HQ's location, founded year, name of founders, funding amount and number of employees.
import sqlite3
# Example usage filename = "Download-18--Sanskari-Bahu-F-cked--2022--UNRATED-NiksIndian-Short-Film-720p-WEB-DL---VegaMovies" metadata = extract_metadata(filename) print(metadata) For simplicity, we'll use a basic SQLite database to store video metadata. Future enhancements could include a user interface, more
# Example usage catalog = VideoCatalog('videos.db') catalog.add_video(metadata) results = catalog.search_videos('Sanskari') print(results) This feature provides a basic framework for a video cataloging system. It allows for the extraction of metadata from filenames, storage of this metadata in a database, and searching of videos based on this metadata. Future enhancements could include a user interface, more sophisticated search capabilities, and potentially integration with video playback or streaming services. OR rating LIKE
def extract_metadata(filename): # Assuming the filename format: "Title-Year-Rating-Type-Resolution-Source" pattern = r"(.*)--(\d{4})--(.*)--(.*)--(\d{4}p)--(.*)" match = re.match(pattern, filename) if match: return { "title": match.group(1), "year": match.group(2), "rating": match.group(3), "type": match.group(4), "resolution": match.group(5), "source": match.group(6) } else: return None OR source LIKE ? '''
def search_videos(self, query): self.cursor.execute(''' SELECT * FROM videos WHERE title LIKE ? OR year LIKE ? OR rating LIKE ? OR type LIKE ? OR resolution LIKE ? OR source LIKE ? ''', (f'%{query}%', f'%{query}%', f'%{query}%', f'%{query}%', f'%{query}%', f'%{query}%')) return self.cursor.fetchall()