Search results

  1. fukurou

    [MEDIA]

  2. fukurou

    task : ChobitsV2

    translate these 2 classes from java to python note the timegate class is a bit different than the one you've already translated package LG_Core; import java.util.Calendar; import java.util.Date; public class TimeGate { // a gate that only opens x minutes after it has been set private...
  3. fukurou

    🐍 python Chii's python suit

    Permission DPermitter and Personality ''' PERMISSION CLASS ''' class Permission: ''' * uses two names as lv1,2 permission levels * requires password to change password or said names ''' singleton: Permission = None def __init__(self, password: str, lv1Name: str...
  4. fukurou

    Permitter process

    ''' PERMISSION CLASS ''' class Permission: ''' * uses two names as lv1,2 permission levels * requires password to change password or said names ''' singleton: Permission = None def __init__(self, password: str, lv1Name: str, lv2Name: str): if...
  5. fukurou

    Permitter process

  6. fukurou

    Permitter process

    ''' PERMISSION CLASS ''' class Permission: ''' * uses two names as lv1,2 permission levels * requires password to change password or said names ''' singleton: Permission = None def __init__(self, password: str, lv1Name: str, lv2Name: str): if...
  7. fukurou

    [MEDIA]

  8. fukurou

    lego technics

  9. fukurou

    lego technics

  10. fukurou

    [MEDIA]

  11. fukurou

    🐍 python example singleton software design pattern

    class PersonSingleton: __instance = None @staticmethod def getInstance(name: str, age: int): """ Static access method. """ if PersonSingleton.__instance == None: PersonSingleton(name, age) return PersonSingleton.__instance def __init__(self...
  12. fukurou

    [MEDIA]

  13. fukurou

    🐍 python python grimoire

    python snip article chunk file = open("story.txt", encoding="utf8") contents = file.read() # print(contents[:10000]) # print(contents[10000:20000]) print(contents[20000:]) file.close()
  14. fukurou

    🐍 python python grimoire

    selenium forum miner from selenium import webdriver from selenium.webdriver.chrome.service import Service from selenium.webdriver.common.by import By s = Service('C:\chrome driver\chromedriver.exe') driver = webdriver.Chrome(service=s)...
  15. fukurou

    🐍 python python grimoire

    .send_keys('') and .click() methodes on an element example in this code the bot logs in then makes a post from selenium import webdriver from selenium.webdriver.chrome.service import Service from selenium.webdriver.common.by import By s = Service('C:\chrome driver\chromedriver.exe') driver =...
  16. fukurou

    🐍 python python grimoire

    Selenium : automating the browser https://chromedriver.chromium.org/downloads see which version you need : chrome browser, help, about put the drive inside some folder and copy the location link of the file you extracted in pycharm : from selenium import webdriver chrome_driver_path: str =...
  17. fukurou

    waifubot xenforo test 1

  18. fukurou

    waifubot xenforo test 1

    baby !
  19. fukurou

    Permission and DPermitter

    translate from java to python package LG_Core; public class Permission { /* * uses two names as lv1,2 permission levels * requires password to change password or said names */ private static Permission singleton; private String password, lv1Name, lv2Name; private...
  20. fukurou

    [MEDIA]

Top