معرفی شرکت ها


browserhistory-0.1.2


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

A simple module to extract browsers's history.
ویژگی مقدار
سیستم عامل -
نام فایل browserhistory-0.1.2
نام browserhistory
نسخه کتابخانه 0.1.2
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Chanwoo Park
ایمیل نویسنده parkchan@brandeis.edu
آدرس صفحه اصلی https://github.com/kcp18/browserhistory
آدرس اینترنتی https://pypi.org/project/browserhistory/
مجوز MIT
# BrowserHistory Module browserhistory is a simple Python module that extracts browser history from a user's local computer and writes the data to csv files. Platforms: Linux, MacOS, and Windows. Suported Browsers: Firefox, Google Chrome, and Safari. ## Installation ```sh $ python3 -m pip install browserhistory ``` or ```sh $ git clone https://github.com/kcp18/browserhistory ``` ## Overview ### Functions: - get_browserhistory() -> dict - get_database_paths() -> dict - get_username() -> str - write_browserhistory_csv() -> None #### Example: ```python Example ======= >>> import browserhistory as bh >>> dict_obj = bh.get_browserhistory() >>> dict_obj.keys() >>> dict_keys(['safari', 'chrome', 'firefox']) >>> dict_obj['safari'][0] >>> ('https://mail.google.com', 'Mail', '2018-08-14 08:27:26') # Write the data to csv files in the current working directory. # safari_browserhistory.csv, chrome_browserhistory.csv, and firefox_browerhistory.csv. >>> bh.write_browserhistory_csv() # Create csv files that contain broswer history ``` ### The Description of browserhistory ``` NAME browserhistory FUNCTIONS get_browserhistory() -> dict Get the user's browser history by using sqlite3 module to connect to the dabase. It returns a dictionary: its key is a name of browser in str and its value is a list of tuples, each tuple contains four elements, including url, title, and visited_time. get_database_paths() -> dict Get paths to the database of browsers and store them in a dictionary. It returns a dictionary: its key is the name of browser in str and its value is the path to database in str. get_username() -> str Get username based on their local computers write_browserhistory_csv() -> None It writes csv files that contain the browser history in the current working directory. It will writes csv files base on the name of browsers the program detects. ``` ### Issue Report If you have any questions or find bugs in the module, please report the issues/questions at the follwing address. - https://github.com/kcp18/browserhistory/issues


نحوه نصب


نصب پکیج whl browserhistory-0.1.2:

    pip install browserhistory-0.1.2.whl


نصب پکیج tar.gz browserhistory-0.1.2:

    pip install browserhistory-0.1.2.tar.gz