Metadata-Version: 2.1
Name: Suluoya
Version: 1.4.9
Summary: Suluoya
Home-page: https://github.com/pypa/sampleproject
Author: Suluoya
Author-email: 1931960436@qq.com
Maintainer: Suluoya
Maintainer-email: 1931960436@qq.com
License: UNKNOWN
Description: # Suluoya
        
        ### This is a package written by Suluoya not just for fun!
        
        [TOC]
        
        ------
        
        ## 1. Upgrade Suluoya
        
        ```python
        import Suluoya as sly
        sly.upgrade()
        ```
        
        ## 2. Welcome
        
        ```python
        import Suluoya as sly
        sly.welcome()
        ```
        
        ## 3. Print
        
        ### (1)If you wanna print error prettier...
        
        ```python
        import Suluoya as sly
        sly.error()
        print(1 / 0)
        ```
        
        ## 4. Text
        
        ### (1)If you wanna get text from your clipboard...
        
        ```python
        import Suluoya as sly
        sly.get_clipboard(show=True)
        a = sly.get_clipboard()
        print(a)
        ```
        
        ### (2)If you wanna get content from a file...
        
        Currently support 'doc','docx','ppt','pptx','txt'
        
        ```python
        import Suluoya as sly
        content = sly.get_content(file=r'c:\lalala\1.docx')
        print(content)
        ```
        
        ### (3)get all combination from a list
        
        ```python
        import Suluoya as sly
        comb=sly.combine(lists=['A', 'B', 'C'])
        ```
        
        ### (4)translate both English and Chinese into each other
        
        if "show=False",return instead of print
        
        ```python
        import Suluoya as sly
        sly.translate(text='Welcome to use Suluoya!', show=True)
        ```
        
        ### (5)compare the texts
        
        accurate=True --> accurate match mode
        
        accurate=False --> fuzzy match mode
        
        show=False --> return ratio instead of print
        
        ```python
        import Suluoya as sly
        sly.text_compare(text1='Suluoya', text2='suluoya', accurate=True, show=True)
        ```
        
        ### (6)word frequency
        
        count the number of times words appear
        
        ```python
        import Suluoya as sly
        sly.word_frequency(key='Suluoya', text='Welcome to use Suluoya!', show=True)
        ```
        
        ## 5. Analyse
        
        ### (1)If you wanna analyse your dataframe...
        
        ```python
        import Suluoya as sly
        import pandas as pd
        df = pd.read_csv('https://sakai.unc.edu/access/content/group/3d1eb92e-7848-4f55-90c3-7c72a54e7e43/public/data/bycatch.csv')
        sly.report(df)
        #This will make a html,just look for and open it!
        ```
        
        ### (2)sentiment analysis
        
        language='C'-->Chinese
        
        language='E'-->English
        
        ```python
        import Suluoya as sly
        sly.sentiment_analysis(text='',language='C',show=True)
        ```
        
        ### (3)guess gender 
        
        name should be a Chinese name!
        
        show=False --> return instead of print
        
        ```python
        import Suluoya as sly
        sly.gender_guess(name='Suluoya',show=True)
        ```
        
        ## 6. Import
        
        If you wanna auto import some packages...
        
        use"import Suluoya.Import as SI" instead of "import pandas as pd,import numpy as np"...
        
        ```python
        #pass
        import pandas as pd
        import numpy as np
        ...
        df = pd.Dataframe()
        #now
        import Suluoya.Import as SI
        df = pd.Dataframe() # directly
        SI.check() # just to check your import by using SI,can be omitted
        # ps. go and see a file named "auto_imports.py"!
        ```
        
        ## 7. Crawl
        
        ```python
        import Suluoya as sly
        ```
        
        ### (1)directly get text from an URL
        
        it will return a **dic** which contain title,text,description,keywords,tags,image,infomation and the raw_html
        
        ```python
        data = sly.get_text(url='https://www.bilibili.com/video/BV1gt411D7gJ?p=29', useragent='', accurate=True)
        print(data['title'])
        ```
        
        ### (2)directly get soup from an URL
        
        not need to fill all the blank
        
        url='[https://pypi.org/project/Suluoya](https://pypi.org/project/Suluoya-pkg/)/' in default
        
        encoding='utf8' in defaults
        
        payloads means data in module "requests"
        
        "show=False" means 'print(soup)' instead of 'return soup'
        
        ```python
        sly.get_soup(url='', encoding='', headers='', params={}, payloads={}, show=False)
        ```
        
        ### (3)directly get json from an URL
        
        not need to fill all
        
        if url='',Suluoya will go on strike
        
        encoding='utf8' in default
        
        payloads means data in module "requests"
        
        "show=False" means show the json instead of return it
        
        ```python
        sly.get_json(url='https://api.inews.qq.com/newsqa/v1/automation/modules/list?modules=FAutoforeignList', 
                     encoding='utf8', headers={},params={}, payload={}, show=False)
        ```
        
        ### (4)directly get tables from an URL
        
        if url='',Suluoya will go on strike
        
        encoding='utf8' in default
        
        header is the header of the table,try "header=0" instead of "header=None" in default
        
        caption is the caption of the table,capture all the tables from the URL in defaults
        
        if "save=True",tables will be saved in "1.xlsx","2.xlsx","3.xlsx"...
        
        ```python
        sly.get_table(url='https://www.university-list.net/paiming/dx-160001.html', encoding='utf8', header=0, caption='.+', save=False)
        ```
        
        ### (5)directly get links from an URL
        
        if "show=True",return a list of all the URL
        
        ```python
        sly.get_link(url='https://www.bilibili.com/video/BV1gt411D7gJ?p=29', encoding='utf8', headers={}, params={}, payload={}, show=False)
        ```
        
        ### (6)directly get news from an URL
        
        it will return a dictionary which contain text,title,html,author,image,movies,keywords and summary.
        
        ```python
        news=sly.get_news(url='https://news.163.com/20/1224/21/FUL39KID000189FH.html', language='zh')
        print(news['title'])
        ```
        
        ### (7)search question  (under  maintenance)
        
        ```python
        #search question by inputting for only once
        sly.search_question()
        #search question by inputting for many times
        sly.search_question(again=True)
        #search question by calling parameters and return answer
        print(sly.search_question(question='Besides key points, the other element a summary should include is:'))
        #search question by calling parameters and directly print answer 
        sly.search_question(question='Besides key points, the other element a summary should include is:', show = True)
        ```
        
        ## 8. Download
        
        ```python
        import Suluoya as sly
        ```
        
        ### (1)download music
        
        ```python
        #download music to d:\ 
        sly.download_music()
        #download music to any path you want
        sly.download_music(path='c:\\')
        ```
        
        ### (2)download video
        
        ```python
        sly.download_video(url='https://www.bilibili.com/video/BV1gt411D7gJ?p=29')
        ```
        
        ### (3)download anything you want with an URL
        
        ```python
        sly.download('http:\www...')
        ```
        
        ### (4)download a big file
        
        ```python
        sly.download_big_file(url='')
        ```
        
        ## 9. QRcode...
        
        ```python
        import Suluoya as sly
        ```
        
        ### (1)make a QRcode
        
        fill in an url or some strings in content
        
        fill in the name of the png in name
        
        ```python
        sly.QRcode(content='', name='')
        ```
        
        ### (2)contact
        
        If you wanna contact Suluoya...
        
        ```python
        sly.contact(mode='wechat')
        sly.contact(mode='qq')
        ```
        
        ## 9. Fun
        
        ```python
        import Suluoya as sly
        ```
        
        ### (1)draw a heart
        
        ```python
        #draw a Suluoya heart
        sly.draw_a_heart()
        #draw any hearts you want
        sly.draw_a_heart(name='any name you like')
        ```
        
        ### (2)xkcd
        
        ```python
        #you do know what I mean!
        sly.xkcd()
        ```
        
        ### (3)standard time
        
        get standard time
        
        show=False --> return instead of print
        
        ```python
        sly.standard_time(show=True)
        ```
        
        ### (4)voice synthesis
        
        really make a sound
        
        ```python
        sly.voice_synthesis(text='Welcome to use Suluoya!')
        ```
        
        ## 10. Stock
        
        ### (1)initialize
        
        ```python
        import Suluoya.slystock as sk
        sk=sk()
        ```
        
        ### (2)correlation
        
        calculate the correlation of two lists of numbers
        
        ```python
        correlation=sk.correlation(x,y)
        #x and y could not only be list but series,dataframe and array 
        ```
        
        ### (3)combine
        
        get all combination from a list
        
        ```python
        df_combine=sk.combine(lists=['A','B','C'])
        #return a dataframe
        ```
        
        ### (4)stock data
        
        adjustflag：复权类型，默认不复权：3；1：后复权；2：前复权。已支持分钟线、日线、周线、月线前后复权。
        
        frequency：数据类型，默认为d，日k线；d=日k线、w=周、m=月、5=5分钟、15=15分钟、30=30分钟、60=60分钟k线数据，不区分大小写；指数没有分钟线数据；周线每周最后一个交易日才可以获取，月线每月最后一个交易日才可以获取
        
        ```python
        df_data = sk.get_stock(code="sh.600000", start_date='2020-07-01', end_date='2020-12-31',
                            frequency='d', adjustflag="3",
                            targets='date,code,open,high,low,close,preclose,volume,amount,adjustflag,turn,tradestatus,pctChg,isST')
        ```
        
        ​     <img src="C:\Users\suluoya\AppData\Roaming\Typora\typora-user-images\image-20210106232120726.png" alt="image-20210106232120726" style="zoom:50%;" /><img src="C:\Users\suluoya\AppData\Roaming\Typora\typora-user-images\image-20210106232019900.png" alt="image-20210106232019900" style="zoom:50%;" />  <img src="C:\Users\suluoya\AppData\Roaming\Typora\typora-user-images\image-20210106232213406.png" alt="image-20210106232213406" style="zoom:50%;" />
        
        ### (5)stock infomation
        
        ```python
        #If name or code or date is empty,df_info will contain all the information
        df_info=sk.get_code(name='', code='', date='')
        ```
        
        ### (6)calculate sharp ratio
        
        ```python
        #df_sharp contains weights,risk,rate of return and sharp ratio
        #df should contains all the return data of the stock
        df_sharp = sk.sharp(df, no_risk_rate=0.45/5200)
        ```
        
        ### (7)investment portfolio
        
        ```python
        #'save=True' means save df_result as a csv file 
        #'number=500' means generate 500 random number for each combination 
        names=['隆基股份','五粮液',...]
        df_result=sk.Markowit(names, number=500, start_date='2018-11-01', end_date='2020-12-31', frequency='w', save=True)
        ```
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
